xref: /freebsd/sys/netinet/tcp_input.c (revision 9cc711c9ff5e2028cc4518d742404cfcb6636421)
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>
61adc56f5aSEdward Tomasz Napierala #include <sys/arb.h>
6298163b98SPoul-Henning Kamp #include <sys/kernel.h>
63bd79708dSJonathan T. Looney #ifdef TCP_HHOOK
6439bc9de5SLawrence Stewart #include <sys/hhook.h>
65bd79708dSJonathan T. Looney #endif
66df8bae1dSRodney W. Grimes #include <sys/malloc.h>
67df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
68a29f300eSGarrett Wollman #include <sys/proc.h>		/* for proc0 declaration */
69df8bae1dSRodney W. Grimes #include <sys/protosw.h>
70adc56f5aSEdward Tomasz Napierala #include <sys/qmath.h>
7157f60867SMark Johnston #include <sys/sdt.h>
72960ed29cSSeigo Tanimura #include <sys/signalvar.h>
73df8bae1dSRodney W. Grimes #include <sys/socket.h>
74df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
75960ed29cSSeigo Tanimura #include <sys/sysctl.h>
76816a3d83SPoul-Henning Kamp #include <sys/syslog.h>
77960ed29cSSeigo Tanimura #include <sys/systm.h>
78adc56f5aSEdward Tomasz Napierala #include <sys/stats.h>
79df8bae1dSRodney W. Grimes 
80e79adb8eSGarrett Wollman #include <machine/cpu.h>	/* before tcp_seq.h, for tcp_random18() */
81e79adb8eSGarrett Wollman 
8212e2e970SAndre Oppermann #include <vm/uma.h>
8312e2e970SAndre Oppermann 
84df8bae1dSRodney W. Grimes #include <net/if.h>
8576039bc8SGleb Smirnoff #include <net/if_var.h>
86df8bae1dSRodney W. Grimes #include <net/route.h>
87530c0060SRobert Watson #include <net/vnet.h>
88df8bae1dSRodney W. Grimes 
89773673c1SAndre Oppermann #define TCPSTATES		/* for logging */
90773673c1SAndre Oppermann 
91df8bae1dSRodney W. Grimes #include <netinet/in.h>
9257f60867SMark Johnston #include <netinet/in_kdtrace.h>
93960ed29cSSeigo Tanimura #include <netinet/in_pcb.h>
94df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
95df8bae1dSRodney W. Grimes #include <netinet/ip.h>
968e8aab7aSAndre Oppermann #include <netinet/ip_icmp.h>	/* required for icmp_var.h */
97686cdd19SJun-ichiro itojun Hagino #include <netinet/icmp_var.h>	/* for ICMP_BANDLIM */
98df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
99ef39adf0SAndre Oppermann #include <netinet/ip_options.h>
100686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h>
101686cdd19SJun-ichiro itojun Hagino #include <netinet/icmp6.h>
102686cdd19SJun-ichiro itojun Hagino #include <netinet6/in6_pcb.h>
103b66d74c1SGleb Smirnoff #include <netinet6/in6_var.h>
104960ed29cSSeigo Tanimura #include <netinet6/ip6_var.h>
105960ed29cSSeigo Tanimura #include <netinet6/nd6.h>
1062de3e790SGleb Smirnoff #include <netinet/tcp.h>
107df8bae1dSRodney W. Grimes #include <netinet/tcp_fsm.h>
1082529f56eSJonathan T. Looney #include <netinet/tcp_log_buf.h>
109df8bae1dSRodney W. Grimes #include <netinet/tcp_seq.h>
110df8bae1dSRodney W. Grimes #include <netinet/tcp_timer.h>
111df8bae1dSRodney W. Grimes #include <netinet/tcp_var.h>
112fb59c426SYoshinobu Inoue #include <netinet6/tcp6_var.h>
113df8bae1dSRodney W. Grimes #include <netinet/tcpip.h>
1144644fda3SGleb Smirnoff #include <netinet/cc/cc.h>
115c560df6fSPatrick Kelsey #include <netinet/tcp_fastopen.h>
11686a996e6SHiren Panchasara #ifdef TCPPCAP
11786a996e6SHiren Panchasara #include <netinet/tcp_pcap.h>
11886a996e6SHiren Panchasara #endif
119c325962bSMike Silbersack #include <netinet/tcp_syncache.h>
120610ee2f9SDavid Greenman #ifdef TCPDEBUG
121df8bae1dSRodney W. Grimes #include <netinet/tcp_debug.h>
122fb59c426SYoshinobu Inoue #endif /* TCPDEBUG */
12309fe6320SNavdeep Parhar #ifdef TCP_OFFLOAD
12409fe6320SNavdeep Parhar #include <netinet/tcp_offload.h>
12509fe6320SNavdeep Parhar #endif
126fb59c426SYoshinobu Inoue 
127fcf59617SAndrey V. Elsukov #include <netipsec/ipsec_support.h>
128b9234fafSSam Leffler 
129db4f9cc7SJonathan Lemon #include <machine/in_cksum.h>
130db4f9cc7SJonathan Lemon 
131aed55708SRobert Watson #include <security/mac/mac_framework.h>
132aed55708SRobert Watson 
133dbc42409SLawrence Stewart const int tcprexmtthresh = 3;
1340312fbe9SPoul-Henning Kamp 
135334fc582SBjoern A. Zeeb VNET_DEFINE(int, tcp_log_in_vain) = 0;
136334fc582SBjoern A. Zeeb SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_in_vain, CTLFLAG_VNET | CTLFLAG_RW,
137334fc582SBjoern A. Zeeb     &VNET_NAME(tcp_log_in_vain), 0,
138eddfbb76SRobert Watson     "Log all incoming TCP segments to closed ports");
139816a3d83SPoul-Henning Kamp 
14082cea7e6SBjoern A. Zeeb VNET_DEFINE(int, blackhole) = 0;
14182cea7e6SBjoern A. Zeeb #define	V_blackhole		VNET(blackhole)
1426df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, blackhole, CTLFLAG_VNET | CTLFLAG_RW,
143eddfbb76SRobert Watson     &VNET_NAME(blackhole), 0,
144eddfbb76SRobert Watson     "Do not send RST on segments to closed ports");
14516f7f31fSGeoff Rehmet 
14682cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_delack_enabled) = 1;
1476df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, delayed_ack, CTLFLAG_VNET | CTLFLAG_RW,
148eddfbb76SRobert Watson     &VNET_NAME(tcp_delack_enabled), 0,
1493d177f46SBill Fumerola     "Delay ACK to try and piggyback it onto a data packet");
150f498eeeeSDavid Greenman 
15182cea7e6SBjoern A. Zeeb VNET_DEFINE(int, drop_synfin) = 0;
1526df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, drop_synfin, CTLFLAG_VNET | CTLFLAG_RW,
153eddfbb76SRobert Watson     &VNET_NAME(drop_synfin), 0,
154eddfbb76SRobert Watson     "Drop TCP packets with SYN+FIN set");
155f8613305SDag-Erling Smørgrav 
156b72e56e7SMichael Tuexen VNET_DEFINE(int, tcp_do_newcwv) = 0;
157b72e56e7SMichael Tuexen SYSCTL_INT(_net_inet_tcp, OID_AUTO, newcwv, CTLFLAG_VNET | CTLFLAG_RW,
158b72e56e7SMichael Tuexen     &VNET_NAME(tcp_do_newcwv), 0,
159b72e56e7SMichael Tuexen     "Enable New Congestion Window Validation per RFC7661");
160b72e56e7SMichael Tuexen 
16112eeb81fSHiren Panchasara VNET_DEFINE(int, tcp_do_rfc6675_pipe) = 0;
162054d38e3SHiren Panchasara SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc6675_pipe, CTLFLAG_VNET | CTLFLAG_RW,
16312eeb81fSHiren Panchasara     &VNET_NAME(tcp_do_rfc6675_pipe), 0,
16412eeb81fSHiren Panchasara     "Use calculated pipe/in-flight bytes per RFC 6675");
16512eeb81fSHiren Panchasara 
16682cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3042) = 1;
1676df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3042, CTLFLAG_VNET | CTLFLAG_RW,
168eddfbb76SRobert Watson     &VNET_NAME(tcp_do_rfc3042), 0,
169eddfbb76SRobert Watson     "Enable RFC 3042 (Limited Transmit)");
170582a954bSJeffrey Hsu 
17182cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3390) = 1;
1726df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3390, CTLFLAG_VNET | CTLFLAG_RW,
173eddfbb76SRobert Watson     &VNET_NAME(tcp_do_rfc3390), 0,
174da3a8a1aSJeffrey Hsu     "Enable RFC 3390 (Increasing TCP's Initial Congestion Window)");
175da3a8a1aSJeffrey Hsu 
176356c7958SHiren Panchasara VNET_DEFINE(int, tcp_initcwnd_segments) = 10;
177356c7958SHiren Panchasara SYSCTL_INT(_net_inet_tcp, OID_AUTO, initcwnd_segments,
178356c7958SHiren Panchasara     CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(tcp_initcwnd_segments), 0,
179356c7958SHiren Panchasara     "Slow-start flight size (initial congestion window) in number of segments");
18009440655SAndre Oppermann 
18182cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_rfc3465) = 1;
1826df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3465, CTLFLAG_VNET | CTLFLAG_RW,
183eddfbb76SRobert Watson     &VNET_NAME(tcp_do_rfc3465), 0,
18424cb0f22SLawrence Stewart     "Enable RFC 3465 (Appropriate Byte Counting)");
185eddfbb76SRobert Watson 
18682cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_abc_l_var) = 2;
1876df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, abc_l_var, CTLFLAG_VNET | CTLFLAG_RW,
188eddfbb76SRobert Watson     &VNET_NAME(tcp_abc_l_var), 2,
18924cb0f22SLawrence Stewart     "Cap the max cwnd increment during slow-start to this number of segments");
19024cb0f22SLawrence Stewart 
1916472ac3dSEd Schouten static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, ecn, CTLFLAG_RW, 0, "TCP ECN");
192f2512ba1SRui Paulo 
193883054b4SDon Lewis VNET_DEFINE(int, tcp_do_ecn) = 2;
1946df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, enable, CTLFLAG_VNET | CTLFLAG_RW,
195eddfbb76SRobert Watson     &VNET_NAME(tcp_do_ecn), 0,
196eddfbb76SRobert Watson     "TCP ECN support");
197eddfbb76SRobert Watson 
19882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_ecn_maxretries) = 1;
1996df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, maxretries, CTLFLAG_VNET | CTLFLAG_RW,
200eddfbb76SRobert Watson     &VNET_NAME(tcp_ecn_maxretries), 0,
201eddfbb76SRobert Watson     "Max retries before giving up on ECN");
202eddfbb76SRobert Watson 
2033220a212SGleb Smirnoff VNET_DEFINE(int, tcp_insecure_syn) = 0;
2046df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_syn, CTLFLAG_VNET | CTLFLAG_RW,
2053220a212SGleb Smirnoff     &VNET_NAME(tcp_insecure_syn), 0,
2063220a212SGleb Smirnoff     "Follow RFC793 instead of RFC5961 criteria for accepting SYN packets");
2073220a212SGleb Smirnoff 
20882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_insecure_rst) = 0;
2096df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_rst, CTLFLAG_VNET | CTLFLAG_RW,
210eddfbb76SRobert Watson     &VNET_NAME(tcp_insecure_rst), 0,
2113220a212SGleb Smirnoff     "Follow RFC793 instead of RFC5961 criteria for accepting RST packets");
212a69968eeSMike Silbersack 
213fba0cea1SBjoern A. Zeeb VNET_DEFINE(int, tcp_recvspace) = 1024*64;
214873789cbSAndre Oppermann #define	V_tcp_recvspace	VNET(tcp_recvspace)
2156df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, TCPCTL_RECVSPACE, recvspace, CTLFLAG_VNET | CTLFLAG_RW,
216873789cbSAndre Oppermann     &VNET_NAME(tcp_recvspace), 0, "Initial receive socket buffer size");
217873789cbSAndre Oppermann 
21882cea7e6SBjoern A. Zeeb VNET_DEFINE(int, tcp_do_autorcvbuf) = 1;
2196df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_auto, CTLFLAG_VNET | CTLFLAG_RW,
220eddfbb76SRobert Watson     &VNET_NAME(tcp_do_autorcvbuf), 0,
2218b615593SMarko Zec     "Enable automatic receive buffer sizing");
2226741ecf5SAndre Oppermann 
223b233773bSBjoern A. Zeeb VNET_DEFINE(int, tcp_autorcvbuf_max) = 2*1024*1024;
2246df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_max, CTLFLAG_VNET | CTLFLAG_RW,
225eddfbb76SRobert Watson     &VNET_NAME(tcp_autorcvbuf_max), 0,
2268b615593SMarko Zec     "Max size of automatic receive buffer");
2276741ecf5SAndre Oppermann 
228eddfbb76SRobert Watson VNET_DEFINE(struct inpcbhead, tcb);
22944e33a07SMarko Zec #define	tcb6	tcb  /* for KAME src sync over BSD*'s */
23082cea7e6SBjoern A. Zeeb VNET_DEFINE(struct inpcbinfo, tcbinfo);
231df8bae1dSRodney W. Grimes 
232315e3e38SRobert Watson /*
233bf840a17SGleb Smirnoff  * TCP statistics are stored in an array of counter(9)s, which size matches
234bf840a17SGleb Smirnoff  * size of struct tcpstat.  TCP running connection count is a regular array.
2355923c293SGleb Smirnoff  */
2365da0521fSAndrey V. Elsukov VNET_PCPUSTAT_DEFINE(struct tcpstat, tcpstat);
2375da0521fSAndrey V. Elsukov SYSCTL_VNET_PCPUSTAT(_net_inet_tcp, TCPCTL_STATS, stats, struct tcpstat,
2385da0521fSAndrey V. Elsukov     tcpstat, "TCP statistics (struct tcpstat, netinet/tcp_var.h)");
239bf840a17SGleb Smirnoff VNET_DEFINE(counter_u64_t, tcps_states[TCP_NSTATES]);
240bf840a17SGleb Smirnoff SYSCTL_COUNTER_U64_ARRAY(_net_inet_tcp, TCPCTL_STATES, states, CTLFLAG_RD |
241d4d32b9fSHans Petter Selasky     CTLFLAG_VNET, &VNET_NAME(tcps_states)[0], TCP_NSTATES,
242bf840a17SGleb Smirnoff     "TCP connection counts by TCP state");
243bf840a17SGleb Smirnoff 
244bf840a17SGleb Smirnoff static void
245bf840a17SGleb Smirnoff tcp_vnet_init(const void *unused)
246bf840a17SGleb Smirnoff {
247bf840a17SGleb Smirnoff 
248f59d975eSGleb Smirnoff 	COUNTER_ARRAY_ALLOC(V_tcps_states, TCP_NSTATES, M_WAITOK);
249bf840a17SGleb Smirnoff 	VNET_PCPUSTAT_ALLOC(tcpstat, M_WAITOK);
250bf840a17SGleb Smirnoff }
251bf840a17SGleb Smirnoff VNET_SYSINIT(tcp_vnet_init, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
252bf840a17SGleb Smirnoff     tcp_vnet_init, NULL);
2535923c293SGleb Smirnoff 
2545923c293SGleb Smirnoff #ifdef VIMAGE
255bf840a17SGleb Smirnoff static void
256bf840a17SGleb Smirnoff tcp_vnet_uninit(const void *unused)
257bf840a17SGleb Smirnoff {
258bf840a17SGleb Smirnoff 
259f59d975eSGleb Smirnoff 	COUNTER_ARRAY_FREE(V_tcps_states, TCP_NSTATES);
260bf840a17SGleb Smirnoff 	VNET_PCPUSTAT_FREE(tcpstat);
261bf840a17SGleb Smirnoff }
262bf840a17SGleb Smirnoff VNET_SYSUNINIT(tcp_vnet_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
263bf840a17SGleb Smirnoff     tcp_vnet_uninit, NULL);
2645923c293SGleb Smirnoff #endif /* VIMAGE */
265bf840a17SGleb Smirnoff 
2665923c293SGleb Smirnoff /*
267315e3e38SRobert Watson  * Kernel module interface for updating tcpstat.  The argument is an index
2685923c293SGleb Smirnoff  * into tcpstat treated as an array.
269315e3e38SRobert Watson  */
270315e3e38SRobert Watson void
271315e3e38SRobert Watson kmod_tcpstat_inc(int statnum)
272315e3e38SRobert Watson {
273315e3e38SRobert Watson 
2745da0521fSAndrey V. Elsukov 	counter_u64_add(VNET(tcpstat)[statnum], 1);
275315e3e38SRobert Watson }
276315e3e38SRobert Watson 
277bd79708dSJonathan T. Looney #ifdef TCP_HHOOK
278dbc42409SLawrence Stewart /*
27939bc9de5SLawrence Stewart  * Wrapper for the TCP established input helper hook.
28039bc9de5SLawrence Stewart  */
28155bceb1eSRandall Stewart void
28239bc9de5SLawrence Stewart hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to)
28339bc9de5SLawrence Stewart {
28439bc9de5SLawrence Stewart 	struct tcp_hhook_data hhook_data;
28539bc9de5SLawrence Stewart 
28639bc9de5SLawrence Stewart 	if (V_tcp_hhh[HHOOK_TCP_EST_IN]->hhh_nhooks > 0) {
28739bc9de5SLawrence Stewart 		hhook_data.tp = tp;
28839bc9de5SLawrence Stewart 		hhook_data.th = th;
28939bc9de5SLawrence Stewart 		hhook_data.to = to;
29039bc9de5SLawrence Stewart 
29139bc9de5SLawrence Stewart 		hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_IN], &hhook_data,
29239bc9de5SLawrence Stewart 		    tp->osd);
29339bc9de5SLawrence Stewart 	}
29439bc9de5SLawrence Stewart }
295bd79708dSJonathan T. Looney #endif
29639bc9de5SLawrence Stewart 
29739bc9de5SLawrence Stewart /*
298dbc42409SLawrence Stewart  * CC wrapper hook functions
299dbc42409SLawrence Stewart  */
30055bceb1eSRandall Stewart void
3014b7b743cSLawrence Stewart cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t nsegs,
3024b7b743cSLawrence Stewart     uint16_t type)
303f2512ba1SRui Paulo {
304adc56f5aSEdward Tomasz Napierala #ifdef STATS
305adc56f5aSEdward Tomasz Napierala 	int32_t gput;
306adc56f5aSEdward Tomasz Napierala #endif
307adc56f5aSEdward Tomasz Napierala 
308dbc42409SLawrence Stewart 	INP_WLOCK_ASSERT(tp->t_inpcb);
309f2512ba1SRui Paulo 
3104b7b743cSLawrence Stewart 	tp->ccv->nsegs = nsegs;
311dbc42409SLawrence Stewart 	tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th);
312b72e56e7SMichael Tuexen 	if ((!V_tcp_do_newcwv && (tp->snd_cwnd <= tp->snd_wnd)) ||
313b72e56e7SMichael Tuexen 	    (V_tcp_do_newcwv && (tp->snd_cwnd <= tp->snd_wnd) &&
314b72e56e7SMichael Tuexen 	     (tp->snd_cwnd < (tcp_compute_pipe(tp) * 2))))
315dbc42409SLawrence Stewart 		tp->ccv->flags |= CCF_CWND_LIMITED;
316dbc42409SLawrence Stewart 	else
317dbc42409SLawrence Stewart 		tp->ccv->flags &= ~CCF_CWND_LIMITED;
318dbc42409SLawrence Stewart 
319dbc42409SLawrence Stewart 	if (type == CC_ACK) {
320adc56f5aSEdward Tomasz Napierala #ifdef STATS
321adc56f5aSEdward Tomasz Napierala 		stats_voi_update_abs_s32(tp->t_stats, VOI_TCP_CALCFRWINDIFF,
322adc56f5aSEdward Tomasz Napierala 		    ((int32_t)tp->snd_cwnd) - tp->snd_wnd);
323adc56f5aSEdward Tomasz Napierala 		if (!IN_RECOVERY(tp->t_flags))
324adc56f5aSEdward Tomasz Napierala 			stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_ACKLEN,
325adc56f5aSEdward Tomasz Napierala 			   tp->ccv->bytes_this_ack / (tcp_maxseg(tp) * nsegs));
326adc56f5aSEdward Tomasz Napierala 		if ((tp->t_flags & TF_GPUTINPROG) &&
327adc56f5aSEdward Tomasz Napierala 		    SEQ_GEQ(th->th_ack, tp->gput_ack)) {
328adc56f5aSEdward Tomasz Napierala 			/*
329adc56f5aSEdward Tomasz Napierala 			 * Compute goodput in bits per millisecond.
330adc56f5aSEdward Tomasz Napierala 			 */
331adc56f5aSEdward Tomasz Napierala 			gput = (((int64_t)(th->th_ack - tp->gput_seq)) << 3) /
332adc56f5aSEdward Tomasz Napierala 			    max(1, tcp_ts_getticks() - tp->gput_ts);
333adc56f5aSEdward Tomasz Napierala 			stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_GPUT,
334adc56f5aSEdward Tomasz Napierala 			    gput);
335adc56f5aSEdward Tomasz Napierala 			/*
336adc56f5aSEdward Tomasz Napierala 			 * XXXLAS: This is a temporary hack, and should be
337adc56f5aSEdward Tomasz Napierala 			 * chained off VOI_TCP_GPUT when stats(9) grows an API
338adc56f5aSEdward Tomasz Napierala 			 * to deal with chained VOIs.
339adc56f5aSEdward Tomasz Napierala 			 */
340adc56f5aSEdward Tomasz Napierala 			if (tp->t_stats_gput_prev > 0)
341adc56f5aSEdward Tomasz Napierala 				stats_voi_update_abs_s32(tp->t_stats,
342adc56f5aSEdward Tomasz Napierala 				    VOI_TCP_GPUT_ND,
343adc56f5aSEdward Tomasz Napierala 				    ((gput - tp->t_stats_gput_prev) * 100) /
344adc56f5aSEdward Tomasz Napierala 				    tp->t_stats_gput_prev);
345adc56f5aSEdward Tomasz Napierala 			tp->t_flags &= ~TF_GPUTINPROG;
346adc56f5aSEdward Tomasz Napierala 			tp->t_stats_gput_prev = gput;
347adc56f5aSEdward Tomasz Napierala 		}
348adc56f5aSEdward Tomasz Napierala #endif /* STATS */
349dbc42409SLawrence Stewart 		if (tp->snd_cwnd > tp->snd_ssthresh) {
350dbc42409SLawrence Stewart 			tp->t_bytes_acked += min(tp->ccv->bytes_this_ack,
3514b7b743cSLawrence Stewart 			     nsegs * V_tcp_abc_l_var * tcp_maxseg(tp));
352dbc42409SLawrence Stewart 			if (tp->t_bytes_acked >= tp->snd_cwnd) {
353dbc42409SLawrence Stewart 				tp->t_bytes_acked -= tp->snd_cwnd;
354dbc42409SLawrence Stewart 				tp->ccv->flags |= CCF_ABC_SENTAWND;
355dbc42409SLawrence Stewart 			}
356dbc42409SLawrence Stewart 		} else {
357dbc42409SLawrence Stewart 				tp->ccv->flags &= ~CCF_ABC_SENTAWND;
358dbc42409SLawrence Stewart 				tp->t_bytes_acked = 0;
359dbc42409SLawrence Stewart 		}
360dbc42409SLawrence Stewart 	}
361dbc42409SLawrence Stewart 
362dbc42409SLawrence Stewart 	if (CC_ALGO(tp)->ack_received != NULL) {
363dbc42409SLawrence Stewart 		/* XXXLAS: Find a way to live without this */
364dbc42409SLawrence Stewart 		tp->ccv->curack = th->th_ack;
365dbc42409SLawrence Stewart 		CC_ALGO(tp)->ack_received(tp->ccv, type);
366dbc42409SLawrence Stewart 	}
367adc56f5aSEdward Tomasz Napierala #ifdef STATS
368adc56f5aSEdward Tomasz Napierala 	stats_voi_update_abs_ulong(tp->t_stats, VOI_TCP_LCWIN, tp->snd_cwnd);
369adc56f5aSEdward Tomasz Napierala #endif
370dbc42409SLawrence Stewart }
371dbc42409SLawrence Stewart 
37255bceb1eSRandall Stewart void
373dbc42409SLawrence Stewart cc_conn_init(struct tcpcb *tp)
374dbc42409SLawrence Stewart {
375dbc42409SLawrence Stewart 	struct hc_metrics_lite metrics;
376dbc42409SLawrence Stewart 	struct inpcb *inp = tp->t_inpcb;
3770c39d38dSGleb Smirnoff 	u_int maxseg;
378dbc42409SLawrence Stewart 	int rtt;
379dbc42409SLawrence Stewart 
380dbc42409SLawrence Stewart 	INP_WLOCK_ASSERT(tp->t_inpcb);
381dbc42409SLawrence Stewart 
382dbc42409SLawrence Stewart 	tcp_hc_get(&inp->inp_inc, &metrics);
3830c39d38dSGleb Smirnoff 	maxseg = tcp_maxseg(tp);
384dbc42409SLawrence Stewart 
385dbc42409SLawrence Stewart 	if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) {
386dbc42409SLawrence Stewart 		tp->t_srtt = rtt;
387dbc42409SLawrence Stewart 		tp->t_rttbest = tp->t_srtt + TCP_RTT_SCALE;
388dbc42409SLawrence Stewart 		TCPSTAT_INC(tcps_usedrtt);
389dbc42409SLawrence Stewart 		if (metrics.rmx_rttvar) {
390dbc42409SLawrence Stewart 			tp->t_rttvar = metrics.rmx_rttvar;
391dbc42409SLawrence Stewart 			TCPSTAT_INC(tcps_usedrttvar);
392dbc42409SLawrence Stewart 		} else {
393dbc42409SLawrence Stewart 			/* default variation is +- 1 rtt */
394dbc42409SLawrence Stewart 			tp->t_rttvar =
395dbc42409SLawrence Stewart 			    tp->t_srtt * TCP_RTTVAR_SCALE / TCP_RTT_SCALE;
396dbc42409SLawrence Stewart 		}
397dbc42409SLawrence Stewart 		TCPT_RANGESET(tp->t_rxtcur,
398dbc42409SLawrence Stewart 		    ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1,
399dbc42409SLawrence Stewart 		    tp->t_rttmin, TCPTV_REXMTMAX);
400dbc42409SLawrence Stewart 	}
401dbc42409SLawrence Stewart 	if (metrics.rmx_ssthresh) {
402dbc42409SLawrence Stewart 		/*
403dbc42409SLawrence Stewart 		 * There's some sort of gateway or interface
404dbc42409SLawrence Stewart 		 * buffer limit on the path.  Use this to set
405a4641f4eSPedro F. Giffuni 		 * the slow start threshold, but set the
406dbc42409SLawrence Stewart 		 * threshold to no less than 2*mss.
407dbc42409SLawrence Stewart 		 */
4080c39d38dSGleb Smirnoff 		tp->snd_ssthresh = max(2 * maxseg, metrics.rmx_ssthresh);
409dbc42409SLawrence Stewart 		TCPSTAT_INC(tcps_usedssthresh);
410dbc42409SLawrence Stewart 	}
411dbc42409SLawrence Stewart 
412dbc42409SLawrence Stewart 	/*
4139ec4a4ccSAndre Oppermann 	 * Set the initial slow-start flight size.
414dbc42409SLawrence Stewart 	 *
415cf8f04f4SAndre Oppermann 	 * If a SYN or SYN/ACK was lost and retransmitted, we have to
416cf8f04f4SAndre Oppermann 	 * reduce the initial CWND to one segment as congestion is likely
417cf8f04f4SAndre Oppermann 	 * requiring us to be cautious.
418dbc42409SLawrence Stewart 	 */
419cf8f04f4SAndre Oppermann 	if (tp->snd_cwnd == 1)
4200c39d38dSGleb Smirnoff 		tp->snd_cwnd = maxseg;		/* SYN(-ACK) lost */
421dbc42409SLawrence Stewart 	else
4227dc90a1dSMichael Tuexen 		tp->snd_cwnd = tcp_compute_initwnd(maxseg);
423dbc42409SLawrence Stewart 
424dbc42409SLawrence Stewart 	if (CC_ALGO(tp)->conn_init != NULL)
425dbc42409SLawrence Stewart 		CC_ALGO(tp)->conn_init(tp->ccv);
426dbc42409SLawrence Stewart }
427dbc42409SLawrence Stewart 
428dbc42409SLawrence Stewart void inline
429dbc42409SLawrence Stewart cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type)
430dbc42409SLawrence Stewart {
4310c39d38dSGleb Smirnoff 	u_int maxseg;
4320c39d38dSGleb Smirnoff 
433dbc42409SLawrence Stewart 	INP_WLOCK_ASSERT(tp->t_inpcb);
434dbc42409SLawrence Stewart 
435adc56f5aSEdward Tomasz Napierala #ifdef STATS
436adc56f5aSEdward Tomasz Napierala 	stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_CSIG, type);
437adc56f5aSEdward Tomasz Napierala #endif
438adc56f5aSEdward Tomasz Napierala 
439dbc42409SLawrence Stewart 	switch(type) {
440dbc42409SLawrence Stewart 	case CC_NDUPACK:
441dbc42409SLawrence Stewart 		if (!IN_FASTRECOVERY(tp->t_flags)) {
442f2512ba1SRui Paulo 			tp->snd_recover = tp->snd_max;
4433cf38784SMichael Tuexen 			if (tp->t_flags2 & TF2_ECN_PERMIT)
4443cf38784SMichael Tuexen 				tp->t_flags2 |= TF2_ECN_SND_CWR;
445f2512ba1SRui Paulo 		}
446dbc42409SLawrence Stewart 		break;
447dbc42409SLawrence Stewart 	case CC_ECN:
448dbc42409SLawrence Stewart 		if (!IN_CONGRECOVERY(tp->t_flags)) {
449dbc42409SLawrence Stewart 			TCPSTAT_INC(tcps_ecn_rcwnd);
450dbc42409SLawrence Stewart 			tp->snd_recover = tp->snd_max;
4513cf38784SMichael Tuexen 			if (tp->t_flags2 & TF2_ECN_PERMIT)
4523cf38784SMichael Tuexen 				tp->t_flags2 |= TF2_ECN_SND_CWR;
453dbc42409SLawrence Stewart 		}
454dbc42409SLawrence Stewart 		break;
455dbc42409SLawrence Stewart 	case CC_RTO:
4560c39d38dSGleb Smirnoff 		maxseg = tcp_maxseg(tp);
457dbc42409SLawrence Stewart 		tp->t_dupacks = 0;
458dbc42409SLawrence Stewart 		tp->t_bytes_acked = 0;
459dbc42409SLawrence Stewart 		EXIT_RECOVERY(tp->t_flags);
46043053c12SSean Bruno 		tp->snd_ssthresh = max(2, min(tp->snd_wnd, tp->snd_cwnd) / 2 /
46143053c12SSean Bruno 		    maxseg) * maxseg;
4620c39d38dSGleb Smirnoff 		tp->snd_cwnd = maxseg;
463*9cc711c9SMichael Tuexen 		if (tp->t_flags2 & TF2_ECN_PERMIT)
464*9cc711c9SMichael Tuexen 			tp->t_flags2 |= TF2_ECN_SND_CWR;
465dbc42409SLawrence Stewart 		break;
466dbc42409SLawrence Stewart 	case CC_RTO_ERR:
467dbc42409SLawrence Stewart 		TCPSTAT_INC(tcps_sndrexmitbad);
468dbc42409SLawrence Stewart 		/* RTO was unnecessary, so reset everything. */
469dbc42409SLawrence Stewart 		tp->snd_cwnd = tp->snd_cwnd_prev;
470dbc42409SLawrence Stewart 		tp->snd_ssthresh = tp->snd_ssthresh_prev;
471dbc42409SLawrence Stewart 		tp->snd_recover = tp->snd_recover_prev;
472dbc42409SLawrence Stewart 		if (tp->t_flags & TF_WASFRECOVERY)
473dbc42409SLawrence Stewart 			ENTER_FASTRECOVERY(tp->t_flags);
474dbc42409SLawrence Stewart 		if (tp->t_flags & TF_WASCRECOVERY)
475dbc42409SLawrence Stewart 			ENTER_CONGRECOVERY(tp->t_flags);
476dbc42409SLawrence Stewart 		tp->snd_nxt = tp->snd_max;
477672dc4aeSJohn Baldwin 		tp->t_flags &= ~TF_PREVVALID;
478dbc42409SLawrence Stewart 		tp->t_badrxtwin = 0;
479dbc42409SLawrence Stewart 		break;
480dbc42409SLawrence Stewart 	}
481dbc42409SLawrence Stewart 
482dbc42409SLawrence Stewart 	if (CC_ALGO(tp)->cong_signal != NULL) {
483dbc42409SLawrence Stewart 		if (th != NULL)
484dbc42409SLawrence Stewart 			tp->ccv->curack = th->th_ack;
485dbc42409SLawrence Stewart 		CC_ALGO(tp)->cong_signal(tp->ccv, type);
486dbc42409SLawrence Stewart 	}
487dbc42409SLawrence Stewart }
488dbc42409SLawrence Stewart 
48955bceb1eSRandall Stewart void inline
490dbc42409SLawrence Stewart cc_post_recovery(struct tcpcb *tp, struct tcphdr *th)
491dbc42409SLawrence Stewart {
492dbc42409SLawrence Stewart 	INP_WLOCK_ASSERT(tp->t_inpcb);
493dbc42409SLawrence Stewart 
494dbc42409SLawrence Stewart 	/* XXXLAS: KASSERT that we're in recovery? */
495dbc42409SLawrence Stewart 
496dbc42409SLawrence Stewart 	if (CC_ALGO(tp)->post_recovery != NULL) {
497dbc42409SLawrence Stewart 		tp->ccv->curack = th->th_ack;
498dbc42409SLawrence Stewart 		CC_ALGO(tp)->post_recovery(tp->ccv);
499dbc42409SLawrence Stewart 	}
500dbc42409SLawrence Stewart 	/* XXXLAS: EXIT_RECOVERY ? */
501dbc42409SLawrence Stewart 	tp->t_bytes_acked = 0;
502dbc42409SLawrence Stewart }
5030312fbe9SPoul-Henning Kamp 
504df8bae1dSRodney W. Grimes /*
505262c1c1aSMatthew Dillon  * Indicate whether this ack should be delayed.  We can delay the ack if
50685536381SHiren Panchasara  * following conditions are met:
50785536381SHiren Panchasara  *	- There is no delayed ack timer in progress.
50885536381SHiren Panchasara  *	- Our last ack wasn't a 0-sized window. We never want to delay
50985536381SHiren Panchasara  *	  the ack that opens up a 0-sized window.
51085536381SHiren Panchasara  *	- LRO wasn't used for this segment. We make sure by checking that the
51185536381SHiren Panchasara  *	  segment size is not larger than the MSS.
512d8c85a26SJonathan Lemon  */
513c1e5a6e5SAndre Oppermann #define DELAY_ACK(tp, tlen)						\
514b8152ba7SAndre Oppermann 	((!tcp_timer_active(tp, TT_DELACK) &&				\
515a14c749fSJonathan Lemon 	    (tp->t_flags & TF_RXWIN0SENT) == 0) &&			\
5160c39d38dSGleb Smirnoff 	    (tlen <= tp->t_maxseg) &&					\
517603724d3SBjoern A. Zeeb 	    (V_tcp_delack_enabled || (tp->t_flags & TF_NEEDSYN)))
518d8c85a26SJonathan Lemon 
5194ad24737SRandall Stewart void inline
52064807b30SHiren Panchasara cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos)
52164807b30SHiren Panchasara {
52264807b30SHiren Panchasara 	INP_WLOCK_ASSERT(tp->t_inpcb);
52364807b30SHiren Panchasara 
52464807b30SHiren Panchasara 	if (CC_ALGO(tp)->ecnpkt_handler != NULL) {
52564807b30SHiren Panchasara 		switch (iptos & IPTOS_ECN_MASK) {
52664807b30SHiren Panchasara 		case IPTOS_ECN_CE:
52764807b30SHiren Panchasara 			tp->ccv->flags |= CCF_IPHDR_CE;
52864807b30SHiren Panchasara 			break;
52964807b30SHiren Panchasara 		case IPTOS_ECN_ECT0:
53083a2839fSMichael Tuexen 			/* FALLTHROUGH */
53164807b30SHiren Panchasara 		case IPTOS_ECN_ECT1:
53283a2839fSMichael Tuexen 			/* FALLTHROUGH */
53383a2839fSMichael Tuexen 		case IPTOS_ECN_NOTECT:
53464807b30SHiren Panchasara 			tp->ccv->flags &= ~CCF_IPHDR_CE;
53564807b30SHiren Panchasara 			break;
53664807b30SHiren Panchasara 		}
53764807b30SHiren Panchasara 
53864807b30SHiren Panchasara 		if (th->th_flags & TH_CWR)
53964807b30SHiren Panchasara 			tp->ccv->flags |= CCF_TCPHDR_CWR;
54064807b30SHiren Panchasara 		else
54164807b30SHiren Panchasara 			tp->ccv->flags &= ~CCF_TCPHDR_CWR;
54264807b30SHiren Panchasara 
54364807b30SHiren Panchasara 		CC_ALGO(tp)->ecnpkt_handler(tp->ccv);
54464807b30SHiren Panchasara 
545e11c9783SMichael Tuexen 		if (tp->ccv->flags & CCF_ACKNOW) {
54664807b30SHiren Panchasara 			tcp_timer_activate(tp, TT_DELACK, tcp_delacktime);
547e11c9783SMichael Tuexen 			tp->t_flags |= TF_ACKNOW;
548e11c9783SMichael Tuexen 		}
54964807b30SHiren Panchasara 	}
55064807b30SHiren Panchasara }
55164807b30SHiren Panchasara 
552df8bae1dSRodney W. Grimes /*
5538d573cc1SAndre Oppermann  * TCP input handling is split into multiple parts:
5548d573cc1SAndre Oppermann  *   tcp6_input is a thin wrapper around tcp_input for the extended
5558d573cc1SAndre Oppermann  *	ip6_protox[] call format in ip6_input
5568d573cc1SAndre Oppermann  *   tcp_input handles primary segment validation, inpcb lookup and
5578d573cc1SAndre Oppermann  *	SYN processing on listen sockets
5588d573cc1SAndre Oppermann  *   tcp_do_segment processes the ACK and text of the segment for
5598d573cc1SAndre Oppermann  *	establishing, established and closing connections
560df8bae1dSRodney W. Grimes  */
561fb59c426SYoshinobu Inoue #ifdef INET6
562fb59c426SYoshinobu Inoue int
563ad3f9ab3SAndre Oppermann tcp6_input(struct mbuf **mp, int *offp, int proto)
564fb59c426SYoshinobu Inoue {
565503f4e47SBjoern A. Zeeb 	struct mbuf *m;
56633841545SHajimu UMEMOTO 	struct in6_ifaddr *ia6;
5673e88eb90SAndrey V. Elsukov 	struct ip6_hdr *ip6;
568fb59c426SYoshinobu Inoue 
569503f4e47SBjoern A. Zeeb 	m = *mp;
570a4adf6ccSBjoern A. Zeeb 	if (m->m_len < *offp + sizeof(struct tcphdr)) {
5714e619b17SBjoern A. Zeeb 		m = m_pullup(m, *offp + sizeof(struct tcphdr));
5724e619b17SBjoern A. Zeeb 		if (m == NULL) {
5734e619b17SBjoern A. Zeeb 			*mp = m;
5744e619b17SBjoern A. Zeeb 			TCPSTAT_INC(tcps_rcvshort);
5754e619b17SBjoern A. Zeeb 			return (IPPROTO_DONE);
5764e619b17SBjoern A. Zeeb 		}
577a4adf6ccSBjoern A. Zeeb 	}
578fb59c426SYoshinobu Inoue 
579fb59c426SYoshinobu Inoue 	/*
580fb59c426SYoshinobu Inoue 	 * draft-itojun-ipv6-tcp-to-anycast
581fb59c426SYoshinobu Inoue 	 * better place to put this in?
582fb59c426SYoshinobu Inoue 	 */
5833e88eb90SAndrey V. Elsukov 	ip6 = mtod(m, struct ip6_hdr *);
5843e88eb90SAndrey V. Elsukov 	ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */);
58533841545SHajimu UMEMOTO 	if (ia6 && (ia6->ia6_flags & IN6_IFF_ANYCAST)) {
586fb59c426SYoshinobu Inoue 
5878c0fec80SRobert Watson 		ifa_free(&ia6->ia_ifa);
588fb59c426SYoshinobu Inoue 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR,
589fb59c426SYoshinobu Inoue 			    (caddr_t)&ip6->ip6_dst - (caddr_t)ip6);
590a8fe77d8SBjoern A. Zeeb 		*mp = NULL;
5918f5a8818SKevin Lo 		return (IPPROTO_DONE);
592fb59c426SYoshinobu Inoue 	}
59377d396fdSMaksim Yevmenkin 	if (ia6)
59477d396fdSMaksim Yevmenkin 		ifa_free(&ia6->ia_ifa);
595fb59c426SYoshinobu Inoue 
596a8fe77d8SBjoern A. Zeeb 	*mp = m;
5978f5a8818SKevin Lo 	return (tcp_input(mp, offp, proto));
598fb59c426SYoshinobu Inoue }
599b287c6c7SBjoern A. Zeeb #endif /* INET6 */
600fb59c426SYoshinobu Inoue 
6018f5a8818SKevin Lo int
6028f5a8818SKevin Lo tcp_input(struct mbuf **mp, int *offp, int proto)
603df8bae1dSRodney W. Grimes {
6048f5a8818SKevin Lo 	struct mbuf *m = *mp;
605b287c6c7SBjoern A. Zeeb 	struct tcphdr *th = NULL;
606ad3f9ab3SAndre Oppermann 	struct ip *ip = NULL;
607ad3f9ab3SAndre Oppermann 	struct inpcb *inp = NULL;
608302ce8d6SAndre Oppermann 	struct tcpcb *tp = NULL;
609302ce8d6SAndre Oppermann 	struct socket *so = NULL;
610e79adb8eSGarrett Wollman 	u_char *optp = NULL;
6118f5a8818SKevin Lo 	int off0;
61226f9a767SRodney W. Grimes 	int optlen = 0;
613b287c6c7SBjoern A. Zeeb #ifdef INET
614b287c6c7SBjoern A. Zeeb 	int len;
615c4556b2fSAndrey V. Elsukov 	uint8_t ipttl;
616b287c6c7SBjoern A. Zeeb #endif
617b287c6c7SBjoern A. Zeeb 	int tlen = 0, off;
618fb59c426SYoshinobu Inoue 	int drop_hdrlen;
619ad3f9ab3SAndre Oppermann 	int thflags;
620302ce8d6SAndre Oppermann 	int rstreason = 0;	/* For badport_bandlim accounting purposes */
6211d7ee746SKurt Lidl 	uint8_t iptos;
622c1de64a4SAndrey V. Elsukov 	struct m_tag *fwd_tag = NULL;
623c068736aSJeffrey Hsu #ifdef INET6
624302ce8d6SAndre Oppermann 	struct ip6_hdr *ip6 = NULL;
625c068736aSJeffrey Hsu 	int isipv6;
626c068736aSJeffrey Hsu #else
627a160e630SAndre Oppermann 	const void *ip6 = NULL;
628b287c6c7SBjoern A. Zeeb #endif /* INET6 */
629302ce8d6SAndre Oppermann 	struct tcpopt to;		/* options in this segment */
630a160e630SAndre Oppermann 	char *s = NULL;			/* address and port logging */
631610ee2f9SDavid Greenman #ifdef TCPDEBUG
632c068736aSJeffrey Hsu 	/*
633c068736aSJeffrey Hsu 	 * The size of tcp_saveipgen must be the size of the max ip header,
634c068736aSJeffrey Hsu 	 * now IPv6.
635c068736aSJeffrey Hsu 	 */
63614739780SMaxim Konovalov 	u_char tcp_saveipgen[IP6_HDR_LEN];
637410bb1bfSLuigi Rizzo 	struct tcphdr tcp_savetcp;
638610ee2f9SDavid Greenman 	short ostate = 0;
639610ee2f9SDavid Greenman #endif
640c068736aSJeffrey Hsu 
641d40c0d47SGleb Smirnoff 	NET_EPOCH_ASSERT();
642d40c0d47SGleb Smirnoff 
643fb59c426SYoshinobu Inoue #ifdef INET6
644fb59c426SYoshinobu Inoue 	isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
645fb59c426SYoshinobu Inoue #endif
646a0292f23SGarrett Wollman 
6478f5a8818SKevin Lo 	off0 = *offp;
6488f5a8818SKevin Lo 	m = *mp;
6498f5a8818SKevin Lo 	*mp = NULL;
650302ce8d6SAndre Oppermann 	to.to_flags = 0;
65178b50714SRobert Watson 	TCPSTAT_INC(tcps_rcvtotal);
652fb59c426SYoshinobu Inoue 
65304d3a452SHajimu UMEMOTO #ifdef INET6
654b287c6c7SBjoern A. Zeeb 	if (isipv6) {
65545747ba5SBjoern A. Zeeb 
656fb59c426SYoshinobu Inoue 		ip6 = mtod(m, struct ip6_hdr *);
65745747ba5SBjoern A. Zeeb 		th = (struct tcphdr *)((caddr_t)ip6 + off0);
658fb59c426SYoshinobu Inoue 		tlen = sizeof(*ip6) + ntohs(ip6->ip6_plen) - off0;
659356ab07eSBjoern A. Zeeb 		if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID_IPV6) {
66045747ba5SBjoern A. Zeeb 			if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
66145747ba5SBjoern A. Zeeb 				th->th_sum = m->m_pkthdr.csum_data;
66245747ba5SBjoern A. Zeeb 			else
66345747ba5SBjoern A. Zeeb 				th->th_sum = in6_cksum_pseudo(ip6, tlen,
66445747ba5SBjoern A. Zeeb 				    IPPROTO_TCP, m->m_pkthdr.csum_data);
66545747ba5SBjoern A. Zeeb 			th->th_sum ^= 0xffff;
66645747ba5SBjoern A. Zeeb 		} else
66745747ba5SBjoern A. Zeeb 			th->th_sum = in6_cksum(m, IPPROTO_TCP, off0, tlen);
66845747ba5SBjoern A. Zeeb 		if (th->th_sum) {
66978b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvbadsum);
670fb59c426SYoshinobu Inoue 			goto drop;
671fb59c426SYoshinobu Inoue 		}
67233841545SHajimu UMEMOTO 
67333841545SHajimu UMEMOTO 		/*
67433841545SHajimu UMEMOTO 		 * Be proactive about unspecified IPv6 address in source.
67533841545SHajimu UMEMOTO 		 * As we use all-zero to indicate unbounded/unconnected pcb,
67633841545SHajimu UMEMOTO 		 * unspecified IPv6 address can be used to confuse us.
67733841545SHajimu UMEMOTO 		 *
67833841545SHajimu UMEMOTO 		 * Note that packets with unspecified IPv6 destination is
67933841545SHajimu UMEMOTO 		 * already dropped in ip6_input.
68033841545SHajimu UMEMOTO 		 */
68133841545SHajimu UMEMOTO 		if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
68233841545SHajimu UMEMOTO 			/* XXX stat */
68333841545SHajimu UMEMOTO 			goto drop;
68433841545SHajimu UMEMOTO 		}
6851d7ee746SKurt Lidl 		iptos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
686b287c6c7SBjoern A. Zeeb 	}
68704d3a452SHajimu UMEMOTO #endif
688b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
689b287c6c7SBjoern A. Zeeb 	else
690b287c6c7SBjoern A. Zeeb #endif
691b287c6c7SBjoern A. Zeeb #ifdef INET
692b287c6c7SBjoern A. Zeeb 	{
693df8bae1dSRodney W. Grimes 		/*
694df8bae1dSRodney W. Grimes 		 * Get IP and TCP header together in first mbuf.
695df8bae1dSRodney W. Grimes 		 * Note: IP leaves IP header in first mbuf.
696df8bae1dSRodney W. Grimes 		 */
697fb59c426SYoshinobu Inoue 		if (off0 > sizeof (struct ip)) {
698105bd211SGleb Smirnoff 			ip_stripoptions(m);
699fb59c426SYoshinobu Inoue 			off0 = sizeof(struct ip);
700fb59c426SYoshinobu Inoue 		}
701df8bae1dSRodney W. Grimes 		if (m->m_len < sizeof (struct tcpiphdr)) {
7024dfdffe9SAndre Oppermann 			if ((m = m_pullup(m, sizeof (struct tcpiphdr)))
7034dfdffe9SAndre Oppermann 			    == NULL) {
70478b50714SRobert Watson 				TCPSTAT_INC(tcps_rcvshort);
7058f5a8818SKevin Lo 				return (IPPROTO_DONE);
706df8bae1dSRodney W. Grimes 			}
707df8bae1dSRodney W. Grimes 		}
708fb59c426SYoshinobu Inoue 		ip = mtod(m, struct ip *);
709db4f9cc7SJonathan Lemon 		th = (struct tcphdr *)((caddr_t)ip + off0);
7108ad458a4SGleb Smirnoff 		tlen = ntohs(ip->ip_len) - off0;
711df8bae1dSRodney W. Grimes 
7121d7ee746SKurt Lidl 		iptos = ip->ip_tos;
713db4f9cc7SJonathan Lemon 		if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
714db4f9cc7SJonathan Lemon 			if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
715db4f9cc7SJonathan Lemon 				th->th_sum = m->m_pkthdr.csum_data;
716db4f9cc7SJonathan Lemon 			else
717db4f9cc7SJonathan Lemon 				th->th_sum = in_pseudo(ip->ip_src.s_addr,
718c068736aSJeffrey Hsu 				    ip->ip_dst.s_addr,
7198f134647SGleb Smirnoff 				    htonl(m->m_pkthdr.csum_data + tlen +
720c068736aSJeffrey Hsu 				    IPPROTO_TCP));
721db4f9cc7SJonathan Lemon 			th->th_sum ^= 0xffff;
722db4f9cc7SJonathan Lemon 		} else {
7238f134647SGleb Smirnoff 			struct ipovly *ipov = (struct ipovly *)ip;
7248f134647SGleb Smirnoff 
725df8bae1dSRodney W. Grimes 			/*
726df8bae1dSRodney W. Grimes 			 * Checksum extended TCP header and data.
727df8bae1dSRodney W. Grimes 			 */
7288f134647SGleb Smirnoff 			len = off0 + tlen;
729c4556b2fSAndrey V. Elsukov 			ipttl = ip->ip_ttl;
730fb59c426SYoshinobu Inoue 			bzero(ipov->ih_x1, sizeof(ipov->ih_x1));
7318f134647SGleb Smirnoff 			ipov->ih_len = htons(tlen);
732fb59c426SYoshinobu Inoue 			th->th_sum = in_cksum(m, len);
73357f60867SMark Johnston 			/* Reset length for SDT probes. */
7341d7ee746SKurt Lidl 			ip->ip_len = htons(len);
7351d7ee746SKurt Lidl 			/* Reset TOS bits */
7361d7ee746SKurt Lidl 			ip->ip_tos = iptos;
7371d7ee746SKurt Lidl 			/* Re-initialization for later version check */
738c4556b2fSAndrey V. Elsukov 			ip->ip_ttl = ipttl;
7391d7ee746SKurt Lidl 			ip->ip_v = IPVERSION;
740b2fe54bcSAndrey V. Elsukov 			ip->ip_hl = off0 >> 2;
741db4f9cc7SJonathan Lemon 		}
74257f60867SMark Johnston 
743fb59c426SYoshinobu Inoue 		if (th->th_sum) {
74478b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvbadsum);
745df8bae1dSRodney W. Grimes 			goto drop;
746df8bae1dSRodney W. Grimes 		}
747fb59c426SYoshinobu Inoue 	}
748b287c6c7SBjoern A. Zeeb #endif /* INET */
749df8bae1dSRodney W. Grimes 
750df8bae1dSRodney W. Grimes 	/*
751df8bae1dSRodney W. Grimes 	 * Check that TCP offset makes sense,
752df8bae1dSRodney W. Grimes 	 * pull out TCP options and adjust length.		XXX
753df8bae1dSRodney W. Grimes 	 */
754fb59c426SYoshinobu Inoue 	off = th->th_off << 2;
755df8bae1dSRodney W. Grimes 	if (off < sizeof (struct tcphdr) || off > tlen) {
75678b50714SRobert Watson 		TCPSTAT_INC(tcps_rcvbadoff);
757df8bae1dSRodney W. Grimes 		goto drop;
758df8bae1dSRodney W. Grimes 	}
759fb59c426SYoshinobu Inoue 	tlen -= off;	/* tlen is used instead of ti->ti_len */
760df8bae1dSRodney W. Grimes 	if (off > sizeof (struct tcphdr)) {
76104d3a452SHajimu UMEMOTO #ifdef INET6
762b287c6c7SBjoern A. Zeeb 		if (isipv6) {
763a4adf6ccSBjoern A. Zeeb 			if (m->m_len < off0 + off) {
7644e619b17SBjoern A. Zeeb 				m = m_pullup(m, off0 + off);
7654e619b17SBjoern A. Zeeb 				if (m == NULL) {
7664e619b17SBjoern A. Zeeb 					TCPSTAT_INC(tcps_rcvshort);
7674e619b17SBjoern A. Zeeb 					return (IPPROTO_DONE);
7684e619b17SBjoern A. Zeeb 				}
769a4adf6ccSBjoern A. Zeeb 			}
770fb59c426SYoshinobu Inoue 			ip6 = mtod(m, struct ip6_hdr *);
771fb59c426SYoshinobu Inoue 			th = (struct tcphdr *)((caddr_t)ip6 + off0);
772b287c6c7SBjoern A. Zeeb 		}
77304d3a452SHajimu UMEMOTO #endif
774b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
775b287c6c7SBjoern A. Zeeb 		else
776b287c6c7SBjoern A. Zeeb #endif
777b287c6c7SBjoern A. Zeeb #ifdef INET
778b287c6c7SBjoern A. Zeeb 		{
779df8bae1dSRodney W. Grimes 			if (m->m_len < sizeof(struct ip) + off) {
780c068736aSJeffrey Hsu 				if ((m = m_pullup(m, sizeof (struct ip) + off))
7814dfdffe9SAndre Oppermann 				    == NULL) {
78278b50714SRobert Watson 					TCPSTAT_INC(tcps_rcvshort);
7838f5a8818SKevin Lo 					return (IPPROTO_DONE);
784df8bae1dSRodney W. Grimes 				}
785fb59c426SYoshinobu Inoue 				ip = mtod(m, struct ip *);
786fb59c426SYoshinobu Inoue 				th = (struct tcphdr *)((caddr_t)ip + off0);
787fb59c426SYoshinobu Inoue 			}
788df8bae1dSRodney W. Grimes 		}
789b287c6c7SBjoern A. Zeeb #endif
790df8bae1dSRodney W. Grimes 		optlen = off - sizeof (struct tcphdr);
791fb59c426SYoshinobu Inoue 		optp = (u_char *)(th + 1);
792df8bae1dSRodney W. Grimes 	}
793fb59c426SYoshinobu Inoue 	thflags = th->th_flags;
794df8bae1dSRodney W. Grimes 
795e46cd3d4SDag-Erling Smørgrav 	/*
796df8bae1dSRodney W. Grimes 	 * Convert TCP protocol specific fields to host format.
797df8bae1dSRodney W. Grimes 	 */
7982903309aSAttilio Rao 	tcp_fields_to_host(th);
799df8bae1dSRodney W. Grimes 
800df8bae1dSRodney W. Grimes 	/*
801794235b7SAndre Oppermann 	 * Delay dropping TCP, IP headers, IPv6 ext headers, and TCP options.
802755c1f07SAndras Olah 	 */
803fb59c426SYoshinobu Inoue 	drop_hdrlen = off0 + off;
804755c1f07SAndras Olah 
805755c1f07SAndras Olah 	/*
8068d573cc1SAndre Oppermann 	 * Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain.
8078d573cc1SAndre Oppermann 	 */
808b8056faeSGleb Smirnoff         if (
809b8056faeSGleb Smirnoff #ifdef INET6
810b8056faeSGleb Smirnoff 	    (isipv6 && (m->m_flags & M_IP6_NEXTHOP))
811b8056faeSGleb Smirnoff #ifdef INET
812b8056faeSGleb Smirnoff 	    || (!isipv6 && (m->m_flags & M_IP_NEXTHOP))
813b8056faeSGleb Smirnoff #endif
814b8056faeSGleb Smirnoff #endif
815b8056faeSGleb Smirnoff #if defined(INET) && !defined(INET6)
816b8056faeSGleb Smirnoff 	    (m->m_flags & M_IP_NEXTHOP)
817b8056faeSGleb Smirnoff #endif
818b8056faeSGleb Smirnoff 	    )
8199b932e9eSAndre Oppermann 		fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
8209b932e9eSAndre Oppermann 
821ce7ad664SEd Maste findpcb:
8228a006adbSBjoern A. Zeeb #ifdef INET6
8238a006adbSBjoern A. Zeeb 	if (isipv6 && fwd_tag != NULL) {
8248a006adbSBjoern A. Zeeb 		struct sockaddr_in6 *next_hop6;
8258a006adbSBjoern A. Zeeb 
8268a006adbSBjoern A. Zeeb 		next_hop6 = (struct sockaddr_in6 *)(fwd_tag + 1);
8278a006adbSBjoern A. Zeeb 		/*
8288a006adbSBjoern A. Zeeb 		 * Transparently forwarded. Pretend to be the destination.
8298a006adbSBjoern A. Zeeb 		 * Already got one like this?
8308a006adbSBjoern A. Zeeb 		 */
8318a006adbSBjoern A. Zeeb 		inp = in6_pcblookup_mbuf(&V_tcbinfo,
8328a006adbSBjoern A. Zeeb 		    &ip6->ip6_src, th->th_sport, &ip6->ip6_dst, th->th_dport,
8338a006adbSBjoern A. Zeeb 		    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif, m);
8348a006adbSBjoern A. Zeeb 		if (!inp) {
8358a006adbSBjoern A. Zeeb 			/*
8368a006adbSBjoern A. Zeeb 			 * It's new.  Try to find the ambushing socket.
8378a006adbSBjoern A. Zeeb 			 * Because we've rewritten the destination address,
8388a006adbSBjoern A. Zeeb 			 * any hardware-generated hash is ignored.
8398a006adbSBjoern A. Zeeb 			 */
8408a006adbSBjoern A. Zeeb 			inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_src,
8418a006adbSBjoern A. Zeeb 			    th->th_sport, &next_hop6->sin6_addr,
8428a006adbSBjoern A. Zeeb 			    next_hop6->sin6_port ? ntohs(next_hop6->sin6_port) :
8438a006adbSBjoern A. Zeeb 			    th->th_dport, INPLOOKUP_WILDCARD |
8448a006adbSBjoern A. Zeeb 			    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif);
8458a006adbSBjoern A. Zeeb 		}
846c1de64a4SAndrey V. Elsukov 	} else if (isipv6) {
8478a006adbSBjoern A. Zeeb 		inp = in6_pcblookup_mbuf(&V_tcbinfo, &ip6->ip6_src,
8488a006adbSBjoern A. Zeeb 		    th->th_sport, &ip6->ip6_dst, th->th_dport,
8498a006adbSBjoern A. Zeeb 		    INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB,
8508a006adbSBjoern A. Zeeb 		    m->m_pkthdr.rcvif, m);
8518a006adbSBjoern A. Zeeb 	}
8528a006adbSBjoern A. Zeeb #endif /* INET6 */
8538a006adbSBjoern A. Zeeb #if defined(INET6) && defined(INET)
8548a006adbSBjoern A. Zeeb 	else
8558a006adbSBjoern A. Zeeb #endif
8568a006adbSBjoern A. Zeeb #ifdef INET
8578a006adbSBjoern A. Zeeb 	if (fwd_tag != NULL) {
8589b932e9eSAndre Oppermann 		struct sockaddr_in *next_hop;
8599b932e9eSAndre Oppermann 
8609b932e9eSAndre Oppermann 		next_hop = (struct sockaddr_in *)(fwd_tag+1);
861f9e354dfSJulian Elischer 		/*
8622b25acc1SLuigi Rizzo 		 * Transparently forwarded. Pretend to be the destination.
863f9e354dfSJulian Elischer 		 * already got one like this?
864f9e354dfSJulian Elischer 		 */
865d3c1f003SRobert Watson 		inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src, th->th_sport,
866fa046d87SRobert Watson 		    ip->ip_dst, th->th_dport, INPLOOKUP_WLOCKPCB,
867d3c1f003SRobert Watson 		    m->m_pkthdr.rcvif, m);
868fa046d87SRobert Watson 		if (!inp) {
869fa046d87SRobert Watson 			/*
870fa046d87SRobert Watson 			 * It's new.  Try to find the ambushing socket.
871d3c1f003SRobert Watson 			 * Because we've rewritten the destination address,
872d3c1f003SRobert Watson 			 * any hardware-generated hash is ignored.
873fa046d87SRobert Watson 			 */
874fa046d87SRobert Watson 			inp = in_pcblookup(&V_tcbinfo, ip->ip_src,
875fa046d87SRobert Watson 			    th->th_sport, next_hop->sin_addr,
876fa046d87SRobert Watson 			    next_hop->sin_port ? ntohs(next_hop->sin_port) :
877fa046d87SRobert Watson 			    th->th_dport, INPLOOKUP_WILDCARD |
878fa046d87SRobert Watson 			    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif);
879f9e354dfSJulian Elischer 		}
880b10fbdeaSAndre Oppermann 	} else
881d3c1f003SRobert Watson 		inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src,
882fa046d87SRobert Watson 		    th->th_sport, ip->ip_dst, th->th_dport,
883fa046d87SRobert Watson 		    INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB,
884d3c1f003SRobert Watson 		    m->m_pkthdr.rcvif, m);
8858a006adbSBjoern A. Zeeb #endif /* INET */
886f9e354dfSJulian Elischer 
887df8bae1dSRodney W. Grimes 	/*
888574b6964SAndre Oppermann 	 * If the INPCB does not exist then all data in the incoming
889574b6964SAndre Oppermann 	 * segment is discarded and an appropriate RST is sent back.
8908b07e49aSJulian Elischer 	 * XXX MRT Send RST using which routing table?
891df8bae1dSRodney W. Grimes 	 */
892816a3d83SPoul-Henning Kamp 	if (inp == NULL) {
893574b6964SAndre Oppermann 		/*
894574b6964SAndre Oppermann 		 * Log communication attempts to ports that are not
895574b6964SAndre Oppermann 		 * in use.
896574b6964SAndre Oppermann 		 */
897334fc582SBjoern A. Zeeb 		if ((V_tcp_log_in_vain == 1 && (thflags & TH_SYN)) ||
898334fc582SBjoern A. Zeeb 		    V_tcp_log_in_vain == 2) {
899b7d747ecSAndre Oppermann 			if ((s = tcp_log_vain(NULL, th, (void *)ip, ip6)))
900df541e5fSAndre Oppermann 				log(LOG_INFO, "%s; %s: Connection attempt "
901df541e5fSAndre Oppermann 				    "to closed port\n", s, __func__);
9022e4e1b4cSGeoff Rehmet 		}
903574b6964SAndre Oppermann 		/*
904574b6964SAndre Oppermann 		 * When blackholing do not respond with a RST but
905574b6964SAndre Oppermann 		 * completely ignore the segment and drop it.
906574b6964SAndre Oppermann 		 */
907603724d3SBjoern A. Zeeb 		if ((V_blackhole == 1 && (thflags & TH_SYN)) ||
908603724d3SBjoern A. Zeeb 		    V_blackhole == 2)
9091929eae1SAndre Oppermann 			goto dropunlock;
910574b6964SAndre Oppermann 
911a57815efSBosko Milekic 		rstreason = BANDLIM_RST_CLOSEDPORT;
912a57815efSBosko Milekic 		goto dropwithreset;
913816a3d83SPoul-Henning Kamp 	}
914fa046d87SRobert Watson 	INP_WLOCK_ASSERT(inp);
915f5cf1e5fSJulien Charbon 	/*
916f5cf1e5fSJulien Charbon 	 * While waiting for inp lock during the lookup, another thread
917f5cf1e5fSJulien Charbon 	 * can have dropped the inpcb, in which case we need to loop back
918f5cf1e5fSJulien Charbon 	 * and try to find a new inpcb to deliver to.
919f5cf1e5fSJulien Charbon 	 */
920f5cf1e5fSJulien Charbon 	if (inp->inp_flags & INP_DROPPED) {
921f5cf1e5fSJulien Charbon 		INP_WUNLOCK(inp);
922f5cf1e5fSJulien Charbon 		inp = NULL;
923f5cf1e5fSJulien Charbon 		goto findpcb;
924f5cf1e5fSJulien Charbon 	}
925c2529042SHans Petter Selasky 	if ((inp->inp_flowtype == M_HASHTYPE_NONE) &&
926c2529042SHans Petter Selasky 	    (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) &&
927c2529042SHans Petter Selasky 	    ((inp->inp_socket == NULL) ||
928c2529042SHans Petter Selasky 	    (inp->inp_socket->so_options & SO_ACCEPTCONN) == 0)) {
92980cb9f21SKip Macy 		inp->inp_flowid = m->m_pkthdr.flowid;
9302f719932SAdrian Chadd 		inp->inp_flowtype = M_HASHTYPE_GET(m);
93180cb9f21SKip Macy 	}
932fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
933a2589465SKen Smith #ifdef INET6
934fcf59617SAndrey V. Elsukov 	if (isipv6 && IPSEC_ENABLED(ipv6) &&
935fcf59617SAndrey V. Elsukov 	    IPSEC_CHECK_POLICY(ipv6, m, inp) != 0) {
936a2589465SKen Smith 		goto dropunlock;
937a2589465SKen Smith 	}
938fcf59617SAndrey V. Elsukov #ifdef INET
939fcf59617SAndrey V. Elsukov 	else
940fcf59617SAndrey V. Elsukov #endif
941fcf59617SAndrey V. Elsukov #endif /* INET6 */
942fcf59617SAndrey V. Elsukov #ifdef INET
943fcf59617SAndrey V. Elsukov 	if (IPSEC_ENABLED(ipv4) &&
944fcf59617SAndrey V. Elsukov 	    IPSEC_CHECK_POLICY(ipv4, m, inp) != 0) {
945fcf59617SAndrey V. Elsukov 		goto dropunlock;
946fcf59617SAndrey V. Elsukov 	}
947fcf59617SAndrey V. Elsukov #endif /* INET */
948a2589465SKen Smith #endif /* IPSEC */
949a2589465SKen Smith 
9508d573cc1SAndre Oppermann 	/*
9518d573cc1SAndre Oppermann 	 * Check the minimum TTL for socket.
9528d573cc1SAndre Oppermann 	 */
95334f83c52SGeorge V. Neville-Neil 	if (inp->inp_ip_minttl != 0) {
95434f83c52SGeorge V. Neville-Neil #ifdef INET6
9552d8868dbSJonathan T. Looney 		if (isipv6) {
9562d8868dbSJonathan T. Looney 			if (inp->inp_ip_minttl > ip6->ip6_hlim)
957302ce8d6SAndre Oppermann 				goto dropunlock;
9582d8868dbSJonathan T. Looney 		} else
95934f83c52SGeorge V. Neville-Neil #endif
96034f83c52SGeorge V. Neville-Neil 		if (inp->inp_ip_minttl > ip->ip_ttl)
961302ce8d6SAndre Oppermann 			goto dropunlock;
96234f83c52SGeorge V. Neville-Neil 	}
963936cd18dSAndre Oppermann 
964340c35deSJonathan Lemon 	/*
965252ca428SRobert Watson 	 * A previous connection in TIMEWAIT state is supposed to catch stray
966252ca428SRobert Watson 	 * or duplicate segments arriving late.  If this segment was a
9670989f56cSRobert Watson 	 * legitimate new connection attempt, the old INPCB gets removed and
968252ca428SRobert Watson 	 * we can try again to find a listening socket.
969252ca428SRobert Watson 	 *
970fa046d87SRobert Watson 	 * At this point, due to earlier optimism, we may hold only an inpcb
971fa046d87SRobert Watson 	 * lock, and not the inpcbinfo write lock.  If so, we need to try to
972fa046d87SRobert Watson 	 * acquire it, or if that fails, acquire a reference on the inpcb,
973fa046d87SRobert Watson 	 * drop all locks, acquire a global write lock, and then re-acquire
974fa046d87SRobert Watson 	 * the inpcb lock.  We may at that point discover that another thread
975fa046d87SRobert Watson 	 * has tried to free the inpcb, in which case we need to loop back
976fa046d87SRobert Watson 	 * and try to find a new inpcb to deliver to.
977fa046d87SRobert Watson 	 *
978fa046d87SRobert Watson 	 * XXXRW: It may be time to rethink timewait locking.
979340c35deSJonathan Lemon 	 */
980ad71fe3cSRobert Watson 	if (inp->inp_flags & INP_TIMEWAIT) {
981340c35deSJonathan Lemon 		if (thflags & TH_SYN)
982f72167f4SAndre Oppermann 			tcp_dooptions(&to, optp, optlen, TO_SYN);
9838d573cc1SAndre Oppermann 		/*
9848d573cc1SAndre Oppermann 		 * NB: tcp_twcheck unlocks the INP and frees the mbuf.
9858d573cc1SAndre Oppermann 		 */
9862104448fSAndre Oppermann 		if (tcp_twcheck(inp, &to, th, m, tlen))
987340c35deSJonathan Lemon 			goto findpcb;
9888f5a8818SKevin Lo 		return (IPPROTO_DONE);
989340c35deSJonathan Lemon 	}
990794235b7SAndre Oppermann 	/*
991794235b7SAndre Oppermann 	 * The TCPCB may no longer exist if the connection is winding
992794235b7SAndre Oppermann 	 * down or it is in the CLOSED state.  Either way we drop the
993794235b7SAndre Oppermann 	 * segment and send an appropriate response.
994794235b7SAndre Oppermann 	 */
995df8bae1dSRodney W. Grimes 	tp = intotcpcb(inp);
996a160e630SAndre Oppermann 	if (tp == NULL || tp->t_state == TCPS_CLOSED) {
997a57815efSBosko Milekic 		rstreason = BANDLIM_RST_CLOSEDPORT;
998a57815efSBosko Milekic 		goto dropwithreset;
99909f81a46SBosko Milekic 	}
1000df8bae1dSRodney W. Grimes 
100109fe6320SNavdeep Parhar #ifdef TCP_OFFLOAD
100209fe6320SNavdeep Parhar 	if (tp->t_flags & TF_TOE) {
100309fe6320SNavdeep Parhar 		tcp_offload_input(tp, m);
100409fe6320SNavdeep Parhar 		m = NULL;	/* consumed by the TOE driver */
100509fe6320SNavdeep Parhar 		goto dropunlock;
100609fe6320SNavdeep Parhar 	}
100709fe6320SNavdeep Parhar #endif
100809fe6320SNavdeep Parhar 
1009c488362eSRobert Watson #ifdef MAC
10108501a69cSRobert Watson 	INP_WLOCK_ASSERT(inp);
101130d239bcSRobert Watson 	if (mac_inpcb_check_deliver(inp, m))
1012302ce8d6SAndre Oppermann 		goto dropunlock;
1013c488362eSRobert Watson #endif
1014a557af22SRobert Watson 	so = inp->inp_socket;
1015302ce8d6SAndre Oppermann 	KASSERT(so != NULL, ("%s: so == NULL", __func__));
1016610ee2f9SDavid Greenman #ifdef TCPDEBUG
1017df8bae1dSRodney W. Grimes 	if (so->so_options & SO_DEBUG) {
1018df8bae1dSRodney W. Grimes 		ostate = tp->t_state;
101910fe523eSMaxim Konovalov #ifdef INET6
10206f697424SBjoern A. Zeeb 		if (isipv6) {
1021540e8b7eSJeffrey Hsu 			bcopy((char *)ip6, (char *)tcp_saveipgen, sizeof(*ip6));
1022d30d90dcSMaxim Konovalov 		} else
10236f697424SBjoern A. Zeeb #endif
1024540e8b7eSJeffrey Hsu 			bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
1025fb59c426SYoshinobu Inoue 		tcp_savetcp = *th;
1026df8bae1dSRodney W. Grimes 	}
1027b287c6c7SBjoern A. Zeeb #endif /* TCPDEBUG */
1028db33b3e6SAndre Oppermann 	/*
1029db33b3e6SAndre Oppermann 	 * When the socket is accepting connections (the INPCB is in LISTEN
1030db33b3e6SAndre Oppermann 	 * state) we look into the SYN cache if this is a new connection
1031a7c7f2a7SJohn Baldwin 	 * attempt or the completion of a previous one.
1032db33b3e6SAndre Oppermann 	 */
103345274760SJonathan T. Looney 	KASSERT(tp->t_state == TCPS_LISTEN || !(so->so_options & SO_ACCEPTCONN),
103445274760SJonathan T. Looney 	    ("%s: so accepting but tp %p not listening", __func__, tp));
103545274760SJonathan T. Looney 	if (tp->t_state == TCPS_LISTEN && (so->so_options & SO_ACCEPTCONN)) {
1036540e8b7eSJeffrey Hsu 		struct in_conninfo inc;
1037540e8b7eSJeffrey Hsu 
10388bfb1918SAndre Oppermann 		bzero(&inc, sizeof(inc));
1039302ce8d6SAndre Oppermann #ifdef INET6
1040be2ac88cSJonathan Lemon 		if (isipv6) {
1041dcdb4371SBjoern A. Zeeb 			inc.inc_flags |= INC_ISIPV6;
10425dff1c38SMichael Tuexen 			if (inp->inp_inc.inc_flags & INC_IPV6MINMTU)
10435dff1c38SMichael Tuexen 				inc.inc_flags |= INC_IPV6MINMTU;
1044be2ac88cSJonathan Lemon 			inc.inc6_faddr = ip6->ip6_src;
1045be2ac88cSJonathan Lemon 			inc.inc6_laddr = ip6->ip6_dst;
1046302ce8d6SAndre Oppermann 		} else
1047302ce8d6SAndre Oppermann #endif
1048302ce8d6SAndre Oppermann 		{
1049be2ac88cSJonathan Lemon 			inc.inc_faddr = ip->ip_src;
1050be2ac88cSJonathan Lemon 			inc.inc_laddr = ip->ip_dst;
1051be2ac88cSJonathan Lemon 		}
1052be2ac88cSJonathan Lemon 		inc.inc_fport = th->th_sport;
1053be2ac88cSJonathan Lemon 		inc.inc_lport = th->th_dport;
10547973fba3SJulian Elischer 		inc.inc_fibnum = so->so_fibnum;
1055be2ac88cSJonathan Lemon 
1056fb59c426SYoshinobu Inoue 		/*
10578d573cc1SAndre Oppermann 		 * Check for an existing connection attempt in syncache if
10588d573cc1SAndre Oppermann 		 * the flag is only ACK.  A successful lookup creates a new
10598d573cc1SAndre Oppermann 		 * socket appended to the listen queue in SYN_RECEIVED state.
1060fb59c426SYoshinobu Inoue 		 */
1061be2ac88cSJonathan Lemon 		if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) {
1062a7c7f2a7SJohn Baldwin 
1063bf6d304aSAndre Oppermann 			/*
1064bf6d304aSAndre Oppermann 			 * Parse the TCP options here because
1065bf6d304aSAndre Oppermann 			 * syncookies need access to the reflected
1066bf6d304aSAndre Oppermann 			 * timestamp.
1067bf6d304aSAndre Oppermann 			 */
1068bf6d304aSAndre Oppermann 			tcp_dooptions(&to, optp, optlen, 0);
10699fa198beSAndre Oppermann 			/*
10709fa198beSAndre Oppermann 			 * NB: syncache_expand() doesn't unlock
10719fa198beSAndre Oppermann 			 * inp and tcpinfo locks.
10729fa198beSAndre Oppermann 			 */
1073fcf59617SAndrey V. Elsukov 			rstreason = syncache_expand(&inc, &to, th, &so, m);
1074fcf59617SAndrey V. Elsukov 			if (rstreason < 0) {
1075fcf59617SAndrey V. Elsukov 				/*
1076fcf59617SAndrey V. Elsukov 				 * A failing TCP MD5 signature comparison
1077fcf59617SAndrey V. Elsukov 				 * must result in the segment being dropped
1078fcf59617SAndrey V. Elsukov 				 * and must not produce any response back
1079fcf59617SAndrey V. Elsukov 				 * to the sender.
1080fcf59617SAndrey V. Elsukov 				 */
1081fcf59617SAndrey V. Elsukov 				goto dropunlock;
1082fcf59617SAndrey V. Elsukov 			} else if (rstreason == 0) {
10834195b4afSPaul Traina 				/*
1084e207f800SAndre Oppermann 				 * No syncache entry or ACK was not
1085be2ac88cSJonathan Lemon 				 * for our SYN/ACK.  Send a RST.
10868d573cc1SAndre Oppermann 				 * NB: syncache did its own logging
10878d573cc1SAndre Oppermann 				 * of the failure cause.
10884195b4afSPaul Traina 				 */
1089be2ac88cSJonathan Lemon 				rstreason = BANDLIM_RST_OPENPORT;
1090be2ac88cSJonathan Lemon 				goto dropwithreset;
1091be2ac88cSJonathan Lemon 			}
109209c305ebSPatrick Kelsey tfo_socket_result:
1093f76fcf6dSJeffrey Hsu 			if (so == NULL) {
1094be2ac88cSJonathan Lemon 				/*
1095e207f800SAndre Oppermann 				 * We completed the 3-way handshake
1096e207f800SAndre Oppermann 				 * but could not allocate a socket
1097e207f800SAndre Oppermann 				 * either due to memory shortage,
1098e207f800SAndre Oppermann 				 * listen queue length limits or
1099a160e630SAndre Oppermann 				 * global socket limits.  Send RST
1100a160e630SAndre Oppermann 				 * or wait and have the remote end
1101a160e630SAndre Oppermann 				 * retransmit the ACK for another
1102a160e630SAndre Oppermann 				 * try.
1103be2ac88cSJonathan Lemon 				 */
1104a160e630SAndre Oppermann 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1105a160e630SAndre Oppermann 					log(LOG_DEBUG, "%s; %s: Listen socket: "
11068d573cc1SAndre Oppermann 					    "Socket allocation failed due to "
11078d573cc1SAndre Oppermann 					    "limits or memory shortage, %s\n",
1108ac957cd2SJulian Elischer 					    s, __func__,
1109ac957cd2SJulian Elischer 					    V_tcp_sc_rst_sock_fail ?
1110ac957cd2SJulian Elischer 					    "sending RST" : "try again");
1111603724d3SBjoern A. Zeeb 				if (V_tcp_sc_rst_sock_fail) {
1112e207f800SAndre Oppermann 					rstreason = BANDLIM_UNLIMITED;
1113e207f800SAndre Oppermann 					goto dropwithreset;
1114a160e630SAndre Oppermann 				} else
1115a160e630SAndre Oppermann 					goto dropunlock;
1116f76fcf6dSJeffrey Hsu 			}
1117be2ac88cSJonathan Lemon 			/*
1118be2ac88cSJonathan Lemon 			 * Socket is created in state SYN_RECEIVED.
11198d573cc1SAndre Oppermann 			 * Unlock the listen socket, lock the newly
11208d573cc1SAndre Oppermann 			 * created socket and update the tp variable.
1121be2ac88cSJonathan Lemon 			 */
11228501a69cSRobert Watson 			INP_WUNLOCK(inp);	/* listen socket */
1123be2ac88cSJonathan Lemon 			inp = sotoinpcb(so);
1124ff9b006dSJulien Charbon 			/*
1125ff9b006dSJulien Charbon 			 * New connection inpcb is already locked by
1126ff9b006dSJulien Charbon 			 * syncache_expand().
1127ff9b006dSJulien Charbon 			 */
1128ff9b006dSJulien Charbon 			INP_WLOCK_ASSERT(inp);
1129be2ac88cSJonathan Lemon 			tp = intotcpcb(inp);
11308d573cc1SAndre Oppermann 			KASSERT(tp->t_state == TCPS_SYN_RECEIVED,
11318d573cc1SAndre Oppermann 			    ("%s: ", __func__));
1132be2ac88cSJonathan Lemon 			/*
1133302ce8d6SAndre Oppermann 			 * Process the segment and the data it
1134302ce8d6SAndre Oppermann 			 * contains.  tcp_do_segment() consumes
1135302ce8d6SAndre Oppermann 			 * the mbuf chain and unlocks the inpcb.
1136302ce8d6SAndre Oppermann 			 */
11376138da62SMichael Tuexen 			TCP_PROBE5(receive, NULL, tp, m, tp, th);
113855bceb1eSRandall Stewart 			tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen,
11396573d758SMatt Macy 			    iptos);
11408f5a8818SKevin Lo 			return (IPPROTO_DONE);
1141be2ac88cSJonathan Lemon 		}
1142a160e630SAndre Oppermann 		/*
11438d573cc1SAndre Oppermann 		 * Segment flag validation for new connection attempts:
11448d573cc1SAndre Oppermann 		 *
1145a160e630SAndre Oppermann 		 * Our (SYN|ACK) response was rejected.
1146a160e630SAndre Oppermann 		 * Check with syncache and remove entry to prevent
1147a160e630SAndre Oppermann 		 * retransmits.
114819bc77c5SAndre Oppermann 		 *
114919bc77c5SAndre Oppermann 		 * NB: syncache_chkrst does its own logging of failure
115019bc77c5SAndre Oppermann 		 * causes.
1151a160e630SAndre Oppermann 		 */
1152a160e630SAndre Oppermann 		if (thflags & TH_RST) {
115393899d10SMichael Tuexen 			syncache_chkrst(&inc, th, m);
1154a160e630SAndre Oppermann 			goto dropunlock;
1155a160e630SAndre Oppermann 		}
1156a160e630SAndre Oppermann 		/*
1157a160e630SAndre Oppermann 		 * We can't do anything without SYN.
1158a160e630SAndre Oppermann 		 */
1159a160e630SAndre Oppermann 		if ((thflags & TH_SYN) == 0) {
1160a160e630SAndre Oppermann 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1161a160e630SAndre Oppermann 				log(LOG_DEBUG, "%s; %s: Listen socket: "
1162773673c1SAndre Oppermann 				    "SYN is missing, segment ignored\n",
11638d573cc1SAndre Oppermann 				    s, __func__);
116478b50714SRobert Watson 			TCPSTAT_INC(tcps_badsyn);
1165a160e630SAndre Oppermann 			goto dropunlock;
1166a160e630SAndre Oppermann 		}
1167a160e630SAndre Oppermann 		/*
1168a160e630SAndre Oppermann 		 * (SYN|ACK) is bogus on a listen socket.
1169a160e630SAndre Oppermann 		 */
1170fb59c426SYoshinobu Inoue 		if (thflags & TH_ACK) {
1171a160e630SAndre Oppermann 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1172a160e630SAndre Oppermann 				log(LOG_DEBUG, "%s; %s: Listen socket: "
11738d573cc1SAndre Oppermann 				    "SYN|ACK invalid, segment rejected\n",
11748d573cc1SAndre Oppermann 				    s, __func__);
1175a160e630SAndre Oppermann 			syncache_badack(&inc);	/* XXX: Not needed! */
117678b50714SRobert Watson 			TCPSTAT_INC(tcps_badsyn);
1177a57815efSBosko Milekic 			rstreason = BANDLIM_RST_OPENPORT;
1178a57815efSBosko Milekic 			goto dropwithreset;
11794195b4afSPaul Traina 		}
1180a160e630SAndre Oppermann 		/*
1181a160e630SAndre Oppermann 		 * If the drop_synfin option is enabled, drop all
1182a160e630SAndre Oppermann 		 * segments with both the SYN and FIN bits set.
1183a160e630SAndre Oppermann 		 * This prevents e.g. nmap from identifying the
1184a160e630SAndre Oppermann 		 * TCP/IP stack.
1185a160e630SAndre Oppermann 		 * XXX: Poor reasoning.  nmap has other methods
1186a160e630SAndre Oppermann 		 * and is constantly refining its stack detection
1187a160e630SAndre Oppermann 		 * strategies.
11888d573cc1SAndre Oppermann 		 * XXX: This is a violation of the TCP specification
1189a160e630SAndre Oppermann 		 * and was used by RFC1644.
1190a160e630SAndre Oppermann 		 */
1191603724d3SBjoern A. Zeeb 		if ((thflags & TH_FIN) && V_drop_synfin) {
1192a160e630SAndre Oppermann 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1193a160e630SAndre Oppermann 				log(LOG_DEBUG, "%s; %s: Listen socket: "
1194773673c1SAndre Oppermann 				    "SYN|FIN segment ignored (based on "
11958d573cc1SAndre Oppermann 				    "sysctl setting)\n", s, __func__);
119678b50714SRobert Watson 			TCPSTAT_INC(tcps_badsyn);
1197302ce8d6SAndre Oppermann 			goto dropunlock;
1198ebb0cbeaSPaul Traina 		}
1199be2ac88cSJonathan Lemon 		/*
1200be2ac88cSJonathan Lemon 		 * Segment's flags are (SYN) or (SYN|FIN).
1201a160e630SAndre Oppermann 		 *
1202a160e630SAndre Oppermann 		 * TH_PUSH, TH_URG, TH_ECE, TH_CWR are ignored
1203a160e630SAndre Oppermann 		 * as they do not affect the state of the TCP FSM.
1204a160e630SAndre Oppermann 		 * The data pointed to by TH_URG and th_urp is ignored.
1205be2ac88cSJonathan Lemon 		 */
1206a160e630SAndre Oppermann 		KASSERT((thflags & (TH_RST|TH_ACK)) == 0,
1207a160e630SAndre Oppermann 		    ("%s: Listen socket: TH_RST or TH_ACK set", __func__));
1208a160e630SAndre Oppermann 		KASSERT(thflags & (TH_SYN),
1209a160e630SAndre Oppermann 		    ("%s: Listen socket: TH_SYN not set", __func__));
121033841545SHajimu UMEMOTO #ifdef INET6
121133841545SHajimu UMEMOTO 		/*
121233841545SHajimu UMEMOTO 		 * If deprecated address is forbidden,
121333841545SHajimu UMEMOTO 		 * we do not accept SYN to deprecated interface
121433841545SHajimu UMEMOTO 		 * address to prevent any new inbound connection from
121533841545SHajimu UMEMOTO 		 * getting established.
121633841545SHajimu UMEMOTO 		 * When we do not accept SYN, we send a TCP RST,
121733841545SHajimu UMEMOTO 		 * with deprecated source address (instead of dropping
121833841545SHajimu UMEMOTO 		 * it).  We compromise it as it is much better for peer
121933841545SHajimu UMEMOTO 		 * to send a RST, and RST will be the final packet
122033841545SHajimu UMEMOTO 		 * for the exchange.
122133841545SHajimu UMEMOTO 		 *
122233841545SHajimu UMEMOTO 		 * If we do not forbid deprecated addresses, we accept
122333841545SHajimu UMEMOTO 		 * the SYN packet.  RFC2462 does not suggest dropping
122433841545SHajimu UMEMOTO 		 * SYN in this case.
122533841545SHajimu UMEMOTO 		 * If we decipher RFC2462 5.5.4, it says like this:
122633841545SHajimu UMEMOTO 		 * 1. use of deprecated addr with existing
122733841545SHajimu UMEMOTO 		 *    communication is okay - "SHOULD continue to be
122833841545SHajimu UMEMOTO 		 *    used"
122933841545SHajimu UMEMOTO 		 * 2. use of it with new communication:
123033841545SHajimu UMEMOTO 		 *   (2a) "SHOULD NOT be used if alternate address
123133841545SHajimu UMEMOTO 		 *        with sufficient scope is available"
123233841545SHajimu UMEMOTO 		 *   (2b) nothing mentioned otherwise.
123333841545SHajimu UMEMOTO 		 * Here we fall into (2b) case as we have no choice in
123433841545SHajimu UMEMOTO 		 * our source address selection - we must obey the peer.
123533841545SHajimu UMEMOTO 		 *
123633841545SHajimu UMEMOTO 		 * The wording in RFC2462 is confusing, and there are
123733841545SHajimu UMEMOTO 		 * multiple description text for deprecated address
123833841545SHajimu UMEMOTO 		 * handling - worse, they are not exactly the same.
123933841545SHajimu UMEMOTO 		 * I believe 5.5.4 is the best one, so we follow 5.5.4.
124033841545SHajimu UMEMOTO 		 */
1241603724d3SBjoern A. Zeeb 		if (isipv6 && !V_ip6_use_deprecated) {
124233841545SHajimu UMEMOTO 			struct in6_ifaddr *ia6;
124333841545SHajimu UMEMOTO 
12443e88eb90SAndrey V. Elsukov 			ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */);
12458c0fec80SRobert Watson 			if (ia6 != NULL &&
124633841545SHajimu UMEMOTO 			    (ia6->ia6_flags & IN6_IFF_DEPRECATED)) {
12478c0fec80SRobert Watson 				ifa_free(&ia6->ia_ifa);
1248a160e630SAndre Oppermann 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1249a160e630SAndre Oppermann 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
12508d573cc1SAndre Oppermann 					"Connection attempt to deprecated "
12518d573cc1SAndre Oppermann 					"IPv6 address rejected\n",
1252a160e630SAndre Oppermann 					s, __func__);
125333841545SHajimu UMEMOTO 				rstreason = BANDLIM_RST_OPENPORT;
125433841545SHajimu UMEMOTO 				goto dropwithreset;
125533841545SHajimu UMEMOTO 			}
125677d396fdSMaksim Yevmenkin 			if (ia6)
12578c0fec80SRobert Watson 				ifa_free(&ia6->ia_ifa);
125833841545SHajimu UMEMOTO 		}
1259b287c6c7SBjoern A. Zeeb #endif /* INET6 */
126065f28919SJesper Skriver 		/*
1261db33b3e6SAndre Oppermann 		 * Basic sanity checks on incoming SYN requests:
12628d573cc1SAndre Oppermann 		 *   Don't respond if the destination is a link layer
1263db33b3e6SAndre Oppermann 		 *	broadcast according to RFC1122 4.2.3.10, p. 104.
12648d573cc1SAndre Oppermann 		 *   If it is from this socket it must be forged.
12658d573cc1SAndre Oppermann 		 *   Don't respond if the source or destination is a
12668d573cc1SAndre Oppermann 		 *	global or subnet broad- or multicast address.
126793ec91baSCrist J. Clark 		 *   Note that it is quite possible to receive unicast
126893ec91baSCrist J. Clark 		 *	link-layer packets with a broadcast IP address. Use
126993ec91baSCrist J. Clark 		 *	in_broadcast() to find them.
1270be2ac88cSJonathan Lemon 		 */
12718d573cc1SAndre Oppermann 		if (m->m_flags & (M_BCAST|M_MCAST)) {
12728d573cc1SAndre Oppermann 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
12738d573cc1SAndre Oppermann 			    log(LOG_DEBUG, "%s; %s: Listen socket: "
12748d573cc1SAndre Oppermann 				"Connection attempt from broad- or multicast "
1275773673c1SAndre Oppermann 				"link layer address ignored\n", s, __func__);
1276302ce8d6SAndre Oppermann 			goto dropunlock;
12778d573cc1SAndre Oppermann 		}
1278db33b3e6SAndre Oppermann #ifdef INET6
1279b287c6c7SBjoern A. Zeeb 		if (isipv6) {
1280db33b3e6SAndre Oppermann 			if (th->th_dport == th->th_sport &&
1281a160e630SAndre Oppermann 			    IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &ip6->ip6_src)) {
1282a160e630SAndre Oppermann 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1283a160e630SAndre Oppermann 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
12848d573cc1SAndre Oppermann 					"Connection attempt to/from self "
1285773673c1SAndre Oppermann 					"ignored\n", s, __func__);
1286302ce8d6SAndre Oppermann 				goto dropunlock;
1287a160e630SAndre Oppermann 			}
1288be2ac88cSJonathan Lemon 			if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
1289a160e630SAndre Oppermann 			    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
1290a160e630SAndre Oppermann 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1291a160e630SAndre Oppermann 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
12928d573cc1SAndre Oppermann 					"Connection attempt from/to multicast "
1293773673c1SAndre Oppermann 					"address ignored\n", s, __func__);
1294302ce8d6SAndre Oppermann 				goto dropunlock;
1295a160e630SAndre Oppermann 			}
1296b287c6c7SBjoern A. Zeeb 		}
1297db33b3e6SAndre Oppermann #endif
1298b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
1299b287c6c7SBjoern A. Zeeb 		else
1300b287c6c7SBjoern A. Zeeb #endif
1301b287c6c7SBjoern A. Zeeb #ifdef INET
1302b287c6c7SBjoern A. Zeeb 		{
1303db33b3e6SAndre Oppermann 			if (th->th_dport == th->th_sport &&
1304a160e630SAndre Oppermann 			    ip->ip_dst.s_addr == ip->ip_src.s_addr) {
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 self "
1308773673c1SAndre Oppermann 					"ignored\n", s, __func__);
1309302ce8d6SAndre Oppermann 				goto dropunlock;
1310a160e630SAndre Oppermann 			}
1311be2ac88cSJonathan Lemon 			if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
1312be2ac88cSJonathan Lemon 			    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
13132ca2159fSCrist J. Clark 			    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
1314a160e630SAndre Oppermann 			    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
1315a160e630SAndre Oppermann 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1316a160e630SAndre Oppermann 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
13178d573cc1SAndre Oppermann 					"Connection attempt from/to broad- "
1318773673c1SAndre Oppermann 					"or multicast address ignored\n",
1319a160e630SAndre Oppermann 					s, __func__);
1320302ce8d6SAndre Oppermann 				goto dropunlock;
1321c068736aSJeffrey Hsu 			}
1322a160e630SAndre Oppermann 		}
1323b287c6c7SBjoern A. Zeeb #endif
1324be2ac88cSJonathan Lemon 		/*
1325db33b3e6SAndre Oppermann 		 * SYN appears to be valid.  Create compressed TCP state
1326db33b3e6SAndre Oppermann 		 * for syncache.
1327be2ac88cSJonathan Lemon 		 */
13283c653157SHartmut Brandt #ifdef TCPDEBUG
13293c653157SHartmut Brandt 		if (so->so_options & SO_DEBUG)
13303c653157SHartmut Brandt 			tcp_trace(TA_INPUT, ostate, tp,
13313c653157SHartmut Brandt 			    (void *)tcp_saveipgen, &tcp_savetcp, 0);
13323c653157SHartmut Brandt #endif
13332b9c9984SGeorge V. Neville-Neil 		TCP_PROBE3(debug__input, tp, th, m);
1334f72167f4SAndre Oppermann 		tcp_dooptions(&to, optp, optlen, TO_SYN);
1335fa49a964SMichael Tuexen 		if (syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL, iptos))
133609c305ebSPatrick Kelsey 			goto tfo_socket_result;
133718a75309SPatrick Kelsey 
1338be2ac88cSJonathan Lemon 		/*
13394d6e7130SAndre Oppermann 		 * Entry added to syncache and mbuf consumed.
1340a7c7f2a7SJohn Baldwin 		 * Only the listen socket is unlocked by syncache_add().
1341be2ac88cSJonathan Lemon 		 */
1342384a5c3cSAndrey V. Elsukov 		INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
13438f5a8818SKevin Lo 		return (IPPROTO_DONE);
1344982c1675SAndre Oppermann 	} else if (tp->t_state == TCPS_LISTEN) {
1345982c1675SAndre Oppermann 		/*
1346982c1675SAndre Oppermann 		 * When a listen socket is torn down the SO_ACCEPTCONN
1347982c1675SAndre Oppermann 		 * flag is removed first while connections are drained
1348982c1675SAndre Oppermann 		 * from the accept queue in a unlock/lock cycle of the
1349982c1675SAndre Oppermann 		 * ACCEPT_LOCK, opening a race condition allowing a SYN
1350982c1675SAndre Oppermann 		 * attempt go through unhandled.
1351982c1675SAndre Oppermann 		 */
1352982c1675SAndre Oppermann 		goto dropunlock;
1353f76fcf6dSJeffrey Hsu 	}
1354fcf59617SAndrey V. Elsukov #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1355fcf59617SAndrey V. Elsukov 	if (tp->t_flags & TF_SIGNATURE) {
1356fcf59617SAndrey V. Elsukov 		tcp_dooptions(&to, optp, optlen, thflags);
1357fcf59617SAndrey V. Elsukov 		if ((to.to_flags & TOF_SIGNATURE) == 0) {
1358fcf59617SAndrey V. Elsukov 			TCPSTAT_INC(tcps_sig_err_nosigopt);
13592903309aSAttilio Rao 			goto dropunlock;
13602903309aSAttilio Rao 		}
1361fcf59617SAndrey V. Elsukov 		if (!TCPMD5_ENABLED() ||
1362fcf59617SAndrey V. Elsukov 		    TCPMD5_INPUT(m, th, to.to_signature) != 0)
1363fcf59617SAndrey V. Elsukov 			goto dropunlock;
13642903309aSAttilio Rao 	}
13652903309aSAttilio Rao #endif
13662b9c9984SGeorge V. Neville-Neil 	TCP_PROBE5(receive, NULL, tp, m, tp, th);
136757f60867SMark Johnston 
1368302ce8d6SAndre Oppermann 	/*
13698d573cc1SAndre Oppermann 	 * Segment belongs to a connection in SYN_SENT, ESTABLISHED or later
13708d573cc1SAndre Oppermann 	 * state.  tcp_do_segment() always consumes the mbuf chain, unlocks
13718d573cc1SAndre Oppermann 	 * the inpcb, and unlocks pcbinfo.
1372302ce8d6SAndre Oppermann 	 */
13736573d758SMatt Macy 	tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen, iptos);
13748f5a8818SKevin Lo 	return (IPPROTO_DONE);
1375be2ac88cSJonathan Lemon 
1376302ce8d6SAndre Oppermann dropwithreset:
13772b9c9984SGeorge V. Neville-Neil 	TCP_PROBE5(receive, NULL, tp, m, tp, th);
137857f60867SMark Johnston 
1379014ea782SRobert Watson 	if (inp != NULL) {
1380302ce8d6SAndre Oppermann 		tcp_dropwithreset(m, th, tp, tlen, rstreason);
1381014ea782SRobert Watson 		INP_WUNLOCK(inp);
1382dd8ac7f9SRobert Watson 	} else
1383014ea782SRobert Watson 		tcp_dropwithreset(m, th, NULL, tlen, rstreason);
1384302ce8d6SAndre Oppermann 	m = NULL;	/* mbuf chain got consumed. */
1385014ea782SRobert Watson 	goto drop;
1386014ea782SRobert Watson 
1387302ce8d6SAndre Oppermann dropunlock:
138857f60867SMark Johnston 	if (m != NULL)
13892b9c9984SGeorge V. Neville-Neil 		TCP_PROBE5(receive, NULL, tp, m, tp, th);
139057f60867SMark Johnston 
13919fa198beSAndre Oppermann 	if (inp != NULL)
13928501a69cSRobert Watson 		INP_WUNLOCK(inp);
1393014ea782SRobert Watson 
1394302ce8d6SAndre Oppermann drop:
1395384a5c3cSAndrey V. Elsukov 	INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
1396a160e630SAndre Oppermann 	if (s != NULL)
1397a160e630SAndre Oppermann 		free(s, M_TCPLOG);
1398302ce8d6SAndre Oppermann 	if (m != NULL)
1399302ce8d6SAndre Oppermann 		m_freem(m);
14008f5a8818SKevin Lo 	return (IPPROTO_DONE);
1401302ce8d6SAndre Oppermann }
1402302ce8d6SAndre Oppermann 
1403e44c1887SSteven Hartland /*
1404e44c1887SSteven Hartland  * Automatic sizing of receive socket buffer.  Often the send
1405e44c1887SSteven Hartland  * buffer size is not optimally adjusted to the actual network
1406e44c1887SSteven Hartland  * conditions at hand (delay bandwidth product).  Setting the
1407e44c1887SSteven Hartland  * buffer size too small limits throughput on links with high
1408e44c1887SSteven Hartland  * bandwidth and high delay (eg. trans-continental/oceanic links).
1409e44c1887SSteven Hartland  *
1410e44c1887SSteven Hartland  * On the receive side the socket buffer memory is only rarely
1411e44c1887SSteven Hartland  * used to any significant extent.  This allows us to be much
1412e44c1887SSteven Hartland  * more aggressive in scaling the receive socket buffer.  For
1413e44c1887SSteven Hartland  * the case that the buffer space is actually used to a large
1414e44c1887SSteven Hartland  * extent and we run out of kernel memory we can simply drop
1415e44c1887SSteven Hartland  * the new segments; TCP on the sender will just retransmit it
1416e44c1887SSteven Hartland  * later.  Setting the buffer size too big may only consume too
1417e44c1887SSteven Hartland  * much kernel memory if the application doesn't read() from
1418e44c1887SSteven Hartland  * the socket or packet loss or reordering makes use of the
1419e44c1887SSteven Hartland  * reassembly queue.
1420e44c1887SSteven Hartland  *
1421e44c1887SSteven Hartland  * The criteria to step up the receive buffer one notch are:
1422e44c1887SSteven Hartland  *  1. Application has not set receive buffer size with
1423e44c1887SSteven Hartland  *     SO_RCVBUF. Setting SO_RCVBUF clears SB_AUTOSIZE.
1424560c0586SMichael Tuexen  *  2. the number of bytes received during 1/2 of an sRTT
1425560c0586SMichael Tuexen  *     is at least 3/8 of the current socket buffer size.
1426560c0586SMichael Tuexen  *  3. receive buffer size has not hit maximal automatic size;
1427e44c1887SSteven Hartland  *
1428560c0586SMichael Tuexen  * If all of the criteria are met we increaset the socket buffer
1429560c0586SMichael Tuexen  * by a 1/2 (bounded by the max). This allows us to keep ahead
1430560c0586SMichael Tuexen  * of slow-start but also makes it so our peer never gets limited
1431560c0586SMichael Tuexen  * by our rwnd which we then open up causing a burst.
1432560c0586SMichael Tuexen  *
1433560c0586SMichael Tuexen  * This algorithm does two steps per RTT at most and only if
1434e44c1887SSteven Hartland  * we receive a bulk stream w/o packet losses or reorderings.
1435e44c1887SSteven Hartland  * Shrinking the buffer during idle times is not necessary as
1436e44c1887SSteven Hartland  * it doesn't consume any memory when idle.
1437e44c1887SSteven Hartland  *
1438e44c1887SSteven Hartland  * TODO: Only step up if the application is actually serving
1439e44c1887SSteven Hartland  * the buffer to better manage the socket buffer resources.
1440e44c1887SSteven Hartland  */
1441e44c1887SSteven Hartland int
1442e44c1887SSteven Hartland tcp_autorcvbuf(struct mbuf *m, struct tcphdr *th, struct socket *so,
1443e44c1887SSteven Hartland     struct tcpcb *tp, int tlen)
1444e44c1887SSteven Hartland {
1445e44c1887SSteven Hartland 	int newsize = 0;
1446e44c1887SSteven Hartland 
1447e44c1887SSteven Hartland 	if (V_tcp_do_autorcvbuf && (so->so_rcv.sb_flags & SB_AUTOSIZE) &&
1448e44c1887SSteven Hartland 	    tp->t_srtt != 0 && tp->rfbuf_ts != 0 &&
1449e44c1887SSteven Hartland 	    TCP_TS_TO_TICKS(tcp_ts_getticks() - tp->rfbuf_ts) >
1450560c0586SMichael Tuexen 	    ((tp->t_srtt >> TCP_RTT_SHIFT)/2)) {
1451560c0586SMichael Tuexen 		if (tp->rfbuf_cnt > ((so->so_rcv.sb_hiwat / 2)/ 4 * 3) &&
1452e44c1887SSteven Hartland 		    so->so_rcv.sb_hiwat < V_tcp_autorcvbuf_max) {
1453560c0586SMichael Tuexen 			newsize = min((so->so_rcv.sb_hiwat + (so->so_rcv.sb_hiwat/2)), V_tcp_autorcvbuf_max);
1454e44c1887SSteven Hartland 		}
1455e44c1887SSteven Hartland 		TCP_PROBE6(receive__autoresize, NULL, tp, m, tp, th, newsize);
1456e44c1887SSteven Hartland 
1457e44c1887SSteven Hartland 		/* Start over with next RTT. */
1458e44c1887SSteven Hartland 		tp->rfbuf_ts = 0;
1459e44c1887SSteven Hartland 		tp->rfbuf_cnt = 0;
1460e44c1887SSteven Hartland 	} else {
1461e44c1887SSteven Hartland 		tp->rfbuf_cnt += tlen;	/* add up */
1462e44c1887SSteven Hartland 	}
1463e44c1887SSteven Hartland 	return (newsize);
1464e44c1887SSteven Hartland }
1465e44c1887SSteven Hartland 
146655bceb1eSRandall Stewart void
1467302ce8d6SAndre Oppermann tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
14686573d758SMatt Macy     struct tcpcb *tp, int drop_hdrlen, int tlen, uint8_t iptos)
1469302ce8d6SAndre Oppermann {
1470021eaf79SHiren Panchasara 	int thflags, acked, ourfinisacked, needoutput = 0, sack_changed;
1471302ce8d6SAndre Oppermann 	int rstreason, todrop, win;
14723ac12506SJonathan T. Looney 	uint32_t tiwin;
14734b7b743cSLawrence Stewart 	uint16_t nsegs;
147407dacf03SAndre Oppermann 	char *s;
147507dacf03SAndre Oppermann 	struct in_conninfo *inc;
1476c11a15bfSGleb Smirnoff 	struct mbuf *mfree;
1477302ce8d6SAndre Oppermann 	struct tcpopt to;
1478281a0fd4SPatrick Kelsey 	int tfo_syn;
1479302ce8d6SAndre Oppermann 
148014739780SMaxim Konovalov #ifdef TCPDEBUG
148114739780SMaxim Konovalov 	/*
148214739780SMaxim Konovalov 	 * The size of tcp_saveipgen must be the size of the max ip header,
148314739780SMaxim Konovalov 	 * now IPv6.
148414739780SMaxim Konovalov 	 */
148514739780SMaxim Konovalov 	u_char tcp_saveipgen[IP6_HDR_LEN];
148614739780SMaxim Konovalov 	struct tcphdr tcp_savetcp;
148714739780SMaxim Konovalov 	short ostate = 0;
148814739780SMaxim Konovalov #endif
1489302ce8d6SAndre Oppermann 	thflags = th->th_flags;
149007dacf03SAndre Oppermann 	inc = &tp->t_inpcb->inp_inc;
1491d64a46eaSLawrence Stewart 	tp->sackhint.last_sack_ack = 0;
1492021eaf79SHiren Panchasara 	sack_changed = 0;
14934b7b743cSLawrence Stewart 	nsegs = max(1, m->m_pkthdr.lro_nsegs);
1494d40c0d47SGleb Smirnoff 
1495d40c0d47SGleb Smirnoff 	NET_EPOCH_ASSERT();
14968501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
1497679d9708SAndre Oppermann 	KASSERT(tp->t_state > TCPS_LISTEN, ("%s: TCPS_LISTEN",
1498679d9708SAndre Oppermann 	    __func__));
1499679d9708SAndre Oppermann 	KASSERT(tp->t_state != TCPS_TIME_WAIT, ("%s: TCPS_TIME_WAIT",
1500679d9708SAndre Oppermann 	    __func__));
1501df8bae1dSRodney W. Grimes 
150286a996e6SHiren Panchasara #ifdef TCPPCAP
150386a996e6SHiren Panchasara 	/* Save segment, if requested. */
150486a996e6SHiren Panchasara 	tcp_pcap_add(th, m, &(tp->t_inpkts));
150586a996e6SHiren Panchasara #endif
15062529f56eSJonathan T. Looney 	TCP_LOG_EVENT(tp, th, &so->so_rcv, &so->so_snd, TCP_LOG_IN, 0,
15072529f56eSJonathan T. Looney 	    tlen, NULL, true);
150886a996e6SHiren Panchasara 
1509013f4df6SMichael Tuexen 	if ((thflags & TH_SYN) && (thflags & TH_FIN) && V_drop_synfin) {
1510013f4df6SMichael Tuexen 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1511013f4df6SMichael Tuexen 			log(LOG_DEBUG, "%s; %s: "
1512013f4df6SMichael Tuexen 			    "SYN|FIN segment ignored (based on "
1513013f4df6SMichael Tuexen 			    "sysctl setting)\n", s, __func__);
1514013f4df6SMichael Tuexen 			free(s, M_TCPLOG);
1515013f4df6SMichael Tuexen 		}
1516013f4df6SMichael Tuexen 		goto drop;
1517013f4df6SMichael Tuexen 	}
1518013f4df6SMichael Tuexen 
1519df8bae1dSRodney W. Grimes 	/*
1520ebfd7534SMichael Tuexen 	 * If a segment with the ACK-bit set arrives in the SYN-SENT state
1521ebfd7534SMichael Tuexen 	 * check SEQ.ACK first.
1522ebfd7534SMichael Tuexen 	 */
1523ebfd7534SMichael Tuexen 	if ((tp->t_state == TCPS_SYN_SENT) && (thflags & TH_ACK) &&
1524ebfd7534SMichael Tuexen 	    (SEQ_LEQ(th->th_ack, tp->iss) || SEQ_GT(th->th_ack, tp->snd_max))) {
1525ebfd7534SMichael Tuexen 		rstreason = BANDLIM_UNLIMITED;
1526ebfd7534SMichael Tuexen 		goto dropwithreset;
1527ebfd7534SMichael Tuexen 	}
1528ebfd7534SMichael Tuexen 
1529ebfd7534SMichael Tuexen 	/*
1530df8bae1dSRodney W. Grimes 	 * Segment received on connection.
1531df8bae1dSRodney W. Grimes 	 * Reset idle time and keep-alive timer.
1532e8949f74SAndre Oppermann 	 * XXX: This should be done after segment
1533e8949f74SAndre Oppermann 	 * validation to ignore broken/spoofed segs.
1534df8bae1dSRodney W. Grimes 	 */
15359b8b58e0SJonathan Lemon 	tp->t_rcvtime = ticks;
1536df8bae1dSRodney W. Grimes 
1537df8bae1dSRodney W. Grimes 	/*
1538c52102ddSHiren Panchasara 	 * Scale up the window into a 32-bit value.
1539e8949f74SAndre Oppermann 	 * For the SYN_SENT state the scale is zero.
1540464fcfbcSAndre Oppermann 	 */
1541464fcfbcSAndre Oppermann 	tiwin = th->th_win << tp->snd_scale;
1542adc56f5aSEdward Tomasz Napierala #ifdef STATS
1543adc56f5aSEdward Tomasz Napierala 	stats_voi_update_abs_ulong(tp->t_stats, VOI_TCP_FRWIN, tiwin);
1544adc56f5aSEdward Tomasz Napierala #endif
1545464fcfbcSAndre Oppermann 
1546464fcfbcSAndre Oppermann 	/*
1547f2512ba1SRui Paulo 	 * TCP ECN processing.
1548f2512ba1SRui Paulo 	 */
15493cf38784SMichael Tuexen 	if (tp->t_flags2 & TF2_ECN_PERMIT) {
1550ee97681eSMichael Tuexen 		if (thflags & TH_CWR) {
15513cf38784SMichael Tuexen 			tp->t_flags2 &= ~TF2_ECN_SND_ECE;
1552ee97681eSMichael Tuexen 			tp->t_flags |= TF_ACKNOW;
1553ee97681eSMichael Tuexen 		}
1554f2512ba1SRui Paulo 		switch (iptos & IPTOS_ECN_MASK) {
1555f2512ba1SRui Paulo 		case IPTOS_ECN_CE:
15563cf38784SMichael Tuexen 			tp->t_flags2 |= TF2_ECN_SND_ECE;
155778b50714SRobert Watson 			TCPSTAT_INC(tcps_ecn_ce);
1558f2512ba1SRui Paulo 			break;
1559f2512ba1SRui Paulo 		case IPTOS_ECN_ECT0:
156078b50714SRobert Watson 			TCPSTAT_INC(tcps_ecn_ect0);
1561f2512ba1SRui Paulo 			break;
1562f2512ba1SRui Paulo 		case IPTOS_ECN_ECT1:
156378b50714SRobert Watson 			TCPSTAT_INC(tcps_ecn_ect1);
1564f2512ba1SRui Paulo 			break;
1565f2512ba1SRui Paulo 		}
156664807b30SHiren Panchasara 
156764807b30SHiren Panchasara 		/* Process a packet differently from RFC3168. */
156864807b30SHiren Panchasara 		cc_ecnpkt_handler(tp, th, iptos);
156964807b30SHiren Panchasara 
1570dbc42409SLawrence Stewart 		/* Congestion experienced. */
1571dbc42409SLawrence Stewart 		if (thflags & TH_ECE) {
1572dbc42409SLawrence Stewart 			cc_cong_signal(tp, th, CC_ECN);
1573f2512ba1SRui Paulo 		}
1574f2512ba1SRui Paulo 	}
1575f2512ba1SRui Paulo 
1576f2512ba1SRui Paulo 	/*
1577f72167f4SAndre Oppermann 	 * Parse options on any incoming segment.
1578f72167f4SAndre Oppermann 	 */
1579302ce8d6SAndre Oppermann 	tcp_dooptions(&to, (u_char *)(th + 1),
1580302ce8d6SAndre Oppermann 	    (th->th_off << 2) - sizeof(struct tcphdr),
1581302ce8d6SAndre Oppermann 	    (thflags & TH_SYN) ? TO_SYN : 0);
1582f72167f4SAndre Oppermann 
1583fcf59617SAndrey V. Elsukov #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1584fcf59617SAndrey V. Elsukov 	if ((tp->t_flags & TF_SIGNATURE) != 0 &&
1585fcf59617SAndrey V. Elsukov 	    (to.to_flags & TOF_SIGNATURE) == 0) {
1586fcf59617SAndrey V. Elsukov 		TCPSTAT_INC(tcps_sig_err_sigopt);
1587fcf59617SAndrey V. Elsukov 		/* XXX: should drop? */
1588fcf59617SAndrey V. Elsukov 	}
1589fcf59617SAndrey V. Elsukov #endif
1590f72167f4SAndre Oppermann 	/*
1591f72167f4SAndre Oppermann 	 * If echoed timestamp is later than the current time,
1592bf6d304aSAndre Oppermann 	 * fall back to non RFC1323 RTT calculation.  Normalize
1593bf6d304aSAndre Oppermann 	 * timestamp if syncookies were used when this connection
1594bf6d304aSAndre Oppermann 	 * was established.
1595f72167f4SAndre Oppermann 	 */
1596bf6d304aSAndre Oppermann 	if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) {
1597e16fa5caSJohn-Mark Gurney 		to.to_tsecr -= tp->ts_offset;
1598d8951c8aSBjoern A. Zeeb 		if (TSTMP_GT(to.to_tsecr, tcp_ts_getticks()))
1599f72167f4SAndre Oppermann 			to.to_tsecr = 0;
160010d20c84SMatt Macy 		else if (tp->t_flags & TF_PREVVALID &&
160110d20c84SMatt Macy 			 tp->t_badrxtwin != 0 && SEQ_LT(to.to_tsecr, tp->t_badrxtwin))
160210d20c84SMatt Macy 			cc_cong_signal(tp, th, CC_RTO_ERR);
1603bf6d304aSAndre Oppermann 	}
160407dacf03SAndre Oppermann 	/*
160597d8d152SAndre Oppermann 	 * Process options only when we get SYN/ACK back. The SYN case
160697d8d152SAndre Oppermann 	 * for incoming connections is handled in tcp_syncache.
16075396d0f8SAndre Oppermann 	 * According to RFC1323 the window field in a SYN (i.e., a <SYN>
16085396d0f8SAndre Oppermann 	 * or <SYN,ACK>) segment itself is never scaled.
160997d8d152SAndre Oppermann 	 * XXX this is traditional behavior, may need to be cleaned up.
1610df8bae1dSRodney W. Grimes 	 */
16110a389eabSSimon L. B. Nielsen 	if (tp->t_state == TCPS_SYN_SENT && (thflags & TH_SYN)) {
1612464fcfbcSAndre Oppermann 		if ((to.to_flags & TOF_SCALE) &&
1613464fcfbcSAndre Oppermann 		    (tp->t_flags & TF_REQ_SCALE)) {
1614be2ac88cSJonathan Lemon 			tp->t_flags |= TF_RCVD_SCALE;
161502a1a643SAndre Oppermann 			tp->snd_scale = to.to_wscale;
1616be2ac88cSJonathan Lemon 		}
16175396d0f8SAndre Oppermann 		/*
16185396d0f8SAndre Oppermann 		 * Initial send window.  It will be updated with
16195396d0f8SAndre Oppermann 		 * the next incoming segment to the scaled value.
16205396d0f8SAndre Oppermann 		 */
16215396d0f8SAndre Oppermann 		tp->snd_wnd = th->th_win;
1622be2ac88cSJonathan Lemon 		if (to.to_flags & TOF_TS) {
1623be2ac88cSJonathan Lemon 			tp->t_flags |= TF_RCVD_TSTMP;
1624be2ac88cSJonathan Lemon 			tp->ts_recent = to.to_tsval;
1625d8951c8aSBjoern A. Zeeb 			tp->ts_recent_age = tcp_ts_getticks();
1626be2ac88cSJonathan Lemon 		}
1627be2ac88cSJonathan Lemon 		if (to.to_flags & TOF_MSS)
1628be2ac88cSJonathan Lemon 			tcp_mss(tp, to.to_mss);
16293529149eSAndre Oppermann 		if ((tp->t_flags & TF_SACK_PERMIT) &&
16303529149eSAndre Oppermann 		    (to.to_flags & TOF_SACKPERM) == 0)
16313529149eSAndre Oppermann 			tp->t_flags &= ~TF_SACK_PERMIT;
1632c560df6fSPatrick Kelsey 		if (IS_FASTOPEN(tp->t_flags)) {
1633a026a53aSMichael Tuexen 			if (to.to_flags & TOF_FASTOPEN) {
1634a026a53aSMichael Tuexen 				uint16_t mss;
1635a026a53aSMichael Tuexen 
1636a026a53aSMichael Tuexen 				if (to.to_flags & TOF_MSS)
1637a026a53aSMichael Tuexen 					mss = to.to_mss;
1638c560df6fSPatrick Kelsey 				else
1639a026a53aSMichael Tuexen 					if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0)
1640a026a53aSMichael Tuexen 						mss = TCP6_MSS;
1641a026a53aSMichael Tuexen 					else
1642a026a53aSMichael Tuexen 						mss = TCP_MSS;
1643a026a53aSMichael Tuexen 				tcp_fastopen_update_cache(tp, mss,
1644a026a53aSMichael Tuexen 				    to.to_tfo_len, to.to_tfo_cookie);
1645a026a53aSMichael Tuexen 			} else
1646c560df6fSPatrick Kelsey 				tcp_fastopen_disable_path(tp);
1647c560df6fSPatrick Kelsey 		}
16486d90faf3SPaul Saab 	}
16496d90faf3SPaul Saab 
1650df8bae1dSRodney W. Grimes 	/*
16514da9052aSMichael Tuexen 	 * If timestamps were negotiated during SYN/ACK they should
16524da9052aSMichael Tuexen 	 * appear on every segment during this session and vice versa.
16534da9052aSMichael Tuexen 	 */
16544da9052aSMichael Tuexen 	if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS)) {
16554da9052aSMichael Tuexen 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
16564da9052aSMichael Tuexen 			log(LOG_DEBUG, "%s; %s: Timestamp missing, "
16574da9052aSMichael Tuexen 			    "no action\n", s, __func__);
16584da9052aSMichael Tuexen 			free(s, M_TCPLOG);
16594da9052aSMichael Tuexen 		}
16604da9052aSMichael Tuexen 	}
16614da9052aSMichael Tuexen 	if (!(tp->t_flags & TF_RCVD_TSTMP) && (to.to_flags & TOF_TS)) {
16624da9052aSMichael Tuexen 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
16634da9052aSMichael Tuexen 			log(LOG_DEBUG, "%s; %s: Timestamp not expected, "
16644da9052aSMichael Tuexen 			    "no action\n", s, __func__);
16654da9052aSMichael Tuexen 			free(s, M_TCPLOG);
16664da9052aSMichael Tuexen 		}
16674da9052aSMichael Tuexen 	}
16684da9052aSMichael Tuexen 
16694da9052aSMichael Tuexen 	/*
1670df8bae1dSRodney W. Grimes 	 * Header prediction: check for the two common cases
1671df8bae1dSRodney W. Grimes 	 * of a uni-directional data xfer.  If the packet has
1672df8bae1dSRodney W. Grimes 	 * no control flags, is in-sequence, the window didn't
1673df8bae1dSRodney W. Grimes 	 * change and we're not retransmitting, it's a
1674df8bae1dSRodney W. Grimes 	 * candidate.  If the length is zero and the ack moved
1675df8bae1dSRodney W. Grimes 	 * forward, we're the sender side of the xfer.  Just
1676df8bae1dSRodney W. Grimes 	 * free the data acked & wake any higher level process
1677df8bae1dSRodney W. Grimes 	 * that was blocked waiting for space.  If the length
1678df8bae1dSRodney W. Grimes 	 * is non-zero and the ack didn't move, we're the
1679df8bae1dSRodney W. Grimes 	 * receiver side.  If we're getting packets in-order
1680df8bae1dSRodney W. Grimes 	 * (the reassembly queue is empty), add the data to
1681df8bae1dSRodney W. Grimes 	 * the socket buffer and note that we need a delayed ack.
1682a0292f23SGarrett Wollman 	 * Make sure that the hidden state-flags are also off.
1683c5ad39b9SAndre Oppermann 	 * Since we check for TCPS_ESTABLISHED first, it can only
1684a0292f23SGarrett Wollman 	 * be TH_NEEDSYN.
1685df8bae1dSRodney W. Grimes 	 */
1686df8bae1dSRodney W. Grimes 	if (tp->t_state == TCPS_ESTABLISHED &&
1687c5ad39b9SAndre Oppermann 	    th->th_seq == tp->rcv_nxt &&
1688fb59c426SYoshinobu Inoue 	    (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK &&
1689c5ad39b9SAndre Oppermann 	    tp->snd_nxt == tp->snd_max &&
1690c5ad39b9SAndre Oppermann 	    tiwin && tiwin == tp->snd_wnd &&
1691a0292f23SGarrett Wollman 	    ((tp->t_flags & (TF_NEEDSYN|TF_NEEDFIN)) == 0) &&
1692c28440dbSRandall Stewart 	    SEGQ_EMPTY(tp) &&
16934741bfcbSPatrick Kelsey 	    ((to.to_flags & TOF_TS) == 0 ||
1694c5ad39b9SAndre Oppermann 	     TSTMP_GEQ(to.to_tsval, tp->ts_recent)) ) {
1695df8bae1dSRodney W. Grimes 
1696df8bae1dSRodney W. Grimes 		/*
1697df8bae1dSRodney W. Grimes 		 * If last ACK falls within this segment's sequence numbers,
1698df8bae1dSRodney W. Grimes 		 * record the timestamp.
1699a0292f23SGarrett Wollman 		 * NOTE that the test is modified according to the latest
1700a0292f23SGarrett Wollman 		 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
1701df8bae1dSRodney W. Grimes 		 */
1702be2ac88cSJonathan Lemon 		if ((to.to_flags & TOF_TS) != 0 &&
1703fb59c426SYoshinobu Inoue 		    SEQ_LEQ(th->th_seq, tp->last_ack_sent)) {
1704d8951c8aSBjoern A. Zeeb 			tp->ts_recent_age = tcp_ts_getticks();
1705a0292f23SGarrett Wollman 			tp->ts_recent = to.to_tsval;
1706df8bae1dSRodney W. Grimes 		}
1707df8bae1dSRodney W. Grimes 
1708fb59c426SYoshinobu Inoue 		if (tlen == 0) {
1709fb59c426SYoshinobu Inoue 			if (SEQ_GT(th->th_ack, tp->snd_una) &&
1710fb59c426SYoshinobu Inoue 			    SEQ_LEQ(th->th_ack, tp->snd_max) &&
1711dbc42409SLawrence Stewart 			    !IN_RECOVERY(tp->t_flags) &&
1712fc30a251SAndre Oppermann 			    (to.to_flags & TOF_SACK) == 0 &&
1713dbc42409SLawrence Stewart 			    TAILQ_EMPTY(&tp->snd_holes)) {
1714df8bae1dSRodney W. Grimes 				/*
1715e8949f74SAndre Oppermann 				 * This is a pure ack for outstanding data.
1716df8bae1dSRodney W. Grimes 				 */
171778b50714SRobert Watson 				TCPSTAT_INC(tcps_predack);
1718252ca428SRobert Watson 
17199b8b58e0SJonathan Lemon 				/*
172010d20c84SMatt Macy 				 * "bad retransmit" recovery without timestamps.
17219b8b58e0SJonathan Lemon 				 */
172210d20c84SMatt Macy 				if ((to.to_flags & TOF_TS) == 0 &&
172310d20c84SMatt Macy 				    tp->t_rxtshift == 1 &&
1724672dc4aeSJohn Baldwin 				    tp->t_flags & TF_PREVVALID &&
17256dfb8b31SJohn Baldwin 				    (int)(ticks - tp->t_badrxtwin) < 0) {
1726dbc42409SLawrence Stewart 					cc_cong_signal(tp, th, CC_RTO_ERR);
17279b8b58e0SJonathan Lemon 				}
1728fa55172bSMatthew Dillon 
1729fa55172bSMatthew Dillon 				/*
1730fa55172bSMatthew Dillon 				 * Recalculate the transmit timer / rtt.
1731fa55172bSMatthew Dillon 				 *
1732fa55172bSMatthew Dillon 				 * Some boxes send broken timestamp replies
1733fa55172bSMatthew Dillon 				 * during the SYN+ACK phase, ignore
1734fa55172bSMatthew Dillon 				 * timestamps of 0 or we could calculate a
1735fa55172bSMatthew Dillon 				 * huge RTT and blow up the retransmit timer.
1736fa55172bSMatthew Dillon 				 */
1737fa55172bSMatthew Dillon 				if ((to.to_flags & TOF_TS) != 0 &&
1738fa55172bSMatthew Dillon 				    to.to_tsecr) {
17393ac12506SJonathan T. Looney 					uint32_t t;
1740d8951c8aSBjoern A. Zeeb 
1741d8951c8aSBjoern A. Zeeb 					t = tcp_ts_getticks() - to.to_tsecr;
1742d8951c8aSBjoern A. Zeeb 					if (!tp->t_rttlow || tp->t_rttlow > t)
1743d8951c8aSBjoern A. Zeeb 						tp->t_rttlow = t;
1744a0292f23SGarrett Wollman 					tcp_xmit_timer(tp,
1745d8951c8aSBjoern A. Zeeb 					    TCP_TS_TO_TICKS(t) + 1);
1746fa55172bSMatthew Dillon 				} else if (tp->t_rtttime &&
1747fa55172bSMatthew Dillon 				    SEQ_GT(th->th_ack, tp->t_rtseq)) {
1748eaf80179SAndre Oppermann 					if (!tp->t_rttlow ||
1749eaf80179SAndre Oppermann 					    tp->t_rttlow > ticks - tp->t_rtttime)
1750eaf80179SAndre Oppermann 						tp->t_rttlow = ticks - tp->t_rtttime;
1751c068736aSJeffrey Hsu 					tcp_xmit_timer(tp,
1752c068736aSJeffrey Hsu 							ticks - tp->t_rtttime);
1753fa55172bSMatthew Dillon 				}
1754dbc42409SLawrence Stewart 				acked = BYTES_THIS_ACK(tp, th);
175539bc9de5SLawrence Stewart 
1756bd79708dSJonathan T. Looney #ifdef TCP_HHOOK
175739bc9de5SLawrence Stewart 				/* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */
175839bc9de5SLawrence Stewart 				hhook_run_tcp_est_in(tp, th, &to);
1759bd79708dSJonathan T. Looney #endif
176039bc9de5SLawrence Stewart 
17614b7b743cSLawrence Stewart 				TCPSTAT_ADD(tcps_rcvackpack, nsegs);
176278b50714SRobert Watson 				TCPSTAT_ADD(tcps_rcvackbyte, acked);
1763df8bae1dSRodney W. Grimes 				sbdrop(&so->so_snd, acked);
17649d11646dSJeffrey Hsu 				if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
17659d11646dSJeffrey Hsu 				    SEQ_LEQ(th->th_ack, tp->snd_recover))
17669d11646dSJeffrey Hsu 					tp->snd_recover = th->th_ack - 1;
1767dbc42409SLawrence Stewart 
1768dbc42409SLawrence Stewart 				/*
1769dbc42409SLawrence Stewart 				 * Let the congestion control algorithm update
1770dbc42409SLawrence Stewart 				 * congestion control related information. This
1771dbc42409SLawrence Stewart 				 * typically means increasing the congestion
1772dbc42409SLawrence Stewart 				 * window.
1773dbc42409SLawrence Stewart 				 */
17744b7b743cSLawrence Stewart 				cc_ack_received(tp, th, nsegs, CC_ACK);
1775dbc42409SLawrence Stewart 
17769d11646dSJeffrey Hsu 				tp->snd_una = th->th_ack;
17771645d090SJeff Roberson 				/*
1778e8949f74SAndre Oppermann 				 * Pull snd_wl2 up to prevent seq wrap relative
17791645d090SJeff Roberson 				 * to th_ack.
17801645d090SJeff Roberson 				 */
1781cb942153SJeffrey Hsu 				tp->snd_wl2 = th->th_ack;
1782b5addd85SJeffrey Hsu 				tp->t_dupacks = 0;
1783df8bae1dSRodney W. Grimes 				m_freem(m);
1784df8bae1dSRodney W. Grimes 
1785df8bae1dSRodney W. Grimes 				/*
1786df8bae1dSRodney W. Grimes 				 * If all outstanding data are acked, stop
1787df8bae1dSRodney W. Grimes 				 * retransmit timer, otherwise restart timer
1788df8bae1dSRodney W. Grimes 				 * using current (possibly backed-off) value.
1789df8bae1dSRodney W. Grimes 				 * If process is waiting for space,
1790df8bae1dSRodney W. Grimes 				 * wakeup/selwakeup/signal.  If data
1791df8bae1dSRodney W. Grimes 				 * are ready to send, let tcp_output
1792df8bae1dSRodney W. Grimes 				 * decide between more output or persist.
1793e8949f74SAndre Oppermann 				 */
17943c653157SHartmut Brandt #ifdef TCPDEBUG
17953c653157SHartmut Brandt 				if (so->so_options & SO_DEBUG)
17963c653157SHartmut Brandt 					tcp_trace(TA_INPUT, ostate, tp,
17973c653157SHartmut Brandt 					    (void *)tcp_saveipgen,
17983c653157SHartmut Brandt 					    &tcp_savetcp, 0);
17993c653157SHartmut Brandt #endif
18002b9c9984SGeorge V. Neville-Neil 				TCP_PROBE3(debug__input, tp, th, m);
1801df8bae1dSRodney W. Grimes 				if (tp->snd_una == tp->snd_max)
1802b8152ba7SAndre Oppermann 					tcp_timer_activate(tp, TT_REXMT, 0);
1803b8152ba7SAndre Oppermann 				else if (!tcp_timer_active(tp, TT_PERSIST))
1804b8152ba7SAndre Oppermann 					tcp_timer_activate(tp, TT_REXMT,
1805b8152ba7SAndre Oppermann 						      tp->t_rxtcur);
1806df8bae1dSRodney W. Grimes 				sowwakeup(so);
1807cfa6009eSGleb Smirnoff 				if (sbavail(&so->so_snd))
180855bceb1eSRandall Stewart 					(void) tp->t_fb->tfb_tcp_output(tp);
1809a14c749fSJonathan Lemon 				goto check_delack;
1810df8bae1dSRodney W. Grimes 			}
1811fb59c426SYoshinobu Inoue 		} else if (th->th_ack == tp->snd_una &&
1812fb59c426SYoshinobu Inoue 		    tlen <= sbspace(&so->so_rcv)) {
18136741ecf5SAndre Oppermann 			int newsize = 0;	/* automatic sockbuf scaling */
18146741ecf5SAndre Oppermann 
1815df8bae1dSRodney W. Grimes 			/*
1816252ca428SRobert Watson 			 * This is a pure, in-sequence data packet with
1817252ca428SRobert Watson 			 * nothing on the reassembly queue and we have enough
1818252ca428SRobert Watson 			 * buffer space to take it.
1819df8bae1dSRodney W. Grimes 			 */
18206d90faf3SPaul Saab 			/* Clean receiver SACK report if present */
18213529149eSAndre Oppermann 			if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks)
18226d90faf3SPaul Saab 				tcp_clean_sackreport(tp);
182378b50714SRobert Watson 			TCPSTAT_INC(tcps_preddat);
1824fb59c426SYoshinobu Inoue 			tp->rcv_nxt += tlen;
18251645d090SJeff Roberson 			/*
18261645d090SJeff Roberson 			 * Pull snd_wl1 up to prevent seq wrap relative to
18271645d090SJeff Roberson 			 * th_seq.
18281645d090SJeff Roberson 			 */
182960ee3bb2SAndre Oppermann 			tp->snd_wl1 = th->th_seq;
18301645d090SJeff Roberson 			/*
18311645d090SJeff Roberson 			 * Pull rcv_up up to prevent seq wrap relative to
18321645d090SJeff Roberson 			 * rcv_nxt.
18331645d090SJeff Roberson 			 */
18341645d090SJeff Roberson 			tp->rcv_up = tp->rcv_nxt;
18354b7b743cSLawrence Stewart 			TCPSTAT_ADD(tcps_rcvpack, nsegs);
183678b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvbyte, tlen);
18373c653157SHartmut Brandt #ifdef TCPDEBUG
18383c653157SHartmut Brandt 			if (so->so_options & SO_DEBUG)
18393c653157SHartmut Brandt 				tcp_trace(TA_INPUT, ostate, tp,
18403c653157SHartmut Brandt 				    (void *)tcp_saveipgen, &tcp_savetcp, 0);
18413c653157SHartmut Brandt #endif
18422b9c9984SGeorge V. Neville-Neil 			TCP_PROBE3(debug__input, tp, th, m);
18435d06879aSGeorge V. Neville-Neil 
1844e44c1887SSteven Hartland 			newsize = tcp_autorcvbuf(m, th, so, tp, tlen);
18456741ecf5SAndre Oppermann 
18466741ecf5SAndre Oppermann 			/* Add data to socket buffer. */
18471e4d7da7SRobert Watson 			SOCKBUF_LOCK(&so->so_rcv);
1848c0b99ffaSRobert Watson 			if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
1849c1c36a2cSMike Silbersack 				m_freem(m);
1850c1c36a2cSMike Silbersack 			} else {
18516741ecf5SAndre Oppermann 				/*
18526741ecf5SAndre Oppermann 				 * Set new socket buffer size.
18536741ecf5SAndre Oppermann 				 * Give up when limit is reached.
18546741ecf5SAndre Oppermann 				 */
18556741ecf5SAndre Oppermann 				if (newsize)
18566741ecf5SAndre Oppermann 					if (!sbreserve_locked(&so->so_rcv,
18576c8286e4SRobert Watson 					    newsize, so, NULL))
18586741ecf5SAndre Oppermann 						so->so_rcv.sb_flags &= ~SB_AUTOSIZE;
1859fb59c426SYoshinobu Inoue 				m_adj(m, drop_hdrlen);	/* delayed header drop */
1860651e4e6aSGleb Smirnoff 				sbappendstream_locked(&so->so_rcv, m, 0);
1861c1c36a2cSMike Silbersack 			}
1862e8949f74SAndre Oppermann 			/* NB: sorwakeup_locked() does an implicit unlock. */
18631e4d7da7SRobert Watson 			sorwakeup_locked(so);
1864c1e5a6e5SAndre Oppermann 			if (DELAY_ACK(tp, tlen)) {
18653bfd6421SJonathan Lemon 				tp->t_flags |= TF_DELACK;
1866f498eeeeSDavid Greenman 			} else {
1867e612a582SDavid Greenman 				tp->t_flags |= TF_ACKNOW;
186855bceb1eSRandall Stewart 				tp->t_fb->tfb_tcp_output(tp);
1869e612a582SDavid Greenman 			}
1870a14c749fSJonathan Lemon 			goto check_delack;
1871df8bae1dSRodney W. Grimes 		}
1872df8bae1dSRodney W. Grimes 	}
1873df8bae1dSRodney W. Grimes 
1874df8bae1dSRodney W. Grimes 	/*
1875df8bae1dSRodney W. Grimes 	 * Calculate amount of space in receive window,
1876df8bae1dSRodney W. Grimes 	 * and then do TCP input processing.
1877df8bae1dSRodney W. Grimes 	 * Receive window is amount of space in rcv queue,
1878df8bae1dSRodney W. Grimes 	 * but not less than advertised window.
1879df8bae1dSRodney W. Grimes 	 */
1880df8bae1dSRodney W. Grimes 	win = sbspace(&so->so_rcv);
1881df8bae1dSRodney W. Grimes 	if (win < 0)
1882df8bae1dSRodney W. Grimes 		win = 0;
188366e39adcSJohn Polstra 	tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
1884df8bae1dSRodney W. Grimes 
1885df8bae1dSRodney W. Grimes 	switch (tp->t_state) {
1886df8bae1dSRodney W. Grimes 
1887df8bae1dSRodney W. Grimes 	/*
1888764d8cefSBill Fenner 	 * If the state is SYN_RECEIVED:
1889764d8cefSBill Fenner 	 *	if seg contains an ACK, but not for our SYN/ACK, send a RST.
1890764d8cefSBill Fenner 	 */
1891764d8cefSBill Fenner 	case TCPS_SYN_RECEIVED:
1892fb59c426SYoshinobu Inoue 		if ((thflags & TH_ACK) &&
1893fb59c426SYoshinobu Inoue 		    (SEQ_LEQ(th->th_ack, tp->snd_una) ||
1894a57815efSBosko Milekic 		     SEQ_GT(th->th_ack, tp->snd_max))) {
1895a57815efSBosko Milekic 				rstreason = BANDLIM_RST_OPENPORT;
1896a57815efSBosko Milekic 				goto dropwithreset;
1897a57815efSBosko Milekic 		}
189868bd7ed1SJonathan T. Looney 		if (IS_FASTOPEN(tp->t_flags)) {
1899281a0fd4SPatrick Kelsey 			/*
1900281a0fd4SPatrick Kelsey 			 * When a TFO connection is in SYN_RECEIVED, the
1901281a0fd4SPatrick Kelsey 			 * only valid packets are the initial SYN, a
1902281a0fd4SPatrick Kelsey 			 * retransmit/copy of the initial SYN (possibly with
1903281a0fd4SPatrick Kelsey 			 * a subset of the original data), a valid ACK, a
1904281a0fd4SPatrick Kelsey 			 * FIN, or a RST.
1905281a0fd4SPatrick Kelsey 			 */
1906281a0fd4SPatrick Kelsey 			if ((thflags & (TH_SYN|TH_ACK)) == (TH_SYN|TH_ACK)) {
1907281a0fd4SPatrick Kelsey 				rstreason = BANDLIM_RST_OPENPORT;
1908281a0fd4SPatrick Kelsey 				goto dropwithreset;
1909281a0fd4SPatrick Kelsey 			} else if (thflags & TH_SYN) {
1910281a0fd4SPatrick Kelsey 				/* non-initial SYN is ignored */
1911281a0fd4SPatrick Kelsey 				if ((tcp_timer_active(tp, TT_DELACK) ||
1912281a0fd4SPatrick Kelsey 				     tcp_timer_active(tp, TT_REXMT)))
1913281a0fd4SPatrick Kelsey 					goto drop;
1914281a0fd4SPatrick Kelsey 			} else if (!(thflags & (TH_ACK|TH_FIN|TH_RST))) {
1915281a0fd4SPatrick Kelsey 				goto drop;
1916281a0fd4SPatrick Kelsey 			}
1917281a0fd4SPatrick Kelsey 		}
1918764d8cefSBill Fenner 		break;
1919764d8cefSBill Fenner 
1920764d8cefSBill Fenner 	/*
1921df8bae1dSRodney W. Grimes 	 * If the state is SYN_SENT:
192298732609SMichael Tuexen 	 *	if seg contains a RST with valid ACK (SEQ.ACK has already
192398732609SMichael Tuexen 	 *	    been verified), then drop the connection.
192498732609SMichael Tuexen 	 *	if seg contains a RST without an ACK, drop the seg.
192598732609SMichael Tuexen 	 *	if seg does not contain SYN, then drop the seg.
1926df8bae1dSRodney W. Grimes 	 * Otherwise this is an acceptable SYN segment
1927df8bae1dSRodney W. Grimes 	 *	initialize tp->rcv_nxt and tp->irs
1928df8bae1dSRodney W. Grimes 	 *	if seg contains ack then advance tp->snd_una
1929f2512ba1SRui Paulo 	 *	if seg contains an ECE and ECN support is enabled, the stream
1930f2512ba1SRui Paulo 	 *	    is ECN capable.
1931df8bae1dSRodney W. Grimes 	 *	if SYN has been acked change to ESTABLISHED else SYN_RCVD state
1932df8bae1dSRodney W. Grimes 	 *	arrange for segment to be acked (eventually)
1933df8bae1dSRodney W. Grimes 	 *	continue processing rest of data/controls, beginning with URG
1934df8bae1dSRodney W. Grimes 	 */
1935df8bae1dSRodney W. Grimes 	case TCPS_SYN_SENT:
193657f60867SMark Johnston 		if ((thflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) {
1937d9fae5abSAndriy Gapon 			TCP_PROBE5(connect__refused, NULL, tp,
19382b9c9984SGeorge V. Neville-Neil 			    m, tp, th);
1939df8bae1dSRodney W. Grimes 			tp = tcp_drop(tp, ECONNREFUSED);
194057f60867SMark Johnston 		}
19410ca3f933SAndre Oppermann 		if (thflags & TH_RST)
1942df8bae1dSRodney W. Grimes 			goto drop;
19430ca3f933SAndre Oppermann 		if (!(thflags & TH_SYN))
1944df8bae1dSRodney W. Grimes 			goto drop;
1945464fcfbcSAndre Oppermann 
1946fb59c426SYoshinobu Inoue 		tp->irs = th->th_seq;
1947df8bae1dSRodney W. Grimes 		tcp_rcvseqinit(tp);
1948fb59c426SYoshinobu Inoue 		if (thflags & TH_ACK) {
1949c560df6fSPatrick Kelsey 			int tfo_partial_ack = 0;
1950c560df6fSPatrick Kelsey 
195178b50714SRobert Watson 			TCPSTAT_INC(tcps_connects);
1952845799c1SAndras Olah 			soisconnected(so);
1953c488362eSRobert Watson #ifdef MAC
195430d239bcSRobert Watson 			mac_socketpeer_set_from_mbuf(m, so);
1955c488362eSRobert Watson #endif
1956845799c1SAndras Olah 			/* Do window scaling on this connection? */
1957845799c1SAndras Olah 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1958845799c1SAndras Olah 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
1959845799c1SAndras Olah 				tp->rcv_scale = tp->request_r_scale;
1960845799c1SAndras Olah 			}
19613ac12506SJonathan T. Looney 			tp->rcv_adv += min(tp->rcv_wnd,
1962766282cbSJohn Baldwin 			    TCP_MAXWIN << tp->rcv_scale);
1963a0292f23SGarrett Wollman 			tp->snd_una++;		/* SYN is acked */
1964a0292f23SGarrett Wollman 			/*
1965c560df6fSPatrick Kelsey 			 * If not all the data that was sent in the TFO SYN
1966c560df6fSPatrick Kelsey 			 * has been acked, resend the remainder right away.
1967c560df6fSPatrick Kelsey 			 */
1968c560df6fSPatrick Kelsey 			if (IS_FASTOPEN(tp->t_flags) &&
1969c560df6fSPatrick Kelsey 			    (tp->snd_una != tp->snd_max)) {
1970c560df6fSPatrick Kelsey 				tp->snd_nxt = th->th_ack;
1971c560df6fSPatrick Kelsey 				tfo_partial_ack = 1;
1972c560df6fSPatrick Kelsey 			}
1973c560df6fSPatrick Kelsey 			/*
1974a0292f23SGarrett Wollman 			 * If there's data, delay ACK; if there's also a FIN
1975a0292f23SGarrett Wollman 			 * ACKNOW will be turned on later.
1976a0292f23SGarrett Wollman 			 */
1977c560df6fSPatrick Kelsey 			if (DELAY_ACK(tp, tlen) && tlen != 0 && !tfo_partial_ack)
1978b8152ba7SAndre Oppermann 				tcp_timer_activate(tp, TT_DELACK,
1979b8152ba7SAndre Oppermann 				    tcp_delacktime);
1980a0292f23SGarrett Wollman 			else
1981a0292f23SGarrett Wollman 				tp->t_flags |= TF_ACKNOW;
1982f2512ba1SRui Paulo 
1983bf7fcdb1SMichael Tuexen 			if (((thflags & (TH_CWR | TH_ECE)) == TH_ECE) &&
1984a2d59694SMichael Tuexen 			    (V_tcp_do_ecn == 1)) {
19853cf38784SMichael Tuexen 				tp->t_flags2 |= TF2_ECN_PERMIT;
198678b50714SRobert Watson 				TCPSTAT_INC(tcps_ecn_shs);
1987f2512ba1SRui Paulo 			}
1988f2512ba1SRui Paulo 
1989a0292f23SGarrett Wollman 			/*
1990a0292f23SGarrett Wollman 			 * Received <SYN,ACK> in SYN_SENT[*] state.
1991a0292f23SGarrett Wollman 			 * Transitions:
1992a0292f23SGarrett Wollman 			 *	SYN_SENT  --> ESTABLISHED
1993a0292f23SGarrett Wollman 			 *	SYN_SENT* --> FIN_WAIT_1
1994a0292f23SGarrett Wollman 			 */
19959b8b58e0SJonathan Lemon 			tp->t_starttime = ticks;
1996a0292f23SGarrett Wollman 			if (tp->t_flags & TF_NEEDFIN) {
199757f60867SMark Johnston 				tcp_state_change(tp, TCPS_FIN_WAIT_1);
1998a0292f23SGarrett Wollman 				tp->t_flags &= ~TF_NEEDFIN;
1999fb59c426SYoshinobu Inoue 				thflags &= ~TH_SYN;
20007ff19458SPaul Traina 			} else {
200157f60867SMark Johnston 				tcp_state_change(tp, TCPS_ESTABLISHED);
2002d9fae5abSAndriy Gapon 				TCP_PROBE5(connect__established, NULL, tp,
20032b9c9984SGeorge V. Neville-Neil 				    m, tp, th);
2004dbc42409SLawrence Stewart 				cc_conn_init(tp);
20059077f387SGleb Smirnoff 				tcp_timer_activate(tp, TT_KEEP,
20069077f387SGleb Smirnoff 				    TP_KEEPIDLE(tp));
20077ff19458SPaul Traina 			}
2008a0292f23SGarrett Wollman 		} else {
2009a0292f23SGarrett Wollman 			/*
2010c068736aSJeffrey Hsu 			 * Received initial SYN in SYN-SENT[*] state =>
2011153edc50SHiren Panchasara 			 * simultaneous open.
2012c068736aSJeffrey Hsu 			 * If it succeeds, connection is * half-synchronized.
2013c068736aSJeffrey Hsu 			 * Otherwise, do 3-way handshake:
2014a0292f23SGarrett Wollman 			 *        SYN-SENT -> SYN-RECEIVED
2015a0292f23SGarrett Wollman 			 *        SYN-SENT* -> SYN-RECEIVED*
2016a0292f23SGarrett Wollman 			 */
20174b8e98d6SQing Li 			tp->t_flags |= (TF_ACKNOW | TF_NEEDSYN);
2018b8152ba7SAndre Oppermann 			tcp_timer_activate(tp, TT_REXMT, 0);
201957f60867SMark Johnston 			tcp_state_change(tp, TCPS_SYN_RECEIVED);
2020a0292f23SGarrett Wollman 		}
2021df8bae1dSRodney W. Grimes 
20228501a69cSRobert Watson 		INP_WLOCK_ASSERT(tp->t_inpcb);
20237cfc6904SRobert Watson 
2024df8bae1dSRodney W. Grimes 		/*
2025fb59c426SYoshinobu Inoue 		 * Advance th->th_seq to correspond to first data byte.
2026df8bae1dSRodney W. Grimes 		 * If data, trim to stay within window,
2027df8bae1dSRodney W. Grimes 		 * dropping FIN if necessary.
2028df8bae1dSRodney W. Grimes 		 */
2029fb59c426SYoshinobu Inoue 		th->th_seq++;
2030fb59c426SYoshinobu Inoue 		if (tlen > tp->rcv_wnd) {
2031fb59c426SYoshinobu Inoue 			todrop = tlen - tp->rcv_wnd;
2032df8bae1dSRodney W. Grimes 			m_adj(m, -todrop);
2033fb59c426SYoshinobu Inoue 			tlen = tp->rcv_wnd;
2034fb59c426SYoshinobu Inoue 			thflags &= ~TH_FIN;
203578b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvpackafterwin);
203678b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop);
2037df8bae1dSRodney W. Grimes 		}
2038fb59c426SYoshinobu Inoue 		tp->snd_wl1 = th->th_seq - 1;
2039fb59c426SYoshinobu Inoue 		tp->rcv_up = th->th_seq;
2040a0292f23SGarrett Wollman 		/*
2041a0292f23SGarrett Wollman 		 * Client side of transaction: already sent SYN and data.
2042a0292f23SGarrett Wollman 		 * If the remote host used T/TCP to validate the SYN,
2043a0292f23SGarrett Wollman 		 * our data will be ACK'd; if so, enter normal data segment
2044a0292f23SGarrett Wollman 		 * processing in the middle of step 5, ack processing.
2045a0292f23SGarrett Wollman 		 * Otherwise, goto step 6.
2046a0292f23SGarrett Wollman 		 */
2047fb59c426SYoshinobu Inoue 		if (thflags & TH_ACK)
2048a0292f23SGarrett Wollman 			goto process_ACK;
2049c068736aSJeffrey Hsu 
2050df8bae1dSRodney W. Grimes 		goto step6;
2051c068736aSJeffrey Hsu 
2052a0292f23SGarrett Wollman 	/*
2053a0292f23SGarrett Wollman 	 * If the state is LAST_ACK or CLOSING or TIME_WAIT:
2054c94c54e4SAndre Oppermann 	 *      do normal processing.
2055a0292f23SGarrett Wollman 	 *
2056c94c54e4SAndre Oppermann 	 * NB: Leftover from RFC1644 T/TCP.  Cases to be reused later.
2057a0292f23SGarrett Wollman 	 */
2058a0292f23SGarrett Wollman 	case TCPS_LAST_ACK:
2059a0292f23SGarrett Wollman 	case TCPS_CLOSING:
2060a0292f23SGarrett Wollman 		break;  /* continue normal processing */
2061df8bae1dSRodney W. Grimes 	}
2062df8bae1dSRodney W. Grimes 
2063df8bae1dSRodney W. Grimes 	/*
2064df8bae1dSRodney W. Grimes 	 * States other than LISTEN or SYN_SENT.
206580ab7c0eSGarrett Wollman 	 * First check the RST flag and sequence number since reset segments
206680ab7c0eSGarrett Wollman 	 * are exempt from the timestamp and connection count tests.  This
206780ab7c0eSGarrett Wollman 	 * fixes a bug introduced by the Stevens, vol. 2, p. 960 bugfix
206880ab7c0eSGarrett Wollman 	 * below which allowed reset segments in half the sequence space
206980ab7c0eSGarrett Wollman 	 * to fall though and be processed (which gives forged reset
207080ab7c0eSGarrett Wollman 	 * segments with a random sequence number a 50 percent chance of
207180ab7c0eSGarrett Wollman 	 * killing a connection).
207280ab7c0eSGarrett Wollman 	 * Then check timestamp, if present.
2073a0292f23SGarrett Wollman 	 * Then check the connection count, if present.
2074df8bae1dSRodney W. Grimes 	 * Then check that at least some bytes of segment are within
2075df8bae1dSRodney W. Grimes 	 * receive window.  If segment begins before rcv_nxt,
2076df8bae1dSRodney W. Grimes 	 * drop leading data (and SYN); if nothing left, just ack.
207780ab7c0eSGarrett Wollman 	 */
2078fb59c426SYoshinobu Inoue 	if (thflags & TH_RST) {
20793220a212SGleb Smirnoff 		/*
20803220a212SGleb Smirnoff 		 * RFC5961 Section 3.2
20813220a212SGleb Smirnoff 		 *
20823220a212SGleb Smirnoff 		 * - RST drops connection only if SEG.SEQ == RCV.NXT.
20833220a212SGleb Smirnoff 		 * - If RST is in window, we send challenge ACK.
20843220a212SGleb Smirnoff 		 *
20853220a212SGleb Smirnoff 		 * Note: to take into account delayed ACKs, we should
20863220a212SGleb Smirnoff 		 *   test against last_ack_sent instead of rcv_nxt.
20873220a212SGleb Smirnoff 		 * Note 2: we handle special case of closed window, not
20883220a212SGleb Smirnoff 		 *   covered by the RFC.
20893220a212SGleb Smirnoff 		 */
20903220a212SGleb Smirnoff 		if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
20913220a212SGleb Smirnoff 		    SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) ||
20923220a212SGleb Smirnoff 		    (tp->rcv_wnd == 0 && tp->last_ack_sent == th->th_seq)) {
209380ab7c0eSGarrett Wollman 
20943220a212SGleb Smirnoff 			KASSERT(tp->t_state != TCPS_SYN_SENT,
20953220a212SGleb Smirnoff 			    ("%s: TH_RST for TCPS_SYN_SENT th %p tp %p",
20963220a212SGleb Smirnoff 			    __func__, th, tp));
20973220a212SGleb Smirnoff 
20983220a212SGleb Smirnoff 			if (V_tcp_insecure_rst ||
20993220a212SGleb Smirnoff 			    tp->last_ack_sent == th->th_seq) {
21003220a212SGleb Smirnoff 				TCPSTAT_INC(tcps_drops);
21013220a212SGleb Smirnoff 				/* Drop the connection. */
21023220a212SGleb Smirnoff 				switch (tp->t_state) {
210380ab7c0eSGarrett Wollman 				case TCPS_SYN_RECEIVED:
210480ab7c0eSGarrett Wollman 					so->so_error = ECONNREFUSED;
210580ab7c0eSGarrett Wollman 					goto close;
210680ab7c0eSGarrett Wollman 				case TCPS_ESTABLISHED:
210780ab7c0eSGarrett Wollman 				case TCPS_FIN_WAIT_1:
210880ab7c0eSGarrett Wollman 				case TCPS_FIN_WAIT_2:
210980ab7c0eSGarrett Wollman 				case TCPS_CLOSE_WAIT:
21106779a1a1SMichael Tuexen 				case TCPS_CLOSING:
21116779a1a1SMichael Tuexen 				case TCPS_LAST_ACK:
211280ab7c0eSGarrett Wollman 					so->so_error = ECONNRESET;
211380ab7c0eSGarrett Wollman 				close:
21143220a212SGleb Smirnoff 					/* FALLTHROUGH */
21153220a212SGleb Smirnoff 				default:
211680ab7c0eSGarrett Wollman 					tp = tcp_close(tp);
21173220a212SGleb Smirnoff 				}
21183220a212SGleb Smirnoff 			} else {
21193220a212SGleb Smirnoff 				TCPSTAT_INC(tcps_badrst);
21203220a212SGleb Smirnoff 				/* Send challenge ACK. */
21213220a212SGleb Smirnoff 				tcp_respond(tp, mtod(m, void *), th, m,
21223220a212SGleb Smirnoff 				    tp->rcv_nxt, tp->snd_nxt, TH_ACK);
21233220a212SGleb Smirnoff 				tp->last_ack_sent = tp->rcv_nxt;
21243220a212SGleb Smirnoff 				m = NULL;
21253220a212SGleb Smirnoff 			}
21263220a212SGleb Smirnoff 		}
21273220a212SGleb Smirnoff 		goto drop;
21283220a212SGleb Smirnoff 	}
212980ab7c0eSGarrett Wollman 
21303220a212SGleb Smirnoff 	/*
21313220a212SGleb Smirnoff 	 * RFC5961 Section 4.2
21323220a212SGleb Smirnoff 	 * Send challenge ACK for any SYN in synchronized state.
21333220a212SGleb Smirnoff 	 */
2134281a0fd4SPatrick Kelsey 	if ((thflags & TH_SYN) && tp->t_state != TCPS_SYN_SENT &&
2135281a0fd4SPatrick Kelsey 	    tp->t_state != TCPS_SYN_RECEIVED) {
21363220a212SGleb Smirnoff 		TCPSTAT_INC(tcps_badsyn);
21373220a212SGleb Smirnoff 		if (V_tcp_insecure_syn &&
21383220a212SGleb Smirnoff 		    SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
21393220a212SGleb Smirnoff 		    SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) {
21403220a212SGleb Smirnoff 			tp = tcp_drop(tp, ECONNRESET);
21413220a212SGleb Smirnoff 			rstreason = BANDLIM_UNLIMITED;
21423220a212SGleb Smirnoff 		} else {
21433220a212SGleb Smirnoff 			/* Send challenge ACK. */
21443220a212SGleb Smirnoff 			tcp_respond(tp, mtod(m, void *), th, m, tp->rcv_nxt,
21453220a212SGleb Smirnoff 			    tp->snd_nxt, TH_ACK);
21463220a212SGleb Smirnoff 			tp->last_ack_sent = tp->rcv_nxt;
21473220a212SGleb Smirnoff 			m = NULL;
214880ab7c0eSGarrett Wollman 		}
214980ab7c0eSGarrett Wollman 		goto drop;
215080ab7c0eSGarrett Wollman 	}
215180ab7c0eSGarrett Wollman 
215280ab7c0eSGarrett Wollman 	/*
2153df8bae1dSRodney W. Grimes 	 * RFC 1323 PAWS: If we have a timestamp reply on this segment
2154df8bae1dSRodney W. Grimes 	 * and it's less than ts_recent, drop it.
2155df8bae1dSRodney W. Grimes 	 */
2156be2ac88cSJonathan Lemon 	if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
215780ab7c0eSGarrett Wollman 	    TSTMP_LT(to.to_tsval, tp->ts_recent)) {
2158df8bae1dSRodney W. Grimes 
2159df8bae1dSRodney W. Grimes 		/* Check to see if ts_recent is over 24 days old.  */
2160d8951c8aSBjoern A. Zeeb 		if (tcp_ts_getticks() - tp->ts_recent_age > TCP_PAWS_IDLE) {
2161df8bae1dSRodney W. Grimes 			/*
2162df8bae1dSRodney W. Grimes 			 * Invalidate ts_recent.  If this segment updates
2163df8bae1dSRodney W. Grimes 			 * ts_recent, the age will be reset later and ts_recent
2164df8bae1dSRodney W. Grimes 			 * will get a valid value.  If it does not, setting
2165df8bae1dSRodney W. Grimes 			 * ts_recent to zero will at least satisfy the
2166df8bae1dSRodney W. Grimes 			 * requirement that zero be placed in the timestamp
2167df8bae1dSRodney W. Grimes 			 * echo reply when ts_recent isn't valid.  The
2168df8bae1dSRodney W. Grimes 			 * age isn't reset until we get a valid ts_recent
2169df8bae1dSRodney W. Grimes 			 * because we don't want out-of-order segments to be
2170df8bae1dSRodney W. Grimes 			 * dropped when ts_recent is old.
2171df8bae1dSRodney W. Grimes 			 */
2172df8bae1dSRodney W. Grimes 			tp->ts_recent = 0;
2173df8bae1dSRodney W. Grimes 		} else {
217478b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvduppack);
217578b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvdupbyte, tlen);
217678b50714SRobert Watson 			TCPSTAT_INC(tcps_pawsdrop);
217707fd333dSMatthew Dillon 			if (tlen)
2178df8bae1dSRodney W. Grimes 				goto dropafterack;
21791ab4789dSMatthew Dillon 			goto drop;
21801ab4789dSMatthew Dillon 		}
2181df8bae1dSRodney W. Grimes 	}
2182df8bae1dSRodney W. Grimes 
2183a0292f23SGarrett Wollman 	/*
218480ab7c0eSGarrett Wollman 	 * In the SYN-RECEIVED state, validate that the packet belongs to
218580ab7c0eSGarrett Wollman 	 * this connection before trimming the data to fit the receive
218680ab7c0eSGarrett Wollman 	 * window.  Check the sequence number versus IRS since we know
218780ab7c0eSGarrett Wollman 	 * the sequence numbers haven't wrapped.  This is a partial fix
218880ab7c0eSGarrett Wollman 	 * for the "LAND" DoS attack.
218980ab7c0eSGarrett Wollman 	 */
2190a57815efSBosko Milekic 	if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) {
2191a57815efSBosko Milekic 		rstreason = BANDLIM_RST_OPENPORT;
2192a57815efSBosko Milekic 		goto dropwithreset;
2193a57815efSBosko Milekic 	}
219480ab7c0eSGarrett Wollman 
2195fb59c426SYoshinobu Inoue 	todrop = tp->rcv_nxt - th->th_seq;
2196df8bae1dSRodney W. Grimes 	if (todrop > 0) {
2197831ad37eSXin LI 		if (thflags & TH_SYN) {
2198fb59c426SYoshinobu Inoue 			thflags &= ~TH_SYN;
2199fb59c426SYoshinobu Inoue 			th->th_seq++;
2200fb59c426SYoshinobu Inoue 			if (th->th_urp > 1)
2201fb59c426SYoshinobu Inoue 				th->th_urp--;
2202df8bae1dSRodney W. Grimes 			else
2203fb59c426SYoshinobu Inoue 				thflags &= ~TH_URG;
2204df8bae1dSRodney W. Grimes 			todrop--;
2205df8bae1dSRodney W. Grimes 		}
2206df8bae1dSRodney W. Grimes 		/*
2207dac20301SGarrett Wollman 		 * Following if statement from Stevens, vol. 2, p. 960.
2208df8bae1dSRodney W. Grimes 		 */
2209fb59c426SYoshinobu Inoue 		if (todrop > tlen
2210fb59c426SYoshinobu Inoue 		    || (todrop == tlen && (thflags & TH_FIN) == 0)) {
2211dac20301SGarrett Wollman 			/*
2212dac20301SGarrett Wollman 			 * Any valid FIN must be to the left of the window.
2213dac20301SGarrett Wollman 			 * At this point the FIN must be a duplicate or out
2214dac20301SGarrett Wollman 			 * of sequence; drop it.
2215dac20301SGarrett Wollman 			 */
2216fb59c426SYoshinobu Inoue 			thflags &= ~TH_FIN;
2217dac20301SGarrett Wollman 
2218df8bae1dSRodney W. Grimes 			/*
2219dac20301SGarrett Wollman 			 * Send an ACK to resynchronize and drop any data.
2220dac20301SGarrett Wollman 			 * But keep on processing for RST or ACK.
2221df8bae1dSRodney W. Grimes 			 */
2222dac20301SGarrett Wollman 			tp->t_flags |= TF_ACKNOW;
2223fb59c426SYoshinobu Inoue 			todrop = tlen;
222478b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvduppack);
222578b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvdupbyte, todrop);
2226df8bae1dSRodney W. Grimes 		} else {
222778b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvpartduppack);
222878b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvpartdupbyte, todrop);
2229df8bae1dSRodney W. Grimes 		}
22305acfd95cSMichael Tuexen 		/*
22315acfd95cSMichael Tuexen 		 * DSACK - add SACK block for dropped range
22325acfd95cSMichael Tuexen 		 */
22338f63a52bSMichael Tuexen 		if ((todrop > 0) && (tp->t_flags & TF_SACK_PERMIT)) {
2234ecc5b1d1SMichael Tuexen 			tcp_update_sack_list(tp, th->th_seq,
2235ecc5b1d1SMichael Tuexen 			    th->th_seq + todrop);
22365acfd95cSMichael Tuexen 			/*
22375acfd95cSMichael Tuexen 			 * ACK now, as the next in-sequence segment
22385acfd95cSMichael Tuexen 			 * will clear the DSACK block again
22395acfd95cSMichael Tuexen 			 */
22405acfd95cSMichael Tuexen 			tp->t_flags |= TF_ACKNOW;
22415acfd95cSMichael Tuexen 		}
2242fb59c426SYoshinobu Inoue 		drop_hdrlen += todrop;	/* drop from the top afterwards */
2243fb59c426SYoshinobu Inoue 		th->th_seq += todrop;
2244fb59c426SYoshinobu Inoue 		tlen -= todrop;
2245fb59c426SYoshinobu Inoue 		if (th->th_urp > todrop)
2246fb59c426SYoshinobu Inoue 			th->th_urp -= todrop;
2247df8bae1dSRodney W. Grimes 		else {
2248fb59c426SYoshinobu Inoue 			thflags &= ~TH_URG;
2249fb59c426SYoshinobu Inoue 			th->th_urp = 0;
2250df8bae1dSRodney W. Grimes 		}
2251df8bae1dSRodney W. Grimes 	}
2252df8bae1dSRodney W. Grimes 
2253df8bae1dSRodney W. Grimes 	/*
2254df8bae1dSRodney W. Grimes 	 * If new data are received on a connection after the
2255df8bae1dSRodney W. Grimes 	 * user processes are gone, then RST the other end.
2256df8bae1dSRodney W. Grimes 	 */
2257df8bae1dSRodney W. Grimes 	if ((so->so_state & SS_NOFDREF) &&
2258fb59c426SYoshinobu Inoue 	    tp->t_state > TCPS_CLOSE_WAIT && tlen) {
225907dacf03SAndre Oppermann 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
226007dacf03SAndre Oppermann 			log(LOG_DEBUG, "%s; %s: %s: Received %d bytes of data "
226107dacf03SAndre Oppermann 			    "after socket was closed, "
226207dacf03SAndre Oppermann 			    "sending RST and removing tcpcb\n",
2263e31d8aa3SMike Silbersack 			    s, __func__, tcpstates[tp->t_state], tlen);
2264773673c1SAndre Oppermann 			free(s, M_TCPLOG);
2265773673c1SAndre Oppermann 		}
2266df8bae1dSRodney W. Grimes 		tp = tcp_close(tp);
226778b50714SRobert Watson 		TCPSTAT_INC(tcps_rcvafterclose);
2268a57815efSBosko Milekic 		rstreason = BANDLIM_UNLIMITED;
2269df8bae1dSRodney W. Grimes 		goto dropwithreset;
2270df8bae1dSRodney W. Grimes 	}
2271df8bae1dSRodney W. Grimes 
2272df8bae1dSRodney W. Grimes 	/*
2273df8bae1dSRodney W. Grimes 	 * If segment ends after window, drop trailing data
2274df8bae1dSRodney W. Grimes 	 * (and PUSH and FIN); if nothing left, just ACK.
2275df8bae1dSRodney W. Grimes 	 */
2276fb59c426SYoshinobu Inoue 	todrop = (th->th_seq + tlen) - (tp->rcv_nxt + tp->rcv_wnd);
2277df8bae1dSRodney W. Grimes 	if (todrop > 0) {
227878b50714SRobert Watson 		TCPSTAT_INC(tcps_rcvpackafterwin);
2279fb59c426SYoshinobu Inoue 		if (todrop >= tlen) {
228078b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvbyteafterwin, tlen);
2281df8bae1dSRodney W. Grimes 			/*
2282df8bae1dSRodney W. Grimes 			 * If window is closed can only take segments at
2283df8bae1dSRodney W. Grimes 			 * window edge, and have to drop data and PUSH from
2284df8bae1dSRodney W. Grimes 			 * incoming segments.  Continue processing, but
2285df8bae1dSRodney W. Grimes 			 * remember to ack.  Otherwise, drop segment
2286df8bae1dSRodney W. Grimes 			 * and ack.
2287df8bae1dSRodney W. Grimes 			 */
2288fb59c426SYoshinobu Inoue 			if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) {
2289df8bae1dSRodney W. Grimes 				tp->t_flags |= TF_ACKNOW;
229078b50714SRobert Watson 				TCPSTAT_INC(tcps_rcvwinprobe);
2291df8bae1dSRodney W. Grimes 			} else
2292df8bae1dSRodney W. Grimes 				goto dropafterack;
2293df8bae1dSRodney W. Grimes 		} else
229478b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop);
2295df8bae1dSRodney W. Grimes 		m_adj(m, -todrop);
2296fb59c426SYoshinobu Inoue 		tlen -= todrop;
2297fb59c426SYoshinobu Inoue 		thflags &= ~(TH_PUSH|TH_FIN);
2298df8bae1dSRodney W. Grimes 	}
2299df8bae1dSRodney W. Grimes 
2300df8bae1dSRodney W. Grimes 	/*
2301df8bae1dSRodney W. Grimes 	 * If last ACK falls within this segment's sequence numbers,
2302df8bae1dSRodney W. Grimes 	 * record its timestamp.
2303cf09195bSPaul Saab 	 * NOTE:
2304cf09195bSPaul Saab 	 * 1) That the test incorporates suggestions from the latest
2305a0292f23SGarrett Wollman 	 *    proposal of the tcplw@cray.com list (Braden 1993/04/26).
2306cf09195bSPaul Saab 	 * 2) That updating only on newer timestamps interferes with
2307cf09195bSPaul Saab 	 *    our earlier PAWS tests, so this check should be solely
2308cf09195bSPaul Saab 	 *    predicated on the sequence space of this segment.
2309cf09195bSPaul Saab 	 * 3) That we modify the segment boundary check to be
2310cf09195bSPaul Saab 	 *        Last.ACK.Sent <= SEG.SEQ + SEG.Len
2311cf09195bSPaul Saab 	 *    instead of RFC1323's
2312cf09195bSPaul Saab 	 *        Last.ACK.Sent < SEG.SEQ + SEG.Len,
2313cf09195bSPaul Saab 	 *    This modified check allows us to overcome RFC1323's
2314cf09195bSPaul Saab 	 *    limitations as described in Stevens TCP/IP Illustrated
2315cf09195bSPaul Saab 	 *    Vol. 2 p.869. In such cases, we can still calculate the
2316cf09195bSPaul Saab 	 *    RTT correctly when RCV.NXT == Last.ACK.Sent.
2317df8bae1dSRodney W. Grimes 	 */
2318be2ac88cSJonathan Lemon 	if ((to.to_flags & TOF_TS) != 0 &&
2319cf09195bSPaul Saab 	    SEQ_LEQ(th->th_seq, tp->last_ack_sent) &&
2320cf09195bSPaul Saab 	    SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen +
2321cf09195bSPaul Saab 		((thflags & (TH_SYN|TH_FIN)) != 0))) {
2322d8951c8aSBjoern A. Zeeb 		tp->ts_recent_age = tcp_ts_getticks();
2323a0292f23SGarrett Wollman 		tp->ts_recent = to.to_tsval;
2324df8bae1dSRodney W. Grimes 	}
2325df8bae1dSRodney W. Grimes 
2326df8bae1dSRodney W. Grimes 	/*
2327a0292f23SGarrett Wollman 	 * If the ACK bit is off:  if in SYN-RECEIVED state or SENDSYN
2328a0292f23SGarrett Wollman 	 * flag is on (half-synchronized state), then queue data for
2329a0292f23SGarrett Wollman 	 * later processing; else drop segment and return.
2330a0292f23SGarrett Wollman 	 */
2331fb59c426SYoshinobu Inoue 	if ((thflags & TH_ACK) == 0) {
2332a0292f23SGarrett Wollman 		if (tp->t_state == TCPS_SYN_RECEIVED ||
2333281a0fd4SPatrick Kelsey 		    (tp->t_flags & TF_NEEDSYN)) {
2334281a0fd4SPatrick Kelsey 			if (tp->t_state == TCPS_SYN_RECEIVED &&
233568bd7ed1SJonathan T. Looney 			    IS_FASTOPEN(tp->t_flags)) {
2336281a0fd4SPatrick Kelsey 				tp->snd_wnd = tiwin;
2337281a0fd4SPatrick Kelsey 				cc_conn_init(tp);
2338281a0fd4SPatrick Kelsey 			}
2339a0292f23SGarrett Wollman 			goto step6;
2340281a0fd4SPatrick Kelsey 		} else if (tp->t_flags & TF_ACKNOW)
23415e1aa279SDavid Malone 			goto dropafterack;
2342a0292f23SGarrett Wollman 		else
2343a0292f23SGarrett Wollman 			goto drop;
2344a0292f23SGarrett Wollman 	}
2345df8bae1dSRodney W. Grimes 
2346df8bae1dSRodney W. Grimes 	/*
2347df8bae1dSRodney W. Grimes 	 * Ack processing.
2348df8bae1dSRodney W. Grimes 	 */
2349df8bae1dSRodney W. Grimes 	switch (tp->t_state) {
2350df8bae1dSRodney W. Grimes 
2351df8bae1dSRodney W. Grimes 	/*
2352764d8cefSBill Fenner 	 * In SYN_RECEIVED state, the ack ACKs our SYN, so enter
2353764d8cefSBill Fenner 	 * ESTABLISHED state and continue processing.
2354764d8cefSBill Fenner 	 * The ACK was checked above.
2355df8bae1dSRodney W. Grimes 	 */
2356df8bae1dSRodney W. Grimes 	case TCPS_SYN_RECEIVED:
2357a0292f23SGarrett Wollman 
235878b50714SRobert Watson 		TCPSTAT_INC(tcps_connects);
2359df8bae1dSRodney W. Grimes 		soisconnected(so);
2360df8bae1dSRodney W. Grimes 		/* Do window scaling? */
2361df8bae1dSRodney W. Grimes 		if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
2362df8bae1dSRodney W. Grimes 			(TF_RCVD_SCALE|TF_REQ_SCALE)) {
2363df8bae1dSRodney W. Grimes 			tp->rcv_scale = tp->request_r_scale;
2364df8bae1dSRodney W. Grimes 		}
2365116ef4d6SMichael Tuexen 		tp->snd_wnd = tiwin;
2366a0292f23SGarrett Wollman 		/*
2367a0292f23SGarrett Wollman 		 * Make transitions:
2368a0292f23SGarrett Wollman 		 *      SYN-RECEIVED  -> ESTABLISHED
2369a0292f23SGarrett Wollman 		 *      SYN-RECEIVED* -> FIN-WAIT-1
2370a0292f23SGarrett Wollman 		 */
23719b8b58e0SJonathan Lemon 		tp->t_starttime = ticks;
237218a75309SPatrick Kelsey 		if (IS_FASTOPEN(tp->t_flags) && tp->t_tfo_pending) {
2373281a0fd4SPatrick Kelsey 			tcp_fastopen_decrement_counter(tp->t_tfo_pending);
2374281a0fd4SPatrick Kelsey 			tp->t_tfo_pending = NULL;
2375281a0fd4SPatrick Kelsey 
2376281a0fd4SPatrick Kelsey 			/*
2377281a0fd4SPatrick Kelsey 			 * Account for the ACK of our SYN prior to
2378281a0fd4SPatrick Kelsey 			 * regular ACK processing below.
2379281a0fd4SPatrick Kelsey 			 */
2380281a0fd4SPatrick Kelsey 			tp->snd_una++;
2381281a0fd4SPatrick Kelsey 		}
23828db239dcSMichael Tuexen 		if (tp->t_flags & TF_NEEDFIN) {
23838db239dcSMichael Tuexen 			tcp_state_change(tp, TCPS_FIN_WAIT_1);
23848db239dcSMichael Tuexen 			tp->t_flags &= ~TF_NEEDFIN;
23858db239dcSMichael Tuexen 		} else {
23868db239dcSMichael Tuexen 			tcp_state_change(tp, TCPS_ESTABLISHED);
23878db239dcSMichael Tuexen 			TCP_PROBE5(accept__established, NULL, tp,
23888db239dcSMichael Tuexen 			    m, tp, th);
2389281a0fd4SPatrick Kelsey 			/*
2390281a0fd4SPatrick Kelsey 			 * TFO connections call cc_conn_init() during SYN
2391281a0fd4SPatrick Kelsey 			 * processing.  Calling it again here for such
2392281a0fd4SPatrick Kelsey 			 * connections is not harmless as it would undo the
2393281a0fd4SPatrick Kelsey 			 * snd_cwnd reduction that occurs when a TFO SYN|ACK
2394281a0fd4SPatrick Kelsey 			 * is retransmitted.
2395281a0fd4SPatrick Kelsey 			 */
239668bd7ed1SJonathan T. Looney 			if (!IS_FASTOPEN(tp->t_flags))
2397dbc42409SLawrence Stewart 				cc_conn_init(tp);
23989077f387SGleb Smirnoff 			tcp_timer_activate(tp, TT_KEEP, TP_KEEPIDLE(tp));
23997ff19458SPaul Traina 		}
2400a0292f23SGarrett Wollman 		/*
2401a0292f23SGarrett Wollman 		 * If segment contains data or ACK, will call tcp_reass()
2402a0292f23SGarrett Wollman 		 * later; if not, do so now to pass queued data to user.
2403a0292f23SGarrett Wollman 		 */
2404fb59c426SYoshinobu Inoue 		if (tlen == 0 && (thflags & TH_FIN) == 0)
2405c28440dbSRandall Stewart 			(void) tcp_reass(tp, (struct tcphdr *)0, NULL, 0,
2406a0292f23SGarrett Wollman 			    (struct mbuf *)0);
240760ee3bb2SAndre Oppermann 		tp->snd_wl1 = th->th_seq - 1;
240893b0017fSPhilippe Charnier 		/* FALLTHROUGH */
2409df8bae1dSRodney W. Grimes 
2410df8bae1dSRodney W. Grimes 	/*
2411df8bae1dSRodney W. Grimes 	 * In ESTABLISHED state: drop duplicate ACKs; ACK out of range
2412df8bae1dSRodney W. Grimes 	 * ACKs.  If the ack is in the range
2413fb59c426SYoshinobu Inoue 	 *	tp->snd_una < th->th_ack <= tp->snd_max
2414fb59c426SYoshinobu Inoue 	 * then advance tp->snd_una to th->th_ack and drop
2415df8bae1dSRodney W. Grimes 	 * data from the retransmission queue.  If this ACK reflects
2416df8bae1dSRodney W. Grimes 	 * more up to date window information we update our window information.
2417df8bae1dSRodney W. Grimes 	 */
2418df8bae1dSRodney W. Grimes 	case TCPS_ESTABLISHED:
2419df8bae1dSRodney W. Grimes 	case TCPS_FIN_WAIT_1:
2420df8bae1dSRodney W. Grimes 	case TCPS_FIN_WAIT_2:
2421df8bae1dSRodney W. Grimes 	case TCPS_CLOSE_WAIT:
2422df8bae1dSRodney W. Grimes 	case TCPS_CLOSING:
2423df8bae1dSRodney W. Grimes 	case TCPS_LAST_ACK:
24245a53ca16SPaul Saab 		if (SEQ_GT(th->th_ack, tp->snd_max)) {
242578b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvacktoomuch);
24265a53ca16SPaul Saab 			goto dropafterack;
24275a53ca16SPaul Saab 		}
24283529149eSAndre Oppermann 		if ((tp->t_flags & TF_SACK_PERMIT) &&
2429fc30a251SAndre Oppermann 		    ((to.to_flags & TOF_SACK) ||
2430fc30a251SAndre Oppermann 		     !TAILQ_EMPTY(&tp->snd_holes)))
2431021eaf79SHiren Panchasara 			sack_changed = tcp_sack_doack(tp, &to, th->th_ack);
243212eeb81fSHiren Panchasara 		else
243312eeb81fSHiren Panchasara 			/*
243412eeb81fSHiren Panchasara 			 * Reset the value so that previous (valid) value
243512eeb81fSHiren Panchasara 			 * from the last ack with SACK doesn't get used.
243612eeb81fSHiren Panchasara 			 */
243712eeb81fSHiren Panchasara 			tp->sackhint.sacked_bytes = 0;
243839bc9de5SLawrence Stewart 
2439bd79708dSJonathan T. Looney #ifdef TCP_HHOOK
244039bc9de5SLawrence Stewart 		/* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */
244139bc9de5SLawrence Stewart 		hhook_run_tcp_est_in(tp, th, &to);
2442bd79708dSJonathan T. Looney #endif
244339bc9de5SLawrence Stewart 
2444fb59c426SYoshinobu Inoue 		if (SEQ_LEQ(th->th_ack, tp->snd_una)) {
24450c39d38dSGleb Smirnoff 			u_int maxseg;
24460c39d38dSGleb Smirnoff 
24470c39d38dSGleb Smirnoff 			maxseg = tcp_maxseg(tp);
2448021eaf79SHiren Panchasara 			if (tlen == 0 &&
2449021eaf79SHiren Panchasara 			    (tiwin == tp->snd_wnd ||
2450021eaf79SHiren Panchasara 			    (tp->t_flags & TF_SACK_PERMIT))) {
245162b90589SPeter Wemm 				/*
245262b90589SPeter Wemm 				 * If this is the first time we've seen a
245362b90589SPeter Wemm 				 * FIN from the remote, this is not a
245462b90589SPeter Wemm 				 * duplicate and it needs to be processed
245562b90589SPeter Wemm 				 * normally.  This happens during a
245662b90589SPeter Wemm 				 * simultaneous close.
245762b90589SPeter Wemm 				 */
245862b90589SPeter Wemm 				if ((thflags & TH_FIN) &&
245962b90589SPeter Wemm 				    (TCPS_HAVERCVDFIN(tp->t_state) == 0)) {
246062b90589SPeter Wemm 					tp->t_dupacks = 0;
246162b90589SPeter Wemm 					break;
246262b90589SPeter Wemm 				}
246378b50714SRobert Watson 				TCPSTAT_INC(tcps_rcvdupack);
2464df8bae1dSRodney W. Grimes 				/*
2465df8bae1dSRodney W. Grimes 				 * If we have outstanding data (other than
2466df8bae1dSRodney W. Grimes 				 * a window probe), this is a completely
2467df8bae1dSRodney W. Grimes 				 * duplicate ack (ie, window info didn't
24685f30ec9bSEitan Adler 				 * change and FIN isn't set),
24695f30ec9bSEitan Adler 				 * the ack is the biggest we've
2470df8bae1dSRodney W. Grimes 				 * seen and we've seen exactly our rexmt
2471a4641f4eSPedro F. Giffuni 				 * threshold of them, assume a packet
2472df8bae1dSRodney W. Grimes 				 * has been dropped and retransmit it.
2473df8bae1dSRodney W. Grimes 				 * Kludge snd_nxt & the congestion
2474df8bae1dSRodney W. Grimes 				 * window so we send only this one
2475df8bae1dSRodney W. Grimes 				 * packet.
2476df8bae1dSRodney W. Grimes 				 *
2477df8bae1dSRodney W. Grimes 				 * We know we're losing at the current
2478df8bae1dSRodney W. Grimes 				 * window size so do congestion avoidance
2479df8bae1dSRodney W. Grimes 				 * (set ssthresh to half the current window
2480df8bae1dSRodney W. Grimes 				 * and pull our congestion window back to
2481df8bae1dSRodney W. Grimes 				 * the new ssthresh).
2482df8bae1dSRodney W. Grimes 				 *
2483df8bae1dSRodney W. Grimes 				 * Dup acks mean that packets have left the
2484df8bae1dSRodney W. Grimes 				 * network (they're now cached at the receiver)
2485df8bae1dSRodney W. Grimes 				 * so bump cwnd by the amount in the receiver
2486df8bae1dSRodney W. Grimes 				 * to keep a constant cwnd packets in the
2487df8bae1dSRodney W. Grimes 				 * network.
2488f2512ba1SRui Paulo 				 *
2489f2512ba1SRui Paulo 				 * When using TCP ECN, notify the peer that
2490f2512ba1SRui Paulo 				 * we reduced the cwnd.
2491df8bae1dSRodney W. Grimes 				 */
2492021eaf79SHiren Panchasara 				/*
2493021eaf79SHiren Panchasara 				 * Following 2 kinds of acks should not affect
2494021eaf79SHiren Panchasara 				 * dupack counting:
2495021eaf79SHiren Panchasara 				 * 1) Old acks
2496021eaf79SHiren Panchasara 				 * 2) Acks with SACK but without any new SACK
2497021eaf79SHiren Panchasara 				 * information in them. These could result from
2498021eaf79SHiren Panchasara 				 * any anomaly in the network like a switch
2499021eaf79SHiren Panchasara 				 * duplicating packets or a possible DoS attack.
2500021eaf79SHiren Panchasara 				 */
2501021eaf79SHiren Panchasara 				if (th->th_ack != tp->snd_una ||
2502021eaf79SHiren Panchasara 				    ((tp->t_flags & TF_SACK_PERMIT) &&
2503021eaf79SHiren Panchasara 				    !sack_changed))
2504021eaf79SHiren Panchasara 					break;
2505021eaf79SHiren Panchasara 				else if (!tcp_timer_active(tp, TT_REXMT))
2506df8bae1dSRodney W. Grimes 					tp->t_dupacks = 0;
2507cb942153SJeffrey Hsu 				else if (++tp->t_dupacks > tcprexmtthresh ||
2508dbc42409SLawrence Stewart 				     IN_FASTRECOVERY(tp->t_flags)) {
25094b7b743cSLawrence Stewart 					cc_ack_received(tp, th, nsegs,
25104b7b743cSLawrence Stewart 					    CC_DUPACK);
25113529149eSAndre Oppermann 					if ((tp->t_flags & TF_SACK_PERMIT) &&
2512dbc42409SLawrence Stewart 					    IN_FASTRECOVERY(tp->t_flags)) {
2513808f11b7SPaul Saab 						int awnd;
251425e6f9edSPaul Saab 
251525e6f9edSPaul Saab 						/*
251625e6f9edSPaul Saab 						 * Compute the amount of data in flight first.
25174c3972f0SHiren Panchasara 						 * We can inject new data into the pipe iff
251825e6f9edSPaul Saab 						 * we have less than 1/2 the original window's
251925e6f9edSPaul Saab 						 * worth of data in flight.
252025e6f9edSPaul Saab 						 */
252112eeb81fSHiren Panchasara 						if (V_tcp_do_rfc6675_pipe)
252212eeb81fSHiren Panchasara 							awnd = tcp_compute_pipe(tp);
252312eeb81fSHiren Panchasara 						else
2524808f11b7SPaul Saab 							awnd = (tp->snd_nxt - tp->snd_fack) +
25250077b016SPaul Saab 								tp->sackhint.sack_bytes_rexmit;
252612eeb81fSHiren Panchasara 
2527808f11b7SPaul Saab 						if (awnd < tp->snd_ssthresh) {
25280c39d38dSGleb Smirnoff 							tp->snd_cwnd += maxseg;
252925e6f9edSPaul Saab 							if (tp->snd_cwnd > tp->snd_ssthresh)
253025e6f9edSPaul Saab 								tp->snd_cwnd = tp->snd_ssthresh;
253125e6f9edSPaul Saab 						}
253225e6f9edSPaul Saab 					} else
25330c39d38dSGleb Smirnoff 						tp->snd_cwnd += maxseg;
253455bceb1eSRandall Stewart 					(void) tp->t_fb->tfb_tcp_output(tp);
253546f58482SJonathan Lemon 					goto drop;
2536cb942153SJeffrey Hsu 				} else if (tp->t_dupacks == tcprexmtthresh) {
2537cb942153SJeffrey Hsu 					tcp_seq onxt = tp->snd_nxt;
2538a0445c2eSJayanth Vijayaraghavan 
2539a0445c2eSJayanth Vijayaraghavan 					/*
2540a0445c2eSJayanth Vijayaraghavan 					 * If we're doing sack, check to
2541a0445c2eSJayanth Vijayaraghavan 					 * see if we're already in sack
2542a0445c2eSJayanth Vijayaraghavan 					 * recovery. If we're not doing sack,
2543a0445c2eSJayanth Vijayaraghavan 					 * check to see if we're in newreno
2544a0445c2eSJayanth Vijayaraghavan 					 * recovery.
2545a0445c2eSJayanth Vijayaraghavan 					 */
25463529149eSAndre Oppermann 					if (tp->t_flags & TF_SACK_PERMIT) {
2547dbc42409SLawrence Stewart 						if (IN_FASTRECOVERY(tp->t_flags)) {
2548a0445c2eSJayanth Vijayaraghavan 							tp->t_dupacks = 0;
2549a0445c2eSJayanth Vijayaraghavan 							break;
2550a0445c2eSJayanth Vijayaraghavan 						}
2551dbc42409SLawrence Stewart 					} else {
2552a0445c2eSJayanth Vijayaraghavan 						if (SEQ_LEQ(th->th_ack,
25539d11646dSJeffrey Hsu 						    tp->snd_recover)) {
2554cb942153SJeffrey Hsu 							tp->t_dupacks = 0;
2555cb942153SJeffrey Hsu 							break;
255646f58482SJonathan Lemon 						}
2557a0445c2eSJayanth Vijayaraghavan 					}
2558dbc42409SLawrence Stewart 					/* Congestion signal before ack. */
2559dbc42409SLawrence Stewart 					cc_cong_signal(tp, th, CC_NDUPACK);
25604b7b743cSLawrence Stewart 					cc_ack_received(tp, th, nsegs,
25614b7b743cSLawrence Stewart 					    CC_DUPACK);
2562b8152ba7SAndre Oppermann 					tcp_timer_activate(tp, TT_REXMT, 0);
25639b8b58e0SJonathan Lemon 					tp->t_rtttime = 0;
25643529149eSAndre Oppermann 					if (tp->t_flags & TF_SACK_PERMIT) {
256578b50714SRobert Watson 						TCPSTAT_INC(
256678b50714SRobert Watson 						    tcps_sack_recovery_episode);
2567a55db2b6SPaul Saab 						tp->sack_newdata = tp->snd_nxt;
25680c39d38dSGleb Smirnoff 						tp->snd_cwnd = maxseg;
256955bceb1eSRandall Stewart 						(void) tp->t_fb->tfb_tcp_output(tp);
25706d90faf3SPaul Saab 						goto drop;
25716d90faf3SPaul Saab 					}
2572fb59c426SYoshinobu Inoue 					tp->snd_nxt = th->th_ack;
25730c39d38dSGleb Smirnoff 					tp->snd_cwnd = maxseg;
257455bceb1eSRandall Stewart 					(void) tp->t_fb->tfb_tcp_output(tp);
257548d2549cSJeffrey Hsu 					KASSERT(tp->snd_limited <= 2,
2576302ce8d6SAndre Oppermann 					    ("%s: tp->snd_limited too big",
2577302ce8d6SAndre Oppermann 					    __func__));
2578df8bae1dSRodney W. Grimes 					tp->snd_cwnd = tp->snd_ssthresh +
25790c39d38dSGleb Smirnoff 					     maxseg *
258048d2549cSJeffrey Hsu 					     (tp->t_dupacks - tp->snd_limited);
2581df8bae1dSRodney W. Grimes 					if (SEQ_GT(onxt, tp->snd_nxt))
2582df8bae1dSRodney W. Grimes 						tp->snd_nxt = onxt;
2583df8bae1dSRodney W. Grimes 					goto drop;
2584603724d3SBjoern A. Zeeb 				} else if (V_tcp_do_rfc3042) {
258562d4443fSHiren Panchasara 					/*
258662d4443fSHiren Panchasara 					 * Process first and second duplicate
258762d4443fSHiren Panchasara 					 * ACKs. Each indicates a segment
258862d4443fSHiren Panchasara 					 * leaving the network, creating room
258962d4443fSHiren Panchasara 					 * for more. Make sure we can send a
259062d4443fSHiren Panchasara 					 * packet on reception of each duplicate
259162d4443fSHiren Panchasara 					 * ACK by increasing snd_cwnd by one
259262d4443fSHiren Panchasara 					 * segment. Restore the original
259362d4443fSHiren Panchasara 					 * snd_cwnd after packet transmission.
259462d4443fSHiren Panchasara 					 */
25954b7b743cSLawrence Stewart 					cc_ack_received(tp, th, nsegs,
25964b7b743cSLawrence Stewart 					    CC_DUPACK);
25973ac12506SJonathan T. Looney 					uint32_t oldcwnd = tp->snd_cwnd;
259848d2549cSJeffrey Hsu 					tcp_seq oldsndmax = tp->snd_max;
259948d2549cSJeffrey Hsu 					u_int sent;
26005628dd08SAndre Oppermann 					int avail;
260189c02376SJeffrey Hsu 
2602582a954bSJeffrey Hsu 					KASSERT(tp->t_dupacks == 1 ||
2603582a954bSJeffrey Hsu 					    tp->t_dupacks == 2,
2604302ce8d6SAndre Oppermann 					    ("%s: dupacks not 1 or 2",
2605302ce8d6SAndre Oppermann 					    __func__));
260661a36e3dSJeffrey Hsu 					if (tp->t_dupacks == 1)
260748d2549cSJeffrey Hsu 						tp->snd_limited = 0;
260861a36e3dSJeffrey Hsu 					tp->snd_cwnd =
260961a36e3dSJeffrey Hsu 					    (tp->snd_nxt - tp->snd_una) +
261061a36e3dSJeffrey Hsu 					    (tp->t_dupacks - tp->snd_limited) *
26110c39d38dSGleb Smirnoff 					    maxseg;
26125628dd08SAndre Oppermann 					/*
26135628dd08SAndre Oppermann 					 * Only call tcp_output when there
26145628dd08SAndre Oppermann 					 * is new data available to be sent.
26155628dd08SAndre Oppermann 					 * Otherwise we would send pure ACKs.
26165628dd08SAndre Oppermann 					 */
26175628dd08SAndre Oppermann 					SOCKBUF_LOCK(&so->so_snd);
2618cfa6009eSGleb Smirnoff 					avail = sbavail(&so->so_snd) -
26195628dd08SAndre Oppermann 					    (tp->snd_nxt - tp->snd_una);
26205628dd08SAndre Oppermann 					SOCKBUF_UNLOCK(&so->so_snd);
26215628dd08SAndre Oppermann 					if (avail > 0)
262255bceb1eSRandall Stewart 						(void) tp->t_fb->tfb_tcp_output(tp);
262348d2549cSJeffrey Hsu 					sent = tp->snd_max - oldsndmax;
26240c39d38dSGleb Smirnoff 					if (sent > maxseg) {
262589c02376SJeffrey Hsu 						KASSERT((tp->t_dupacks == 2 &&
262689c02376SJeffrey Hsu 						    tp->snd_limited == 0) ||
26270c39d38dSGleb Smirnoff 						   (sent == maxseg + 1 &&
262889c02376SJeffrey Hsu 						    tp->t_flags & TF_SENTFIN),
2629302ce8d6SAndre Oppermann 						    ("%s: sent too much",
2630302ce8d6SAndre Oppermann 						    __func__));
263148d2549cSJeffrey Hsu 						tp->snd_limited = 2;
263248d2549cSJeffrey Hsu 					} else if (sent > 0)
263348d2549cSJeffrey Hsu 						++tp->snd_limited;
2634582a954bSJeffrey Hsu 					tp->snd_cwnd = oldcwnd;
2635582a954bSJeffrey Hsu 					goto drop;
2636df8bae1dSRodney W. Grimes 				}
2637021eaf79SHiren Panchasara 			}
2638df8bae1dSRodney W. Grimes 			break;
2639021eaf79SHiren Panchasara 		} else {
2640021eaf79SHiren Panchasara 			/*
2641021eaf79SHiren Panchasara 			 * This ack is advancing the left edge, reset the
2642021eaf79SHiren Panchasara 			 * counter.
2643021eaf79SHiren Panchasara 			 */
2644021eaf79SHiren Panchasara 			tp->t_dupacks = 0;
2645021eaf79SHiren Panchasara 			/*
2646021eaf79SHiren Panchasara 			 * If this ack also has new SACK info, increment the
2647021eaf79SHiren Panchasara 			 * counter as per rfc6675.
2648021eaf79SHiren Panchasara 			 */
2649021eaf79SHiren Panchasara 			if ((tp->t_flags & TF_SACK_PERMIT) && sack_changed)
2650021eaf79SHiren Panchasara 				tp->t_dupacks++;
2651df8bae1dSRodney W. Grimes 		}
2652cb942153SJeffrey Hsu 
2653302ce8d6SAndre Oppermann 		KASSERT(SEQ_GT(th->th_ack, tp->snd_una),
2654302ce8d6SAndre Oppermann 		    ("%s: th_ack <= snd_una", __func__));
2655cb942153SJeffrey Hsu 
2656df8bae1dSRodney W. Grimes 		/*
2657df8bae1dSRodney W. Grimes 		 * If the congestion window was inflated to account
2658df8bae1dSRodney W. Grimes 		 * for the other side's cached packets, retract it.
2659df8bae1dSRodney W. Grimes 		 */
2660dbc42409SLawrence Stewart 		if (IN_FASTRECOVERY(tp->t_flags)) {
2661cb942153SJeffrey Hsu 			if (SEQ_LT(th->th_ack, tp->snd_recover)) {
26623529149eSAndre Oppermann 				if (tp->t_flags & TF_SACK_PERMIT)
26636d90faf3SPaul Saab 					tcp_sack_partialack(tp, th);
26646d90faf3SPaul Saab 				else
2665c068736aSJeffrey Hsu 					tcp_newreno_partial_ack(tp, th);
2666dbc42409SLawrence Stewart 			} else
2667dbc42409SLawrence Stewart 				cc_post_recovery(tp, th);
266846f58482SJonathan Lemon 		}
2669a0292f23SGarrett Wollman 		/*
2670a0292f23SGarrett Wollman 		 * If we reach this point, ACK is not a duplicate,
2671a0292f23SGarrett Wollman 		 *     i.e., it ACKs something we sent.
2672a0292f23SGarrett Wollman 		 */
2673a0292f23SGarrett Wollman 		if (tp->t_flags & TF_NEEDSYN) {
2674a0292f23SGarrett Wollman 			/*
2675a0292f23SGarrett Wollman 			 * T/TCP: Connection was half-synchronized, and our
2676a0292f23SGarrett Wollman 			 * SYN has been ACK'd (so connection is now fully
267707e43e10SAndras Olah 			 * synchronized).  Go to non-starred state,
267807e43e10SAndras Olah 			 * increment snd_una for ACK of SYN, and check if
267907e43e10SAndras Olah 			 * we can do window scaling.
2680a0292f23SGarrett Wollman 			 */
2681a0292f23SGarrett Wollman 			tp->t_flags &= ~TF_NEEDSYN;
2682a0292f23SGarrett Wollman 			tp->snd_una++;
268307e43e10SAndras Olah 			/* Do window scaling? */
268407e43e10SAndras Olah 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
268507e43e10SAndras Olah 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
268607e43e10SAndras Olah 				tp->rcv_scale = tp->request_r_scale;
2687464fcfbcSAndre Oppermann 				/* Send window already scaled. */
268807e43e10SAndras Olah 			}
2689a0292f23SGarrett Wollman 		}
2690a0292f23SGarrett Wollman 
2691a0292f23SGarrett Wollman process_ACK:
26928501a69cSRobert Watson 		INP_WLOCK_ASSERT(tp->t_inpcb);
26937cfc6904SRobert Watson 
2694dbc42409SLawrence Stewart 		acked = BYTES_THIS_ACK(tp, th);
2695b8c2cd15SJonathan T. Looney 		KASSERT(acked >= 0, ("%s: acked unexepectedly negative "
2696b8c2cd15SJonathan T. Looney 		    "(tp->snd_una=%u, th->th_ack=%u, tp=%p, m=%p)", __func__,
2697b8c2cd15SJonathan T. Looney 		    tp->snd_una, th->th_ack, tp, m));
26984b7b743cSLawrence Stewart 		TCPSTAT_ADD(tcps_rcvackpack, nsegs);
269978b50714SRobert Watson 		TCPSTAT_ADD(tcps_rcvackbyte, acked);
2700df8bae1dSRodney W. Grimes 
2701df8bae1dSRodney W. Grimes 		/*
27029b8b58e0SJonathan Lemon 		 * If we just performed our first retransmit, and the ACK
27039b8b58e0SJonathan Lemon 		 * arrives within our recovery window, then it was a mistake
27049b8b58e0SJonathan Lemon 		 * to do the retransmit in the first place.  Recover our
27059b8b58e0SJonathan Lemon 		 * original cwnd and ssthresh, and proceed to transmit where
27069b8b58e0SJonathan Lemon 		 * we left off.
27079b8b58e0SJonathan Lemon 		 */
270810d20c84SMatt Macy 		if (tp->t_rxtshift == 1 &&
270910d20c84SMatt Macy 		    tp->t_flags & TF_PREVVALID &&
271010d20c84SMatt Macy 		    tp->t_badrxtwin &&
271110d20c84SMatt Macy 		    SEQ_LT(to.to_tsecr, tp->t_badrxtwin))
2712dbc42409SLawrence Stewart 			cc_cong_signal(tp, th, CC_RTO_ERR);
27139b8b58e0SJonathan Lemon 
27149b8b58e0SJonathan Lemon 		/*
2715df8bae1dSRodney W. Grimes 		 * If we have a timestamp reply, update smoothed
2716df8bae1dSRodney W. Grimes 		 * round trip time.  If no timestamp is present but
2717df8bae1dSRodney W. Grimes 		 * transmit timer is running and timed sequence
2718df8bae1dSRodney W. Grimes 		 * number was acked, update smoothed round trip time.
2719df8bae1dSRodney W. Grimes 		 * Since we now have an rtt measurement, cancel the
2720df8bae1dSRodney W. Grimes 		 * timer backoff (cf., Phil Karn's retransmit alg.).
2721df8bae1dSRodney W. Grimes 		 * Recompute the initial retransmit timer.
2722fa55172bSMatthew Dillon 		 *
2723fa55172bSMatthew Dillon 		 * Some boxes send broken timestamp replies
2724fa55172bSMatthew Dillon 		 * during the SYN+ACK phase, ignore
2725fa55172bSMatthew Dillon 		 * timestamps of 0 or we could calculate a
2726fa55172bSMatthew Dillon 		 * huge RTT and blow up the retransmit timer.
2727df8bae1dSRodney W. Grimes 		 */
2728d8951c8aSBjoern A. Zeeb 		if ((to.to_flags & TOF_TS) != 0 && to.to_tsecr) {
27293ac12506SJonathan T. Looney 			uint32_t t;
2730d8951c8aSBjoern A. Zeeb 
2731d8951c8aSBjoern A. Zeeb 			t = tcp_ts_getticks() - to.to_tsecr;
2732d8951c8aSBjoern A. Zeeb 			if (!tp->t_rttlow || tp->t_rttlow > t)
2733d8951c8aSBjoern A. Zeeb 				tp->t_rttlow = t;
2734d8951c8aSBjoern A. Zeeb 			tcp_xmit_timer(tp, TCP_TS_TO_TICKS(t) + 1);
2735fa55172bSMatthew Dillon 		} else if (tp->t_rtttime && SEQ_GT(th->th_ack, tp->t_rtseq)) {
2736eaf80179SAndre Oppermann 			if (!tp->t_rttlow || tp->t_rttlow > ticks - tp->t_rtttime)
2737eaf80179SAndre Oppermann 				tp->t_rttlow = ticks - tp->t_rtttime;
27389b8b58e0SJonathan Lemon 			tcp_xmit_timer(tp, ticks - tp->t_rtttime);
2739fa55172bSMatthew Dillon 		}
2740df8bae1dSRodney W. Grimes 
2741df8bae1dSRodney W. Grimes 		/*
2742df8bae1dSRodney W. Grimes 		 * If all outstanding data is acked, stop retransmit
2743df8bae1dSRodney W. Grimes 		 * timer and remember to restart (more output or persist).
2744df8bae1dSRodney W. Grimes 		 * If there is more data to be acked, restart retransmit
2745df8bae1dSRodney W. Grimes 		 * timer, using current (possibly backed-off) value.
2746df8bae1dSRodney W. Grimes 		 */
2747fb59c426SYoshinobu Inoue 		if (th->th_ack == tp->snd_max) {
2748b8152ba7SAndre Oppermann 			tcp_timer_activate(tp, TT_REXMT, 0);
2749df8bae1dSRodney W. Grimes 			needoutput = 1;
2750b8152ba7SAndre Oppermann 		} else if (!tcp_timer_active(tp, TT_PERSIST))
2751b8152ba7SAndre Oppermann 			tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
2752a0292f23SGarrett Wollman 
2753a0292f23SGarrett Wollman 		/*
2754a0292f23SGarrett Wollman 		 * If no data (only SYN) was ACK'd,
2755a0292f23SGarrett Wollman 		 *    skip rest of ACK processing.
2756a0292f23SGarrett Wollman 		 */
2757a0292f23SGarrett Wollman 		if (acked == 0)
2758a0292f23SGarrett Wollman 			goto step6;
2759a0292f23SGarrett Wollman 
2760df8bae1dSRodney W. Grimes 		/*
2761dbc42409SLawrence Stewart 		 * Let the congestion control algorithm update congestion
2762dbc42409SLawrence Stewart 		 * control related information. This typically means increasing
2763dbc42409SLawrence Stewart 		 * the congestion window.
2764df8bae1dSRodney W. Grimes 		 */
27654b7b743cSLawrence Stewart 		cc_ack_received(tp, th, nsegs, CC_ACK);
2766dbc42409SLawrence Stewart 
27675905999bSRobert Watson 		SOCKBUF_LOCK(&so->so_snd);
2768cfa6009eSGleb Smirnoff 		if (acked > sbavail(&so->so_snd)) {
2769b8c2cd15SJonathan T. Looney 			if (tp->snd_wnd >= sbavail(&so->so_snd))
2770cfa6009eSGleb Smirnoff 				tp->snd_wnd -= sbavail(&so->so_snd);
2771b8c2cd15SJonathan T. Looney 			else
2772b8c2cd15SJonathan T. Looney 				tp->snd_wnd = 0;
2773c11a15bfSGleb Smirnoff 			mfree = sbcut_locked(&so->so_snd,
2774cfa6009eSGleb Smirnoff 			    (int)sbavail(&so->so_snd));
2775df8bae1dSRodney W. Grimes 			ourfinisacked = 1;
2776df8bae1dSRodney W. Grimes 		} else {
2777c11a15bfSGleb Smirnoff 			mfree = sbcut_locked(&so->so_snd, acked);
27783ac12506SJonathan T. Looney 			if (tp->snd_wnd >= (uint32_t) acked)
277960ee3bb2SAndre Oppermann 				tp->snd_wnd -= acked;
2780b8c2cd15SJonathan T. Looney 			else
2781b8c2cd15SJonathan T. Looney 				tp->snd_wnd = 0;
2782df8bae1dSRodney W. Grimes 			ourfinisacked = 0;
2783df8bae1dSRodney W. Grimes 		}
2784564aab1fSAndre Oppermann 		/* NB: sowwakeup_locked() does an implicit unlock. */
27851e4d7da7SRobert Watson 		sowwakeup_locked(so);
2786c11a15bfSGleb Smirnoff 		m_freem(mfree);
2787e8949f74SAndre Oppermann 		/* Detect una wraparound. */
2788dbc42409SLawrence Stewart 		if (!IN_RECOVERY(tp->t_flags) &&
27899d11646dSJeffrey Hsu 		    SEQ_GT(tp->snd_una, tp->snd_recover) &&
27909d11646dSJeffrey Hsu 		    SEQ_LEQ(th->th_ack, tp->snd_recover))
27919d11646dSJeffrey Hsu 			tp->snd_recover = th->th_ack - 1;
2792dbc42409SLawrence Stewart 		/* XXXLAS: Can this be moved up into cc_post_recovery? */
2793dbc42409SLawrence Stewart 		if (IN_RECOVERY(tp->t_flags) &&
279424cb0f22SLawrence Stewart 		    SEQ_GEQ(th->th_ack, tp->snd_recover)) {
2795dbc42409SLawrence Stewart 			EXIT_RECOVERY(tp->t_flags);
279624cb0f22SLawrence Stewart 		}
2797fb59c426SYoshinobu Inoue 		tp->snd_una = th->th_ack;
27983529149eSAndre Oppermann 		if (tp->t_flags & TF_SACK_PERMIT) {
27996d90faf3SPaul Saab 			if (SEQ_GT(tp->snd_una, tp->snd_recover))
28006d90faf3SPaul Saab 				tp->snd_recover = tp->snd_una;
28016d90faf3SPaul Saab 		}
2802df8bae1dSRodney W. Grimes 		if (SEQ_LT(tp->snd_nxt, tp->snd_una))
2803df8bae1dSRodney W. Grimes 			tp->snd_nxt = tp->snd_una;
2804df8bae1dSRodney W. Grimes 
2805df8bae1dSRodney W. Grimes 		switch (tp->t_state) {
2806df8bae1dSRodney W. Grimes 
2807df8bae1dSRodney W. Grimes 		/*
2808df8bae1dSRodney W. Grimes 		 * In FIN_WAIT_1 STATE in addition to the processing
2809df8bae1dSRodney W. Grimes 		 * for the ESTABLISHED state if our FIN is now acknowledged
2810df8bae1dSRodney W. Grimes 		 * then enter FIN_WAIT_2.
2811df8bae1dSRodney W. Grimes 		 */
2812df8bae1dSRodney W. Grimes 		case TCPS_FIN_WAIT_1:
2813df8bae1dSRodney W. Grimes 			if (ourfinisacked) {
2814df8bae1dSRodney W. Grimes 				/*
2815df8bae1dSRodney W. Grimes 				 * If we can't receive any more
2816df8bae1dSRodney W. Grimes 				 * data, then closing user can proceed.
2817df8bae1dSRodney W. Grimes 				 * Starting the timer is contrary to the
2818df8bae1dSRodney W. Grimes 				 * specification, but if we don't get a FIN
2819df8bae1dSRodney W. Grimes 				 * we'll hang forever.
2820e8949f74SAndre Oppermann 				 *
2821e8949f74SAndre Oppermann 				 * XXXjl:
2822340c35deSJonathan Lemon 				 * we should release the tp also, and use a
2823340c35deSJonathan Lemon 				 * compressed state.
2824340c35deSJonathan Lemon 				 */
2825c0b99ffaSRobert Watson 				if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
282603e49181SSeigo Tanimura 					soisdisconnected(so);
28279077f387SGleb Smirnoff 					tcp_timer_activate(tp, TT_2MSL,
28289077f387SGleb Smirnoff 					    (tcp_fast_finwait2_recycle ?
28299077f387SGleb Smirnoff 					    tcp_finwait2_timeout :
28309077f387SGleb Smirnoff 					    TP_MAXIDLE(tp)));
28314cc20ab1SSeigo Tanimura 				}
283257f60867SMark Johnston 				tcp_state_change(tp, TCPS_FIN_WAIT_2);
2833df8bae1dSRodney W. Grimes 			}
2834df8bae1dSRodney W. Grimes 			break;
2835df8bae1dSRodney W. Grimes 
2836df8bae1dSRodney W. Grimes 		/*
2837df8bae1dSRodney W. Grimes 		 * In CLOSING STATE in addition to the processing for
2838df8bae1dSRodney W. Grimes 		 * the ESTABLISHED state if the ACK acknowledges our FIN
2839df8bae1dSRodney W. Grimes 		 * then enter the TIME-WAIT state, otherwise ignore
2840df8bae1dSRodney W. Grimes 		 * the segment.
2841df8bae1dSRodney W. Grimes 		 */
2842df8bae1dSRodney W. Grimes 		case TCPS_CLOSING:
2843df8bae1dSRodney W. Grimes 			if (ourfinisacked) {
284411a20fb8SJeffrey Hsu 				tcp_twstart(tp);
2845340c35deSJonathan Lemon 				m_freem(m);
2846679d9708SAndre Oppermann 				return;
2847df8bae1dSRodney W. Grimes 			}
2848df8bae1dSRodney W. Grimes 			break;
2849df8bae1dSRodney W. Grimes 
2850df8bae1dSRodney W. Grimes 		/*
2851df8bae1dSRodney W. Grimes 		 * In LAST_ACK, we may still be waiting for data to drain
2852df8bae1dSRodney W. Grimes 		 * and/or to be acked, as well as for the ack of our FIN.
2853df8bae1dSRodney W. Grimes 		 * If our FIN is now acknowledged, delete the TCB,
2854df8bae1dSRodney W. Grimes 		 * enter the closed state and return.
2855df8bae1dSRodney W. Grimes 		 */
2856df8bae1dSRodney W. Grimes 		case TCPS_LAST_ACK:
2857df8bae1dSRodney W. Grimes 			if (ourfinisacked) {
2858df8bae1dSRodney W. Grimes 				tp = tcp_close(tp);
2859df8bae1dSRodney W. Grimes 				goto drop;
2860df8bae1dSRodney W. Grimes 			}
2861df8bae1dSRodney W. Grimes 			break;
2862df8bae1dSRodney W. Grimes 		}
2863df8bae1dSRodney W. Grimes 	}
2864df8bae1dSRodney W. Grimes 
2865df8bae1dSRodney W. Grimes step6:
28668501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
28677cfc6904SRobert Watson 
2868df8bae1dSRodney W. Grimes 	/*
286960ee3bb2SAndre Oppermann 	 * Update window information.
287060ee3bb2SAndre Oppermann 	 * Don't look at window if no ACK: TAC's send garbage on first SYN.
2871df8bae1dSRodney W. Grimes 	 */
287260ee3bb2SAndre Oppermann 	if ((thflags & TH_ACK) &&
287360ee3bb2SAndre Oppermann 	    (SEQ_LT(tp->snd_wl1, th->th_seq) ||
287460ee3bb2SAndre Oppermann 	    (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) ||
287560ee3bb2SAndre Oppermann 	     (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) {
287660ee3bb2SAndre Oppermann 		/* keep track of pure window updates */
287760ee3bb2SAndre Oppermann 		if (tlen == 0 &&
287860ee3bb2SAndre Oppermann 		    tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd)
287978b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvwinupd);
2880df8bae1dSRodney W. Grimes 		tp->snd_wnd = tiwin;
288160ee3bb2SAndre Oppermann 		tp->snd_wl1 = th->th_seq;
288260ee3bb2SAndre Oppermann 		tp->snd_wl2 = th->th_ack;
2883df8bae1dSRodney W. Grimes 		if (tp->snd_wnd > tp->max_sndwnd)
2884df8bae1dSRodney W. Grimes 			tp->max_sndwnd = tp->snd_wnd;
288560ee3bb2SAndre Oppermann 		needoutput = 1;
2886df8bae1dSRodney W. Grimes 	}
2887df8bae1dSRodney W. Grimes 
2888df8bae1dSRodney W. Grimes 	/*
2889df8bae1dSRodney W. Grimes 	 * Process segments with URG.
2890df8bae1dSRodney W. Grimes 	 */
2891fb59c426SYoshinobu Inoue 	if ((thflags & TH_URG) && th->th_urp &&
2892df8bae1dSRodney W. Grimes 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
2893df8bae1dSRodney W. Grimes 		/*
2894df8bae1dSRodney W. Grimes 		 * This is a kludge, but if we receive and accept
2895df8bae1dSRodney W. Grimes 		 * random urgent pointers, we'll crash in
2896df8bae1dSRodney W. Grimes 		 * soreceive.  It's hard to imagine someone
2897df8bae1dSRodney W. Grimes 		 * actually wanting to send this much urgent data.
2898df8bae1dSRodney W. Grimes 		 */
289918ad5842SRobert Watson 		SOCKBUF_LOCK(&so->so_rcv);
2900cfa6009eSGleb Smirnoff 		if (th->th_urp + sbavail(&so->so_rcv) > sb_max) {
2901fb59c426SYoshinobu Inoue 			th->th_urp = 0;			/* XXX */
2902fb59c426SYoshinobu Inoue 			thflags &= ~TH_URG;		/* XXX */
290318ad5842SRobert Watson 			SOCKBUF_UNLOCK(&so->so_rcv);	/* XXX */
2904df8bae1dSRodney W. Grimes 			goto dodata;			/* XXX */
2905df8bae1dSRodney W. Grimes 		}
2906df8bae1dSRodney W. Grimes 		/*
2907df8bae1dSRodney W. Grimes 		 * If this segment advances the known urgent pointer,
2908df8bae1dSRodney W. Grimes 		 * then mark the data stream.  This should not happen
2909df8bae1dSRodney W. Grimes 		 * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since
2910df8bae1dSRodney W. Grimes 		 * a FIN has been received from the remote side.
2911df8bae1dSRodney W. Grimes 		 * In these states we ignore the URG.
2912df8bae1dSRodney W. Grimes 		 *
2913df8bae1dSRodney W. Grimes 		 * According to RFC961 (Assigned Protocols),
2914df8bae1dSRodney W. Grimes 		 * the urgent pointer points to the last octet
2915df8bae1dSRodney W. Grimes 		 * of urgent data.  We continue, however,
2916df8bae1dSRodney W. Grimes 		 * to consider it to indicate the first octet
2917df8bae1dSRodney W. Grimes 		 * of data past the urgent section as the original
2918df8bae1dSRodney W. Grimes 		 * spec states (in one of two places).
2919df8bae1dSRodney W. Grimes 		 */
2920fb59c426SYoshinobu Inoue 		if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) {
2921fb59c426SYoshinobu Inoue 			tp->rcv_up = th->th_seq + th->th_urp;
2922cfa6009eSGleb Smirnoff 			so->so_oobmark = sbavail(&so->so_rcv) +
2923df8bae1dSRodney W. Grimes 			    (tp->rcv_up - tp->rcv_nxt) - 1;
2924927c5ceaSRobert Watson 			if (so->so_oobmark == 0)
2925c0b99ffaSRobert Watson 				so->so_rcv.sb_state |= SBS_RCVATMARK;
2926df8bae1dSRodney W. Grimes 			sohasoutofband(so);
2927df8bae1dSRodney W. Grimes 			tp->t_oobflags &= ~(TCPOOB_HAVEDATA | TCPOOB_HADDATA);
2928df8bae1dSRodney W. Grimes 		}
292918ad5842SRobert Watson 		SOCKBUF_UNLOCK(&so->so_rcv);
2930df8bae1dSRodney W. Grimes 		/*
2931df8bae1dSRodney W. Grimes 		 * Remove out of band data so doesn't get presented to user.
2932df8bae1dSRodney W. Grimes 		 * This can happen independent of advancing the URG pointer,
2933df8bae1dSRodney W. Grimes 		 * but if two URG's are pending at once, some out-of-band
2934df8bae1dSRodney W. Grimes 		 * data may creep in... ick.
2935df8bae1dSRodney W. Grimes 		 */
29363ac12506SJonathan T. Looney 		if (th->th_urp <= (uint32_t)tlen &&
293730613f56SJeffrey Hsu 		    !(so->so_options & SO_OOBINLINE)) {
293830613f56SJeffrey Hsu 			/* hdr drop is delayed */
293930613f56SJeffrey Hsu 			tcp_pulloutofband(so, th, m, drop_hdrlen);
294030613f56SJeffrey Hsu 		}
2941c068736aSJeffrey Hsu 	} else {
2942df8bae1dSRodney W. Grimes 		/*
2943df8bae1dSRodney W. Grimes 		 * If no out of band data is expected,
2944df8bae1dSRodney W. Grimes 		 * pull receive urgent pointer along
2945df8bae1dSRodney W. Grimes 		 * with the receive window.
2946df8bae1dSRodney W. Grimes 		 */
2947df8bae1dSRodney W. Grimes 		if (SEQ_GT(tp->rcv_nxt, tp->rcv_up))
2948df8bae1dSRodney W. Grimes 			tp->rcv_up = tp->rcv_nxt;
2949c068736aSJeffrey Hsu 	}
2950df8bae1dSRodney W. Grimes dodata:							/* XXX */
29518501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
29527cfc6904SRobert Watson 
2953df8bae1dSRodney W. Grimes 	/*
2954df8bae1dSRodney W. Grimes 	 * Process the segment text, merging it into the TCP sequencing queue,
2955df8bae1dSRodney W. Grimes 	 * and arranging for acknowledgment of receipt if necessary.
2956df8bae1dSRodney W. Grimes 	 * This process logically involves adjusting tp->rcv_wnd as data
2957df8bae1dSRodney W. Grimes 	 * is presented to the user (this happens in tcp_usrreq.c,
2958df8bae1dSRodney W. Grimes 	 * case PRU_RCVD).  If a FIN has already been received on this
2959df8bae1dSRodney W. Grimes 	 * connection then we just ignore the text.
2960df8bae1dSRodney W. Grimes 	 */
2961281a0fd4SPatrick Kelsey 	tfo_syn = ((tp->t_state == TCPS_SYN_RECEIVED) &&
296268bd7ed1SJonathan T. Looney 		   IS_FASTOPEN(tp->t_flags));
2963281a0fd4SPatrick Kelsey 	if ((tlen || (thflags & TH_FIN) || tfo_syn) &&
2964df8bae1dSRodney W. Grimes 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
296569e03620SPaul Saab 		tcp_seq save_start = th->th_seq;
29665acfd95cSMichael Tuexen 		tcp_seq save_rnxt  = tp->rcv_nxt;
29675acfd95cSMichael Tuexen 		int     save_tlen  = tlen;
2968fb59c426SYoshinobu Inoue 		m_adj(m, drop_hdrlen);	/* delayed header drop */
2969e4b64281SJesper Skriver 		/*
2970c068736aSJeffrey Hsu 		 * Insert segment which includes th into TCP reassembly queue
2971c068736aSJeffrey Hsu 		 * with control block tp.  Set thflags to whether reassembly now
2972c068736aSJeffrey Hsu 		 * includes a segment with FIN.  This handles the common case
2973c068736aSJeffrey Hsu 		 * inline (segment is the next to be received on an established
2974c068736aSJeffrey Hsu 		 * connection, and the queue is empty), avoiding linkage into
2975c068736aSJeffrey Hsu 		 * and removal from the queue and repetition of various
2976c068736aSJeffrey Hsu 		 * conversions.
2977c068736aSJeffrey Hsu 		 * Set DELACK for segments received in order, but ack
2978c068736aSJeffrey Hsu 		 * immediately when segments are out of order (so
2979c068736aSJeffrey Hsu 		 * fast retransmit can work).
2980e4b64281SJesper Skriver 		 */
29814741bfcbSPatrick Kelsey 		if (th->th_seq == tp->rcv_nxt &&
2982c28440dbSRandall Stewart 		    SEGQ_EMPTY(tp) &&
2983281a0fd4SPatrick Kelsey 		    (TCPS_HAVEESTABLISHED(tp->t_state) ||
2984281a0fd4SPatrick Kelsey 		     tfo_syn)) {
2985281a0fd4SPatrick Kelsey 			if (DELAY_ACK(tp, tlen) || tfo_syn)
29863bfd6421SJonathan Lemon 				tp->t_flags |= TF_DELACK;
2987e4b64281SJesper Skriver 			else
2988e4b64281SJesper Skriver 				tp->t_flags |= TF_ACKNOW;
2989e4b64281SJesper Skriver 			tp->rcv_nxt += tlen;
2990e4b64281SJesper Skriver 			thflags = th->th_flags & TH_FIN;
299178b50714SRobert Watson 			TCPSTAT_INC(tcps_rcvpack);
299278b50714SRobert Watson 			TCPSTAT_ADD(tcps_rcvbyte, tlen);
29931e4d7da7SRobert Watson 			SOCKBUF_LOCK(&so->so_rcv);
2994c0b99ffaSRobert Watson 			if (so->so_rcv.sb_state & SBS_CANTRCVMORE)
2995c1c36a2cSMike Silbersack 				m_freem(m);
2996c1c36a2cSMike Silbersack 			else
2997651e4e6aSGleb Smirnoff 				sbappendstream_locked(&so->so_rcv, m, 0);
2998e8949f74SAndre Oppermann 			/* NB: sorwakeup_locked() does an implicit unlock. */
29991e4d7da7SRobert Watson 			sorwakeup_locked(so);
3000e4b64281SJesper Skriver 		} else {
3001e8949f74SAndre Oppermann 			/*
3002e8949f74SAndre Oppermann 			 * XXX: Due to the header drop above "th" is
3003e8949f74SAndre Oppermann 			 * theoretically invalid by now.  Fortunately
3004e8949f74SAndre Oppermann 			 * m_adj() doesn't actually frees any mbufs
3005e8949f74SAndre Oppermann 			 * when trimming from the head.
3006e8949f74SAndre Oppermann 			 */
30075acfd95cSMichael Tuexen 			tcp_seq temp = save_start;
30085acfd95cSMichael Tuexen 			thflags = tcp_reass(tp, th, &temp, &tlen, m);
3009e4b64281SJesper Skriver 			tp->t_flags |= TF_ACKNOW;
3010e4b64281SJesper Skriver 		}
30116d261981SMichael Tuexen 		if ((tp->t_flags & TF_SACK_PERMIT) && (save_tlen > 0)) {
30126d261981SMichael Tuexen 			if ((tlen == 0) && (SEQ_LT(save_start, save_rnxt))) {
3013b5a154d8SMichael Tuexen 				/*
3014b5a154d8SMichael Tuexen 				 * DSACK actually handled in the fastpath
3015b5a154d8SMichael Tuexen 				 * above.
3016b5a154d8SMichael Tuexen 				 */
3017ecc5b1d1SMichael Tuexen 				tcp_update_sack_list(tp, save_start,
3018ecc5b1d1SMichael Tuexen 				    save_start + save_tlen);
3019ecc5b1d1SMichael Tuexen 			} else if ((tlen > 0) && SEQ_GT(tp->rcv_nxt, save_rnxt)) {
3020ecc5b1d1SMichael Tuexen 				if ((tp->rcv_numsacks >= 1) &&
3021ecc5b1d1SMichael Tuexen 				    (tp->sackblks[0].end == save_start)) {
30226d261981SMichael Tuexen 					/*
30236d261981SMichael Tuexen 					 * Partial overlap, recorded at todrop
30246d261981SMichael Tuexen 					 * above.
30256d261981SMichael Tuexen 					 */
30266d261981SMichael Tuexen 					tcp_update_sack_list(tp,
30276d261981SMichael Tuexen 					    tp->sackblks[0].start,
3028ecc5b1d1SMichael Tuexen 					    tp->sackblks[0].end);
3029ecc5b1d1SMichael Tuexen 				} else {
3030ecc5b1d1SMichael Tuexen 					tcp_update_dsack_list(tp, save_start,
3031ecc5b1d1SMichael Tuexen 					    save_start + save_tlen);
3032ecc5b1d1SMichael Tuexen 				}
30336d261981SMichael Tuexen 			} else if (tlen >= save_tlen) {
3034b5a154d8SMichael Tuexen 				/* Update of sackblks. */
3035ecc5b1d1SMichael Tuexen 				tcp_update_dsack_list(tp, save_start,
3036ecc5b1d1SMichael Tuexen 				    save_start + save_tlen);
3037ecc5b1d1SMichael Tuexen 			} else if (tlen > 0) {
3038ecc5b1d1SMichael Tuexen 				tcp_update_dsack_list(tp, save_start,
3039ecc5b1d1SMichael Tuexen 				    save_start + tlen);
30405acfd95cSMichael Tuexen 			}
30415acfd95cSMichael Tuexen 		}
3042302ce8d6SAndre Oppermann #if 0
3043df8bae1dSRodney W. Grimes 		/*
3044df8bae1dSRodney W. Grimes 		 * Note the amount of data that peer has sent into
3045df8bae1dSRodney W. Grimes 		 * our window, in order to estimate the sender's
3046df8bae1dSRodney W. Grimes 		 * buffer size.
3047302ce8d6SAndre Oppermann 		 * XXX: Unused.
3048df8bae1dSRodney W. Grimes 		 */
3049f701e30dSJohn Baldwin 		if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt))
3050df8bae1dSRodney W. Grimes 			len = so->so_rcv.sb_hiwat - (tp->rcv_adv - tp->rcv_nxt);
3051f701e30dSJohn Baldwin 		else
3052f701e30dSJohn Baldwin 			len = so->so_rcv.sb_hiwat;
3053302ce8d6SAndre Oppermann #endif
3054df8bae1dSRodney W. Grimes 	} else {
3055df8bae1dSRodney W. Grimes 		m_freem(m);
3056fb59c426SYoshinobu Inoue 		thflags &= ~TH_FIN;
3057df8bae1dSRodney W. Grimes 	}
3058df8bae1dSRodney W. Grimes 
3059df8bae1dSRodney W. Grimes 	/*
3060df8bae1dSRodney W. Grimes 	 * If FIN is received ACK the FIN and let the user know
3061df8bae1dSRodney W. Grimes 	 * that the connection is closing.
3062df8bae1dSRodney W. Grimes 	 */
3063fb59c426SYoshinobu Inoue 	if (thflags & TH_FIN) {
3064df8bae1dSRodney W. Grimes 		if (TCPS_HAVERCVDFIN(tp->t_state) == 0) {
3065df8bae1dSRodney W. Grimes 			socantrcvmore(so);
3066a0292f23SGarrett Wollman 			/*
3067a0292f23SGarrett Wollman 			 * If connection is half-synchronized
3068d3eede9dSAndras Olah 			 * (ie NEEDSYN flag on) then delay ACK,
3069a0292f23SGarrett Wollman 			 * so it may be piggybacked when SYN is sent.
3070a0292f23SGarrett Wollman 			 * Otherwise, since we received a FIN then no
3071a0292f23SGarrett Wollman 			 * more input can be expected, send ACK now.
3072a0292f23SGarrett Wollman 			 */
30733bfd6421SJonathan Lemon 			if (tp->t_flags & TF_NEEDSYN)
30743bfd6421SJonathan Lemon 				tp->t_flags |= TF_DELACK;
3075a0292f23SGarrett Wollman 			else
3076df8bae1dSRodney W. Grimes 				tp->t_flags |= TF_ACKNOW;
3077df8bae1dSRodney W. Grimes 			tp->rcv_nxt++;
3078df8bae1dSRodney W. Grimes 		}
3079df8bae1dSRodney W. Grimes 		switch (tp->t_state) {
3080df8bae1dSRodney W. Grimes 
3081df8bae1dSRodney W. Grimes 		/*
3082df8bae1dSRodney W. Grimes 		 * In SYN_RECEIVED and ESTABLISHED STATES
3083df8bae1dSRodney W. Grimes 		 * enter the CLOSE_WAIT state.
3084df8bae1dSRodney W. Grimes 		 */
3085df8bae1dSRodney W. Grimes 		case TCPS_SYN_RECEIVED:
30869b8b58e0SJonathan Lemon 			tp->t_starttime = ticks;
30879b8b58e0SJonathan Lemon 			/* FALLTHROUGH */
3088df8bae1dSRodney W. Grimes 		case TCPS_ESTABLISHED:
308957f60867SMark Johnston 			tcp_state_change(tp, TCPS_CLOSE_WAIT);
3090df8bae1dSRodney W. Grimes 			break;
3091df8bae1dSRodney W. Grimes 
3092df8bae1dSRodney W. Grimes 		/*
3093df8bae1dSRodney W. Grimes 		 * If still in FIN_WAIT_1 STATE FIN has not been acked so
3094df8bae1dSRodney W. Grimes 		 * enter the CLOSING state.
3095df8bae1dSRodney W. Grimes 		 */
3096df8bae1dSRodney W. Grimes 		case TCPS_FIN_WAIT_1:
309757f60867SMark Johnston 			tcp_state_change(tp, TCPS_CLOSING);
3098df8bae1dSRodney W. Grimes 			break;
3099df8bae1dSRodney W. Grimes 
3100df8bae1dSRodney W. Grimes 		/*
3101df8bae1dSRodney W. Grimes 		 * In FIN_WAIT_2 state enter the TIME_WAIT state,
3102df8bae1dSRodney W. Grimes 		 * starting the time-wait timer, turning off the other
3103df8bae1dSRodney W. Grimes 		 * standard timers.
3104df8bae1dSRodney W. Grimes 		 */
3105df8bae1dSRodney W. Grimes 		case TCPS_FIN_WAIT_2:
3106340c35deSJonathan Lemon 			tcp_twstart(tp);
3107679d9708SAndre Oppermann 			return;
3108df8bae1dSRodney W. Grimes 		}
3109df8bae1dSRodney W. Grimes 	}
3110610ee2f9SDavid Greenman #ifdef TCPDEBUG
31114cc20ab1SSeigo Tanimura 	if (so->so_options & SO_DEBUG)
3112fb59c426SYoshinobu Inoue 		tcp_trace(TA_INPUT, ostate, tp, (void *)tcp_saveipgen,
3113fb59c426SYoshinobu Inoue 			  &tcp_savetcp, 0);
3114610ee2f9SDavid Greenman #endif
31152b9c9984SGeorge V. Neville-Neil 	TCP_PROBE3(debug__input, tp, th, m);
3116df8bae1dSRodney W. Grimes 
3117df8bae1dSRodney W. Grimes 	/*
3118df8bae1dSRodney W. Grimes 	 * Return any desired output.
3119df8bae1dSRodney W. Grimes 	 */
3120df8bae1dSRodney W. Grimes 	if (needoutput || (tp->t_flags & TF_ACKNOW))
312155bceb1eSRandall Stewart 		(void) tp->t_fb->tfb_tcp_output(tp);
31227792ea27SJeffrey Hsu 
3123a14c749fSJonathan Lemon check_delack:
31248501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
3125252ca428SRobert Watson 
3126a14c749fSJonathan Lemon 	if (tp->t_flags & TF_DELACK) {
31273bfd6421SJonathan Lemon 		tp->t_flags &= ~TF_DELACK;
3128b8152ba7SAndre Oppermann 		tcp_timer_activate(tp, TT_DELACK, tcp_delacktime);
31293bfd6421SJonathan Lemon 	}
31308501a69cSRobert Watson 	INP_WUNLOCK(tp->t_inpcb);
3131679d9708SAndre Oppermann 	return;
3132df8bae1dSRodney W. Grimes 
3133df8bae1dSRodney W. Grimes dropafterack:
3134df8bae1dSRodney W. Grimes 	/*
3135df8bae1dSRodney W. Grimes 	 * Generate an ACK dropping incoming segment if it occupies
3136df8bae1dSRodney W. Grimes 	 * sequence space, where the ACK reflects our state.
313780ab7c0eSGarrett Wollman 	 *
313880ab7c0eSGarrett Wollman 	 * We can now skip the test for the RST flag since all
313980ab7c0eSGarrett Wollman 	 * paths to this code happen after packets containing
314080ab7c0eSGarrett Wollman 	 * RST have been dropped.
314180ab7c0eSGarrett Wollman 	 *
314280ab7c0eSGarrett Wollman 	 * In the SYN-RECEIVED state, don't send an ACK unless the
314380ab7c0eSGarrett Wollman 	 * segment we received passes the SYN-RECEIVED ACK test.
314480ab7c0eSGarrett Wollman 	 * If it fails send a RST.  This breaks the loop in the
314580ab7c0eSGarrett Wollman 	 * "LAND" DoS attack, and also prevents an ACK storm
314680ab7c0eSGarrett Wollman 	 * between two listening ports that have been sent forged
314780ab7c0eSGarrett Wollman 	 * SYN segments, each with the source address of the other.
3148df8bae1dSRodney W. Grimes 	 */
3149fb59c426SYoshinobu Inoue 	if (tp->t_state == TCPS_SYN_RECEIVED && (thflags & TH_ACK) &&
3150fb59c426SYoshinobu Inoue 	    (SEQ_GT(tp->snd_una, th->th_ack) ||
3151a57815efSBosko Milekic 	     SEQ_GT(th->th_ack, tp->snd_max)) ) {
3152a57815efSBosko Milekic 		rstreason = BANDLIM_RST_OPENPORT;
3153a57815efSBosko Milekic 		goto dropwithreset;
3154a57815efSBosko Milekic 	}
3155a0292f23SGarrett Wollman #ifdef TCPDEBUG
31564cc20ab1SSeigo Tanimura 	if (so->so_options & SO_DEBUG)
3157fb59c426SYoshinobu Inoue 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
3158fb59c426SYoshinobu Inoue 			  &tcp_savetcp, 0);
3159a0292f23SGarrett Wollman #endif
31602b9c9984SGeorge V. Neville-Neil 	TCP_PROBE3(debug__input, tp, th, m);
3161df8bae1dSRodney W. Grimes 	tp->t_flags |= TF_ACKNOW;
316255bceb1eSRandall Stewart 	(void) tp->t_fb->tfb_tcp_output(tp);
31638501a69cSRobert Watson 	INP_WUNLOCK(tp->t_inpcb);
3164d6915262SRobert Watson 	m_freem(m);
3165679d9708SAndre Oppermann 	return;
3166df8bae1dSRodney W. Grimes 
3167df8bae1dSRodney W. Grimes dropwithreset:
3168a0ca0871SRobert Watson 	if (tp != NULL) {
3169302ce8d6SAndre Oppermann 		tcp_dropwithreset(m, th, tp, tlen, rstreason);
31708501a69cSRobert Watson 		INP_WUNLOCK(tp->t_inpcb);
3171dd8ac7f9SRobert Watson 	} else
3172a0ca0871SRobert Watson 		tcp_dropwithreset(m, th, NULL, tlen, rstreason);
3173679d9708SAndre Oppermann 	return;
3174df8bae1dSRodney W. Grimes 
3175df8bae1dSRodney W. Grimes drop:
3176df8bae1dSRodney W. Grimes 	/*
3177df8bae1dSRodney W. Grimes 	 * Drop space held by incoming segment and return.
3178df8bae1dSRodney W. Grimes 	 */
3179610ee2f9SDavid Greenman #ifdef TCPDEBUG
31801c53f806SRobert Watson 	if (tp == NULL || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG))
3181fb59c426SYoshinobu Inoue 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
3182fb59c426SYoshinobu Inoue 			  &tcp_savetcp, 0);
3183a0292f23SGarrett Wollman #endif
31842b9c9984SGeorge V. Neville-Neil 	TCP_PROBE3(debug__input, tp, th, m);
31851c53f806SRobert Watson 	if (tp != NULL)
31868501a69cSRobert Watson 		INP_WUNLOCK(tp->t_inpcb);
3187d6915262SRobert Watson 	m_freem(m);
3188302ce8d6SAndre Oppermann }
3189302ce8d6SAndre Oppermann 
3190302ce8d6SAndre Oppermann /*
31910ca3f933SAndre Oppermann  * Issue RST and make ACK acceptable to originator of segment.
31920ca3f933SAndre Oppermann  * The mbuf must still include the original packet header.
31930ca3f933SAndre Oppermann  * tp may be NULL.
3194302ce8d6SAndre Oppermann  */
319555bceb1eSRandall Stewart void
3196302ce8d6SAndre Oppermann tcp_dropwithreset(struct mbuf *m, struct tcphdr *th, struct tcpcb *tp,
3197302ce8d6SAndre Oppermann     int tlen, int rstreason)
3198302ce8d6SAndre Oppermann {
3199b287c6c7SBjoern A. Zeeb #ifdef INET
3200302ce8d6SAndre Oppermann 	struct ip *ip;
3201b287c6c7SBjoern A. Zeeb #endif
3202302ce8d6SAndre Oppermann #ifdef INET6
3203302ce8d6SAndre Oppermann 	struct ip6_hdr *ip6;
3204302ce8d6SAndre Oppermann #endif
32057a3244ccSRobert Watson 
32067a3244ccSRobert Watson 	if (tp != NULL) {
32078501a69cSRobert Watson 		INP_WLOCK_ASSERT(tp->t_inpcb);
32087a3244ccSRobert Watson 	}
32097a3244ccSRobert Watson 
32100ca3f933SAndre Oppermann 	/* Don't bother if destination was broadcast/multicast. */
3211302ce8d6SAndre Oppermann 	if ((th->th_flags & TH_RST) || m->m_flags & (M_BCAST|M_MCAST))
3212302ce8d6SAndre Oppermann 		goto drop;
3213302ce8d6SAndre Oppermann #ifdef INET6
3214302ce8d6SAndre Oppermann 	if (mtod(m, struct ip *)->ip_v == 6) {
3215302ce8d6SAndre Oppermann 		ip6 = mtod(m, struct ip6_hdr *);
3216302ce8d6SAndre Oppermann 		if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
3217302ce8d6SAndre Oppermann 		    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src))
3218302ce8d6SAndre Oppermann 			goto drop;
3219302ce8d6SAndre Oppermann 		/* IPv6 anycast check is done at tcp6_input() */
3220b287c6c7SBjoern A. Zeeb 	}
3221302ce8d6SAndre Oppermann #endif
3222b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
3223b287c6c7SBjoern A. Zeeb 	else
3224b287c6c7SBjoern A. Zeeb #endif
3225b287c6c7SBjoern A. Zeeb #ifdef INET
3226302ce8d6SAndre Oppermann 	{
3227302ce8d6SAndre Oppermann 		ip = mtod(m, struct ip *);
3228302ce8d6SAndre Oppermann 		if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
3229302ce8d6SAndre Oppermann 		    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
3230302ce8d6SAndre Oppermann 		    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
3231302ce8d6SAndre Oppermann 		    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
3232302ce8d6SAndre Oppermann 			goto drop;
3233302ce8d6SAndre Oppermann 	}
3234b287c6c7SBjoern A. Zeeb #endif
3235302ce8d6SAndre Oppermann 
3236302ce8d6SAndre Oppermann 	/* Perform bandwidth limiting. */
3237302ce8d6SAndre Oppermann 	if (badport_bandlim(rstreason) < 0)
3238302ce8d6SAndre Oppermann 		goto drop;
3239302ce8d6SAndre Oppermann 
3240302ce8d6SAndre Oppermann 	/* tcp_respond consumes the mbuf chain. */
3241302ce8d6SAndre Oppermann 	if (th->th_flags & TH_ACK) {
3242302ce8d6SAndre Oppermann 		tcp_respond(tp, mtod(m, void *), th, m, (tcp_seq)0,
3243302ce8d6SAndre Oppermann 		    th->th_ack, TH_RST);
3244302ce8d6SAndre Oppermann 	} else {
3245302ce8d6SAndre Oppermann 		if (th->th_flags & TH_SYN)
3246302ce8d6SAndre Oppermann 			tlen++;
32474ddd5aadSMichael Tuexen 		if (th->th_flags & TH_FIN)
32484ddd5aadSMichael Tuexen 			tlen++;
3249302ce8d6SAndre Oppermann 		tcp_respond(tp, mtod(m, void *), th, m, th->th_seq+tlen,
3250302ce8d6SAndre Oppermann 		    (tcp_seq)0, TH_RST|TH_ACK);
3251302ce8d6SAndre Oppermann 	}
3252302ce8d6SAndre Oppermann 	return;
3253302ce8d6SAndre Oppermann drop:
3254302ce8d6SAndre Oppermann 	m_freem(m);
3255df8bae1dSRodney W. Grimes }
3256df8bae1dSRodney W. Grimes 
3257be2ac88cSJonathan Lemon /*
3258be2ac88cSJonathan Lemon  * Parse TCP options and place in tcpopt.
3259be2ac88cSJonathan Lemon  */
326055bceb1eSRandall Stewart void
3261ad3f9ab3SAndre Oppermann tcp_dooptions(struct tcpopt *to, u_char *cp, int cnt, int flags)
3262df8bae1dSRodney W. Grimes {
3263df8bae1dSRodney W. Grimes 	int opt, optlen;
3264df8bae1dSRodney W. Grimes 
3265be2ac88cSJonathan Lemon 	to->to_flags = 0;
3266df8bae1dSRodney W. Grimes 	for (; cnt > 0; cnt -= optlen, cp += optlen) {
3267df8bae1dSRodney W. Grimes 		opt = cp[0];
3268df8bae1dSRodney W. Grimes 		if (opt == TCPOPT_EOL)
3269df8bae1dSRodney W. Grimes 			break;
3270df8bae1dSRodney W. Grimes 		if (opt == TCPOPT_NOP)
3271df8bae1dSRodney W. Grimes 			optlen = 1;
3272df8bae1dSRodney W. Grimes 		else {
3273b474779fSJun-ichiro itojun Hagino 			if (cnt < 2)
3274b474779fSJun-ichiro itojun Hagino 				break;
3275df8bae1dSRodney W. Grimes 			optlen = cp[1];
3276b474779fSJun-ichiro itojun Hagino 			if (optlen < 2 || optlen > cnt)
3277df8bae1dSRodney W. Grimes 				break;
3278df8bae1dSRodney W. Grimes 		}
3279df8bae1dSRodney W. Grimes 		switch (opt) {
3280df8bae1dSRodney W. Grimes 		case TCPOPT_MAXSEG:
3281df8bae1dSRodney W. Grimes 			if (optlen != TCPOLEN_MAXSEG)
3282df8bae1dSRodney W. Grimes 				continue;
3283f72167f4SAndre Oppermann 			if (!(flags & TO_SYN))
3284df8bae1dSRodney W. Grimes 				continue;
3285be2ac88cSJonathan Lemon 			to->to_flags |= TOF_MSS;
3286be2ac88cSJonathan Lemon 			bcopy((char *)cp + 2,
3287be2ac88cSJonathan Lemon 			    (char *)&to->to_mss, sizeof(to->to_mss));
3288fd8e4ebcSMike Barcroft 			to->to_mss = ntohs(to->to_mss);
3289df8bae1dSRodney W. Grimes 			break;
3290df8bae1dSRodney W. Grimes 		case TCPOPT_WINDOW:
3291df8bae1dSRodney W. Grimes 			if (optlen != TCPOLEN_WINDOW)
3292df8bae1dSRodney W. Grimes 				continue;
3293f72167f4SAndre Oppermann 			if (!(flags & TO_SYN))
3294df8bae1dSRodney W. Grimes 				continue;
3295be2ac88cSJonathan Lemon 			to->to_flags |= TOF_SCALE;
329602a1a643SAndre Oppermann 			to->to_wscale = min(cp[2], TCP_MAX_WINSHIFT);
3297df8bae1dSRodney W. Grimes 			break;
3298df8bae1dSRodney W. Grimes 		case TCPOPT_TIMESTAMP:
3299df8bae1dSRodney W. Grimes 			if (optlen != TCPOLEN_TIMESTAMP)
3300df8bae1dSRodney W. Grimes 				continue;
3301be2ac88cSJonathan Lemon 			to->to_flags |= TOF_TS;
3302a0292f23SGarrett Wollman 			bcopy((char *)cp + 2,
3303a0292f23SGarrett Wollman 			    (char *)&to->to_tsval, sizeof(to->to_tsval));
3304fd8e4ebcSMike Barcroft 			to->to_tsval = ntohl(to->to_tsval);
3305a0292f23SGarrett Wollman 			bcopy((char *)cp + 6,
3306a0292f23SGarrett Wollman 			    (char *)&to->to_tsecr, sizeof(to->to_tsecr));
3307fd8e4ebcSMike Barcroft 			to->to_tsecr = ntohl(to->to_tsecr);
3308df8bae1dSRodney W. Grimes 			break;
33091cfd4b53SBruce M Simpson 		case TCPOPT_SIGNATURE:
3310fcf59617SAndrey V. Elsukov 			/*
3311fcf59617SAndrey V. Elsukov 			 * In order to reply to a host which has set the
3312fcf59617SAndrey V. Elsukov 			 * TCP_SIGNATURE option in its initial SYN, we have
3313fcf59617SAndrey V. Elsukov 			 * to record the fact that the option was observed
3314fcf59617SAndrey V. Elsukov 			 * here for the syncache code to perform the correct
3315fcf59617SAndrey V. Elsukov 			 * response.
3316fcf59617SAndrey V. Elsukov 			 */
33171cfd4b53SBruce M Simpson 			if (optlen != TCPOLEN_SIGNATURE)
33181cfd4b53SBruce M Simpson 				continue;
3319df47e437SAndre Oppermann 			to->to_flags |= TOF_SIGNATURE;
3320df47e437SAndre Oppermann 			to->to_signature = cp + 2;
33211cfd4b53SBruce M Simpson 			break;
33226d90faf3SPaul Saab 		case TCPOPT_SACK_PERMITTED:
3323f72167f4SAndre Oppermann 			if (optlen != TCPOLEN_SACK_PERMITTED)
33246d90faf3SPaul Saab 				continue;
3325f72167f4SAndre Oppermann 			if (!(flags & TO_SYN))
3326f72167f4SAndre Oppermann 				continue;
3327603724d3SBjoern A. Zeeb 			if (!V_tcp_do_sack)
3328f72167f4SAndre Oppermann 				continue;
3329fc30a251SAndre Oppermann 			to->to_flags |= TOF_SACKPERM;
33306d90faf3SPaul Saab 			break;
33316d90faf3SPaul Saab 		case TCPOPT_SACK:
33325a53ca16SPaul Saab 			if (optlen <= 2 || (optlen - 2) % TCPOLEN_SACK != 0)
33336d90faf3SPaul Saab 				continue;
3334b728e902SAndre Oppermann 			if (flags & TO_SYN)
3335b728e902SAndre Oppermann 				continue;
3336fc30a251SAndre Oppermann 			to->to_flags |= TOF_SACK;
33375a53ca16SPaul Saab 			to->to_nsacks = (optlen - 2) / TCPOLEN_SACK;
33385a53ca16SPaul Saab 			to->to_sacks = cp + 2;
333978b50714SRobert Watson 			TCPSTAT_INC(tcps_sack_rcv_blocks);
33406d90faf3SPaul Saab 			break;
3341281a0fd4SPatrick Kelsey 		case TCPOPT_FAST_OPEN:
3342c560df6fSPatrick Kelsey 			/*
3343c560df6fSPatrick Kelsey 			 * Cookie length validation is performed by the
3344c560df6fSPatrick Kelsey 			 * server side cookie checking code or the client
3345c560df6fSPatrick Kelsey 			 * side cookie cache update code.
3346c560df6fSPatrick Kelsey 			 */
3347281a0fd4SPatrick Kelsey 			if (!(flags & TO_SYN))
3348281a0fd4SPatrick Kelsey 				continue;
3349c560df6fSPatrick Kelsey 			if (!V_tcp_fastopen_client_enable &&
3350c560df6fSPatrick Kelsey 			    !V_tcp_fastopen_server_enable)
3351281a0fd4SPatrick Kelsey 				continue;
3352281a0fd4SPatrick Kelsey 			to->to_flags |= TOF_FASTOPEN;
3353281a0fd4SPatrick Kelsey 			to->to_tfo_len = optlen - 2;
3354281a0fd4SPatrick Kelsey 			to->to_tfo_cookie = to->to_tfo_len ? cp + 2 : NULL;
3355281a0fd4SPatrick Kelsey 			break;
3356be2ac88cSJonathan Lemon 		default:
3357be2ac88cSJonathan Lemon 			continue;
3358df8bae1dSRodney W. Grimes 		}
3359df8bae1dSRodney W. Grimes 	}
3360df8bae1dSRodney W. Grimes }
3361df8bae1dSRodney W. Grimes 
3362df8bae1dSRodney W. Grimes /*
3363df8bae1dSRodney W. Grimes  * Pull out of band byte out of a segment so
3364df8bae1dSRodney W. Grimes  * it doesn't appear in the user's data queue.
3365df8bae1dSRodney W. Grimes  * It is still reflected in the segment length for
3366df8bae1dSRodney W. Grimes  * sequencing purposes.
3367df8bae1dSRodney W. Grimes  */
336855bceb1eSRandall Stewart void
3369ad3f9ab3SAndre Oppermann tcp_pulloutofband(struct socket *so, struct tcphdr *th, struct mbuf *m,
3370ad3f9ab3SAndre Oppermann     int off)
3371df8bae1dSRodney W. Grimes {
3372fb59c426SYoshinobu Inoue 	int cnt = off + th->th_urp - 1;
3373df8bae1dSRodney W. Grimes 
3374df8bae1dSRodney W. Grimes 	while (cnt >= 0) {
3375df8bae1dSRodney W. Grimes 		if (m->m_len > cnt) {
3376df8bae1dSRodney W. Grimes 			char *cp = mtod(m, caddr_t) + cnt;
3377df8bae1dSRodney W. Grimes 			struct tcpcb *tp = sototcpcb(so);
3378df8bae1dSRodney W. Grimes 
33798501a69cSRobert Watson 			INP_WLOCK_ASSERT(tp->t_inpcb);
33807a3244ccSRobert Watson 
3381df8bae1dSRodney W. Grimes 			tp->t_iobc = *cp;
3382df8bae1dSRodney W. Grimes 			tp->t_oobflags |= TCPOOB_HAVEDATA;
3383df8bae1dSRodney W. Grimes 			bcopy(cp+1, cp, (unsigned)(m->m_len - cnt - 1));
3384df8bae1dSRodney W. Grimes 			m->m_len--;
338569a34685SYoshinobu Inoue 			if (m->m_flags & M_PKTHDR)
338669a34685SYoshinobu Inoue 				m->m_pkthdr.len--;
3387df8bae1dSRodney W. Grimes 			return;
3388df8bae1dSRodney W. Grimes 		}
3389df8bae1dSRodney W. Grimes 		cnt -= m->m_len;
3390df8bae1dSRodney W. Grimes 		m = m->m_next;
33914dfdffe9SAndre Oppermann 		if (m == NULL)
3392df8bae1dSRodney W. Grimes 			break;
3393df8bae1dSRodney W. Grimes 	}
3394df8bae1dSRodney W. Grimes 	panic("tcp_pulloutofband");
3395df8bae1dSRodney W. Grimes }
3396df8bae1dSRodney W. Grimes 
3397df8bae1dSRodney W. Grimes /*
3398df8bae1dSRodney W. Grimes  * Collect new round-trip time estimate
3399df8bae1dSRodney W. Grimes  * and update averages and current timeout.
3400df8bae1dSRodney W. Grimes  */
340155bceb1eSRandall Stewart void
3402ad3f9ab3SAndre Oppermann tcp_xmit_timer(struct tcpcb *tp, int rtt)
3403df8bae1dSRodney W. Grimes {
3404ad3f9ab3SAndre Oppermann 	int delta;
3405233e8c18SGarrett Wollman 
34068501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
34072be3bf22SRobert Watson 
340878b50714SRobert Watson 	TCPSTAT_INC(tcps_rttupdated);
3409233e8c18SGarrett Wollman 	tp->t_rttupdated++;
3410adc56f5aSEdward Tomasz Napierala #ifdef STATS
3411adc56f5aSEdward Tomasz Napierala 	stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RTT,
3412adc56f5aSEdward Tomasz Napierala 	    imax(0, rtt * 1000 / hz));
3413adc56f5aSEdward Tomasz Napierala #endif
34145ede40dcSRyan Stone 	if ((tp->t_srtt != 0) && (tp->t_rxtshift <= TCP_RTT_INVALIDATE)) {
3415233e8c18SGarrett Wollman 		/*
3416233e8c18SGarrett Wollman 		 * srtt is stored as fixed point with 5 bits after the
3417233e8c18SGarrett Wollman 		 * binary point (i.e., scaled by 8).  The following magic
3418233e8c18SGarrett Wollman 		 * is equivalent to the smoothing algorithm in rfc793 with
3419233e8c18SGarrett Wollman 		 * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed
3420233e8c18SGarrett Wollman 		 * point).  Adjust rtt to origin 0.
3421233e8c18SGarrett Wollman 		 */
3422233e8c18SGarrett Wollman 		delta = ((rtt - 1) << TCP_DELTA_SHIFT)
3423233e8c18SGarrett Wollman 			- (tp->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT));
3424233e8c18SGarrett Wollman 
3425233e8c18SGarrett Wollman 		if ((tp->t_srtt += delta) <= 0)
3426233e8c18SGarrett Wollman 			tp->t_srtt = 1;
3427233e8c18SGarrett Wollman 
3428233e8c18SGarrett Wollman 		/*
3429233e8c18SGarrett Wollman 		 * We accumulate a smoothed rtt variance (actually, a
3430233e8c18SGarrett Wollman 		 * smoothed mean difference), then set the retransmit
3431233e8c18SGarrett Wollman 		 * timer to smoothed rtt + 4 times the smoothed variance.
3432233e8c18SGarrett Wollman 		 * rttvar is stored as fixed point with 4 bits after the
3433233e8c18SGarrett Wollman 		 * binary point (scaled by 16).  The following is
3434233e8c18SGarrett Wollman 		 * equivalent to rfc793 smoothing with an alpha of .75
3435233e8c18SGarrett Wollman 		 * (rttvar = rttvar*3/4 + |delta| / 4).  This replaces
3436233e8c18SGarrett Wollman 		 * rfc793's wired-in beta.
3437233e8c18SGarrett Wollman 		 */
3438233e8c18SGarrett Wollman 		if (delta < 0)
3439233e8c18SGarrett Wollman 			delta = -delta;
3440233e8c18SGarrett Wollman 		delta -= tp->t_rttvar >> (TCP_RTTVAR_SHIFT - TCP_DELTA_SHIFT);
3441233e8c18SGarrett Wollman 		if ((tp->t_rttvar += delta) <= 0)
3442233e8c18SGarrett Wollman 			tp->t_rttvar = 1;
34431fcc99b5SMatthew Dillon 		if (tp->t_rttbest > tp->t_srtt + tp->t_rttvar)
34441fcc99b5SMatthew Dillon 		    tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
3445233e8c18SGarrett Wollman 	} else {
3446233e8c18SGarrett Wollman 		/*
3447233e8c18SGarrett Wollman 		 * No rtt measurement yet - use the unsmoothed rtt.
3448233e8c18SGarrett Wollman 		 * Set the variance to half the rtt (so our first
3449233e8c18SGarrett Wollman 		 * retransmit happens at 3*rtt).
3450233e8c18SGarrett Wollman 		 */
3451233e8c18SGarrett Wollman 		tp->t_srtt = rtt << TCP_RTT_SHIFT;
3452233e8c18SGarrett Wollman 		tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1);
34531fcc99b5SMatthew Dillon 		tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
3454233e8c18SGarrett Wollman 	}
34559b8b58e0SJonathan Lemon 	tp->t_rtttime = 0;
3456df8bae1dSRodney W. Grimes 	tp->t_rxtshift = 0;
3457df8bae1dSRodney W. Grimes 
3458df8bae1dSRodney W. Grimes 	/*
3459df8bae1dSRodney W. Grimes 	 * the retransmit should happen at rtt + 4 * rttvar.
3460df8bae1dSRodney W. Grimes 	 * Because of the way we do the smoothing, srtt and rttvar
3461df8bae1dSRodney W. Grimes 	 * will each average +1/2 tick of bias.  When we compute
3462df8bae1dSRodney W. Grimes 	 * the retransmit timer, we want 1/2 tick of rounding and
3463df8bae1dSRodney W. Grimes 	 * 1 extra tick because of +-1/2 tick uncertainty in the
3464df8bae1dSRodney W. Grimes 	 * firing of the timer.  The bias will give us exactly the
3465df8bae1dSRodney W. Grimes 	 * 1.5 tick we need.  But, because the bias is
3466df8bae1dSRodney W. Grimes 	 * statistical, we have to test that we don't drop below
3467df8bae1dSRodney W. Grimes 	 * the minimum feasible timer (which is 2 ticks).
3468df8bae1dSRodney W. Grimes 	 */
3469233e8c18SGarrett Wollman 	TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
34709e2874b0SGarrett Wollman 		      max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
3471df8bae1dSRodney W. Grimes 
3472df8bae1dSRodney W. Grimes 	/*
3473df8bae1dSRodney W. Grimes 	 * We received an ack for a packet that wasn't retransmitted;
3474df8bae1dSRodney W. Grimes 	 * it is probably safe to discard any error indications we've
3475df8bae1dSRodney W. Grimes 	 * received recently.  This isn't quite right, but close enough
3476df8bae1dSRodney W. Grimes 	 * for now (a route might have failed after we sent a segment,
3477df8bae1dSRodney W. Grimes 	 * and the return path might not be symmetrical).
3478df8bae1dSRodney W. Grimes 	 */
3479df8bae1dSRodney W. Grimes 	tp->t_softerror = 0;
3480df8bae1dSRodney W. Grimes }
3481df8bae1dSRodney W. Grimes 
3482df8bae1dSRodney W. Grimes /*
3483df8bae1dSRodney W. Grimes  * Determine a reasonable value for maxseg size.
3484df8bae1dSRodney W. Grimes  * If the route is known, check route for mtu.
34854faaea55SAndre Oppermann  * If none, use an mss that can be handled on the outgoing interface
34864faaea55SAndre Oppermann  * without forcing IP to fragment.  If no route is found, route has no mtu,
3487df8bae1dSRodney W. Grimes  * or the destination isn't local, use a default, hopefully conservative
3488df8bae1dSRodney W. Grimes  * size (usually 512 or the default IP max size, but no more than the mtu
3489df8bae1dSRodney W. Grimes  * of the interface), as we can't discover anything about intervening
3490df8bae1dSRodney W. Grimes  * gateways or networks.  We also initialize the congestion/slow start
3491df8bae1dSRodney W. Grimes  * window to be a single segment if the destination isn't local.
3492df8bae1dSRodney W. Grimes  * While looking at the routing entry, we also initialize other path-dependent
3493df8bae1dSRodney W. Grimes  * parameters from pre-set or cached values in the routing entry.
3494a0292f23SGarrett Wollman  *
34950c39d38dSGleb Smirnoff  * NOTE that resulting t_maxseg doesn't include space for TCP options or
34960c39d38dSGleb Smirnoff  * IP options, e.g. IPSEC data, since length of this data may vary, and
34970c39d38dSGleb Smirnoff  * thus it is calculated for every segment separately in tcp_output().
3498a0292f23SGarrett Wollman  *
349997d8d152SAndre Oppermann  * NOTE that this routine is only called when we process an incoming
3500ef341ee1SGleb Smirnoff  * segment, or an ICMP need fragmentation datagram. Outgoing SYN/ACK MSS
3501ef341ee1SGleb Smirnoff  * settings are handled in tcp_mssopt().
3502df8bae1dSRodney W. Grimes  */
3503a0292f23SGarrett Wollman void
3504ef341ee1SGleb Smirnoff tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer,
35053c914c54SAndre Oppermann     struct hc_metrics_lite *metricptr, struct tcp_ifcap *cap)
3506df8bae1dSRodney W. Grimes {
3507b287c6c7SBjoern A. Zeeb 	int mss = 0;
35083ac12506SJonathan T. Looney 	uint32_t maxmtu = 0;
3509c068736aSJeffrey Hsu 	struct inpcb *inp = tp->t_inpcb;
351097d8d152SAndre Oppermann 	struct hc_metrics_lite metrics;
3511fb59c426SYoshinobu Inoue #ifdef INET6
3512c068736aSJeffrey Hsu 	int isipv6 = ((inp->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
3513c068736aSJeffrey Hsu 	size_t min_protoh = isipv6 ?
3514c068736aSJeffrey Hsu 			    sizeof (struct ip6_hdr) + sizeof (struct tcphdr) :
3515c068736aSJeffrey Hsu 			    sizeof (struct tcpiphdr);
3516c068736aSJeffrey Hsu #else
3517c068736aSJeffrey Hsu 	const size_t min_protoh = sizeof(struct tcpiphdr);
3518fb59c426SYoshinobu Inoue #endif
3519df8bae1dSRodney W. Grimes 
35208501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
35217a3244ccSRobert Watson 
3522ef341ee1SGleb Smirnoff 	if (mtuoffer != -1) {
3523ef341ee1SGleb Smirnoff 		KASSERT(offer == -1, ("%s: conflict", __func__));
3524ef341ee1SGleb Smirnoff 		offer = mtuoffer - min_protoh;
3525ef341ee1SGleb Smirnoff 	}
3526ef341ee1SGleb Smirnoff 
3527e8949f74SAndre Oppermann 	/* Initialize. */
352897d8d152SAndre Oppermann #ifdef INET6
352997d8d152SAndre Oppermann 	if (isipv6) {
35303c914c54SAndre Oppermann 		maxmtu = tcp_maxmtu6(&inp->inp_inc, cap);
35310c39d38dSGleb Smirnoff 		tp->t_maxseg = V_tcp_v6mssdflt;
3532b287c6c7SBjoern A. Zeeb 	}
353397d8d152SAndre Oppermann #endif
3534b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
3535b287c6c7SBjoern A. Zeeb 	else
3536b287c6c7SBjoern A. Zeeb #endif
3537b287c6c7SBjoern A. Zeeb #ifdef INET
353897d8d152SAndre Oppermann 	{
35393c914c54SAndre Oppermann 		maxmtu = tcp_maxmtu(&inp->inp_inc, cap);
35400c39d38dSGleb Smirnoff 		tp->t_maxseg = V_tcp_mssdflt;
3541df8bae1dSRodney W. Grimes 	}
3542b287c6c7SBjoern A. Zeeb #endif
3543df8bae1dSRodney W. Grimes 
354497d8d152SAndre Oppermann 	/*
3545e8949f74SAndre Oppermann 	 * No route to sender, stay with default mss and return.
354697d8d152SAndre Oppermann 	 */
35476f01cac6SBjoern A. Zeeb 	if (maxmtu == 0) {
35486f01cac6SBjoern A. Zeeb 		/*
35498e5c87f4SBjoern A. Zeeb 		 * In case we return early we need to initialize metrics
35506f01cac6SBjoern A. Zeeb 		 * to a defined state as tcp_hc_get() would do for us
35516f01cac6SBjoern A. Zeeb 		 * if there was no cache hit.
35526f01cac6SBjoern A. Zeeb 		 */
35536f01cac6SBjoern A. Zeeb 		if (metricptr != NULL)
35546f01cac6SBjoern A. Zeeb 			bzero(metricptr, sizeof(struct hc_metrics_lite));
355597d8d152SAndre Oppermann 		return;
35566f01cac6SBjoern A. Zeeb 	}
355797d8d152SAndre Oppermann 
3558e8949f74SAndre Oppermann 	/* What have we got? */
355997d8d152SAndre Oppermann 	switch (offer) {
356097d8d152SAndre Oppermann 		case 0:
356197d8d152SAndre Oppermann 			/*
356297d8d152SAndre Oppermann 			 * Offer == 0 means that there was no MSS on the SYN
3563c3b02504SBjoern A. Zeeb 			 * segment, in this case we use tcp_mssdflt as
35640c39d38dSGleb Smirnoff 			 * already assigned to t_maxseg above.
356597d8d152SAndre Oppermann 			 */
35660c39d38dSGleb Smirnoff 			offer = tp->t_maxseg;
356797d8d152SAndre Oppermann 			break;
356897d8d152SAndre Oppermann 
356997d8d152SAndre Oppermann 		case -1:
3570a0292f23SGarrett Wollman 			/*
3571c94c54e4SAndre Oppermann 			 * Offer == -1 means that we didn't receive SYN yet.
3572a0292f23SGarrett Wollman 			 */
357397d8d152SAndre Oppermann 			/* FALLTHROUGH */
357497d8d152SAndre Oppermann 
357597d8d152SAndre Oppermann 		default:
3576a0292f23SGarrett Wollman 			/*
357753369ac9SAndre Oppermann 			 * Prevent DoS attack with too small MSS. Round up
357853369ac9SAndre Oppermann 			 * to at least minmss.
357953369ac9SAndre Oppermann 			 */
3580603724d3SBjoern A. Zeeb 			offer = max(offer, V_tcp_minmss);
358197d8d152SAndre Oppermann 	}
3582a0292f23SGarrett Wollman 
3583df8bae1dSRodney W. Grimes 	/*
3584e8949f74SAndre Oppermann 	 * rmx information is now retrieved from tcp_hostcache.
3585df8bae1dSRodney W. Grimes 	 */
358697d8d152SAndre Oppermann 	tcp_hc_get(&inp->inp_inc, &metrics);
35873cee92e0SBjoern A. Zeeb 	if (metricptr != NULL)
35883cee92e0SBjoern A. Zeeb 		bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite));
358997d8d152SAndre Oppermann 
3590df8bae1dSRodney W. Grimes 	/*
3591cc412412SHiren Panchasara 	 * If there's a discovered mtu in tcp hostcache, use it.
3592cc412412SHiren Panchasara 	 * Else, use the link mtu.
3593df8bae1dSRodney W. Grimes 	 */
359497d8d152SAndre Oppermann 	if (metrics.rmx_mtu)
35952d166c02SAndre Oppermann 		mss = min(metrics.rmx_mtu, maxmtu) - min_protoh;
3596c068736aSJeffrey Hsu 	else {
359731b3783cSHajimu UMEMOTO #ifdef INET6
3598fb59c426SYoshinobu Inoue 		if (isipv6) {
359997d8d152SAndre Oppermann 			mss = maxmtu - min_protoh;
3600603724d3SBjoern A. Zeeb 			if (!V_path_mtu_discovery &&
360197d8d152SAndre Oppermann 			    !in6_localaddr(&inp->in6p_faddr))
3602603724d3SBjoern A. Zeeb 				mss = min(mss, V_tcp_v6mssdflt);
3603b287c6c7SBjoern A. Zeeb 		}
3604b3399803SHajimu UMEMOTO #endif
3605b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
3606b287c6c7SBjoern A. Zeeb 		else
3607b287c6c7SBjoern A. Zeeb #endif
3608b287c6c7SBjoern A. Zeeb #ifdef INET
360997d8d152SAndre Oppermann 		{
361097d8d152SAndre Oppermann 			mss = maxmtu - min_protoh;
3611603724d3SBjoern A. Zeeb 			if (!V_path_mtu_discovery &&
361297d8d152SAndre Oppermann 			    !in_localaddr(inp->inp_faddr))
3613603724d3SBjoern A. Zeeb 				mss = min(mss, V_tcp_mssdflt);
3614a0292f23SGarrett Wollman 		}
3615b287c6c7SBjoern A. Zeeb #endif
36163cee92e0SBjoern A. Zeeb 		/*
36173cee92e0SBjoern A. Zeeb 		 * XXX - The above conditional (mss = maxmtu - min_protoh)
36183cee92e0SBjoern A. Zeeb 		 * probably violates the TCP spec.
36193cee92e0SBjoern A. Zeeb 		 * The problem is that, since we don't know the
36203cee92e0SBjoern A. Zeeb 		 * other end's MSS, we are supposed to use a conservative
36213cee92e0SBjoern A. Zeeb 		 * default.  But, if we do that, then MTU discovery will
36223cee92e0SBjoern A. Zeeb 		 * never actually take place, because the conservative
36233cee92e0SBjoern A. Zeeb 		 * default is much less than the MTUs typically seen
36243cee92e0SBjoern A. Zeeb 		 * on the Internet today.  For the moment, we'll sweep
36253cee92e0SBjoern A. Zeeb 		 * this under the carpet.
36263cee92e0SBjoern A. Zeeb 		 *
36273cee92e0SBjoern A. Zeeb 		 * The conservative default might not actually be a problem
36283cee92e0SBjoern A. Zeeb 		 * if the only case this occurs is when sending an initial
36293cee92e0SBjoern A. Zeeb 		 * SYN with options and data to a host we've never talked
36303cee92e0SBjoern A. Zeeb 		 * to before.  Then, they will reply with an MSS value which
36313cee92e0SBjoern A. Zeeb 		 * will get recorded and the new parameters should get
36323cee92e0SBjoern A. Zeeb 		 * recomputed.  For Further Study.
36333cee92e0SBjoern A. Zeeb 		 */
363497d8d152SAndre Oppermann 	}
3635a0292f23SGarrett Wollman 	mss = min(mss, offer);
363697d8d152SAndre Oppermann 
3637a0292f23SGarrett Wollman 	/*
36380c39d38dSGleb Smirnoff 	 * Sanity check: make sure that maxseg will be large
36393cee92e0SBjoern A. Zeeb 	 * enough to allow some data on segments even if the
36403cee92e0SBjoern A. Zeeb 	 * all the option space is used (40bytes).  Otherwise
36413cee92e0SBjoern A. Zeeb 	 * funny things may happen in tcp_output.
36420c39d38dSGleb Smirnoff 	 *
36430c39d38dSGleb Smirnoff 	 * XXXGL: shouldn't we reserve space for IP/IPv6 options?
36443cee92e0SBjoern A. Zeeb 	 */
36453cee92e0SBjoern A. Zeeb 	mss = max(mss, 64);
36463cee92e0SBjoern A. Zeeb 
364797d8d152SAndre Oppermann 	tp->t_maxseg = mss;
36483cee92e0SBjoern A. Zeeb }
36493cee92e0SBjoern A. Zeeb 
36503cee92e0SBjoern A. Zeeb void
36513cee92e0SBjoern A. Zeeb tcp_mss(struct tcpcb *tp, int offer)
36523cee92e0SBjoern A. Zeeb {
3653dbc42409SLawrence Stewart 	int mss;
36543ac12506SJonathan T. Looney 	uint32_t bufsize;
36553cee92e0SBjoern A. Zeeb 	struct inpcb *inp;
36563cee92e0SBjoern A. Zeeb 	struct socket *so;
36573cee92e0SBjoern A. Zeeb 	struct hc_metrics_lite metrics;
36583c914c54SAndre Oppermann 	struct tcp_ifcap cap;
3659dbc42409SLawrence Stewart 
36603cee92e0SBjoern A. Zeeb 	KASSERT(tp != NULL, ("%s: tp == NULL", __func__));
36613cee92e0SBjoern A. Zeeb 
36623c914c54SAndre Oppermann 	bzero(&cap, sizeof(cap));
36633c914c54SAndre Oppermann 	tcp_mss_update(tp, offer, -1, &metrics, &cap);
36643cee92e0SBjoern A. Zeeb 
36653cee92e0SBjoern A. Zeeb 	mss = tp->t_maxseg;
36663cee92e0SBjoern A. Zeeb 	inp = tp->t_inpcb;
366797d8d152SAndre Oppermann 
3668df8bae1dSRodney W. Grimes 	/*
366997d8d152SAndre Oppermann 	 * If there's a pipesize, change the socket buffer to that size,
367097d8d152SAndre Oppermann 	 * don't change if sb_hiwat is different than default (then it
367197d8d152SAndre Oppermann 	 * has been changed on purpose with setsockopt).
367297d8d152SAndre Oppermann 	 * Make the socket buffers an integral number of mss units;
367397d8d152SAndre Oppermann 	 * if the mss is larger than the socket buffer, decrease the mss.
3674df8bae1dSRodney W. Grimes 	 */
3675c3b02504SBjoern A. Zeeb 	so = inp->inp_socket;
36763f11a2f3SRobert Watson 	SOCKBUF_LOCK(&so->so_snd);
3677e233e2acSAndre Oppermann 	if ((so->so_snd.sb_hiwat == V_tcp_sendspace) && metrics.rmx_sendpipe)
367897d8d152SAndre Oppermann 		bufsize = metrics.rmx_sendpipe;
367997d8d152SAndre Oppermann 	else
3680df8bae1dSRodney W. Grimes 		bufsize = so->so_snd.sb_hiwat;
3681df8bae1dSRodney W. Grimes 	if (bufsize < mss)
3682df8bae1dSRodney W. Grimes 		mss = bufsize;
3683df8bae1dSRodney W. Grimes 	else {
3684df8bae1dSRodney W. Grimes 		bufsize = roundup(bufsize, mss);
3685df8bae1dSRodney W. Grimes 		if (bufsize > sb_max)
3686df8bae1dSRodney W. Grimes 			bufsize = sb_max;
368788c39af3SRuslan Ermilov 		if (bufsize > so->so_snd.sb_hiwat)
36883f11a2f3SRobert Watson 			(void)sbreserve_locked(&so->so_snd, bufsize, so, NULL);
3689df8bae1dSRodney W. Grimes 	}
36903f11a2f3SRobert Watson 	SOCKBUF_UNLOCK(&so->so_snd);
3691784ce8faSHiren Panchasara 	/*
3692784ce8faSHiren Panchasara 	 * Sanity check: make sure that maxseg will be large
3693784ce8faSHiren Panchasara 	 * enough to allow some data on segments even if the
3694784ce8faSHiren Panchasara 	 * all the option space is used (40bytes).  Otherwise
3695784ce8faSHiren Panchasara 	 * funny things may happen in tcp_output.
3696784ce8faSHiren Panchasara 	 *
3697784ce8faSHiren Panchasara 	 * XXXGL: shouldn't we reserve space for IP/IPv6 options?
3698784ce8faSHiren Panchasara 	 */
3699784ce8faSHiren Panchasara 	tp->t_maxseg = max(mss, 64);
3700df8bae1dSRodney W. Grimes 
37013f11a2f3SRobert Watson 	SOCKBUF_LOCK(&so->so_rcv);
3702e233e2acSAndre Oppermann 	if ((so->so_rcv.sb_hiwat == V_tcp_recvspace) && metrics.rmx_recvpipe)
370397d8d152SAndre Oppermann 		bufsize = metrics.rmx_recvpipe;
370497d8d152SAndre Oppermann 	else
3705df8bae1dSRodney W. Grimes 		bufsize = so->so_rcv.sb_hiwat;
3706df8bae1dSRodney W. Grimes 	if (bufsize > mss) {
3707df8bae1dSRodney W. Grimes 		bufsize = roundup(bufsize, mss);
3708df8bae1dSRodney W. Grimes 		if (bufsize > sb_max)
3709df8bae1dSRodney W. Grimes 			bufsize = sb_max;
371088c39af3SRuslan Ermilov 		if (bufsize > so->so_rcv.sb_hiwat)
37113f11a2f3SRobert Watson 			(void)sbreserve_locked(&so->so_rcv, bufsize, so, NULL);
3712df8bae1dSRodney W. Grimes 	}
37133f11a2f3SRobert Watson 	SOCKBUF_UNLOCK(&so->so_rcv);
371491d6cfa6SBjoern A. Zeeb 
371591d6cfa6SBjoern A. Zeeb 	/* Check the interface for TSO capabilities. */
37163c914c54SAndre Oppermann 	if (cap.ifcap & CSUM_TSO) {
371791d6cfa6SBjoern A. Zeeb 		tp->t_flags |= TF_TSO;
37183c914c54SAndre Oppermann 		tp->t_tsomax = cap.tsomax;
37199fd573c3SHans Petter Selasky 		tp->t_tsomaxsegcount = cap.tsomaxsegcount;
37209fd573c3SHans Petter Selasky 		tp->t_tsomaxsegsize = cap.tsomaxsegsize;
37213c914c54SAndre Oppermann 	}
3722a0292f23SGarrett Wollman }
3723a0292f23SGarrett Wollman 
3724a0292f23SGarrett Wollman /*
3725a0292f23SGarrett Wollman  * Determine the MSS option to send on an outgoing SYN.
3726a0292f23SGarrett Wollman  */
3727a0292f23SGarrett Wollman int
3728ad3f9ab3SAndre Oppermann tcp_mssopt(struct in_conninfo *inc)
3729a0292f23SGarrett Wollman {
373097d8d152SAndre Oppermann 	int mss = 0;
37313ac12506SJonathan T. Looney 	uint32_t thcmtu = 0;
37323ac12506SJonathan T. Looney 	uint32_t maxmtu = 0;
373397d8d152SAndre Oppermann 	size_t min_protoh;
3734a0292f23SGarrett Wollman 
373597d8d152SAndre Oppermann 	KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer"));
3736a0292f23SGarrett Wollman 
373731b3783cSHajimu UMEMOTO #ifdef INET6
3738dcdb4371SBjoern A. Zeeb 	if (inc->inc_flags & INC_ISIPV6) {
3739603724d3SBjoern A. Zeeb 		mss = V_tcp_v6mssdflt;
3740233dcce1SAndre Oppermann 		maxmtu = tcp_maxmtu6(inc, NULL);
374197d8d152SAndre Oppermann 		min_protoh = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
3742b287c6c7SBjoern A. Zeeb 	}
374331b3783cSHajimu UMEMOTO #endif
3744b287c6c7SBjoern A. Zeeb #if defined(INET) && defined(INET6)
3745b287c6c7SBjoern A. Zeeb 	else
3746b287c6c7SBjoern A. Zeeb #endif
3747b287c6c7SBjoern A. Zeeb #ifdef INET
374897d8d152SAndre Oppermann 	{
3749603724d3SBjoern A. Zeeb 		mss = V_tcp_mssdflt;
3750233dcce1SAndre Oppermann 		maxmtu = tcp_maxmtu(inc, NULL);
375197d8d152SAndre Oppermann 		min_protoh = sizeof(struct tcpiphdr);
375297d8d152SAndre Oppermann 	}
3753b287c6c7SBjoern A. Zeeb #endif
37543a9391deSBjoern A. Zeeb #if defined(INET6) || defined(INET)
37553a9391deSBjoern A. Zeeb 	thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */
37563a9391deSBjoern A. Zeeb #endif
37573a9391deSBjoern A. Zeeb 
375897d8d152SAndre Oppermann 	if (maxmtu && thcmtu)
375997d8d152SAndre Oppermann 		mss = min(maxmtu, thcmtu) - min_protoh;
376097d8d152SAndre Oppermann 	else if (maxmtu || thcmtu)
376197d8d152SAndre Oppermann 		mss = max(maxmtu, thcmtu) - min_protoh;
376297d8d152SAndre Oppermann 
376397d8d152SAndre Oppermann 	return (mss);
3764df8bae1dSRodney W. Grimes }
376546f58482SJonathan Lemon 
376646f58482SJonathan Lemon 
376746f58482SJonathan Lemon /*
3768c068736aSJeffrey Hsu  * On a partial ack arrives, force the retransmission of the
3769c068736aSJeffrey Hsu  * next unacknowledged segment.  Do not clear tp->t_dupacks.
3770c068736aSJeffrey Hsu  * By setting snd_nxt to ti_ack, this forces retransmission timer to
3771c068736aSJeffrey Hsu  * be started again.
377246f58482SJonathan Lemon  */
377355bceb1eSRandall Stewart void
3774ad3f9ab3SAndre Oppermann tcp_newreno_partial_ack(struct tcpcb *tp, struct tcphdr *th)
377546f58482SJonathan Lemon {
377646f58482SJonathan Lemon 	tcp_seq onxt = tp->snd_nxt;
37773ac12506SJonathan T. Looney 	uint32_t ocwnd = tp->snd_cwnd;
37780c39d38dSGleb Smirnoff 	u_int maxseg = tcp_maxseg(tp);
377946f58482SJonathan Lemon 
37808501a69cSRobert Watson 	INP_WLOCK_ASSERT(tp->t_inpcb);
37817a3244ccSRobert Watson 
3782b8152ba7SAndre Oppermann 	tcp_timer_activate(tp, TT_REXMT, 0);
378346f58482SJonathan Lemon 	tp->t_rtttime = 0;
378446f58482SJonathan Lemon 	tp->snd_nxt = th->th_ack;
37856b2a5f92SJayanth Vijayaraghavan 	/*
3786c068736aSJeffrey Hsu 	 * Set snd_cwnd to one segment beyond acknowledged offset.
3787c068736aSJeffrey Hsu 	 * (tp->snd_una has not yet been updated when this function is called.)
37886b2a5f92SJayanth Vijayaraghavan 	 */
37890c39d38dSGleb Smirnoff 	tp->snd_cwnd = maxseg + BYTES_THIS_ACK(tp, th);
3790a84db8f4SMatthew Dillon 	tp->t_flags |= TF_ACKNOW;
379155bceb1eSRandall Stewart 	(void) tp->t_fb->tfb_tcp_output(tp);
379246f58482SJonathan Lemon 	tp->snd_cwnd = ocwnd;
379346f58482SJonathan Lemon 	if (SEQ_GT(onxt, tp->snd_nxt))
379446f58482SJonathan Lemon 		tp->snd_nxt = onxt;
379546f58482SJonathan Lemon 	/*
379646f58482SJonathan Lemon 	 * Partial window deflation.  Relies on fact that tp->snd_una
379746f58482SJonathan Lemon 	 * not updated yet.
379846f58482SJonathan Lemon 	 */
3799dbc42409SLawrence Stewart 	if (tp->snd_cwnd > BYTES_THIS_ACK(tp, th))
3800dbc42409SLawrence Stewart 		tp->snd_cwnd -= BYTES_THIS_ACK(tp, th);
3801d7587117SPaul Saab 	else
3802d7587117SPaul Saab 		tp->snd_cwnd = 0;
38030c39d38dSGleb Smirnoff 	tp->snd_cwnd += maxseg;
380446f58482SJonathan Lemon }
380512eeb81fSHiren Panchasara 
380612eeb81fSHiren Panchasara int
380712eeb81fSHiren Panchasara tcp_compute_pipe(struct tcpcb *tp)
380812eeb81fSHiren Panchasara {
380912eeb81fSHiren Panchasara 	return (tp->snd_max - tp->snd_una +
381012eeb81fSHiren Panchasara 		tp->sackhint.sack_bytes_rexmit -
381112eeb81fSHiren Panchasara 		tp->sackhint.sacked_bytes);
381212eeb81fSHiren Panchasara }
38137dc90a1dSMichael Tuexen 
38147dc90a1dSMichael Tuexen uint32_t
38157dc90a1dSMichael Tuexen tcp_compute_initwnd(uint32_t maxseg)
38167dc90a1dSMichael Tuexen {
38177dc90a1dSMichael Tuexen 	/*
38187dc90a1dSMichael Tuexen 	 * Calculate the Initial Window, also used as Restart Window
38197dc90a1dSMichael Tuexen 	 *
38207dc90a1dSMichael Tuexen 	 * RFC5681 Section 3.1 specifies the default conservative values.
38217dc90a1dSMichael Tuexen 	 * RFC3390 specifies slightly more aggressive values.
38227dc90a1dSMichael Tuexen 	 * RFC6928 increases it to ten segments.
38237dc90a1dSMichael Tuexen 	 * Support for user specified value for initial flight size.
38247dc90a1dSMichael Tuexen 	 */
38257dc90a1dSMichael Tuexen 	if (V_tcp_initcwnd_segments)
38267dc90a1dSMichael Tuexen 		return min(V_tcp_initcwnd_segments * maxseg,
38277dc90a1dSMichael Tuexen 		    max(2 * maxseg, V_tcp_initcwnd_segments * 1460));
38287dc90a1dSMichael Tuexen 	else if (V_tcp_do_rfc3390)
38297dc90a1dSMichael Tuexen 		return min(4 * maxseg, max(2 * maxseg, 4380));
38307dc90a1dSMichael Tuexen 	else {
38317dc90a1dSMichael Tuexen 		/* Per RFC5681 Section 3.1 */
38327dc90a1dSMichael Tuexen 		if (maxseg > 2190)
38337dc90a1dSMichael Tuexen 			return (2 * maxseg);
38347dc90a1dSMichael Tuexen 		else if (maxseg > 1095)
38357dc90a1dSMichael Tuexen 			return (3 * maxseg);
38367dc90a1dSMichael Tuexen 		else
38377dc90a1dSMichael Tuexen 			return (4 * maxseg);
38387dc90a1dSMichael Tuexen 	}
38397dc90a1dSMichael Tuexen }
3840