xref: /freebsd/sys/netinet/tcp_input.c (revision c22994e3ad2d05f45f5e9fc78140a5d6b3d7e567)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995
5  *	The Regents of the University of California.  All rights reserved.
6  * Copyright (c) 2007-2008,2010
7  *	Swinburne University of Technology, Melbourne, Australia.
8  * Copyright (c) 2009-2010 Lawrence Stewart <lstewart@freebsd.org>
9  * Copyright (c) 2010 The FreeBSD Foundation
10  * Copyright (c) 2010-2011 Juniper Networks, Inc.
11  * All rights reserved.
12  *
13  * Portions of this software were developed at the Centre for Advanced Internet
14  * Architectures, Swinburne University of Technology, by Lawrence Stewart,
15  * James Healy and David Hayes, made possible in part by a grant from the Cisco
16  * University Research Program Fund at Community Foundation Silicon Valley.
17  *
18  * Portions of this software were developed at the Centre for Advanced
19  * Internet Architectures, Swinburne University of Technology, Melbourne,
20  * Australia by David Hayes under sponsorship from the FreeBSD Foundation.
21  *
22  * Portions of this software were developed by Robert N. M. Watson under
23  * contract to Juniper Networks, Inc.
24  *
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the above copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. Neither the name of the University nor the names of its contributors
34  *    may be used to endorse or promote products derived from this software
35  *    without specific prior written permission.
36  *
37  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
38  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
41  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
43  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
45  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
46  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47  * SUCH DAMAGE.
48  *
49  *	@(#)tcp_input.c	8.12 (Berkeley) 5/24/95
50  */
51 
52 #include <sys/cdefs.h>
53 __FBSDID("$FreeBSD$");
54 
55 #include "opt_inet.h"
56 #include "opt_inet6.h"
57 #include "opt_ipsec.h"
58 #include "opt_tcpdebug.h"
59 
60 #include <sys/param.h>
61 #include <sys/kernel.h>
62 #ifdef TCP_HHOOK
63 #include <sys/hhook.h>
64 #endif
65 #include <sys/malloc.h>
66 #include <sys/mbuf.h>
67 #include <sys/proc.h>		/* for proc0 declaration */
68 #include <sys/protosw.h>
69 #include <sys/sdt.h>
70 #include <sys/signalvar.h>
71 #include <sys/socket.h>
72 #include <sys/socketvar.h>
73 #include <sys/sysctl.h>
74 #include <sys/syslog.h>
75 #include <sys/systm.h>
76 
77 #include <machine/cpu.h>	/* before tcp_seq.h, for tcp_random18() */
78 
79 #include <vm/uma.h>
80 
81 #include <net/if.h>
82 #include <net/if_var.h>
83 #include <net/route.h>
84 #include <net/vnet.h>
85 
86 #define TCPSTATES		/* for logging */
87 
88 #include <netinet/in.h>
89 #include <netinet/in_kdtrace.h>
90 #include <netinet/in_pcb.h>
91 #include <netinet/in_systm.h>
92 #include <netinet/ip.h>
93 #include <netinet/ip_icmp.h>	/* required for icmp_var.h */
94 #include <netinet/icmp_var.h>	/* for ICMP_BANDLIM */
95 #include <netinet/ip_var.h>
96 #include <netinet/ip_options.h>
97 #include <netinet/ip6.h>
98 #include <netinet/icmp6.h>
99 #include <netinet6/in6_pcb.h>
100 #include <netinet6/in6_var.h>
101 #include <netinet6/ip6_var.h>
102 #include <netinet6/nd6.h>
103 #include <netinet/tcp.h>
104 #include <netinet/tcp_fsm.h>
105 #include <netinet/tcp_log_buf.h>
106 #include <netinet/tcp_seq.h>
107 #include <netinet/tcp_timer.h>
108 #include <netinet/tcp_var.h>
109 #include <netinet6/tcp6_var.h>
110 #include <netinet/tcpip.h>
111 #include <netinet/cc/cc.h>
112 #include <netinet/tcp_fastopen.h>
113 #ifdef TCPPCAP
114 #include <netinet/tcp_pcap.h>
115 #endif
116 #include <netinet/tcp_syncache.h>
117 #ifdef TCPDEBUG
118 #include <netinet/tcp_debug.h>
119 #endif /* TCPDEBUG */
120 #ifdef TCP_OFFLOAD
121 #include <netinet/tcp_offload.h>
122 #endif
123 
124 #include <netipsec/ipsec_support.h>
125 
126 #include <machine/in_cksum.h>
127 
128 #include <security/mac/mac_framework.h>
129 
130 const int tcprexmtthresh = 3;
131 
132 int tcp_log_in_vain = 0;
133 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_in_vain, CTLFLAG_RW,
134     &tcp_log_in_vain, 0,
135     "Log all incoming TCP segments to closed ports");
136 
137 VNET_DEFINE(int, blackhole) = 0;
138 #define	V_blackhole		VNET(blackhole)
139 SYSCTL_INT(_net_inet_tcp, OID_AUTO, blackhole, CTLFLAG_VNET | CTLFLAG_RW,
140     &VNET_NAME(blackhole), 0,
141     "Do not send RST on segments to closed ports");
142 
143 VNET_DEFINE(int, tcp_delack_enabled) = 1;
144 SYSCTL_INT(_net_inet_tcp, OID_AUTO, delayed_ack, CTLFLAG_VNET | CTLFLAG_RW,
145     &VNET_NAME(tcp_delack_enabled), 0,
146     "Delay ACK to try and piggyback it onto a data packet");
147 
148 VNET_DEFINE(int, drop_synfin) = 0;
149 SYSCTL_INT(_net_inet_tcp, OID_AUTO, drop_synfin, CTLFLAG_VNET | CTLFLAG_RW,
150     &VNET_NAME(drop_synfin), 0,
151     "Drop TCP packets with SYN+FIN set");
152 
153 VNET_DEFINE(int, tcp_do_rfc6675_pipe) = 0;
154 SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc6675_pipe, CTLFLAG_VNET | CTLFLAG_RW,
155     &VNET_NAME(tcp_do_rfc6675_pipe), 0,
156     "Use calculated pipe/in-flight bytes per RFC 6675");
157 
158 VNET_DEFINE(int, tcp_do_rfc3042) = 1;
159 SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3042, CTLFLAG_VNET | CTLFLAG_RW,
160     &VNET_NAME(tcp_do_rfc3042), 0,
161     "Enable RFC 3042 (Limited Transmit)");
162 
163 VNET_DEFINE(int, tcp_do_rfc3390) = 1;
164 SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3390, CTLFLAG_VNET | CTLFLAG_RW,
165     &VNET_NAME(tcp_do_rfc3390), 0,
166     "Enable RFC 3390 (Increasing TCP's Initial Congestion Window)");
167 
168 VNET_DEFINE(int, tcp_initcwnd_segments) = 10;
169 SYSCTL_INT(_net_inet_tcp, OID_AUTO, initcwnd_segments,
170     CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(tcp_initcwnd_segments), 0,
171     "Slow-start flight size (initial congestion window) in number of segments");
172 
173 VNET_DEFINE(int, tcp_do_rfc3465) = 1;
174 SYSCTL_INT(_net_inet_tcp, OID_AUTO, rfc3465, CTLFLAG_VNET | CTLFLAG_RW,
175     &VNET_NAME(tcp_do_rfc3465), 0,
176     "Enable RFC 3465 (Appropriate Byte Counting)");
177 
178 VNET_DEFINE(int, tcp_abc_l_var) = 2;
179 SYSCTL_INT(_net_inet_tcp, OID_AUTO, abc_l_var, CTLFLAG_VNET | CTLFLAG_RW,
180     &VNET_NAME(tcp_abc_l_var), 2,
181     "Cap the max cwnd increment during slow-start to this number of segments");
182 
183 static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, ecn, CTLFLAG_RW, 0, "TCP ECN");
184 
185 VNET_DEFINE(int, tcp_do_ecn) = 2;
186 SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, enable, CTLFLAG_VNET | CTLFLAG_RW,
187     &VNET_NAME(tcp_do_ecn), 0,
188     "TCP ECN support");
189 
190 VNET_DEFINE(int, tcp_ecn_maxretries) = 1;
191 SYSCTL_INT(_net_inet_tcp_ecn, OID_AUTO, maxretries, CTLFLAG_VNET | CTLFLAG_RW,
192     &VNET_NAME(tcp_ecn_maxretries), 0,
193     "Max retries before giving up on ECN");
194 
195 VNET_DEFINE(int, tcp_insecure_syn) = 0;
196 SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_syn, CTLFLAG_VNET | CTLFLAG_RW,
197     &VNET_NAME(tcp_insecure_syn), 0,
198     "Follow RFC793 instead of RFC5961 criteria for accepting SYN packets");
199 
200 VNET_DEFINE(int, tcp_insecure_rst) = 0;
201 SYSCTL_INT(_net_inet_tcp, OID_AUTO, insecure_rst, CTLFLAG_VNET | CTLFLAG_RW,
202     &VNET_NAME(tcp_insecure_rst), 0,
203     "Follow RFC793 instead of RFC5961 criteria for accepting RST packets");
204 
205 VNET_DEFINE(int, tcp_recvspace) = 1024*64;
206 #define	V_tcp_recvspace	VNET(tcp_recvspace)
207 SYSCTL_INT(_net_inet_tcp, TCPCTL_RECVSPACE, recvspace, CTLFLAG_VNET | CTLFLAG_RW,
208     &VNET_NAME(tcp_recvspace), 0, "Initial receive socket buffer size");
209 
210 VNET_DEFINE(int, tcp_do_autorcvbuf) = 1;
211 SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_auto, CTLFLAG_VNET | CTLFLAG_RW,
212     &VNET_NAME(tcp_do_autorcvbuf), 0,
213     "Enable automatic receive buffer sizing");
214 
215 VNET_DEFINE(int, tcp_autorcvbuf_max) = 2*1024*1024;
216 SYSCTL_INT(_net_inet_tcp, OID_AUTO, recvbuf_max, CTLFLAG_VNET | CTLFLAG_RW,
217     &VNET_NAME(tcp_autorcvbuf_max), 0,
218     "Max size of automatic receive buffer");
219 
220 VNET_DEFINE(struct inpcbhead, tcb);
221 #define	tcb6	tcb  /* for KAME src sync over BSD*'s */
222 VNET_DEFINE(struct inpcbinfo, tcbinfo);
223 
224 /*
225  * TCP statistics are stored in an array of counter(9)s, which size matches
226  * size of struct tcpstat.  TCP running connection count is a regular array.
227  */
228 VNET_PCPUSTAT_DEFINE(struct tcpstat, tcpstat);
229 SYSCTL_VNET_PCPUSTAT(_net_inet_tcp, TCPCTL_STATS, stats, struct tcpstat,
230     tcpstat, "TCP statistics (struct tcpstat, netinet/tcp_var.h)");
231 VNET_DEFINE(counter_u64_t, tcps_states[TCP_NSTATES]);
232 SYSCTL_COUNTER_U64_ARRAY(_net_inet_tcp, TCPCTL_STATES, states, CTLFLAG_RD |
233     CTLFLAG_VNET, &VNET_NAME(tcps_states)[0], TCP_NSTATES,
234     "TCP connection counts by TCP state");
235 
236 static void
237 tcp_vnet_init(const void *unused)
238 {
239 
240 	COUNTER_ARRAY_ALLOC(V_tcps_states, TCP_NSTATES, M_WAITOK);
241 	VNET_PCPUSTAT_ALLOC(tcpstat, M_WAITOK);
242 }
243 VNET_SYSINIT(tcp_vnet_init, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
244     tcp_vnet_init, NULL);
245 
246 #ifdef VIMAGE
247 static void
248 tcp_vnet_uninit(const void *unused)
249 {
250 
251 	COUNTER_ARRAY_FREE(V_tcps_states, TCP_NSTATES);
252 	VNET_PCPUSTAT_FREE(tcpstat);
253 }
254 VNET_SYSUNINIT(tcp_vnet_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
255     tcp_vnet_uninit, NULL);
256 #endif /* VIMAGE */
257 
258 /*
259  * Kernel module interface for updating tcpstat.  The argument is an index
260  * into tcpstat treated as an array.
261  */
262 void
263 kmod_tcpstat_inc(int statnum)
264 {
265 
266 	counter_u64_add(VNET(tcpstat)[statnum], 1);
267 }
268 
269 #ifdef TCP_HHOOK
270 /*
271  * Wrapper for the TCP established input helper hook.
272  */
273 void
274 hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to)
275 {
276 	struct tcp_hhook_data hhook_data;
277 
278 	if (V_tcp_hhh[HHOOK_TCP_EST_IN]->hhh_nhooks > 0) {
279 		hhook_data.tp = tp;
280 		hhook_data.th = th;
281 		hhook_data.to = to;
282 
283 		hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_IN], &hhook_data,
284 		    tp->osd);
285 	}
286 }
287 #endif
288 
289 /*
290  * CC wrapper hook functions
291  */
292 void
293 cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t nsegs,
294     uint16_t type)
295 {
296 	INP_WLOCK_ASSERT(tp->t_inpcb);
297 
298 	tp->ccv->nsegs = nsegs;
299 	tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th);
300 	if (tp->snd_cwnd <= tp->snd_wnd)
301 		tp->ccv->flags |= CCF_CWND_LIMITED;
302 	else
303 		tp->ccv->flags &= ~CCF_CWND_LIMITED;
304 
305 	if (type == CC_ACK) {
306 		if (tp->snd_cwnd > tp->snd_ssthresh) {
307 			tp->t_bytes_acked += min(tp->ccv->bytes_this_ack,
308 			     nsegs * V_tcp_abc_l_var * tcp_maxseg(tp));
309 			if (tp->t_bytes_acked >= tp->snd_cwnd) {
310 				tp->t_bytes_acked -= tp->snd_cwnd;
311 				tp->ccv->flags |= CCF_ABC_SENTAWND;
312 			}
313 		} else {
314 				tp->ccv->flags &= ~CCF_ABC_SENTAWND;
315 				tp->t_bytes_acked = 0;
316 		}
317 	}
318 
319 	if (CC_ALGO(tp)->ack_received != NULL) {
320 		/* XXXLAS: Find a way to live without this */
321 		tp->ccv->curack = th->th_ack;
322 		CC_ALGO(tp)->ack_received(tp->ccv, type);
323 	}
324 }
325 
326 void
327 cc_conn_init(struct tcpcb *tp)
328 {
329 	struct hc_metrics_lite metrics;
330 	struct inpcb *inp = tp->t_inpcb;
331 	u_int maxseg;
332 	int rtt;
333 
334 	INP_WLOCK_ASSERT(tp->t_inpcb);
335 
336 	tcp_hc_get(&inp->inp_inc, &metrics);
337 	maxseg = tcp_maxseg(tp);
338 
339 	if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) {
340 		tp->t_srtt = rtt;
341 		tp->t_rttbest = tp->t_srtt + TCP_RTT_SCALE;
342 		TCPSTAT_INC(tcps_usedrtt);
343 		if (metrics.rmx_rttvar) {
344 			tp->t_rttvar = metrics.rmx_rttvar;
345 			TCPSTAT_INC(tcps_usedrttvar);
346 		} else {
347 			/* default variation is +- 1 rtt */
348 			tp->t_rttvar =
349 			    tp->t_srtt * TCP_RTTVAR_SCALE / TCP_RTT_SCALE;
350 		}
351 		TCPT_RANGESET(tp->t_rxtcur,
352 		    ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1,
353 		    tp->t_rttmin, TCPTV_REXMTMAX);
354 	}
355 	if (metrics.rmx_ssthresh) {
356 		/*
357 		 * There's some sort of gateway or interface
358 		 * buffer limit on the path.  Use this to set
359 		 * the slow start threshold, but set the
360 		 * threshold to no less than 2*mss.
361 		 */
362 		tp->snd_ssthresh = max(2 * maxseg, metrics.rmx_ssthresh);
363 		TCPSTAT_INC(tcps_usedssthresh);
364 	}
365 
366 	/*
367 	 * Set the initial slow-start flight size.
368 	 *
369 	 * If a SYN or SYN/ACK was lost and retransmitted, we have to
370 	 * reduce the initial CWND to one segment as congestion is likely
371 	 * requiring us to be cautious.
372 	 */
373 	if (tp->snd_cwnd == 1)
374 		tp->snd_cwnd = maxseg;		/* SYN(-ACK) lost */
375 	else
376 		tp->snd_cwnd = tcp_compute_initwnd(maxseg);
377 
378 	if (CC_ALGO(tp)->conn_init != NULL)
379 		CC_ALGO(tp)->conn_init(tp->ccv);
380 }
381 
382 void inline
383 cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type)
384 {
385 	u_int maxseg;
386 
387 	INP_WLOCK_ASSERT(tp->t_inpcb);
388 
389 	switch(type) {
390 	case CC_NDUPACK:
391 		if (!IN_FASTRECOVERY(tp->t_flags)) {
392 			tp->snd_recover = tp->snd_max;
393 			if (tp->t_flags & TF_ECN_PERMIT)
394 				tp->t_flags |= TF_ECN_SND_CWR;
395 		}
396 		break;
397 	case CC_ECN:
398 		if (!IN_CONGRECOVERY(tp->t_flags)) {
399 			TCPSTAT_INC(tcps_ecn_rcwnd);
400 			tp->snd_recover = tp->snd_max;
401 			if (tp->t_flags & TF_ECN_PERMIT)
402 				tp->t_flags |= TF_ECN_SND_CWR;
403 		}
404 		break;
405 	case CC_RTO:
406 		maxseg = tcp_maxseg(tp);
407 		tp->t_dupacks = 0;
408 		tp->t_bytes_acked = 0;
409 		EXIT_RECOVERY(tp->t_flags);
410 		tp->snd_ssthresh = max(2, min(tp->snd_wnd, tp->snd_cwnd) / 2 /
411 		    maxseg) * maxseg;
412 		tp->snd_cwnd = maxseg;
413 		break;
414 	case CC_RTO_ERR:
415 		TCPSTAT_INC(tcps_sndrexmitbad);
416 		/* RTO was unnecessary, so reset everything. */
417 		tp->snd_cwnd = tp->snd_cwnd_prev;
418 		tp->snd_ssthresh = tp->snd_ssthresh_prev;
419 		tp->snd_recover = tp->snd_recover_prev;
420 		if (tp->t_flags & TF_WASFRECOVERY)
421 			ENTER_FASTRECOVERY(tp->t_flags);
422 		if (tp->t_flags & TF_WASCRECOVERY)
423 			ENTER_CONGRECOVERY(tp->t_flags);
424 		tp->snd_nxt = tp->snd_max;
425 		tp->t_flags &= ~TF_PREVVALID;
426 		tp->t_badrxtwin = 0;
427 		break;
428 	}
429 
430 	if (CC_ALGO(tp)->cong_signal != NULL) {
431 		if (th != NULL)
432 			tp->ccv->curack = th->th_ack;
433 		CC_ALGO(tp)->cong_signal(tp->ccv, type);
434 	}
435 }
436 
437 void inline
438 cc_post_recovery(struct tcpcb *tp, struct tcphdr *th)
439 {
440 	INP_WLOCK_ASSERT(tp->t_inpcb);
441 
442 	/* XXXLAS: KASSERT that we're in recovery? */
443 
444 	if (CC_ALGO(tp)->post_recovery != NULL) {
445 		tp->ccv->curack = th->th_ack;
446 		CC_ALGO(tp)->post_recovery(tp->ccv);
447 	}
448 	/* XXXLAS: EXIT_RECOVERY ? */
449 	tp->t_bytes_acked = 0;
450 }
451 
452 /*
453  * Indicate whether this ack should be delayed.  We can delay the ack if
454  * following conditions are met:
455  *	- There is no delayed ack timer in progress.
456  *	- Our last ack wasn't a 0-sized window. We never want to delay
457  *	  the ack that opens up a 0-sized window.
458  *	- LRO wasn't used for this segment. We make sure by checking that the
459  *	  segment size is not larger than the MSS.
460  */
461 #define DELAY_ACK(tp, tlen)						\
462 	((!tcp_timer_active(tp, TT_DELACK) &&				\
463 	    (tp->t_flags & TF_RXWIN0SENT) == 0) &&			\
464 	    (tlen <= tp->t_maxseg) &&					\
465 	    (V_tcp_delack_enabled || (tp->t_flags & TF_NEEDSYN)))
466 
467 static void inline
468 cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos)
469 {
470 	INP_WLOCK_ASSERT(tp->t_inpcb);
471 
472 	if (CC_ALGO(tp)->ecnpkt_handler != NULL) {
473 		switch (iptos & IPTOS_ECN_MASK) {
474 		case IPTOS_ECN_CE:
475 		    tp->ccv->flags |= CCF_IPHDR_CE;
476 		    break;
477 		case IPTOS_ECN_ECT0:
478 		    tp->ccv->flags &= ~CCF_IPHDR_CE;
479 		    break;
480 		case IPTOS_ECN_ECT1:
481 		    tp->ccv->flags &= ~CCF_IPHDR_CE;
482 		    break;
483 		}
484 
485 		if (th->th_flags & TH_CWR)
486 			tp->ccv->flags |= CCF_TCPHDR_CWR;
487 		else
488 			tp->ccv->flags &= ~CCF_TCPHDR_CWR;
489 
490 		if (tp->t_flags & TF_DELACK)
491 			tp->ccv->flags |= CCF_DELACK;
492 		else
493 			tp->ccv->flags &= ~CCF_DELACK;
494 
495 		CC_ALGO(tp)->ecnpkt_handler(tp->ccv);
496 
497 		if (tp->ccv->flags & CCF_ACKNOW)
498 			tcp_timer_activate(tp, TT_DELACK, tcp_delacktime);
499 	}
500 }
501 
502 /*
503  * TCP input handling is split into multiple parts:
504  *   tcp6_input is a thin wrapper around tcp_input for the extended
505  *	ip6_protox[] call format in ip6_input
506  *   tcp_input handles primary segment validation, inpcb lookup and
507  *	SYN processing on listen sockets
508  *   tcp_do_segment processes the ACK and text of the segment for
509  *	establishing, established and closing connections
510  */
511 #ifdef INET6
512 int
513 tcp6_input(struct mbuf **mp, int *offp, int proto)
514 {
515 	struct mbuf *m = *mp;
516 	struct in6_ifaddr *ia6;
517 	struct ip6_hdr *ip6;
518 
519 	IP6_EXTHDR_CHECK(m, *offp, sizeof(struct tcphdr), IPPROTO_DONE);
520 
521 	/*
522 	 * draft-itojun-ipv6-tcp-to-anycast
523 	 * better place to put this in?
524 	 */
525 	ip6 = mtod(m, struct ip6_hdr *);
526 	ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */);
527 	if (ia6 && (ia6->ia6_flags & IN6_IFF_ANYCAST)) {
528 		struct ip6_hdr *ip6;
529 
530 		ifa_free(&ia6->ia_ifa);
531 		ip6 = mtod(m, struct ip6_hdr *);
532 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR,
533 			    (caddr_t)&ip6->ip6_dst - (caddr_t)ip6);
534 		return (IPPROTO_DONE);
535 	}
536 	if (ia6)
537 		ifa_free(&ia6->ia_ifa);
538 
539 	return (tcp_input(mp, offp, proto));
540 }
541 #endif /* INET6 */
542 
543 int
544 tcp_input(struct mbuf **mp, int *offp, int proto)
545 {
546 	struct mbuf *m = *mp;
547 	struct tcphdr *th = NULL;
548 	struct ip *ip = NULL;
549 	struct inpcb *inp = NULL;
550 	struct tcpcb *tp = NULL;
551 	struct socket *so = NULL;
552 	u_char *optp = NULL;
553 	int off0;
554 	int optlen = 0;
555 #ifdef INET
556 	int len;
557 	uint8_t ipttl;
558 #endif
559 	int tlen = 0, off;
560 	int drop_hdrlen;
561 	int thflags;
562 	int rstreason = 0;	/* For badport_bandlim accounting purposes */
563 	uint8_t iptos;
564 	struct m_tag *fwd_tag = NULL;
565 	struct epoch_tracker et;
566 #ifdef INET6
567 	struct ip6_hdr *ip6 = NULL;
568 	int isipv6;
569 #else
570 	const void *ip6 = NULL;
571 #endif /* INET6 */
572 	struct tcpopt to;		/* options in this segment */
573 	char *s = NULL;			/* address and port logging */
574 	int ti_locked;
575 #ifdef TCPDEBUG
576 	/*
577 	 * The size of tcp_saveipgen must be the size of the max ip header,
578 	 * now IPv6.
579 	 */
580 	u_char tcp_saveipgen[IP6_HDR_LEN];
581 	struct tcphdr tcp_savetcp;
582 	short ostate = 0;
583 #endif
584 
585 #ifdef INET6
586 	isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
587 #endif
588 
589 	off0 = *offp;
590 	m = *mp;
591 	*mp = NULL;
592 	to.to_flags = 0;
593 	TCPSTAT_INC(tcps_rcvtotal);
594 
595 #ifdef INET6
596 	if (isipv6) {
597 		/* IP6_EXTHDR_CHECK() is already done at tcp6_input(). */
598 
599 		if (m->m_len < (sizeof(*ip6) + sizeof(*th))) {
600 			m = m_pullup(m, sizeof(*ip6) + sizeof(*th));
601 			if (m == NULL) {
602 				TCPSTAT_INC(tcps_rcvshort);
603 				return (IPPROTO_DONE);
604 			}
605 		}
606 
607 		ip6 = mtod(m, struct ip6_hdr *);
608 		th = (struct tcphdr *)((caddr_t)ip6 + off0);
609 		tlen = sizeof(*ip6) + ntohs(ip6->ip6_plen) - off0;
610 		if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID_IPV6) {
611 			if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
612 				th->th_sum = m->m_pkthdr.csum_data;
613 			else
614 				th->th_sum = in6_cksum_pseudo(ip6, tlen,
615 				    IPPROTO_TCP, m->m_pkthdr.csum_data);
616 			th->th_sum ^= 0xffff;
617 		} else
618 			th->th_sum = in6_cksum(m, IPPROTO_TCP, off0, tlen);
619 		if (th->th_sum) {
620 			TCPSTAT_INC(tcps_rcvbadsum);
621 			goto drop;
622 		}
623 
624 		/*
625 		 * Be proactive about unspecified IPv6 address in source.
626 		 * As we use all-zero to indicate unbounded/unconnected pcb,
627 		 * unspecified IPv6 address can be used to confuse us.
628 		 *
629 		 * Note that packets with unspecified IPv6 destination is
630 		 * already dropped in ip6_input.
631 		 */
632 		if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
633 			/* XXX stat */
634 			goto drop;
635 		}
636 		iptos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
637 	}
638 #endif
639 #if defined(INET) && defined(INET6)
640 	else
641 #endif
642 #ifdef INET
643 	{
644 		/*
645 		 * Get IP and TCP header together in first mbuf.
646 		 * Note: IP leaves IP header in first mbuf.
647 		 */
648 		if (off0 > sizeof (struct ip)) {
649 			ip_stripoptions(m);
650 			off0 = sizeof(struct ip);
651 		}
652 		if (m->m_len < sizeof (struct tcpiphdr)) {
653 			if ((m = m_pullup(m, sizeof (struct tcpiphdr)))
654 			    == NULL) {
655 				TCPSTAT_INC(tcps_rcvshort);
656 				return (IPPROTO_DONE);
657 			}
658 		}
659 		ip = mtod(m, struct ip *);
660 		th = (struct tcphdr *)((caddr_t)ip + off0);
661 		tlen = ntohs(ip->ip_len) - off0;
662 
663 		iptos = ip->ip_tos;
664 		if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
665 			if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
666 				th->th_sum = m->m_pkthdr.csum_data;
667 			else
668 				th->th_sum = in_pseudo(ip->ip_src.s_addr,
669 				    ip->ip_dst.s_addr,
670 				    htonl(m->m_pkthdr.csum_data + tlen +
671 				    IPPROTO_TCP));
672 			th->th_sum ^= 0xffff;
673 		} else {
674 			struct ipovly *ipov = (struct ipovly *)ip;
675 
676 			/*
677 			 * Checksum extended TCP header and data.
678 			 */
679 			len = off0 + tlen;
680 			ipttl = ip->ip_ttl;
681 			bzero(ipov->ih_x1, sizeof(ipov->ih_x1));
682 			ipov->ih_len = htons(tlen);
683 			th->th_sum = in_cksum(m, len);
684 			/* Reset length for SDT probes. */
685 			ip->ip_len = htons(len);
686 			/* Reset TOS bits */
687 			ip->ip_tos = iptos;
688 			/* Re-initialization for later version check */
689 			ip->ip_ttl = ipttl;
690 			ip->ip_v = IPVERSION;
691 			ip->ip_hl = off0 >> 2;
692 		}
693 
694 		if (th->th_sum) {
695 			TCPSTAT_INC(tcps_rcvbadsum);
696 			goto drop;
697 		}
698 	}
699 #endif /* INET */
700 
701 	/*
702 	 * Check that TCP offset makes sense,
703 	 * pull out TCP options and adjust length.		XXX
704 	 */
705 	off = th->th_off << 2;
706 	if (off < sizeof (struct tcphdr) || off > tlen) {
707 		TCPSTAT_INC(tcps_rcvbadoff);
708 		goto drop;
709 	}
710 	tlen -= off;	/* tlen is used instead of ti->ti_len */
711 	if (off > sizeof (struct tcphdr)) {
712 #ifdef INET6
713 		if (isipv6) {
714 			IP6_EXTHDR_CHECK(m, off0, off, IPPROTO_DONE);
715 			ip6 = mtod(m, struct ip6_hdr *);
716 			th = (struct tcphdr *)((caddr_t)ip6 + off0);
717 		}
718 #endif
719 #if defined(INET) && defined(INET6)
720 		else
721 #endif
722 #ifdef INET
723 		{
724 			if (m->m_len < sizeof(struct ip) + off) {
725 				if ((m = m_pullup(m, sizeof (struct ip) + off))
726 				    == NULL) {
727 					TCPSTAT_INC(tcps_rcvshort);
728 					return (IPPROTO_DONE);
729 				}
730 				ip = mtod(m, struct ip *);
731 				th = (struct tcphdr *)((caddr_t)ip + off0);
732 			}
733 		}
734 #endif
735 		optlen = off - sizeof (struct tcphdr);
736 		optp = (u_char *)(th + 1);
737 	}
738 	thflags = th->th_flags;
739 
740 	/*
741 	 * Convert TCP protocol specific fields to host format.
742 	 */
743 	tcp_fields_to_host(th);
744 
745 	/*
746 	 * Delay dropping TCP, IP headers, IPv6 ext headers, and TCP options.
747 	 */
748 	drop_hdrlen = off0 + off;
749 
750 	/*
751 	 * Locate pcb for segment; if we're likely to add or remove a
752 	 * connection then first acquire pcbinfo lock.  There are three cases
753 	 * where we might discover later we need a write lock despite the
754 	 * flags: ACKs moving a connection out of the syncache, ACKs for a
755 	 * connection in TIMEWAIT and SYNs not targeting a listening socket.
756 	 */
757 	if ((thflags & (TH_FIN | TH_RST)) != 0) {
758 		INP_INFO_RLOCK_ET(&V_tcbinfo, et);
759 		ti_locked = TI_RLOCKED;
760 	} else
761 		ti_locked = TI_UNLOCKED;
762 
763 	/*
764 	 * Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain.
765 	 */
766         if (
767 #ifdef INET6
768 	    (isipv6 && (m->m_flags & M_IP6_NEXTHOP))
769 #ifdef INET
770 	    || (!isipv6 && (m->m_flags & M_IP_NEXTHOP))
771 #endif
772 #endif
773 #if defined(INET) && !defined(INET6)
774 	    (m->m_flags & M_IP_NEXTHOP)
775 #endif
776 	    )
777 		fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
778 
779 findpcb:
780 #ifdef INVARIANTS
781 	if (ti_locked == TI_RLOCKED) {
782 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
783 	} else {
784 		INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
785 	}
786 #endif
787 #ifdef INET6
788 	if (isipv6 && fwd_tag != NULL) {
789 		struct sockaddr_in6 *next_hop6;
790 
791 		next_hop6 = (struct sockaddr_in6 *)(fwd_tag + 1);
792 		/*
793 		 * Transparently forwarded. Pretend to be the destination.
794 		 * Already got one like this?
795 		 */
796 		inp = in6_pcblookup_mbuf(&V_tcbinfo,
797 		    &ip6->ip6_src, th->th_sport, &ip6->ip6_dst, th->th_dport,
798 		    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif, m);
799 		if (!inp) {
800 			/*
801 			 * It's new.  Try to find the ambushing socket.
802 			 * Because we've rewritten the destination address,
803 			 * any hardware-generated hash is ignored.
804 			 */
805 			inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_src,
806 			    th->th_sport, &next_hop6->sin6_addr,
807 			    next_hop6->sin6_port ? ntohs(next_hop6->sin6_port) :
808 			    th->th_dport, INPLOOKUP_WILDCARD |
809 			    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif);
810 		}
811 	} else if (isipv6) {
812 		inp = in6_pcblookup_mbuf(&V_tcbinfo, &ip6->ip6_src,
813 		    th->th_sport, &ip6->ip6_dst, th->th_dport,
814 		    INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB,
815 		    m->m_pkthdr.rcvif, m);
816 	}
817 #endif /* INET6 */
818 #if defined(INET6) && defined(INET)
819 	else
820 #endif
821 #ifdef INET
822 	if (fwd_tag != NULL) {
823 		struct sockaddr_in *next_hop;
824 
825 		next_hop = (struct sockaddr_in *)(fwd_tag+1);
826 		/*
827 		 * Transparently forwarded. Pretend to be the destination.
828 		 * already got one like this?
829 		 */
830 		inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src, th->th_sport,
831 		    ip->ip_dst, th->th_dport, INPLOOKUP_WLOCKPCB,
832 		    m->m_pkthdr.rcvif, m);
833 		if (!inp) {
834 			/*
835 			 * It's new.  Try to find the ambushing socket.
836 			 * Because we've rewritten the destination address,
837 			 * any hardware-generated hash is ignored.
838 			 */
839 			inp = in_pcblookup(&V_tcbinfo, ip->ip_src,
840 			    th->th_sport, next_hop->sin_addr,
841 			    next_hop->sin_port ? ntohs(next_hop->sin_port) :
842 			    th->th_dport, INPLOOKUP_WILDCARD |
843 			    INPLOOKUP_WLOCKPCB, m->m_pkthdr.rcvif);
844 		}
845 	} else
846 		inp = in_pcblookup_mbuf(&V_tcbinfo, ip->ip_src,
847 		    th->th_sport, ip->ip_dst, th->th_dport,
848 		    INPLOOKUP_WILDCARD | INPLOOKUP_WLOCKPCB,
849 		    m->m_pkthdr.rcvif, m);
850 #endif /* INET */
851 
852 	/*
853 	 * If the INPCB does not exist then all data in the incoming
854 	 * segment is discarded and an appropriate RST is sent back.
855 	 * XXX MRT Send RST using which routing table?
856 	 */
857 	if (inp == NULL) {
858 		/*
859 		 * Log communication attempts to ports that are not
860 		 * in use.
861 		 */
862 		if ((tcp_log_in_vain == 1 && (thflags & TH_SYN)) ||
863 		    tcp_log_in_vain == 2) {
864 			if ((s = tcp_log_vain(NULL, th, (void *)ip, ip6)))
865 				log(LOG_INFO, "%s; %s: Connection attempt "
866 				    "to closed port\n", s, __func__);
867 		}
868 		/*
869 		 * When blackholing do not respond with a RST but
870 		 * completely ignore the segment and drop it.
871 		 */
872 		if ((V_blackhole == 1 && (thflags & TH_SYN)) ||
873 		    V_blackhole == 2)
874 			goto dropunlock;
875 
876 		rstreason = BANDLIM_RST_CLOSEDPORT;
877 		goto dropwithreset;
878 	}
879 	INP_WLOCK_ASSERT(inp);
880 	/*
881 	 * While waiting for inp lock during the lookup, another thread
882 	 * can have dropped the inpcb, in which case we need to loop back
883 	 * and try to find a new inpcb to deliver to.
884 	 */
885 	if (inp->inp_flags & INP_DROPPED) {
886 		INP_WUNLOCK(inp);
887 		inp = NULL;
888 		goto findpcb;
889 	}
890 	if ((inp->inp_flowtype == M_HASHTYPE_NONE) &&
891 	    (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) &&
892 	    ((inp->inp_socket == NULL) ||
893 	    (inp->inp_socket->so_options & SO_ACCEPTCONN) == 0)) {
894 		inp->inp_flowid = m->m_pkthdr.flowid;
895 		inp->inp_flowtype = M_HASHTYPE_GET(m);
896 	}
897 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
898 #ifdef INET6
899 	if (isipv6 && IPSEC_ENABLED(ipv6) &&
900 	    IPSEC_CHECK_POLICY(ipv6, m, inp) != 0) {
901 		goto dropunlock;
902 	}
903 #ifdef INET
904 	else
905 #endif
906 #endif /* INET6 */
907 #ifdef INET
908 	if (IPSEC_ENABLED(ipv4) &&
909 	    IPSEC_CHECK_POLICY(ipv4, m, inp) != 0) {
910 		goto dropunlock;
911 	}
912 #endif /* INET */
913 #endif /* IPSEC */
914 
915 	/*
916 	 * Check the minimum TTL for socket.
917 	 */
918 	if (inp->inp_ip_minttl != 0) {
919 #ifdef INET6
920 		if (isipv6) {
921 			if (inp->inp_ip_minttl > ip6->ip6_hlim)
922 				goto dropunlock;
923 		} else
924 #endif
925 		if (inp->inp_ip_minttl > ip->ip_ttl)
926 			goto dropunlock;
927 	}
928 
929 	/*
930 	 * A previous connection in TIMEWAIT state is supposed to catch stray
931 	 * or duplicate segments arriving late.  If this segment was a
932 	 * legitimate new connection attempt, the old INPCB gets removed and
933 	 * we can try again to find a listening socket.
934 	 *
935 	 * At this point, due to earlier optimism, we may hold only an inpcb
936 	 * lock, and not the inpcbinfo write lock.  If so, we need to try to
937 	 * acquire it, or if that fails, acquire a reference on the inpcb,
938 	 * drop all locks, acquire a global write lock, and then re-acquire
939 	 * the inpcb lock.  We may at that point discover that another thread
940 	 * has tried to free the inpcb, in which case we need to loop back
941 	 * and try to find a new inpcb to deliver to.
942 	 *
943 	 * XXXRW: It may be time to rethink timewait locking.
944 	 */
945 	if (inp->inp_flags & INP_TIMEWAIT) {
946 		if (ti_locked == TI_UNLOCKED) {
947 			INP_INFO_RLOCK_ET(&V_tcbinfo, et);
948 			ti_locked = TI_RLOCKED;
949 		}
950 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
951 
952 		if (thflags & TH_SYN)
953 			tcp_dooptions(&to, optp, optlen, TO_SYN);
954 		/*
955 		 * NB: tcp_twcheck unlocks the INP and frees the mbuf.
956 		 */
957 		if (tcp_twcheck(inp, &to, th, m, tlen))
958 			goto findpcb;
959 		INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
960 		return (IPPROTO_DONE);
961 	}
962 	/*
963 	 * The TCPCB may no longer exist if the connection is winding
964 	 * down or it is in the CLOSED state.  Either way we drop the
965 	 * segment and send an appropriate response.
966 	 */
967 	tp = intotcpcb(inp);
968 	if (tp == NULL || tp->t_state == TCPS_CLOSED) {
969 		rstreason = BANDLIM_RST_CLOSEDPORT;
970 		goto dropwithreset;
971 	}
972 
973 #ifdef TCP_OFFLOAD
974 	if (tp->t_flags & TF_TOE) {
975 		tcp_offload_input(tp, m);
976 		m = NULL;	/* consumed by the TOE driver */
977 		goto dropunlock;
978 	}
979 #endif
980 
981 	/*
982 	 * We've identified a valid inpcb, but it could be that we need an
983 	 * inpcbinfo write lock but don't hold it.  In this case, attempt to
984 	 * acquire using the same strategy as the TIMEWAIT case above.  If we
985 	 * relock, we have to jump back to 'relocked' as the connection might
986 	 * now be in TIMEWAIT.
987 	 */
988 #ifdef INVARIANTS
989 	if ((thflags & (TH_FIN | TH_RST)) != 0)
990 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
991 #endif
992 	if (!((tp->t_state == TCPS_ESTABLISHED && (thflags & TH_SYN) == 0) ||
993 	      (tp->t_state == TCPS_LISTEN && (thflags & TH_SYN) &&
994 	       !IS_FASTOPEN(tp->t_flags)))) {
995 		if (ti_locked == TI_UNLOCKED) {
996 			INP_INFO_RLOCK_ET(&V_tcbinfo, et);
997 			ti_locked = TI_RLOCKED;
998 		}
999 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
1000 	}
1001 
1002 #ifdef MAC
1003 	INP_WLOCK_ASSERT(inp);
1004 	if (mac_inpcb_check_deliver(inp, m))
1005 		goto dropunlock;
1006 #endif
1007 	so = inp->inp_socket;
1008 	KASSERT(so != NULL, ("%s: so == NULL", __func__));
1009 #ifdef TCPDEBUG
1010 	if (so->so_options & SO_DEBUG) {
1011 		ostate = tp->t_state;
1012 #ifdef INET6
1013 		if (isipv6) {
1014 			bcopy((char *)ip6, (char *)tcp_saveipgen, sizeof(*ip6));
1015 		} else
1016 #endif
1017 			bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
1018 		tcp_savetcp = *th;
1019 	}
1020 #endif /* TCPDEBUG */
1021 	/*
1022 	 * When the socket is accepting connections (the INPCB is in LISTEN
1023 	 * state) we look into the SYN cache if this is a new connection
1024 	 * attempt or the completion of a previous one.
1025 	 */
1026 	KASSERT(tp->t_state == TCPS_LISTEN || !(so->so_options & SO_ACCEPTCONN),
1027 	    ("%s: so accepting but tp %p not listening", __func__, tp));
1028 	if (tp->t_state == TCPS_LISTEN && (so->so_options & SO_ACCEPTCONN)) {
1029 		struct in_conninfo inc;
1030 
1031 		bzero(&inc, sizeof(inc));
1032 #ifdef INET6
1033 		if (isipv6) {
1034 			inc.inc_flags |= INC_ISIPV6;
1035 			if (inp->inp_inc.inc_flags & INC_IPV6MINMTU)
1036 				inc.inc_flags |= INC_IPV6MINMTU;
1037 			inc.inc6_faddr = ip6->ip6_src;
1038 			inc.inc6_laddr = ip6->ip6_dst;
1039 		} else
1040 #endif
1041 		{
1042 			inc.inc_faddr = ip->ip_src;
1043 			inc.inc_laddr = ip->ip_dst;
1044 		}
1045 		inc.inc_fport = th->th_sport;
1046 		inc.inc_lport = th->th_dport;
1047 		inc.inc_fibnum = so->so_fibnum;
1048 
1049 		/*
1050 		 * Check for an existing connection attempt in syncache if
1051 		 * the flag is only ACK.  A successful lookup creates a new
1052 		 * socket appended to the listen queue in SYN_RECEIVED state.
1053 		 */
1054 		if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) {
1055 
1056 			INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
1057 			/*
1058 			 * Parse the TCP options here because
1059 			 * syncookies need access to the reflected
1060 			 * timestamp.
1061 			 */
1062 			tcp_dooptions(&to, optp, optlen, 0);
1063 			/*
1064 			 * NB: syncache_expand() doesn't unlock
1065 			 * inp and tcpinfo locks.
1066 			 */
1067 			rstreason = syncache_expand(&inc, &to, th, &so, m);
1068 			if (rstreason < 0) {
1069 				/*
1070 				 * A failing TCP MD5 signature comparison
1071 				 * must result in the segment being dropped
1072 				 * and must not produce any response back
1073 				 * to the sender.
1074 				 */
1075 				goto dropunlock;
1076 			} else if (rstreason == 0) {
1077 				/*
1078 				 * No syncache entry or ACK was not
1079 				 * for our SYN/ACK.  Send a RST.
1080 				 * NB: syncache did its own logging
1081 				 * of the failure cause.
1082 				 */
1083 				rstreason = BANDLIM_RST_OPENPORT;
1084 				goto dropwithreset;
1085 			}
1086 tfo_socket_result:
1087 			if (so == NULL) {
1088 				/*
1089 				 * We completed the 3-way handshake
1090 				 * but could not allocate a socket
1091 				 * either due to memory shortage,
1092 				 * listen queue length limits or
1093 				 * global socket limits.  Send RST
1094 				 * or wait and have the remote end
1095 				 * retransmit the ACK for another
1096 				 * try.
1097 				 */
1098 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1099 					log(LOG_DEBUG, "%s; %s: Listen socket: "
1100 					    "Socket allocation failed due to "
1101 					    "limits or memory shortage, %s\n",
1102 					    s, __func__,
1103 					    V_tcp_sc_rst_sock_fail ?
1104 					    "sending RST" : "try again");
1105 				if (V_tcp_sc_rst_sock_fail) {
1106 					rstreason = BANDLIM_UNLIMITED;
1107 					goto dropwithreset;
1108 				} else
1109 					goto dropunlock;
1110 			}
1111 			/*
1112 			 * Socket is created in state SYN_RECEIVED.
1113 			 * Unlock the listen socket, lock the newly
1114 			 * created socket and update the tp variable.
1115 			 */
1116 			INP_WUNLOCK(inp);	/* listen socket */
1117 			inp = sotoinpcb(so);
1118 			/*
1119 			 * New connection inpcb is already locked by
1120 			 * syncache_expand().
1121 			 */
1122 			INP_WLOCK_ASSERT(inp);
1123 			tp = intotcpcb(inp);
1124 			KASSERT(tp->t_state == TCPS_SYN_RECEIVED,
1125 			    ("%s: ", __func__));
1126 			/*
1127 			 * Process the segment and the data it
1128 			 * contains.  tcp_do_segment() consumes
1129 			 * the mbuf chain and unlocks the inpcb.
1130 			 */
1131 			TCP_PROBE5(receive, NULL, tp, m, tp, th);
1132 			tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen,
1133 			    iptos);
1134 			if (ti_locked == TI_RLOCKED)
1135 				INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1136 			return (IPPROTO_DONE);
1137 		}
1138 		/*
1139 		 * Segment flag validation for new connection attempts:
1140 		 *
1141 		 * Our (SYN|ACK) response was rejected.
1142 		 * Check with syncache and remove entry to prevent
1143 		 * retransmits.
1144 		 *
1145 		 * NB: syncache_chkrst does its own logging of failure
1146 		 * causes.
1147 		 */
1148 		if (thflags & TH_RST) {
1149 			syncache_chkrst(&inc, th, m);
1150 			goto dropunlock;
1151 		}
1152 		/*
1153 		 * We can't do anything without SYN.
1154 		 */
1155 		if ((thflags & TH_SYN) == 0) {
1156 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1157 				log(LOG_DEBUG, "%s; %s: Listen socket: "
1158 				    "SYN is missing, segment ignored\n",
1159 				    s, __func__);
1160 			TCPSTAT_INC(tcps_badsyn);
1161 			goto dropunlock;
1162 		}
1163 		/*
1164 		 * (SYN|ACK) is bogus on a listen socket.
1165 		 */
1166 		if (thflags & TH_ACK) {
1167 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1168 				log(LOG_DEBUG, "%s; %s: Listen socket: "
1169 				    "SYN|ACK invalid, segment rejected\n",
1170 				    s, __func__);
1171 			syncache_badack(&inc);	/* XXX: Not needed! */
1172 			TCPSTAT_INC(tcps_badsyn);
1173 			rstreason = BANDLIM_RST_OPENPORT;
1174 			goto dropwithreset;
1175 		}
1176 		/*
1177 		 * If the drop_synfin option is enabled, drop all
1178 		 * segments with both the SYN and FIN bits set.
1179 		 * This prevents e.g. nmap from identifying the
1180 		 * TCP/IP stack.
1181 		 * XXX: Poor reasoning.  nmap has other methods
1182 		 * and is constantly refining its stack detection
1183 		 * strategies.
1184 		 * XXX: This is a violation of the TCP specification
1185 		 * and was used by RFC1644.
1186 		 */
1187 		if ((thflags & TH_FIN) && V_drop_synfin) {
1188 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1189 				log(LOG_DEBUG, "%s; %s: Listen socket: "
1190 				    "SYN|FIN segment ignored (based on "
1191 				    "sysctl setting)\n", s, __func__);
1192 			TCPSTAT_INC(tcps_badsyn);
1193 			goto dropunlock;
1194 		}
1195 		/*
1196 		 * Segment's flags are (SYN) or (SYN|FIN).
1197 		 *
1198 		 * TH_PUSH, TH_URG, TH_ECE, TH_CWR are ignored
1199 		 * as they do not affect the state of the TCP FSM.
1200 		 * The data pointed to by TH_URG and th_urp is ignored.
1201 		 */
1202 		KASSERT((thflags & (TH_RST|TH_ACK)) == 0,
1203 		    ("%s: Listen socket: TH_RST or TH_ACK set", __func__));
1204 		KASSERT(thflags & (TH_SYN),
1205 		    ("%s: Listen socket: TH_SYN not set", __func__));
1206 #ifdef INET6
1207 		/*
1208 		 * If deprecated address is forbidden,
1209 		 * we do not accept SYN to deprecated interface
1210 		 * address to prevent any new inbound connection from
1211 		 * getting established.
1212 		 * When we do not accept SYN, we send a TCP RST,
1213 		 * with deprecated source address (instead of dropping
1214 		 * it).  We compromise it as it is much better for peer
1215 		 * to send a RST, and RST will be the final packet
1216 		 * for the exchange.
1217 		 *
1218 		 * If we do not forbid deprecated addresses, we accept
1219 		 * the SYN packet.  RFC2462 does not suggest dropping
1220 		 * SYN in this case.
1221 		 * If we decipher RFC2462 5.5.4, it says like this:
1222 		 * 1. use of deprecated addr with existing
1223 		 *    communication is okay - "SHOULD continue to be
1224 		 *    used"
1225 		 * 2. use of it with new communication:
1226 		 *   (2a) "SHOULD NOT be used if alternate address
1227 		 *        with sufficient scope is available"
1228 		 *   (2b) nothing mentioned otherwise.
1229 		 * Here we fall into (2b) case as we have no choice in
1230 		 * our source address selection - we must obey the peer.
1231 		 *
1232 		 * The wording in RFC2462 is confusing, and there are
1233 		 * multiple description text for deprecated address
1234 		 * handling - worse, they are not exactly the same.
1235 		 * I believe 5.5.4 is the best one, so we follow 5.5.4.
1236 		 */
1237 		if (isipv6 && !V_ip6_use_deprecated) {
1238 			struct in6_ifaddr *ia6;
1239 
1240 			ia6 = in6ifa_ifwithaddr(&ip6->ip6_dst, 0 /* XXX */);
1241 			if (ia6 != NULL &&
1242 			    (ia6->ia6_flags & IN6_IFF_DEPRECATED)) {
1243 				ifa_free(&ia6->ia_ifa);
1244 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1245 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
1246 					"Connection attempt to deprecated "
1247 					"IPv6 address rejected\n",
1248 					s, __func__);
1249 				rstreason = BANDLIM_RST_OPENPORT;
1250 				goto dropwithreset;
1251 			}
1252 			if (ia6)
1253 				ifa_free(&ia6->ia_ifa);
1254 		}
1255 #endif /* INET6 */
1256 		/*
1257 		 * Basic sanity checks on incoming SYN requests:
1258 		 *   Don't respond if the destination is a link layer
1259 		 *	broadcast according to RFC1122 4.2.3.10, p. 104.
1260 		 *   If it is from this socket it must be forged.
1261 		 *   Don't respond if the source or destination is a
1262 		 *	global or subnet broad- or multicast address.
1263 		 *   Note that it is quite possible to receive unicast
1264 		 *	link-layer packets with a broadcast IP address. Use
1265 		 *	in_broadcast() to find them.
1266 		 */
1267 		if (m->m_flags & (M_BCAST|M_MCAST)) {
1268 			if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1269 			    log(LOG_DEBUG, "%s; %s: Listen socket: "
1270 				"Connection attempt from broad- or multicast "
1271 				"link layer address ignored\n", s, __func__);
1272 			goto dropunlock;
1273 		}
1274 #ifdef INET6
1275 		if (isipv6) {
1276 			if (th->th_dport == th->th_sport &&
1277 			    IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &ip6->ip6_src)) {
1278 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1279 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
1280 					"Connection attempt to/from self "
1281 					"ignored\n", s, __func__);
1282 				goto dropunlock;
1283 			}
1284 			if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
1285 			    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
1286 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1287 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
1288 					"Connection attempt from/to multicast "
1289 					"address ignored\n", s, __func__);
1290 				goto dropunlock;
1291 			}
1292 		}
1293 #endif
1294 #if defined(INET) && defined(INET6)
1295 		else
1296 #endif
1297 #ifdef INET
1298 		{
1299 			if (th->th_dport == th->th_sport &&
1300 			    ip->ip_dst.s_addr == ip->ip_src.s_addr) {
1301 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1302 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
1303 					"Connection attempt from/to self "
1304 					"ignored\n", s, __func__);
1305 				goto dropunlock;
1306 			}
1307 			if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
1308 			    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
1309 			    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
1310 			    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
1311 				if ((s = tcp_log_addrs(&inc, th, NULL, NULL)))
1312 				    log(LOG_DEBUG, "%s; %s: Listen socket: "
1313 					"Connection attempt from/to broad- "
1314 					"or multicast address ignored\n",
1315 					s, __func__);
1316 				goto dropunlock;
1317 			}
1318 		}
1319 #endif
1320 		/*
1321 		 * SYN appears to be valid.  Create compressed TCP state
1322 		 * for syncache.
1323 		 */
1324 #ifdef TCPDEBUG
1325 		if (so->so_options & SO_DEBUG)
1326 			tcp_trace(TA_INPUT, ostate, tp,
1327 			    (void *)tcp_saveipgen, &tcp_savetcp, 0);
1328 #endif
1329 		TCP_PROBE3(debug__input, tp, th, m);
1330 		tcp_dooptions(&to, optp, optlen, TO_SYN);
1331 		if (syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL))
1332 			goto tfo_socket_result;
1333 
1334 		/*
1335 		 * Entry added to syncache and mbuf consumed.
1336 		 * Only the listen socket is unlocked by syncache_add().
1337 		 */
1338 		if (ti_locked == TI_RLOCKED) {
1339 			INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1340 			ti_locked = TI_UNLOCKED;
1341 		}
1342 		INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
1343 		return (IPPROTO_DONE);
1344 	} else if (tp->t_state == TCPS_LISTEN) {
1345 		/*
1346 		 * When a listen socket is torn down the SO_ACCEPTCONN
1347 		 * flag is removed first while connections are drained
1348 		 * from the accept queue in a unlock/lock cycle of the
1349 		 * ACCEPT_LOCK, opening a race condition allowing a SYN
1350 		 * attempt go through unhandled.
1351 		 */
1352 		goto dropunlock;
1353 	}
1354 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1355 	if (tp->t_flags & TF_SIGNATURE) {
1356 		tcp_dooptions(&to, optp, optlen, thflags);
1357 		if ((to.to_flags & TOF_SIGNATURE) == 0) {
1358 			TCPSTAT_INC(tcps_sig_err_nosigopt);
1359 			goto dropunlock;
1360 		}
1361 		if (!TCPMD5_ENABLED() ||
1362 		    TCPMD5_INPUT(m, th, to.to_signature) != 0)
1363 			goto dropunlock;
1364 	}
1365 #endif
1366 	TCP_PROBE5(receive, NULL, tp, m, tp, th);
1367 
1368 	/*
1369 	 * Segment belongs to a connection in SYN_SENT, ESTABLISHED or later
1370 	 * state.  tcp_do_segment() always consumes the mbuf chain, unlocks
1371 	 * the inpcb, and unlocks pcbinfo.
1372 	 */
1373 	tp->t_fb->tfb_tcp_do_segment(m, th, so, tp, drop_hdrlen, tlen, iptos);
1374 	if (ti_locked == TI_RLOCKED)
1375 		INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1376 	return (IPPROTO_DONE);
1377 
1378 dropwithreset:
1379 	TCP_PROBE5(receive, NULL, tp, m, tp, th);
1380 
1381 	if (ti_locked == TI_RLOCKED) {
1382 		INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1383 		ti_locked = TI_UNLOCKED;
1384 	}
1385 #ifdef INVARIANTS
1386 	else {
1387 		KASSERT(ti_locked == TI_UNLOCKED, ("%s: dropwithreset "
1388 		    "ti_locked: %d", __func__, ti_locked));
1389 		INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
1390 	}
1391 #endif
1392 
1393 	if (inp != NULL) {
1394 		tcp_dropwithreset(m, th, tp, tlen, rstreason);
1395 		INP_WUNLOCK(inp);
1396 	} else
1397 		tcp_dropwithreset(m, th, NULL, tlen, rstreason);
1398 	m = NULL;	/* mbuf chain got consumed. */
1399 	goto drop;
1400 
1401 dropunlock:
1402 	if (m != NULL)
1403 		TCP_PROBE5(receive, NULL, tp, m, tp, th);
1404 
1405 	if (ti_locked == TI_RLOCKED) {
1406 		INP_INFO_RUNLOCK_ET(&V_tcbinfo, et);
1407 		ti_locked = TI_UNLOCKED;
1408 	}
1409 #ifdef INVARIANTS
1410 	else {
1411 		KASSERT(ti_locked == TI_UNLOCKED, ("%s: dropunlock "
1412 		    "ti_locked: %d", __func__, ti_locked));
1413 		INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
1414 	}
1415 #endif
1416 
1417 	if (inp != NULL)
1418 		INP_WUNLOCK(inp);
1419 
1420 drop:
1421 	INP_INFO_WUNLOCK_ASSERT(&V_tcbinfo);
1422 	if (s != NULL)
1423 		free(s, M_TCPLOG);
1424 	if (m != NULL)
1425 		m_freem(m);
1426 	return (IPPROTO_DONE);
1427 }
1428 
1429 /*
1430  * Automatic sizing of receive socket buffer.  Often the send
1431  * buffer size is not optimally adjusted to the actual network
1432  * conditions at hand (delay bandwidth product).  Setting the
1433  * buffer size too small limits throughput on links with high
1434  * bandwidth and high delay (eg. trans-continental/oceanic links).
1435  *
1436  * On the receive side the socket buffer memory is only rarely
1437  * used to any significant extent.  This allows us to be much
1438  * more aggressive in scaling the receive socket buffer.  For
1439  * the case that the buffer space is actually used to a large
1440  * extent and we run out of kernel memory we can simply drop
1441  * the new segments; TCP on the sender will just retransmit it
1442  * later.  Setting the buffer size too big may only consume too
1443  * much kernel memory if the application doesn't read() from
1444  * the socket or packet loss or reordering makes use of the
1445  * reassembly queue.
1446  *
1447  * The criteria to step up the receive buffer one notch are:
1448  *  1. Application has not set receive buffer size with
1449  *     SO_RCVBUF. Setting SO_RCVBUF clears SB_AUTOSIZE.
1450  *  2. the number of bytes received during 1/2 of an sRTT
1451  *     is at least 3/8 of the current socket buffer size.
1452  *  3. receive buffer size has not hit maximal automatic size;
1453  *
1454  * If all of the criteria are met we increaset the socket buffer
1455  * by a 1/2 (bounded by the max). This allows us to keep ahead
1456  * of slow-start but also makes it so our peer never gets limited
1457  * by our rwnd which we then open up causing a burst.
1458  *
1459  * This algorithm does two steps per RTT at most and only if
1460  * we receive a bulk stream w/o packet losses or reorderings.
1461  * Shrinking the buffer during idle times is not necessary as
1462  * it doesn't consume any memory when idle.
1463  *
1464  * TODO: Only step up if the application is actually serving
1465  * the buffer to better manage the socket buffer resources.
1466  */
1467 int
1468 tcp_autorcvbuf(struct mbuf *m, struct tcphdr *th, struct socket *so,
1469     struct tcpcb *tp, int tlen)
1470 {
1471 	int newsize = 0;
1472 
1473 	if (V_tcp_do_autorcvbuf && (so->so_rcv.sb_flags & SB_AUTOSIZE) &&
1474 	    tp->t_srtt != 0 && tp->rfbuf_ts != 0 &&
1475 	    TCP_TS_TO_TICKS(tcp_ts_getticks() - tp->rfbuf_ts) >
1476 	    ((tp->t_srtt >> TCP_RTT_SHIFT)/2)) {
1477 		if (tp->rfbuf_cnt > ((so->so_rcv.sb_hiwat / 2)/ 4 * 3) &&
1478 		    so->so_rcv.sb_hiwat < V_tcp_autorcvbuf_max) {
1479 			newsize = min((so->so_rcv.sb_hiwat + (so->so_rcv.sb_hiwat/2)), V_tcp_autorcvbuf_max);
1480 		}
1481 		TCP_PROBE6(receive__autoresize, NULL, tp, m, tp, th, newsize);
1482 
1483 		/* Start over with next RTT. */
1484 		tp->rfbuf_ts = 0;
1485 		tp->rfbuf_cnt = 0;
1486 	} else {
1487 		tp->rfbuf_cnt += tlen;	/* add up */
1488 	}
1489 	return (newsize);
1490 }
1491 
1492 void
1493 tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
1494     struct tcpcb *tp, int drop_hdrlen, int tlen, uint8_t iptos)
1495 {
1496 	int thflags, acked, ourfinisacked, needoutput = 0, sack_changed;
1497 	int rstreason, todrop, win;
1498 	uint32_t tiwin;
1499 	uint16_t nsegs;
1500 	char *s;
1501 	struct in_conninfo *inc;
1502 	struct mbuf *mfree;
1503 	struct tcpopt to;
1504 	int tfo_syn;
1505 
1506 #ifdef TCPDEBUG
1507 	/*
1508 	 * The size of tcp_saveipgen must be the size of the max ip header,
1509 	 * now IPv6.
1510 	 */
1511 	u_char tcp_saveipgen[IP6_HDR_LEN];
1512 	struct tcphdr tcp_savetcp;
1513 	short ostate = 0;
1514 #endif
1515 	thflags = th->th_flags;
1516 	inc = &tp->t_inpcb->inp_inc;
1517 	tp->sackhint.last_sack_ack = 0;
1518 	sack_changed = 0;
1519 	nsegs = max(1, m->m_pkthdr.lro_nsegs);
1520 	/*
1521 	 * If this is either a state-changing packet or current state isn't
1522 	 * established, we require a write lock on tcbinfo.  Otherwise, we
1523 	 * allow the tcbinfo to be in either alocked or unlocked, as the
1524 	 * caller may have unnecessarily acquired a write lock due to a race.
1525 	 */
1526 	if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0 ||
1527 	    tp->t_state != TCPS_ESTABLISHED) {
1528 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
1529 	}
1530 	INP_WLOCK_ASSERT(tp->t_inpcb);
1531 	KASSERT(tp->t_state > TCPS_LISTEN, ("%s: TCPS_LISTEN",
1532 	    __func__));
1533 	KASSERT(tp->t_state != TCPS_TIME_WAIT, ("%s: TCPS_TIME_WAIT",
1534 	    __func__));
1535 
1536 #ifdef TCPPCAP
1537 	/* Save segment, if requested. */
1538 	tcp_pcap_add(th, m, &(tp->t_inpkts));
1539 #endif
1540 	TCP_LOG_EVENT(tp, th, &so->so_rcv, &so->so_snd, TCP_LOG_IN, 0,
1541 	    tlen, NULL, true);
1542 
1543 	if ((thflags & TH_SYN) && (thflags & TH_FIN) && V_drop_synfin) {
1544 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1545 			log(LOG_DEBUG, "%s; %s: "
1546 			    "SYN|FIN segment ignored (based on "
1547 			    "sysctl setting)\n", s, __func__);
1548 			free(s, M_TCPLOG);
1549 		}
1550 		goto drop;
1551 	}
1552 
1553 	/*
1554 	 * If a segment with the ACK-bit set arrives in the SYN-SENT state
1555 	 * check SEQ.ACK first.
1556 	 */
1557 	if ((tp->t_state == TCPS_SYN_SENT) && (thflags & TH_ACK) &&
1558 	    (SEQ_LEQ(th->th_ack, tp->iss) || SEQ_GT(th->th_ack, tp->snd_max))) {
1559 		rstreason = BANDLIM_UNLIMITED;
1560 		goto dropwithreset;
1561 	}
1562 
1563 	/*
1564 	 * Segment received on connection.
1565 	 * Reset idle time and keep-alive timer.
1566 	 * XXX: This should be done after segment
1567 	 * validation to ignore broken/spoofed segs.
1568 	 */
1569 	tp->t_rcvtime = ticks;
1570 
1571 	/*
1572 	 * Scale up the window into a 32-bit value.
1573 	 * For the SYN_SENT state the scale is zero.
1574 	 */
1575 	tiwin = th->th_win << tp->snd_scale;
1576 
1577 	/*
1578 	 * TCP ECN processing.
1579 	 */
1580 	if (tp->t_flags & TF_ECN_PERMIT) {
1581 		if (thflags & TH_CWR)
1582 			tp->t_flags &= ~TF_ECN_SND_ECE;
1583 		switch (iptos & IPTOS_ECN_MASK) {
1584 		case IPTOS_ECN_CE:
1585 			tp->t_flags |= TF_ECN_SND_ECE;
1586 			TCPSTAT_INC(tcps_ecn_ce);
1587 			break;
1588 		case IPTOS_ECN_ECT0:
1589 			TCPSTAT_INC(tcps_ecn_ect0);
1590 			break;
1591 		case IPTOS_ECN_ECT1:
1592 			TCPSTAT_INC(tcps_ecn_ect1);
1593 			break;
1594 		}
1595 
1596 		/* Process a packet differently from RFC3168. */
1597 		cc_ecnpkt_handler(tp, th, iptos);
1598 
1599 		/* Congestion experienced. */
1600 		if (thflags & TH_ECE) {
1601 			cc_cong_signal(tp, th, CC_ECN);
1602 		}
1603 	}
1604 
1605 	/*
1606 	 * Parse options on any incoming segment.
1607 	 */
1608 	tcp_dooptions(&to, (u_char *)(th + 1),
1609 	    (th->th_off << 2) - sizeof(struct tcphdr),
1610 	    (thflags & TH_SYN) ? TO_SYN : 0);
1611 
1612 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1613 	if ((tp->t_flags & TF_SIGNATURE) != 0 &&
1614 	    (to.to_flags & TOF_SIGNATURE) == 0) {
1615 		TCPSTAT_INC(tcps_sig_err_sigopt);
1616 		/* XXX: should drop? */
1617 	}
1618 #endif
1619 	/*
1620 	 * If echoed timestamp is later than the current time,
1621 	 * fall back to non RFC1323 RTT calculation.  Normalize
1622 	 * timestamp if syncookies were used when this connection
1623 	 * was established.
1624 	 */
1625 	if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) {
1626 		to.to_tsecr -= tp->ts_offset;
1627 		if (TSTMP_GT(to.to_tsecr, tcp_ts_getticks()))
1628 			to.to_tsecr = 0;
1629 		else if (tp->t_flags & TF_PREVVALID &&
1630 			 tp->t_badrxtwin != 0 && SEQ_LT(to.to_tsecr, tp->t_badrxtwin))
1631 			cc_cong_signal(tp, th, CC_RTO_ERR);
1632 	}
1633 	/*
1634 	 * Process options only when we get SYN/ACK back. The SYN case
1635 	 * for incoming connections is handled in tcp_syncache.
1636 	 * According to RFC1323 the window field in a SYN (i.e., a <SYN>
1637 	 * or <SYN,ACK>) segment itself is never scaled.
1638 	 * XXX this is traditional behavior, may need to be cleaned up.
1639 	 */
1640 	if (tp->t_state == TCPS_SYN_SENT && (thflags & TH_SYN)) {
1641 		if ((to.to_flags & TOF_SCALE) &&
1642 		    (tp->t_flags & TF_REQ_SCALE)) {
1643 			tp->t_flags |= TF_RCVD_SCALE;
1644 			tp->snd_scale = to.to_wscale;
1645 		}
1646 		/*
1647 		 * Initial send window.  It will be updated with
1648 		 * the next incoming segment to the scaled value.
1649 		 */
1650 		tp->snd_wnd = th->th_win;
1651 		if (to.to_flags & TOF_TS) {
1652 			tp->t_flags |= TF_RCVD_TSTMP;
1653 			tp->ts_recent = to.to_tsval;
1654 			tp->ts_recent_age = tcp_ts_getticks();
1655 		}
1656 		if (to.to_flags & TOF_MSS)
1657 			tcp_mss(tp, to.to_mss);
1658 		if ((tp->t_flags & TF_SACK_PERMIT) &&
1659 		    (to.to_flags & TOF_SACKPERM) == 0)
1660 			tp->t_flags &= ~TF_SACK_PERMIT;
1661 		if (IS_FASTOPEN(tp->t_flags)) {
1662 			if (to.to_flags & TOF_FASTOPEN) {
1663 				uint16_t mss;
1664 
1665 				if (to.to_flags & TOF_MSS)
1666 					mss = to.to_mss;
1667 				else
1668 					if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0)
1669 						mss = TCP6_MSS;
1670 					else
1671 						mss = TCP_MSS;
1672 				tcp_fastopen_update_cache(tp, mss,
1673 				    to.to_tfo_len, to.to_tfo_cookie);
1674 			} else
1675 				tcp_fastopen_disable_path(tp);
1676 		}
1677 	}
1678 
1679 	/*
1680 	 * If timestamps were negotiated during SYN/ACK they should
1681 	 * appear on every segment during this session and vice versa.
1682 	 */
1683 	if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS)) {
1684 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1685 			log(LOG_DEBUG, "%s; %s: Timestamp missing, "
1686 			    "no action\n", s, __func__);
1687 			free(s, M_TCPLOG);
1688 		}
1689 	}
1690 	if (!(tp->t_flags & TF_RCVD_TSTMP) && (to.to_flags & TOF_TS)) {
1691 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1692 			log(LOG_DEBUG, "%s; %s: Timestamp not expected, "
1693 			    "no action\n", s, __func__);
1694 			free(s, M_TCPLOG);
1695 		}
1696 	}
1697 
1698 	/*
1699 	 * Header prediction: check for the two common cases
1700 	 * of a uni-directional data xfer.  If the packet has
1701 	 * no control flags, is in-sequence, the window didn't
1702 	 * change and we're not retransmitting, it's a
1703 	 * candidate.  If the length is zero and the ack moved
1704 	 * forward, we're the sender side of the xfer.  Just
1705 	 * free the data acked & wake any higher level process
1706 	 * that was blocked waiting for space.  If the length
1707 	 * is non-zero and the ack didn't move, we're the
1708 	 * receiver side.  If we're getting packets in-order
1709 	 * (the reassembly queue is empty), add the data to
1710 	 * the socket buffer and note that we need a delayed ack.
1711 	 * Make sure that the hidden state-flags are also off.
1712 	 * Since we check for TCPS_ESTABLISHED first, it can only
1713 	 * be TH_NEEDSYN.
1714 	 */
1715 	if (tp->t_state == TCPS_ESTABLISHED &&
1716 	    th->th_seq == tp->rcv_nxt &&
1717 	    (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK &&
1718 	    tp->snd_nxt == tp->snd_max &&
1719 	    tiwin && tiwin == tp->snd_wnd &&
1720 	    ((tp->t_flags & (TF_NEEDSYN|TF_NEEDFIN)) == 0) &&
1721 	    SEGQ_EMPTY(tp) &&
1722 	    ((to.to_flags & TOF_TS) == 0 ||
1723 	     TSTMP_GEQ(to.to_tsval, tp->ts_recent)) ) {
1724 
1725 		/*
1726 		 * If last ACK falls within this segment's sequence numbers,
1727 		 * record the timestamp.
1728 		 * NOTE that the test is modified according to the latest
1729 		 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
1730 		 */
1731 		if ((to.to_flags & TOF_TS) != 0 &&
1732 		    SEQ_LEQ(th->th_seq, tp->last_ack_sent)) {
1733 			tp->ts_recent_age = tcp_ts_getticks();
1734 			tp->ts_recent = to.to_tsval;
1735 		}
1736 
1737 		if (tlen == 0) {
1738 			if (SEQ_GT(th->th_ack, tp->snd_una) &&
1739 			    SEQ_LEQ(th->th_ack, tp->snd_max) &&
1740 			    !IN_RECOVERY(tp->t_flags) &&
1741 			    (to.to_flags & TOF_SACK) == 0 &&
1742 			    TAILQ_EMPTY(&tp->snd_holes)) {
1743 				/*
1744 				 * This is a pure ack for outstanding data.
1745 				 */
1746 				TCPSTAT_INC(tcps_predack);
1747 
1748 				/*
1749 				 * "bad retransmit" recovery without timestamps.
1750 				 */
1751 				if ((to.to_flags & TOF_TS) == 0 &&
1752 				    tp->t_rxtshift == 1 &&
1753 				    tp->t_flags & TF_PREVVALID &&
1754 				    (int)(ticks - tp->t_badrxtwin) < 0) {
1755 					cc_cong_signal(tp, th, CC_RTO_ERR);
1756 				}
1757 
1758 				/*
1759 				 * Recalculate the transmit timer / rtt.
1760 				 *
1761 				 * Some boxes send broken timestamp replies
1762 				 * during the SYN+ACK phase, ignore
1763 				 * timestamps of 0 or we could calculate a
1764 				 * huge RTT and blow up the retransmit timer.
1765 				 */
1766 				if ((to.to_flags & TOF_TS) != 0 &&
1767 				    to.to_tsecr) {
1768 					uint32_t t;
1769 
1770 					t = tcp_ts_getticks() - to.to_tsecr;
1771 					if (!tp->t_rttlow || tp->t_rttlow > t)
1772 						tp->t_rttlow = t;
1773 					tcp_xmit_timer(tp,
1774 					    TCP_TS_TO_TICKS(t) + 1);
1775 				} else if (tp->t_rtttime &&
1776 				    SEQ_GT(th->th_ack, tp->t_rtseq)) {
1777 					if (!tp->t_rttlow ||
1778 					    tp->t_rttlow > ticks - tp->t_rtttime)
1779 						tp->t_rttlow = ticks - tp->t_rtttime;
1780 					tcp_xmit_timer(tp,
1781 							ticks - tp->t_rtttime);
1782 				}
1783 				acked = BYTES_THIS_ACK(tp, th);
1784 
1785 #ifdef TCP_HHOOK
1786 				/* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */
1787 				hhook_run_tcp_est_in(tp, th, &to);
1788 #endif
1789 
1790 				TCPSTAT_ADD(tcps_rcvackpack, nsegs);
1791 				TCPSTAT_ADD(tcps_rcvackbyte, acked);
1792 				sbdrop(&so->so_snd, acked);
1793 				if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
1794 				    SEQ_LEQ(th->th_ack, tp->snd_recover))
1795 					tp->snd_recover = th->th_ack - 1;
1796 
1797 				/*
1798 				 * Let the congestion control algorithm update
1799 				 * congestion control related information. This
1800 				 * typically means increasing the congestion
1801 				 * window.
1802 				 */
1803 				cc_ack_received(tp, th, nsegs, CC_ACK);
1804 
1805 				tp->snd_una = th->th_ack;
1806 				/*
1807 				 * Pull snd_wl2 up to prevent seq wrap relative
1808 				 * to th_ack.
1809 				 */
1810 				tp->snd_wl2 = th->th_ack;
1811 				tp->t_dupacks = 0;
1812 				m_freem(m);
1813 
1814 				/*
1815 				 * If all outstanding data are acked, stop
1816 				 * retransmit timer, otherwise restart timer
1817 				 * using current (possibly backed-off) value.
1818 				 * If process is waiting for space,
1819 				 * wakeup/selwakeup/signal.  If data
1820 				 * are ready to send, let tcp_output
1821 				 * decide between more output or persist.
1822 				 */
1823 #ifdef TCPDEBUG
1824 				if (so->so_options & SO_DEBUG)
1825 					tcp_trace(TA_INPUT, ostate, tp,
1826 					    (void *)tcp_saveipgen,
1827 					    &tcp_savetcp, 0);
1828 #endif
1829 				TCP_PROBE3(debug__input, tp, th, m);
1830 				if (tp->snd_una == tp->snd_max)
1831 					tcp_timer_activate(tp, TT_REXMT, 0);
1832 				else if (!tcp_timer_active(tp, TT_PERSIST))
1833 					tcp_timer_activate(tp, TT_REXMT,
1834 						      tp->t_rxtcur);
1835 				sowwakeup(so);
1836 				if (sbavail(&so->so_snd))
1837 					(void) tp->t_fb->tfb_tcp_output(tp);
1838 				goto check_delack;
1839 			}
1840 		} else if (th->th_ack == tp->snd_una &&
1841 		    tlen <= sbspace(&so->so_rcv)) {
1842 			int newsize = 0;	/* automatic sockbuf scaling */
1843 
1844 			/*
1845 			 * This is a pure, in-sequence data packet with
1846 			 * nothing on the reassembly queue and we have enough
1847 			 * buffer space to take it.
1848 			 */
1849 			/* Clean receiver SACK report if present */
1850 			if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks)
1851 				tcp_clean_sackreport(tp);
1852 			TCPSTAT_INC(tcps_preddat);
1853 			tp->rcv_nxt += tlen;
1854 			/*
1855 			 * Pull snd_wl1 up to prevent seq wrap relative to
1856 			 * th_seq.
1857 			 */
1858 			tp->snd_wl1 = th->th_seq;
1859 			/*
1860 			 * Pull rcv_up up to prevent seq wrap relative to
1861 			 * rcv_nxt.
1862 			 */
1863 			tp->rcv_up = tp->rcv_nxt;
1864 			TCPSTAT_ADD(tcps_rcvpack, nsegs);
1865 			TCPSTAT_ADD(tcps_rcvbyte, tlen);
1866 #ifdef TCPDEBUG
1867 			if (so->so_options & SO_DEBUG)
1868 				tcp_trace(TA_INPUT, ostate, tp,
1869 				    (void *)tcp_saveipgen, &tcp_savetcp, 0);
1870 #endif
1871 			TCP_PROBE3(debug__input, tp, th, m);
1872 
1873 			newsize = tcp_autorcvbuf(m, th, so, tp, tlen);
1874 
1875 			/* Add data to socket buffer. */
1876 			SOCKBUF_LOCK(&so->so_rcv);
1877 			if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
1878 				m_freem(m);
1879 			} else {
1880 				/*
1881 				 * Set new socket buffer size.
1882 				 * Give up when limit is reached.
1883 				 */
1884 				if (newsize)
1885 					if (!sbreserve_locked(&so->so_rcv,
1886 					    newsize, so, NULL))
1887 						so->so_rcv.sb_flags &= ~SB_AUTOSIZE;
1888 				m_adj(m, drop_hdrlen);	/* delayed header drop */
1889 				sbappendstream_locked(&so->so_rcv, m, 0);
1890 			}
1891 			/* NB: sorwakeup_locked() does an implicit unlock. */
1892 			sorwakeup_locked(so);
1893 			if (DELAY_ACK(tp, tlen)) {
1894 				tp->t_flags |= TF_DELACK;
1895 			} else {
1896 				tp->t_flags |= TF_ACKNOW;
1897 				tp->t_fb->tfb_tcp_output(tp);
1898 			}
1899 			goto check_delack;
1900 		}
1901 	}
1902 
1903 	/*
1904 	 * Calculate amount of space in receive window,
1905 	 * and then do TCP input processing.
1906 	 * Receive window is amount of space in rcv queue,
1907 	 * but not less than advertised window.
1908 	 */
1909 	win = sbspace(&so->so_rcv);
1910 	if (win < 0)
1911 		win = 0;
1912 	tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
1913 
1914 	switch (tp->t_state) {
1915 
1916 	/*
1917 	 * If the state is SYN_RECEIVED:
1918 	 *	if seg contains an ACK, but not for our SYN/ACK, send a RST.
1919 	 */
1920 	case TCPS_SYN_RECEIVED:
1921 		if ((thflags & TH_ACK) &&
1922 		    (SEQ_LEQ(th->th_ack, tp->snd_una) ||
1923 		     SEQ_GT(th->th_ack, tp->snd_max))) {
1924 				rstreason = BANDLIM_RST_OPENPORT;
1925 				goto dropwithreset;
1926 		}
1927 		if (IS_FASTOPEN(tp->t_flags)) {
1928 			/*
1929 			 * When a TFO connection is in SYN_RECEIVED, the
1930 			 * only valid packets are the initial SYN, a
1931 			 * retransmit/copy of the initial SYN (possibly with
1932 			 * a subset of the original data), a valid ACK, a
1933 			 * FIN, or a RST.
1934 			 */
1935 			if ((thflags & (TH_SYN|TH_ACK)) == (TH_SYN|TH_ACK)) {
1936 				rstreason = BANDLIM_RST_OPENPORT;
1937 				goto dropwithreset;
1938 			} else if (thflags & TH_SYN) {
1939 				/* non-initial SYN is ignored */
1940 				if ((tcp_timer_active(tp, TT_DELACK) ||
1941 				     tcp_timer_active(tp, TT_REXMT)))
1942 					goto drop;
1943 			} else if (!(thflags & (TH_ACK|TH_FIN|TH_RST))) {
1944 				goto drop;
1945 			}
1946 		}
1947 		break;
1948 
1949 	/*
1950 	 * If the state is SYN_SENT:
1951 	 *	if seg contains a RST with valid ACK (SEQ.ACK has already
1952 	 *	    been verified), then drop the connection.
1953 	 *	if seg contains a RST without an ACK, drop the seg.
1954 	 *	if seg does not contain SYN, then drop the seg.
1955 	 * Otherwise this is an acceptable SYN segment
1956 	 *	initialize tp->rcv_nxt and tp->irs
1957 	 *	if seg contains ack then advance tp->snd_una
1958 	 *	if seg contains an ECE and ECN support is enabled, the stream
1959 	 *	    is ECN capable.
1960 	 *	if SYN has been acked change to ESTABLISHED else SYN_RCVD state
1961 	 *	arrange for segment to be acked (eventually)
1962 	 *	continue processing rest of data/controls, beginning with URG
1963 	 */
1964 	case TCPS_SYN_SENT:
1965 		if ((thflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) {
1966 			TCP_PROBE5(connect__refused, NULL, tp,
1967 			    m, tp, th);
1968 			tp = tcp_drop(tp, ECONNREFUSED);
1969 		}
1970 		if (thflags & TH_RST)
1971 			goto drop;
1972 		if (!(thflags & TH_SYN))
1973 			goto drop;
1974 
1975 		tp->irs = th->th_seq;
1976 		tcp_rcvseqinit(tp);
1977 		if (thflags & TH_ACK) {
1978 			int tfo_partial_ack = 0;
1979 
1980 			TCPSTAT_INC(tcps_connects);
1981 			soisconnected(so);
1982 #ifdef MAC
1983 			mac_socketpeer_set_from_mbuf(m, so);
1984 #endif
1985 			/* Do window scaling on this connection? */
1986 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1987 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
1988 				tp->rcv_scale = tp->request_r_scale;
1989 			}
1990 			tp->rcv_adv += min(tp->rcv_wnd,
1991 			    TCP_MAXWIN << tp->rcv_scale);
1992 			tp->snd_una++;		/* SYN is acked */
1993 			/*
1994 			 * If not all the data that was sent in the TFO SYN
1995 			 * has been acked, resend the remainder right away.
1996 			 */
1997 			if (IS_FASTOPEN(tp->t_flags) &&
1998 			    (tp->snd_una != tp->snd_max)) {
1999 				tp->snd_nxt = th->th_ack;
2000 				tfo_partial_ack = 1;
2001 			}
2002 			/*
2003 			 * If there's data, delay ACK; if there's also a FIN
2004 			 * ACKNOW will be turned on later.
2005 			 */
2006 			if (DELAY_ACK(tp, tlen) && tlen != 0 && !tfo_partial_ack)
2007 				tcp_timer_activate(tp, TT_DELACK,
2008 				    tcp_delacktime);
2009 			else
2010 				tp->t_flags |= TF_ACKNOW;
2011 
2012 			if (((thflags & (TH_CWR | TH_ECE)) == TH_ECE) &&
2013 			    V_tcp_do_ecn) {
2014 				tp->t_flags |= TF_ECN_PERMIT;
2015 				TCPSTAT_INC(tcps_ecn_shs);
2016 			}
2017 
2018 			/*
2019 			 * Received <SYN,ACK> in SYN_SENT[*] state.
2020 			 * Transitions:
2021 			 *	SYN_SENT  --> ESTABLISHED
2022 			 *	SYN_SENT* --> FIN_WAIT_1
2023 			 */
2024 			tp->t_starttime = ticks;
2025 			if (tp->t_flags & TF_NEEDFIN) {
2026 				tcp_state_change(tp, TCPS_FIN_WAIT_1);
2027 				tp->t_flags &= ~TF_NEEDFIN;
2028 				thflags &= ~TH_SYN;
2029 			} else {
2030 				tcp_state_change(tp, TCPS_ESTABLISHED);
2031 				TCP_PROBE5(connect__established, NULL, tp,
2032 				    m, tp, th);
2033 				cc_conn_init(tp);
2034 				tcp_timer_activate(tp, TT_KEEP,
2035 				    TP_KEEPIDLE(tp));
2036 			}
2037 		} else {
2038 			/*
2039 			 * Received initial SYN in SYN-SENT[*] state =>
2040 			 * simultaneous open.
2041 			 * If it succeeds, connection is * half-synchronized.
2042 			 * Otherwise, do 3-way handshake:
2043 			 *        SYN-SENT -> SYN-RECEIVED
2044 			 *        SYN-SENT* -> SYN-RECEIVED*
2045 			 */
2046 			tp->t_flags |= (TF_ACKNOW | TF_NEEDSYN);
2047 			tcp_timer_activate(tp, TT_REXMT, 0);
2048 			tcp_state_change(tp, TCPS_SYN_RECEIVED);
2049 		}
2050 
2051 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2052 		INP_WLOCK_ASSERT(tp->t_inpcb);
2053 
2054 		/*
2055 		 * Advance th->th_seq to correspond to first data byte.
2056 		 * If data, trim to stay within window,
2057 		 * dropping FIN if necessary.
2058 		 */
2059 		th->th_seq++;
2060 		if (tlen > tp->rcv_wnd) {
2061 			todrop = tlen - tp->rcv_wnd;
2062 			m_adj(m, -todrop);
2063 			tlen = tp->rcv_wnd;
2064 			thflags &= ~TH_FIN;
2065 			TCPSTAT_INC(tcps_rcvpackafterwin);
2066 			TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop);
2067 		}
2068 		tp->snd_wl1 = th->th_seq - 1;
2069 		tp->rcv_up = th->th_seq;
2070 		/*
2071 		 * Client side of transaction: already sent SYN and data.
2072 		 * If the remote host used T/TCP to validate the SYN,
2073 		 * our data will be ACK'd; if so, enter normal data segment
2074 		 * processing in the middle of step 5, ack processing.
2075 		 * Otherwise, goto step 6.
2076 		 */
2077 		if (thflags & TH_ACK)
2078 			goto process_ACK;
2079 
2080 		goto step6;
2081 
2082 	/*
2083 	 * If the state is LAST_ACK or CLOSING or TIME_WAIT:
2084 	 *      do normal processing.
2085 	 *
2086 	 * NB: Leftover from RFC1644 T/TCP.  Cases to be reused later.
2087 	 */
2088 	case TCPS_LAST_ACK:
2089 	case TCPS_CLOSING:
2090 		break;  /* continue normal processing */
2091 	}
2092 
2093 	/*
2094 	 * States other than LISTEN or SYN_SENT.
2095 	 * First check the RST flag and sequence number since reset segments
2096 	 * are exempt from the timestamp and connection count tests.  This
2097 	 * fixes a bug introduced by the Stevens, vol. 2, p. 960 bugfix
2098 	 * below which allowed reset segments in half the sequence space
2099 	 * to fall though and be processed (which gives forged reset
2100 	 * segments with a random sequence number a 50 percent chance of
2101 	 * killing a connection).
2102 	 * Then check timestamp, if present.
2103 	 * Then check the connection count, if present.
2104 	 * Then check that at least some bytes of segment are within
2105 	 * receive window.  If segment begins before rcv_nxt,
2106 	 * drop leading data (and SYN); if nothing left, just ack.
2107 	 */
2108 	if (thflags & TH_RST) {
2109 		/*
2110 		 * RFC5961 Section 3.2
2111 		 *
2112 		 * - RST drops connection only if SEG.SEQ == RCV.NXT.
2113 		 * - If RST is in window, we send challenge ACK.
2114 		 *
2115 		 * Note: to take into account delayed ACKs, we should
2116 		 *   test against last_ack_sent instead of rcv_nxt.
2117 		 * Note 2: we handle special case of closed window, not
2118 		 *   covered by the RFC.
2119 		 */
2120 		if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
2121 		    SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) ||
2122 		    (tp->rcv_wnd == 0 && tp->last_ack_sent == th->th_seq)) {
2123 
2124 			INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2125 			KASSERT(tp->t_state != TCPS_SYN_SENT,
2126 			    ("%s: TH_RST for TCPS_SYN_SENT th %p tp %p",
2127 			    __func__, th, tp));
2128 
2129 			if (V_tcp_insecure_rst ||
2130 			    tp->last_ack_sent == th->th_seq) {
2131 				TCPSTAT_INC(tcps_drops);
2132 				/* Drop the connection. */
2133 				switch (tp->t_state) {
2134 				case TCPS_SYN_RECEIVED:
2135 					so->so_error = ECONNREFUSED;
2136 					goto close;
2137 				case TCPS_ESTABLISHED:
2138 				case TCPS_FIN_WAIT_1:
2139 				case TCPS_FIN_WAIT_2:
2140 				case TCPS_CLOSE_WAIT:
2141 				case TCPS_CLOSING:
2142 				case TCPS_LAST_ACK:
2143 					so->so_error = ECONNRESET;
2144 				close:
2145 					/* FALLTHROUGH */
2146 				default:
2147 					tp = tcp_close(tp);
2148 				}
2149 			} else {
2150 				TCPSTAT_INC(tcps_badrst);
2151 				/* Send challenge ACK. */
2152 				tcp_respond(tp, mtod(m, void *), th, m,
2153 				    tp->rcv_nxt, tp->snd_nxt, TH_ACK);
2154 				tp->last_ack_sent = tp->rcv_nxt;
2155 				m = NULL;
2156 			}
2157 		}
2158 		goto drop;
2159 	}
2160 
2161 	/*
2162 	 * RFC5961 Section 4.2
2163 	 * Send challenge ACK for any SYN in synchronized state.
2164 	 */
2165 	if ((thflags & TH_SYN) && tp->t_state != TCPS_SYN_SENT &&
2166 	    tp->t_state != TCPS_SYN_RECEIVED) {
2167 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2168 
2169 		TCPSTAT_INC(tcps_badsyn);
2170 		if (V_tcp_insecure_syn &&
2171 		    SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
2172 		    SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) {
2173 			tp = tcp_drop(tp, ECONNRESET);
2174 			rstreason = BANDLIM_UNLIMITED;
2175 		} else {
2176 			/* Send challenge ACK. */
2177 			tcp_respond(tp, mtod(m, void *), th, m, tp->rcv_nxt,
2178 			    tp->snd_nxt, TH_ACK);
2179 			tp->last_ack_sent = tp->rcv_nxt;
2180 			m = NULL;
2181 		}
2182 		goto drop;
2183 	}
2184 
2185 	/*
2186 	 * RFC 1323 PAWS: If we have a timestamp reply on this segment
2187 	 * and it's less than ts_recent, drop it.
2188 	 */
2189 	if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
2190 	    TSTMP_LT(to.to_tsval, tp->ts_recent)) {
2191 
2192 		/* Check to see if ts_recent is over 24 days old.  */
2193 		if (tcp_ts_getticks() - tp->ts_recent_age > TCP_PAWS_IDLE) {
2194 			/*
2195 			 * Invalidate ts_recent.  If this segment updates
2196 			 * ts_recent, the age will be reset later and ts_recent
2197 			 * will get a valid value.  If it does not, setting
2198 			 * ts_recent to zero will at least satisfy the
2199 			 * requirement that zero be placed in the timestamp
2200 			 * echo reply when ts_recent isn't valid.  The
2201 			 * age isn't reset until we get a valid ts_recent
2202 			 * because we don't want out-of-order segments to be
2203 			 * dropped when ts_recent is old.
2204 			 */
2205 			tp->ts_recent = 0;
2206 		} else {
2207 			TCPSTAT_INC(tcps_rcvduppack);
2208 			TCPSTAT_ADD(tcps_rcvdupbyte, tlen);
2209 			TCPSTAT_INC(tcps_pawsdrop);
2210 			if (tlen)
2211 				goto dropafterack;
2212 			goto drop;
2213 		}
2214 	}
2215 
2216 	/*
2217 	 * In the SYN-RECEIVED state, validate that the packet belongs to
2218 	 * this connection before trimming the data to fit the receive
2219 	 * window.  Check the sequence number versus IRS since we know
2220 	 * the sequence numbers haven't wrapped.  This is a partial fix
2221 	 * for the "LAND" DoS attack.
2222 	 */
2223 	if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) {
2224 		rstreason = BANDLIM_RST_OPENPORT;
2225 		goto dropwithreset;
2226 	}
2227 
2228 	todrop = tp->rcv_nxt - th->th_seq;
2229 	if (todrop > 0) {
2230 		if (thflags & TH_SYN) {
2231 			thflags &= ~TH_SYN;
2232 			th->th_seq++;
2233 			if (th->th_urp > 1)
2234 				th->th_urp--;
2235 			else
2236 				thflags &= ~TH_URG;
2237 			todrop--;
2238 		}
2239 		/*
2240 		 * Following if statement from Stevens, vol. 2, p. 960.
2241 		 */
2242 		if (todrop > tlen
2243 		    || (todrop == tlen && (thflags & TH_FIN) == 0)) {
2244 			/*
2245 			 * Any valid FIN must be to the left of the window.
2246 			 * At this point the FIN must be a duplicate or out
2247 			 * of sequence; drop it.
2248 			 */
2249 			thflags &= ~TH_FIN;
2250 
2251 			/*
2252 			 * Send an ACK to resynchronize and drop any data.
2253 			 * But keep on processing for RST or ACK.
2254 			 */
2255 			tp->t_flags |= TF_ACKNOW;
2256 			todrop = tlen;
2257 			TCPSTAT_INC(tcps_rcvduppack);
2258 			TCPSTAT_ADD(tcps_rcvdupbyte, todrop);
2259 		} else {
2260 			TCPSTAT_INC(tcps_rcvpartduppack);
2261 			TCPSTAT_ADD(tcps_rcvpartdupbyte, todrop);
2262 		}
2263 		/*
2264 		 * DSACK - add SACK block for dropped range
2265 		 */
2266 		if (tp->t_flags & TF_SACK_PERMIT) {
2267 			tcp_update_sack_list(tp, th->th_seq, th->th_seq+tlen);
2268 			/*
2269 			 * ACK now, as the next in-sequence segment
2270 			 * will clear the DSACK block again
2271 			 */
2272 			tp->t_flags |= TF_ACKNOW;
2273 		}
2274 		drop_hdrlen += todrop;	/* drop from the top afterwards */
2275 		th->th_seq += todrop;
2276 		tlen -= todrop;
2277 		if (th->th_urp > todrop)
2278 			th->th_urp -= todrop;
2279 		else {
2280 			thflags &= ~TH_URG;
2281 			th->th_urp = 0;
2282 		}
2283 	}
2284 
2285 	/*
2286 	 * If new data are received on a connection after the
2287 	 * user processes are gone, then RST the other end.
2288 	 */
2289 	if ((so->so_state & SS_NOFDREF) &&
2290 	    tp->t_state > TCPS_CLOSE_WAIT && tlen) {
2291 		INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2292 
2293 		if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
2294 			log(LOG_DEBUG, "%s; %s: %s: Received %d bytes of data "
2295 			    "after socket was closed, "
2296 			    "sending RST and removing tcpcb\n",
2297 			    s, __func__, tcpstates[tp->t_state], tlen);
2298 			free(s, M_TCPLOG);
2299 		}
2300 		tp = tcp_close(tp);
2301 		TCPSTAT_INC(tcps_rcvafterclose);
2302 		rstreason = BANDLIM_UNLIMITED;
2303 		goto dropwithreset;
2304 	}
2305 
2306 	/*
2307 	 * If segment ends after window, drop trailing data
2308 	 * (and PUSH and FIN); if nothing left, just ACK.
2309 	 */
2310 	todrop = (th->th_seq + tlen) - (tp->rcv_nxt + tp->rcv_wnd);
2311 	if (todrop > 0) {
2312 		TCPSTAT_INC(tcps_rcvpackafterwin);
2313 		if (todrop >= tlen) {
2314 			TCPSTAT_ADD(tcps_rcvbyteafterwin, tlen);
2315 			/*
2316 			 * If window is closed can only take segments at
2317 			 * window edge, and have to drop data and PUSH from
2318 			 * incoming segments.  Continue processing, but
2319 			 * remember to ack.  Otherwise, drop segment
2320 			 * and ack.
2321 			 */
2322 			if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) {
2323 				tp->t_flags |= TF_ACKNOW;
2324 				TCPSTAT_INC(tcps_rcvwinprobe);
2325 			} else
2326 				goto dropafterack;
2327 		} else
2328 			TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop);
2329 		m_adj(m, -todrop);
2330 		tlen -= todrop;
2331 		thflags &= ~(TH_PUSH|TH_FIN);
2332 	}
2333 
2334 	/*
2335 	 * If last ACK falls within this segment's sequence numbers,
2336 	 * record its timestamp.
2337 	 * NOTE:
2338 	 * 1) That the test incorporates suggestions from the latest
2339 	 *    proposal of the tcplw@cray.com list (Braden 1993/04/26).
2340 	 * 2) That updating only on newer timestamps interferes with
2341 	 *    our earlier PAWS tests, so this check should be solely
2342 	 *    predicated on the sequence space of this segment.
2343 	 * 3) That we modify the segment boundary check to be
2344 	 *        Last.ACK.Sent <= SEG.SEQ + SEG.Len
2345 	 *    instead of RFC1323's
2346 	 *        Last.ACK.Sent < SEG.SEQ + SEG.Len,
2347 	 *    This modified check allows us to overcome RFC1323's
2348 	 *    limitations as described in Stevens TCP/IP Illustrated
2349 	 *    Vol. 2 p.869. In such cases, we can still calculate the
2350 	 *    RTT correctly when RCV.NXT == Last.ACK.Sent.
2351 	 */
2352 	if ((to.to_flags & TOF_TS) != 0 &&
2353 	    SEQ_LEQ(th->th_seq, tp->last_ack_sent) &&
2354 	    SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen +
2355 		((thflags & (TH_SYN|TH_FIN)) != 0))) {
2356 		tp->ts_recent_age = tcp_ts_getticks();
2357 		tp->ts_recent = to.to_tsval;
2358 	}
2359 
2360 	/*
2361 	 * If the ACK bit is off:  if in SYN-RECEIVED state or SENDSYN
2362 	 * flag is on (half-synchronized state), then queue data for
2363 	 * later processing; else drop segment and return.
2364 	 */
2365 	if ((thflags & TH_ACK) == 0) {
2366 		if (tp->t_state == TCPS_SYN_RECEIVED ||
2367 		    (tp->t_flags & TF_NEEDSYN)) {
2368 			if (tp->t_state == TCPS_SYN_RECEIVED &&
2369 			    IS_FASTOPEN(tp->t_flags)) {
2370 				tp->snd_wnd = tiwin;
2371 				cc_conn_init(tp);
2372 			}
2373 			goto step6;
2374 		} else if (tp->t_flags & TF_ACKNOW)
2375 			goto dropafterack;
2376 		else
2377 			goto drop;
2378 	}
2379 
2380 	/*
2381 	 * Ack processing.
2382 	 */
2383 	switch (tp->t_state) {
2384 
2385 	/*
2386 	 * In SYN_RECEIVED state, the ack ACKs our SYN, so enter
2387 	 * ESTABLISHED state and continue processing.
2388 	 * The ACK was checked above.
2389 	 */
2390 	case TCPS_SYN_RECEIVED:
2391 
2392 		TCPSTAT_INC(tcps_connects);
2393 		soisconnected(so);
2394 		/* Do window scaling? */
2395 		if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
2396 			(TF_RCVD_SCALE|TF_REQ_SCALE)) {
2397 			tp->rcv_scale = tp->request_r_scale;
2398 		}
2399 		tp->snd_wnd = tiwin;
2400 		/*
2401 		 * Make transitions:
2402 		 *      SYN-RECEIVED  -> ESTABLISHED
2403 		 *      SYN-RECEIVED* -> FIN-WAIT-1
2404 		 */
2405 		tp->t_starttime = ticks;
2406 		if (IS_FASTOPEN(tp->t_flags) && tp->t_tfo_pending) {
2407 			tcp_fastopen_decrement_counter(tp->t_tfo_pending);
2408 			tp->t_tfo_pending = NULL;
2409 
2410 			/*
2411 			 * Account for the ACK of our SYN prior to
2412 			 * regular ACK processing below.
2413 			 */
2414 			tp->snd_una++;
2415 		}
2416 		if (tp->t_flags & TF_NEEDFIN) {
2417 			tcp_state_change(tp, TCPS_FIN_WAIT_1);
2418 			tp->t_flags &= ~TF_NEEDFIN;
2419 		} else {
2420 			tcp_state_change(tp, TCPS_ESTABLISHED);
2421 			TCP_PROBE5(accept__established, NULL, tp,
2422 			    m, tp, th);
2423 			/*
2424 			 * TFO connections call cc_conn_init() during SYN
2425 			 * processing.  Calling it again here for such
2426 			 * connections is not harmless as it would undo the
2427 			 * snd_cwnd reduction that occurs when a TFO SYN|ACK
2428 			 * is retransmitted.
2429 			 */
2430 			if (!IS_FASTOPEN(tp->t_flags))
2431 				cc_conn_init(tp);
2432 			tcp_timer_activate(tp, TT_KEEP, TP_KEEPIDLE(tp));
2433 		}
2434 		/*
2435 		 * If segment contains data or ACK, will call tcp_reass()
2436 		 * later; if not, do so now to pass queued data to user.
2437 		 */
2438 		if (tlen == 0 && (thflags & TH_FIN) == 0)
2439 			(void) tcp_reass(tp, (struct tcphdr *)0, NULL, 0,
2440 			    (struct mbuf *)0);
2441 		tp->snd_wl1 = th->th_seq - 1;
2442 		/* FALLTHROUGH */
2443 
2444 	/*
2445 	 * In ESTABLISHED state: drop duplicate ACKs; ACK out of range
2446 	 * ACKs.  If the ack is in the range
2447 	 *	tp->snd_una < th->th_ack <= tp->snd_max
2448 	 * then advance tp->snd_una to th->th_ack and drop
2449 	 * data from the retransmission queue.  If this ACK reflects
2450 	 * more up to date window information we update our window information.
2451 	 */
2452 	case TCPS_ESTABLISHED:
2453 	case TCPS_FIN_WAIT_1:
2454 	case TCPS_FIN_WAIT_2:
2455 	case TCPS_CLOSE_WAIT:
2456 	case TCPS_CLOSING:
2457 	case TCPS_LAST_ACK:
2458 		if (SEQ_GT(th->th_ack, tp->snd_max)) {
2459 			TCPSTAT_INC(tcps_rcvacktoomuch);
2460 			goto dropafterack;
2461 		}
2462 		if ((tp->t_flags & TF_SACK_PERMIT) &&
2463 		    ((to.to_flags & TOF_SACK) ||
2464 		     !TAILQ_EMPTY(&tp->snd_holes)))
2465 			sack_changed = tcp_sack_doack(tp, &to, th->th_ack);
2466 		else
2467 			/*
2468 			 * Reset the value so that previous (valid) value
2469 			 * from the last ack with SACK doesn't get used.
2470 			 */
2471 			tp->sackhint.sacked_bytes = 0;
2472 
2473 #ifdef TCP_HHOOK
2474 		/* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */
2475 		hhook_run_tcp_est_in(tp, th, &to);
2476 #endif
2477 
2478 		if (SEQ_LEQ(th->th_ack, tp->snd_una)) {
2479 			u_int maxseg;
2480 
2481 			maxseg = tcp_maxseg(tp);
2482 			if (tlen == 0 &&
2483 			    (tiwin == tp->snd_wnd ||
2484 			    (tp->t_flags & TF_SACK_PERMIT))) {
2485 				/*
2486 				 * If this is the first time we've seen a
2487 				 * FIN from the remote, this is not a
2488 				 * duplicate and it needs to be processed
2489 				 * normally.  This happens during a
2490 				 * simultaneous close.
2491 				 */
2492 				if ((thflags & TH_FIN) &&
2493 				    (TCPS_HAVERCVDFIN(tp->t_state) == 0)) {
2494 					tp->t_dupacks = 0;
2495 					break;
2496 				}
2497 				TCPSTAT_INC(tcps_rcvdupack);
2498 				/*
2499 				 * If we have outstanding data (other than
2500 				 * a window probe), this is a completely
2501 				 * duplicate ack (ie, window info didn't
2502 				 * change and FIN isn't set),
2503 				 * the ack is the biggest we've
2504 				 * seen and we've seen exactly our rexmt
2505 				 * threshold of them, assume a packet
2506 				 * has been dropped and retransmit it.
2507 				 * Kludge snd_nxt & the congestion
2508 				 * window so we send only this one
2509 				 * packet.
2510 				 *
2511 				 * We know we're losing at the current
2512 				 * window size so do congestion avoidance
2513 				 * (set ssthresh to half the current window
2514 				 * and pull our congestion window back to
2515 				 * the new ssthresh).
2516 				 *
2517 				 * Dup acks mean that packets have left the
2518 				 * network (they're now cached at the receiver)
2519 				 * so bump cwnd by the amount in the receiver
2520 				 * to keep a constant cwnd packets in the
2521 				 * network.
2522 				 *
2523 				 * When using TCP ECN, notify the peer that
2524 				 * we reduced the cwnd.
2525 				 */
2526 				/*
2527 				 * Following 2 kinds of acks should not affect
2528 				 * dupack counting:
2529 				 * 1) Old acks
2530 				 * 2) Acks with SACK but without any new SACK
2531 				 * information in them. These could result from
2532 				 * any anomaly in the network like a switch
2533 				 * duplicating packets or a possible DoS attack.
2534 				 */
2535 				if (th->th_ack != tp->snd_una ||
2536 				    ((tp->t_flags & TF_SACK_PERMIT) &&
2537 				    !sack_changed))
2538 					break;
2539 				else if (!tcp_timer_active(tp, TT_REXMT))
2540 					tp->t_dupacks = 0;
2541 				else if (++tp->t_dupacks > tcprexmtthresh ||
2542 				     IN_FASTRECOVERY(tp->t_flags)) {
2543 					cc_ack_received(tp, th, nsegs,
2544 					    CC_DUPACK);
2545 					if ((tp->t_flags & TF_SACK_PERMIT) &&
2546 					    IN_FASTRECOVERY(tp->t_flags)) {
2547 						int awnd;
2548 
2549 						/*
2550 						 * Compute the amount of data in flight first.
2551 						 * We can inject new data into the pipe iff
2552 						 * we have less than 1/2 the original window's
2553 						 * worth of data in flight.
2554 						 */
2555 						if (V_tcp_do_rfc6675_pipe)
2556 							awnd = tcp_compute_pipe(tp);
2557 						else
2558 							awnd = (tp->snd_nxt - tp->snd_fack) +
2559 								tp->sackhint.sack_bytes_rexmit;
2560 
2561 						if (awnd < tp->snd_ssthresh) {
2562 							tp->snd_cwnd += maxseg;
2563 							if (tp->snd_cwnd > tp->snd_ssthresh)
2564 								tp->snd_cwnd = tp->snd_ssthresh;
2565 						}
2566 					} else
2567 						tp->snd_cwnd += maxseg;
2568 					(void) tp->t_fb->tfb_tcp_output(tp);
2569 					goto drop;
2570 				} else if (tp->t_dupacks == tcprexmtthresh) {
2571 					tcp_seq onxt = tp->snd_nxt;
2572 
2573 					/*
2574 					 * If we're doing sack, check to
2575 					 * see if we're already in sack
2576 					 * recovery. If we're not doing sack,
2577 					 * check to see if we're in newreno
2578 					 * recovery.
2579 					 */
2580 					if (tp->t_flags & TF_SACK_PERMIT) {
2581 						if (IN_FASTRECOVERY(tp->t_flags)) {
2582 							tp->t_dupacks = 0;
2583 							break;
2584 						}
2585 					} else {
2586 						if (SEQ_LEQ(th->th_ack,
2587 						    tp->snd_recover)) {
2588 							tp->t_dupacks = 0;
2589 							break;
2590 						}
2591 					}
2592 					/* Congestion signal before ack. */
2593 					cc_cong_signal(tp, th, CC_NDUPACK);
2594 					cc_ack_received(tp, th, nsegs,
2595 					    CC_DUPACK);
2596 					tcp_timer_activate(tp, TT_REXMT, 0);
2597 					tp->t_rtttime = 0;
2598 					if (tp->t_flags & TF_SACK_PERMIT) {
2599 						TCPSTAT_INC(
2600 						    tcps_sack_recovery_episode);
2601 						tp->sack_newdata = tp->snd_nxt;
2602 						tp->snd_cwnd = maxseg;
2603 						(void) tp->t_fb->tfb_tcp_output(tp);
2604 						goto drop;
2605 					}
2606 					tp->snd_nxt = th->th_ack;
2607 					tp->snd_cwnd = maxseg;
2608 					(void) tp->t_fb->tfb_tcp_output(tp);
2609 					KASSERT(tp->snd_limited <= 2,
2610 					    ("%s: tp->snd_limited too big",
2611 					    __func__));
2612 					tp->snd_cwnd = tp->snd_ssthresh +
2613 					     maxseg *
2614 					     (tp->t_dupacks - tp->snd_limited);
2615 					if (SEQ_GT(onxt, tp->snd_nxt))
2616 						tp->snd_nxt = onxt;
2617 					goto drop;
2618 				} else if (V_tcp_do_rfc3042) {
2619 					/*
2620 					 * Process first and second duplicate
2621 					 * ACKs. Each indicates a segment
2622 					 * leaving the network, creating room
2623 					 * for more. Make sure we can send a
2624 					 * packet on reception of each duplicate
2625 					 * ACK by increasing snd_cwnd by one
2626 					 * segment. Restore the original
2627 					 * snd_cwnd after packet transmission.
2628 					 */
2629 					cc_ack_received(tp, th, nsegs,
2630 					    CC_DUPACK);
2631 					uint32_t oldcwnd = tp->snd_cwnd;
2632 					tcp_seq oldsndmax = tp->snd_max;
2633 					u_int sent;
2634 					int avail;
2635 
2636 					KASSERT(tp->t_dupacks == 1 ||
2637 					    tp->t_dupacks == 2,
2638 					    ("%s: dupacks not 1 or 2",
2639 					    __func__));
2640 					if (tp->t_dupacks == 1)
2641 						tp->snd_limited = 0;
2642 					tp->snd_cwnd =
2643 					    (tp->snd_nxt - tp->snd_una) +
2644 					    (tp->t_dupacks - tp->snd_limited) *
2645 					    maxseg;
2646 					/*
2647 					 * Only call tcp_output when there
2648 					 * is new data available to be sent.
2649 					 * Otherwise we would send pure ACKs.
2650 					 */
2651 					SOCKBUF_LOCK(&so->so_snd);
2652 					avail = sbavail(&so->so_snd) -
2653 					    (tp->snd_nxt - tp->snd_una);
2654 					SOCKBUF_UNLOCK(&so->so_snd);
2655 					if (avail > 0)
2656 						(void) tp->t_fb->tfb_tcp_output(tp);
2657 					sent = tp->snd_max - oldsndmax;
2658 					if (sent > maxseg) {
2659 						KASSERT((tp->t_dupacks == 2 &&
2660 						    tp->snd_limited == 0) ||
2661 						   (sent == maxseg + 1 &&
2662 						    tp->t_flags & TF_SENTFIN),
2663 						    ("%s: sent too much",
2664 						    __func__));
2665 						tp->snd_limited = 2;
2666 					} else if (sent > 0)
2667 						++tp->snd_limited;
2668 					tp->snd_cwnd = oldcwnd;
2669 					goto drop;
2670 				}
2671 			}
2672 			break;
2673 		} else {
2674 			/*
2675 			 * This ack is advancing the left edge, reset the
2676 			 * counter.
2677 			 */
2678 			tp->t_dupacks = 0;
2679 			/*
2680 			 * If this ack also has new SACK info, increment the
2681 			 * counter as per rfc6675.
2682 			 */
2683 			if ((tp->t_flags & TF_SACK_PERMIT) && sack_changed)
2684 				tp->t_dupacks++;
2685 		}
2686 
2687 		KASSERT(SEQ_GT(th->th_ack, tp->snd_una),
2688 		    ("%s: th_ack <= snd_una", __func__));
2689 
2690 		/*
2691 		 * If the congestion window was inflated to account
2692 		 * for the other side's cached packets, retract it.
2693 		 */
2694 		if (IN_FASTRECOVERY(tp->t_flags)) {
2695 			if (SEQ_LT(th->th_ack, tp->snd_recover)) {
2696 				if (tp->t_flags & TF_SACK_PERMIT)
2697 					tcp_sack_partialack(tp, th);
2698 				else
2699 					tcp_newreno_partial_ack(tp, th);
2700 			} else
2701 				cc_post_recovery(tp, th);
2702 		}
2703 		/*
2704 		 * If we reach this point, ACK is not a duplicate,
2705 		 *     i.e., it ACKs something we sent.
2706 		 */
2707 		if (tp->t_flags & TF_NEEDSYN) {
2708 			/*
2709 			 * T/TCP: Connection was half-synchronized, and our
2710 			 * SYN has been ACK'd (so connection is now fully
2711 			 * synchronized).  Go to non-starred state,
2712 			 * increment snd_una for ACK of SYN, and check if
2713 			 * we can do window scaling.
2714 			 */
2715 			tp->t_flags &= ~TF_NEEDSYN;
2716 			tp->snd_una++;
2717 			/* Do window scaling? */
2718 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
2719 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
2720 				tp->rcv_scale = tp->request_r_scale;
2721 				/* Send window already scaled. */
2722 			}
2723 		}
2724 
2725 process_ACK:
2726 		INP_WLOCK_ASSERT(tp->t_inpcb);
2727 
2728 		acked = BYTES_THIS_ACK(tp, th);
2729 		KASSERT(acked >= 0, ("%s: acked unexepectedly negative "
2730 		    "(tp->snd_una=%u, th->th_ack=%u, tp=%p, m=%p)", __func__,
2731 		    tp->snd_una, th->th_ack, tp, m));
2732 		TCPSTAT_ADD(tcps_rcvackpack, nsegs);
2733 		TCPSTAT_ADD(tcps_rcvackbyte, acked);
2734 
2735 		/*
2736 		 * If we just performed our first retransmit, and the ACK
2737 		 * arrives within our recovery window, then it was a mistake
2738 		 * to do the retransmit in the first place.  Recover our
2739 		 * original cwnd and ssthresh, and proceed to transmit where
2740 		 * we left off.
2741 		 */
2742 		if (tp->t_rxtshift == 1 &&
2743 		    tp->t_flags & TF_PREVVALID &&
2744 		    tp->t_badrxtwin &&
2745 		    SEQ_LT(to.to_tsecr, tp->t_badrxtwin))
2746 			cc_cong_signal(tp, th, CC_RTO_ERR);
2747 
2748 		/*
2749 		 * If we have a timestamp reply, update smoothed
2750 		 * round trip time.  If no timestamp is present but
2751 		 * transmit timer is running and timed sequence
2752 		 * number was acked, update smoothed round trip time.
2753 		 * Since we now have an rtt measurement, cancel the
2754 		 * timer backoff (cf., Phil Karn's retransmit alg.).
2755 		 * Recompute the initial retransmit timer.
2756 		 *
2757 		 * Some boxes send broken timestamp replies
2758 		 * during the SYN+ACK phase, ignore
2759 		 * timestamps of 0 or we could calculate a
2760 		 * huge RTT and blow up the retransmit timer.
2761 		 */
2762 		if ((to.to_flags & TOF_TS) != 0 && to.to_tsecr) {
2763 			uint32_t t;
2764 
2765 			t = tcp_ts_getticks() - to.to_tsecr;
2766 			if (!tp->t_rttlow || tp->t_rttlow > t)
2767 				tp->t_rttlow = t;
2768 			tcp_xmit_timer(tp, TCP_TS_TO_TICKS(t) + 1);
2769 		} else if (tp->t_rtttime && SEQ_GT(th->th_ack, tp->t_rtseq)) {
2770 			if (!tp->t_rttlow || tp->t_rttlow > ticks - tp->t_rtttime)
2771 				tp->t_rttlow = ticks - tp->t_rtttime;
2772 			tcp_xmit_timer(tp, ticks - tp->t_rtttime);
2773 		}
2774 
2775 		/*
2776 		 * If all outstanding data is acked, stop retransmit
2777 		 * timer and remember to restart (more output or persist).
2778 		 * If there is more data to be acked, restart retransmit
2779 		 * timer, using current (possibly backed-off) value.
2780 		 */
2781 		if (th->th_ack == tp->snd_max) {
2782 			tcp_timer_activate(tp, TT_REXMT, 0);
2783 			needoutput = 1;
2784 		} else if (!tcp_timer_active(tp, TT_PERSIST))
2785 			tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
2786 
2787 		/*
2788 		 * If no data (only SYN) was ACK'd,
2789 		 *    skip rest of ACK processing.
2790 		 */
2791 		if (acked == 0)
2792 			goto step6;
2793 
2794 		/*
2795 		 * Let the congestion control algorithm update congestion
2796 		 * control related information. This typically means increasing
2797 		 * the congestion window.
2798 		 */
2799 		cc_ack_received(tp, th, nsegs, CC_ACK);
2800 
2801 		SOCKBUF_LOCK(&so->so_snd);
2802 		if (acked > sbavail(&so->so_snd)) {
2803 			if (tp->snd_wnd >= sbavail(&so->so_snd))
2804 				tp->snd_wnd -= sbavail(&so->so_snd);
2805 			else
2806 				tp->snd_wnd = 0;
2807 			mfree = sbcut_locked(&so->so_snd,
2808 			    (int)sbavail(&so->so_snd));
2809 			ourfinisacked = 1;
2810 		} else {
2811 			mfree = sbcut_locked(&so->so_snd, acked);
2812 			if (tp->snd_wnd >= (uint32_t) acked)
2813 				tp->snd_wnd -= acked;
2814 			else
2815 				tp->snd_wnd = 0;
2816 			ourfinisacked = 0;
2817 		}
2818 		/* NB: sowwakeup_locked() does an implicit unlock. */
2819 		sowwakeup_locked(so);
2820 		m_freem(mfree);
2821 		/* Detect una wraparound. */
2822 		if (!IN_RECOVERY(tp->t_flags) &&
2823 		    SEQ_GT(tp->snd_una, tp->snd_recover) &&
2824 		    SEQ_LEQ(th->th_ack, tp->snd_recover))
2825 			tp->snd_recover = th->th_ack - 1;
2826 		/* XXXLAS: Can this be moved up into cc_post_recovery? */
2827 		if (IN_RECOVERY(tp->t_flags) &&
2828 		    SEQ_GEQ(th->th_ack, tp->snd_recover)) {
2829 			EXIT_RECOVERY(tp->t_flags);
2830 		}
2831 		tp->snd_una = th->th_ack;
2832 		if (tp->t_flags & TF_SACK_PERMIT) {
2833 			if (SEQ_GT(tp->snd_una, tp->snd_recover))
2834 				tp->snd_recover = tp->snd_una;
2835 		}
2836 		if (SEQ_LT(tp->snd_nxt, tp->snd_una))
2837 			tp->snd_nxt = tp->snd_una;
2838 
2839 		switch (tp->t_state) {
2840 
2841 		/*
2842 		 * In FIN_WAIT_1 STATE in addition to the processing
2843 		 * for the ESTABLISHED state if our FIN is now acknowledged
2844 		 * then enter FIN_WAIT_2.
2845 		 */
2846 		case TCPS_FIN_WAIT_1:
2847 			if (ourfinisacked) {
2848 				/*
2849 				 * If we can't receive any more
2850 				 * data, then closing user can proceed.
2851 				 * Starting the timer is contrary to the
2852 				 * specification, but if we don't get a FIN
2853 				 * we'll hang forever.
2854 				 *
2855 				 * XXXjl:
2856 				 * we should release the tp also, and use a
2857 				 * compressed state.
2858 				 */
2859 				if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
2860 					soisdisconnected(so);
2861 					tcp_timer_activate(tp, TT_2MSL,
2862 					    (tcp_fast_finwait2_recycle ?
2863 					    tcp_finwait2_timeout :
2864 					    TP_MAXIDLE(tp)));
2865 				}
2866 				tcp_state_change(tp, TCPS_FIN_WAIT_2);
2867 			}
2868 			break;
2869 
2870 		/*
2871 		 * In CLOSING STATE in addition to the processing for
2872 		 * the ESTABLISHED state if the ACK acknowledges our FIN
2873 		 * then enter the TIME-WAIT state, otherwise ignore
2874 		 * the segment.
2875 		 */
2876 		case TCPS_CLOSING:
2877 			if (ourfinisacked) {
2878 				INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2879 				tcp_twstart(tp);
2880 				m_freem(m);
2881 				return;
2882 			}
2883 			break;
2884 
2885 		/*
2886 		 * In LAST_ACK, we may still be waiting for data to drain
2887 		 * and/or to be acked, as well as for the ack of our FIN.
2888 		 * If our FIN is now acknowledged, delete the TCB,
2889 		 * enter the closed state and return.
2890 		 */
2891 		case TCPS_LAST_ACK:
2892 			if (ourfinisacked) {
2893 				INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
2894 				tp = tcp_close(tp);
2895 				goto drop;
2896 			}
2897 			break;
2898 		}
2899 	}
2900 
2901 step6:
2902 	INP_WLOCK_ASSERT(tp->t_inpcb);
2903 
2904 	/*
2905 	 * Update window information.
2906 	 * Don't look at window if no ACK: TAC's send garbage on first SYN.
2907 	 */
2908 	if ((thflags & TH_ACK) &&
2909 	    (SEQ_LT(tp->snd_wl1, th->th_seq) ||
2910 	    (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) ||
2911 	     (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) {
2912 		/* keep track of pure window updates */
2913 		if (tlen == 0 &&
2914 		    tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd)
2915 			TCPSTAT_INC(tcps_rcvwinupd);
2916 		tp->snd_wnd = tiwin;
2917 		tp->snd_wl1 = th->th_seq;
2918 		tp->snd_wl2 = th->th_ack;
2919 		if (tp->snd_wnd > tp->max_sndwnd)
2920 			tp->max_sndwnd = tp->snd_wnd;
2921 		needoutput = 1;
2922 	}
2923 
2924 	/*
2925 	 * Process segments with URG.
2926 	 */
2927 	if ((thflags & TH_URG) && th->th_urp &&
2928 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
2929 		/*
2930 		 * This is a kludge, but if we receive and accept
2931 		 * random urgent pointers, we'll crash in
2932 		 * soreceive.  It's hard to imagine someone
2933 		 * actually wanting to send this much urgent data.
2934 		 */
2935 		SOCKBUF_LOCK(&so->so_rcv);
2936 		if (th->th_urp + sbavail(&so->so_rcv) > sb_max) {
2937 			th->th_urp = 0;			/* XXX */
2938 			thflags &= ~TH_URG;		/* XXX */
2939 			SOCKBUF_UNLOCK(&so->so_rcv);	/* XXX */
2940 			goto dodata;			/* XXX */
2941 		}
2942 		/*
2943 		 * If this segment advances the known urgent pointer,
2944 		 * then mark the data stream.  This should not happen
2945 		 * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since
2946 		 * a FIN has been received from the remote side.
2947 		 * In these states we ignore the URG.
2948 		 *
2949 		 * According to RFC961 (Assigned Protocols),
2950 		 * the urgent pointer points to the last octet
2951 		 * of urgent data.  We continue, however,
2952 		 * to consider it to indicate the first octet
2953 		 * of data past the urgent section as the original
2954 		 * spec states (in one of two places).
2955 		 */
2956 		if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) {
2957 			tp->rcv_up = th->th_seq + th->th_urp;
2958 			so->so_oobmark = sbavail(&so->so_rcv) +
2959 			    (tp->rcv_up - tp->rcv_nxt) - 1;
2960 			if (so->so_oobmark == 0)
2961 				so->so_rcv.sb_state |= SBS_RCVATMARK;
2962 			sohasoutofband(so);
2963 			tp->t_oobflags &= ~(TCPOOB_HAVEDATA | TCPOOB_HADDATA);
2964 		}
2965 		SOCKBUF_UNLOCK(&so->so_rcv);
2966 		/*
2967 		 * Remove out of band data so doesn't get presented to user.
2968 		 * This can happen independent of advancing the URG pointer,
2969 		 * but if two URG's are pending at once, some out-of-band
2970 		 * data may creep in... ick.
2971 		 */
2972 		if (th->th_urp <= (uint32_t)tlen &&
2973 		    !(so->so_options & SO_OOBINLINE)) {
2974 			/* hdr drop is delayed */
2975 			tcp_pulloutofband(so, th, m, drop_hdrlen);
2976 		}
2977 	} else {
2978 		/*
2979 		 * If no out of band data is expected,
2980 		 * pull receive urgent pointer along
2981 		 * with the receive window.
2982 		 */
2983 		if (SEQ_GT(tp->rcv_nxt, tp->rcv_up))
2984 			tp->rcv_up = tp->rcv_nxt;
2985 	}
2986 dodata:							/* XXX */
2987 	INP_WLOCK_ASSERT(tp->t_inpcb);
2988 
2989 	/*
2990 	 * Process the segment text, merging it into the TCP sequencing queue,
2991 	 * and arranging for acknowledgment of receipt if necessary.
2992 	 * This process logically involves adjusting tp->rcv_wnd as data
2993 	 * is presented to the user (this happens in tcp_usrreq.c,
2994 	 * case PRU_RCVD).  If a FIN has already been received on this
2995 	 * connection then we just ignore the text.
2996 	 */
2997 	tfo_syn = ((tp->t_state == TCPS_SYN_RECEIVED) &&
2998 		   IS_FASTOPEN(tp->t_flags));
2999 	if ((tlen || (thflags & TH_FIN) || tfo_syn) &&
3000 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
3001 		tcp_seq save_start = th->th_seq;
3002 		tcp_seq save_rnxt  = tp->rcv_nxt;
3003 		int     save_tlen  = tlen;
3004 		m_adj(m, drop_hdrlen);	/* delayed header drop */
3005 		/*
3006 		 * Insert segment which includes th into TCP reassembly queue
3007 		 * with control block tp.  Set thflags to whether reassembly now
3008 		 * includes a segment with FIN.  This handles the common case
3009 		 * inline (segment is the next to be received on an established
3010 		 * connection, and the queue is empty), avoiding linkage into
3011 		 * and removal from the queue and repetition of various
3012 		 * conversions.
3013 		 * Set DELACK for segments received in order, but ack
3014 		 * immediately when segments are out of order (so
3015 		 * fast retransmit can work).
3016 		 */
3017 		if (th->th_seq == tp->rcv_nxt &&
3018 		    SEGQ_EMPTY(tp) &&
3019 		    (TCPS_HAVEESTABLISHED(tp->t_state) ||
3020 		     tfo_syn)) {
3021 			if (DELAY_ACK(tp, tlen) || tfo_syn)
3022 				tp->t_flags |= TF_DELACK;
3023 			else
3024 				tp->t_flags |= TF_ACKNOW;
3025 			tp->rcv_nxt += tlen;
3026 			thflags = th->th_flags & TH_FIN;
3027 			TCPSTAT_INC(tcps_rcvpack);
3028 			TCPSTAT_ADD(tcps_rcvbyte, tlen);
3029 			SOCKBUF_LOCK(&so->so_rcv);
3030 			if (so->so_rcv.sb_state & SBS_CANTRCVMORE)
3031 				m_freem(m);
3032 			else
3033 				sbappendstream_locked(&so->so_rcv, m, 0);
3034 			/* NB: sorwakeup_locked() does an implicit unlock. */
3035 			sorwakeup_locked(so);
3036 		} else {
3037 			/*
3038 			 * XXX: Due to the header drop above "th" is
3039 			 * theoretically invalid by now.  Fortunately
3040 			 * m_adj() doesn't actually frees any mbufs
3041 			 * when trimming from the head.
3042 			 */
3043 			tcp_seq temp = save_start;
3044 			thflags = tcp_reass(tp, th, &temp, &tlen, m);
3045 			tp->t_flags |= TF_ACKNOW;
3046 		}
3047 		if (tp->t_flags & TF_SACK_PERMIT) {
3048 			if (((tlen == 0) && (save_tlen > 0) &&
3049 			    (SEQ_LT(save_start, save_rnxt)))) {
3050 				/*
3051 				 * DSACK actually handled in the fastpath
3052 				 * above.
3053 				 */
3054 				tcp_update_sack_list(tp, save_start, save_start + save_tlen);
3055 			} else
3056 			if ((tlen > 0) && SEQ_GT(tp->rcv_nxt, save_rnxt)) {
3057 				/*
3058 				 * Cleaning sackblks by using zero length
3059 				 * update.
3060 				 */
3061 				tcp_update_sack_list(tp, save_start, save_start);
3062 			} else
3063 			if ((tlen > 0) && (tlen >= save_tlen)) {
3064 				/* Update of sackblks. */
3065 				tcp_update_sack_list(tp, save_start, save_start + save_tlen);
3066 			} else
3067 			if (tlen > 0) {
3068 				tcp_update_sack_list(tp, save_start, save_start+tlen);
3069 			}
3070 		}
3071 #if 0
3072 		/*
3073 		 * Note the amount of data that peer has sent into
3074 		 * our window, in order to estimate the sender's
3075 		 * buffer size.
3076 		 * XXX: Unused.
3077 		 */
3078 		if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt))
3079 			len = so->so_rcv.sb_hiwat - (tp->rcv_adv - tp->rcv_nxt);
3080 		else
3081 			len = so->so_rcv.sb_hiwat;
3082 #endif
3083 	} else {
3084 		m_freem(m);
3085 		thflags &= ~TH_FIN;
3086 	}
3087 
3088 	/*
3089 	 * If FIN is received ACK the FIN and let the user know
3090 	 * that the connection is closing.
3091 	 */
3092 	if (thflags & TH_FIN) {
3093 		if (TCPS_HAVERCVDFIN(tp->t_state) == 0) {
3094 			socantrcvmore(so);
3095 			/*
3096 			 * If connection is half-synchronized
3097 			 * (ie NEEDSYN flag on) then delay ACK,
3098 			 * so it may be piggybacked when SYN is sent.
3099 			 * Otherwise, since we received a FIN then no
3100 			 * more input can be expected, send ACK now.
3101 			 */
3102 			if (tp->t_flags & TF_NEEDSYN)
3103 				tp->t_flags |= TF_DELACK;
3104 			else
3105 				tp->t_flags |= TF_ACKNOW;
3106 			tp->rcv_nxt++;
3107 		}
3108 		switch (tp->t_state) {
3109 
3110 		/*
3111 		 * In SYN_RECEIVED and ESTABLISHED STATES
3112 		 * enter the CLOSE_WAIT state.
3113 		 */
3114 		case TCPS_SYN_RECEIVED:
3115 			tp->t_starttime = ticks;
3116 			/* FALLTHROUGH */
3117 		case TCPS_ESTABLISHED:
3118 			tcp_state_change(tp, TCPS_CLOSE_WAIT);
3119 			break;
3120 
3121 		/*
3122 		 * If still in FIN_WAIT_1 STATE FIN has not been acked so
3123 		 * enter the CLOSING state.
3124 		 */
3125 		case TCPS_FIN_WAIT_1:
3126 			tcp_state_change(tp, TCPS_CLOSING);
3127 			break;
3128 
3129 		/*
3130 		 * In FIN_WAIT_2 state enter the TIME_WAIT state,
3131 		 * starting the time-wait timer, turning off the other
3132 		 * standard timers.
3133 		 */
3134 		case TCPS_FIN_WAIT_2:
3135 			INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
3136 
3137 			tcp_twstart(tp);
3138 			return;
3139 		}
3140 	}
3141 #ifdef TCPDEBUG
3142 	if (so->so_options & SO_DEBUG)
3143 		tcp_trace(TA_INPUT, ostate, tp, (void *)tcp_saveipgen,
3144 			  &tcp_savetcp, 0);
3145 #endif
3146 	TCP_PROBE3(debug__input, tp, th, m);
3147 
3148 	/*
3149 	 * Return any desired output.
3150 	 */
3151 	if (needoutput || (tp->t_flags & TF_ACKNOW))
3152 		(void) tp->t_fb->tfb_tcp_output(tp);
3153 
3154 check_delack:
3155 	INP_WLOCK_ASSERT(tp->t_inpcb);
3156 
3157 	if (tp->t_flags & TF_DELACK) {
3158 		tp->t_flags &= ~TF_DELACK;
3159 		tcp_timer_activate(tp, TT_DELACK, tcp_delacktime);
3160 	}
3161 	INP_WUNLOCK(tp->t_inpcb);
3162 	return;
3163 
3164 dropafterack:
3165 	/*
3166 	 * Generate an ACK dropping incoming segment if it occupies
3167 	 * sequence space, where the ACK reflects our state.
3168 	 *
3169 	 * We can now skip the test for the RST flag since all
3170 	 * paths to this code happen after packets containing
3171 	 * RST have been dropped.
3172 	 *
3173 	 * In the SYN-RECEIVED state, don't send an ACK unless the
3174 	 * segment we received passes the SYN-RECEIVED ACK test.
3175 	 * If it fails send a RST.  This breaks the loop in the
3176 	 * "LAND" DoS attack, and also prevents an ACK storm
3177 	 * between two listening ports that have been sent forged
3178 	 * SYN segments, each with the source address of the other.
3179 	 */
3180 	if (tp->t_state == TCPS_SYN_RECEIVED && (thflags & TH_ACK) &&
3181 	    (SEQ_GT(tp->snd_una, th->th_ack) ||
3182 	     SEQ_GT(th->th_ack, tp->snd_max)) ) {
3183 		rstreason = BANDLIM_RST_OPENPORT;
3184 		goto dropwithreset;
3185 	}
3186 #ifdef TCPDEBUG
3187 	if (so->so_options & SO_DEBUG)
3188 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
3189 			  &tcp_savetcp, 0);
3190 #endif
3191 	TCP_PROBE3(debug__input, tp, th, m);
3192 	tp->t_flags |= TF_ACKNOW;
3193 	(void) tp->t_fb->tfb_tcp_output(tp);
3194 	INP_WUNLOCK(tp->t_inpcb);
3195 	m_freem(m);
3196 	return;
3197 
3198 dropwithreset:
3199 	if (tp != NULL) {
3200 		tcp_dropwithreset(m, th, tp, tlen, rstreason);
3201 		INP_WUNLOCK(tp->t_inpcb);
3202 	} else
3203 		tcp_dropwithreset(m, th, NULL, tlen, rstreason);
3204 	return;
3205 
3206 drop:
3207 	/*
3208 	 * Drop space held by incoming segment and return.
3209 	 */
3210 #ifdef TCPDEBUG
3211 	if (tp == NULL || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG))
3212 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
3213 			  &tcp_savetcp, 0);
3214 #endif
3215 	TCP_PROBE3(debug__input, tp, th, m);
3216 	if (tp != NULL)
3217 		INP_WUNLOCK(tp->t_inpcb);
3218 	m_freem(m);
3219 }
3220 
3221 /*
3222  * Issue RST and make ACK acceptable to originator of segment.
3223  * The mbuf must still include the original packet header.
3224  * tp may be NULL.
3225  */
3226 void
3227 tcp_dropwithreset(struct mbuf *m, struct tcphdr *th, struct tcpcb *tp,
3228     int tlen, int rstreason)
3229 {
3230 #ifdef INET
3231 	struct ip *ip;
3232 #endif
3233 #ifdef INET6
3234 	struct ip6_hdr *ip6;
3235 #endif
3236 
3237 	if (tp != NULL) {
3238 		INP_WLOCK_ASSERT(tp->t_inpcb);
3239 	}
3240 
3241 	/* Don't bother if destination was broadcast/multicast. */
3242 	if ((th->th_flags & TH_RST) || m->m_flags & (M_BCAST|M_MCAST))
3243 		goto drop;
3244 #ifdef INET6
3245 	if (mtod(m, struct ip *)->ip_v == 6) {
3246 		ip6 = mtod(m, struct ip6_hdr *);
3247 		if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
3248 		    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src))
3249 			goto drop;
3250 		/* IPv6 anycast check is done at tcp6_input() */
3251 	}
3252 #endif
3253 #if defined(INET) && defined(INET6)
3254 	else
3255 #endif
3256 #ifdef INET
3257 	{
3258 		ip = mtod(m, struct ip *);
3259 		if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
3260 		    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
3261 		    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
3262 		    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
3263 			goto drop;
3264 	}
3265 #endif
3266 
3267 	/* Perform bandwidth limiting. */
3268 	if (badport_bandlim(rstreason) < 0)
3269 		goto drop;
3270 
3271 	/* tcp_respond consumes the mbuf chain. */
3272 	if (th->th_flags & TH_ACK) {
3273 		tcp_respond(tp, mtod(m, void *), th, m, (tcp_seq)0,
3274 		    th->th_ack, TH_RST);
3275 	} else {
3276 		if (th->th_flags & TH_SYN)
3277 			tlen++;
3278 		if (th->th_flags & TH_FIN)
3279 			tlen++;
3280 		tcp_respond(tp, mtod(m, void *), th, m, th->th_seq+tlen,
3281 		    (tcp_seq)0, TH_RST|TH_ACK);
3282 	}
3283 	return;
3284 drop:
3285 	m_freem(m);
3286 }
3287 
3288 /*
3289  * Parse TCP options and place in tcpopt.
3290  */
3291 void
3292 tcp_dooptions(struct tcpopt *to, u_char *cp, int cnt, int flags)
3293 {
3294 	int opt, optlen;
3295 
3296 	to->to_flags = 0;
3297 	for (; cnt > 0; cnt -= optlen, cp += optlen) {
3298 		opt = cp[0];
3299 		if (opt == TCPOPT_EOL)
3300 			break;
3301 		if (opt == TCPOPT_NOP)
3302 			optlen = 1;
3303 		else {
3304 			if (cnt < 2)
3305 				break;
3306 			optlen = cp[1];
3307 			if (optlen < 2 || optlen > cnt)
3308 				break;
3309 		}
3310 		switch (opt) {
3311 		case TCPOPT_MAXSEG:
3312 			if (optlen != TCPOLEN_MAXSEG)
3313 				continue;
3314 			if (!(flags & TO_SYN))
3315 				continue;
3316 			to->to_flags |= TOF_MSS;
3317 			bcopy((char *)cp + 2,
3318 			    (char *)&to->to_mss, sizeof(to->to_mss));
3319 			to->to_mss = ntohs(to->to_mss);
3320 			break;
3321 		case TCPOPT_WINDOW:
3322 			if (optlen != TCPOLEN_WINDOW)
3323 				continue;
3324 			if (!(flags & TO_SYN))
3325 				continue;
3326 			to->to_flags |= TOF_SCALE;
3327 			to->to_wscale = min(cp[2], TCP_MAX_WINSHIFT);
3328 			break;
3329 		case TCPOPT_TIMESTAMP:
3330 			if (optlen != TCPOLEN_TIMESTAMP)
3331 				continue;
3332 			to->to_flags |= TOF_TS;
3333 			bcopy((char *)cp + 2,
3334 			    (char *)&to->to_tsval, sizeof(to->to_tsval));
3335 			to->to_tsval = ntohl(to->to_tsval);
3336 			bcopy((char *)cp + 6,
3337 			    (char *)&to->to_tsecr, sizeof(to->to_tsecr));
3338 			to->to_tsecr = ntohl(to->to_tsecr);
3339 			break;
3340 		case TCPOPT_SIGNATURE:
3341 			/*
3342 			 * In order to reply to a host which has set the
3343 			 * TCP_SIGNATURE option in its initial SYN, we have
3344 			 * to record the fact that the option was observed
3345 			 * here for the syncache code to perform the correct
3346 			 * response.
3347 			 */
3348 			if (optlen != TCPOLEN_SIGNATURE)
3349 				continue;
3350 			to->to_flags |= TOF_SIGNATURE;
3351 			to->to_signature = cp + 2;
3352 			break;
3353 		case TCPOPT_SACK_PERMITTED:
3354 			if (optlen != TCPOLEN_SACK_PERMITTED)
3355 				continue;
3356 			if (!(flags & TO_SYN))
3357 				continue;
3358 			if (!V_tcp_do_sack)
3359 				continue;
3360 			to->to_flags |= TOF_SACKPERM;
3361 			break;
3362 		case TCPOPT_SACK:
3363 			if (optlen <= 2 || (optlen - 2) % TCPOLEN_SACK != 0)
3364 				continue;
3365 			if (flags & TO_SYN)
3366 				continue;
3367 			to->to_flags |= TOF_SACK;
3368 			to->to_nsacks = (optlen - 2) / TCPOLEN_SACK;
3369 			to->to_sacks = cp + 2;
3370 			TCPSTAT_INC(tcps_sack_rcv_blocks);
3371 			break;
3372 		case TCPOPT_FAST_OPEN:
3373 			/*
3374 			 * Cookie length validation is performed by the
3375 			 * server side cookie checking code or the client
3376 			 * side cookie cache update code.
3377 			 */
3378 			if (!(flags & TO_SYN))
3379 				continue;
3380 			if (!V_tcp_fastopen_client_enable &&
3381 			    !V_tcp_fastopen_server_enable)
3382 				continue;
3383 			to->to_flags |= TOF_FASTOPEN;
3384 			to->to_tfo_len = optlen - 2;
3385 			to->to_tfo_cookie = to->to_tfo_len ? cp + 2 : NULL;
3386 			break;
3387 		default:
3388 			continue;
3389 		}
3390 	}
3391 }
3392 
3393 /*
3394  * Pull out of band byte out of a segment so
3395  * it doesn't appear in the user's data queue.
3396  * It is still reflected in the segment length for
3397  * sequencing purposes.
3398  */
3399 void
3400 tcp_pulloutofband(struct socket *so, struct tcphdr *th, struct mbuf *m,
3401     int off)
3402 {
3403 	int cnt = off + th->th_urp - 1;
3404 
3405 	while (cnt >= 0) {
3406 		if (m->m_len > cnt) {
3407 			char *cp = mtod(m, caddr_t) + cnt;
3408 			struct tcpcb *tp = sototcpcb(so);
3409 
3410 			INP_WLOCK_ASSERT(tp->t_inpcb);
3411 
3412 			tp->t_iobc = *cp;
3413 			tp->t_oobflags |= TCPOOB_HAVEDATA;
3414 			bcopy(cp+1, cp, (unsigned)(m->m_len - cnt - 1));
3415 			m->m_len--;
3416 			if (m->m_flags & M_PKTHDR)
3417 				m->m_pkthdr.len--;
3418 			return;
3419 		}
3420 		cnt -= m->m_len;
3421 		m = m->m_next;
3422 		if (m == NULL)
3423 			break;
3424 	}
3425 	panic("tcp_pulloutofband");
3426 }
3427 
3428 /*
3429  * Collect new round-trip time estimate
3430  * and update averages and current timeout.
3431  */
3432 void
3433 tcp_xmit_timer(struct tcpcb *tp, int rtt)
3434 {
3435 	int delta;
3436 
3437 	INP_WLOCK_ASSERT(tp->t_inpcb);
3438 
3439 	TCPSTAT_INC(tcps_rttupdated);
3440 	tp->t_rttupdated++;
3441 	if ((tp->t_srtt != 0) && (tp->t_rxtshift <= TCP_RTT_INVALIDATE)) {
3442 		/*
3443 		 * srtt is stored as fixed point with 5 bits after the
3444 		 * binary point (i.e., scaled by 8).  The following magic
3445 		 * is equivalent to the smoothing algorithm in rfc793 with
3446 		 * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed
3447 		 * point).  Adjust rtt to origin 0.
3448 		 */
3449 		delta = ((rtt - 1) << TCP_DELTA_SHIFT)
3450 			- (tp->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT));
3451 
3452 		if ((tp->t_srtt += delta) <= 0)
3453 			tp->t_srtt = 1;
3454 
3455 		/*
3456 		 * We accumulate a smoothed rtt variance (actually, a
3457 		 * smoothed mean difference), then set the retransmit
3458 		 * timer to smoothed rtt + 4 times the smoothed variance.
3459 		 * rttvar is stored as fixed point with 4 bits after the
3460 		 * binary point (scaled by 16).  The following is
3461 		 * equivalent to rfc793 smoothing with an alpha of .75
3462 		 * (rttvar = rttvar*3/4 + |delta| / 4).  This replaces
3463 		 * rfc793's wired-in beta.
3464 		 */
3465 		if (delta < 0)
3466 			delta = -delta;
3467 		delta -= tp->t_rttvar >> (TCP_RTTVAR_SHIFT - TCP_DELTA_SHIFT);
3468 		if ((tp->t_rttvar += delta) <= 0)
3469 			tp->t_rttvar = 1;
3470 		if (tp->t_rttbest > tp->t_srtt + tp->t_rttvar)
3471 		    tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
3472 	} else {
3473 		/*
3474 		 * No rtt measurement yet - use the unsmoothed rtt.
3475 		 * Set the variance to half the rtt (so our first
3476 		 * retransmit happens at 3*rtt).
3477 		 */
3478 		tp->t_srtt = rtt << TCP_RTT_SHIFT;
3479 		tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1);
3480 		tp->t_rttbest = tp->t_srtt + tp->t_rttvar;
3481 	}
3482 	tp->t_rtttime = 0;
3483 	tp->t_rxtshift = 0;
3484 
3485 	/*
3486 	 * the retransmit should happen at rtt + 4 * rttvar.
3487 	 * Because of the way we do the smoothing, srtt and rttvar
3488 	 * will each average +1/2 tick of bias.  When we compute
3489 	 * the retransmit timer, we want 1/2 tick of rounding and
3490 	 * 1 extra tick because of +-1/2 tick uncertainty in the
3491 	 * firing of the timer.  The bias will give us exactly the
3492 	 * 1.5 tick we need.  But, because the bias is
3493 	 * statistical, we have to test that we don't drop below
3494 	 * the minimum feasible timer (which is 2 ticks).
3495 	 */
3496 	TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
3497 		      max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
3498 
3499 	/*
3500 	 * We received an ack for a packet that wasn't retransmitted;
3501 	 * it is probably safe to discard any error indications we've
3502 	 * received recently.  This isn't quite right, but close enough
3503 	 * for now (a route might have failed after we sent a segment,
3504 	 * and the return path might not be symmetrical).
3505 	 */
3506 	tp->t_softerror = 0;
3507 }
3508 
3509 /*
3510  * Determine a reasonable value for maxseg size.
3511  * If the route is known, check route for mtu.
3512  * If none, use an mss that can be handled on the outgoing interface
3513  * without forcing IP to fragment.  If no route is found, route has no mtu,
3514  * or the destination isn't local, use a default, hopefully conservative
3515  * size (usually 512 or the default IP max size, but no more than the mtu
3516  * of the interface), as we can't discover anything about intervening
3517  * gateways or networks.  We also initialize the congestion/slow start
3518  * window to be a single segment if the destination isn't local.
3519  * While looking at the routing entry, we also initialize other path-dependent
3520  * parameters from pre-set or cached values in the routing entry.
3521  *
3522  * NOTE that resulting t_maxseg doesn't include space for TCP options or
3523  * IP options, e.g. IPSEC data, since length of this data may vary, and
3524  * thus it is calculated for every segment separately in tcp_output().
3525  *
3526  * NOTE that this routine is only called when we process an incoming
3527  * segment, or an ICMP need fragmentation datagram. Outgoing SYN/ACK MSS
3528  * settings are handled in tcp_mssopt().
3529  */
3530 void
3531 tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer,
3532     struct hc_metrics_lite *metricptr, struct tcp_ifcap *cap)
3533 {
3534 	int mss = 0;
3535 	uint32_t maxmtu = 0;
3536 	struct inpcb *inp = tp->t_inpcb;
3537 	struct hc_metrics_lite metrics;
3538 #ifdef INET6
3539 	int isipv6 = ((inp->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
3540 	size_t min_protoh = isipv6 ?
3541 			    sizeof (struct ip6_hdr) + sizeof (struct tcphdr) :
3542 			    sizeof (struct tcpiphdr);
3543 #else
3544 	const size_t min_protoh = sizeof(struct tcpiphdr);
3545 #endif
3546 
3547 	INP_WLOCK_ASSERT(tp->t_inpcb);
3548 
3549 	if (mtuoffer != -1) {
3550 		KASSERT(offer == -1, ("%s: conflict", __func__));
3551 		offer = mtuoffer - min_protoh;
3552 	}
3553 
3554 	/* Initialize. */
3555 #ifdef INET6
3556 	if (isipv6) {
3557 		maxmtu = tcp_maxmtu6(&inp->inp_inc, cap);
3558 		tp->t_maxseg = V_tcp_v6mssdflt;
3559 	}
3560 #endif
3561 #if defined(INET) && defined(INET6)
3562 	else
3563 #endif
3564 #ifdef INET
3565 	{
3566 		maxmtu = tcp_maxmtu(&inp->inp_inc, cap);
3567 		tp->t_maxseg = V_tcp_mssdflt;
3568 	}
3569 #endif
3570 
3571 	/*
3572 	 * No route to sender, stay with default mss and return.
3573 	 */
3574 	if (maxmtu == 0) {
3575 		/*
3576 		 * In case we return early we need to initialize metrics
3577 		 * to a defined state as tcp_hc_get() would do for us
3578 		 * if there was no cache hit.
3579 		 */
3580 		if (metricptr != NULL)
3581 			bzero(metricptr, sizeof(struct hc_metrics_lite));
3582 		return;
3583 	}
3584 
3585 	/* What have we got? */
3586 	switch (offer) {
3587 		case 0:
3588 			/*
3589 			 * Offer == 0 means that there was no MSS on the SYN
3590 			 * segment, in this case we use tcp_mssdflt as
3591 			 * already assigned to t_maxseg above.
3592 			 */
3593 			offer = tp->t_maxseg;
3594 			break;
3595 
3596 		case -1:
3597 			/*
3598 			 * Offer == -1 means that we didn't receive SYN yet.
3599 			 */
3600 			/* FALLTHROUGH */
3601 
3602 		default:
3603 			/*
3604 			 * Prevent DoS attack with too small MSS. Round up
3605 			 * to at least minmss.
3606 			 */
3607 			offer = max(offer, V_tcp_minmss);
3608 	}
3609 
3610 	/*
3611 	 * rmx information is now retrieved from tcp_hostcache.
3612 	 */
3613 	tcp_hc_get(&inp->inp_inc, &metrics);
3614 	if (metricptr != NULL)
3615 		bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite));
3616 
3617 	/*
3618 	 * If there's a discovered mtu in tcp hostcache, use it.
3619 	 * Else, use the link mtu.
3620 	 */
3621 	if (metrics.rmx_mtu)
3622 		mss = min(metrics.rmx_mtu, maxmtu) - min_protoh;
3623 	else {
3624 #ifdef INET6
3625 		if (isipv6) {
3626 			mss = maxmtu - min_protoh;
3627 			if (!V_path_mtu_discovery &&
3628 			    !in6_localaddr(&inp->in6p_faddr))
3629 				mss = min(mss, V_tcp_v6mssdflt);
3630 		}
3631 #endif
3632 #if defined(INET) && defined(INET6)
3633 		else
3634 #endif
3635 #ifdef INET
3636 		{
3637 			mss = maxmtu - min_protoh;
3638 			if (!V_path_mtu_discovery &&
3639 			    !in_localaddr(inp->inp_faddr))
3640 				mss = min(mss, V_tcp_mssdflt);
3641 		}
3642 #endif
3643 		/*
3644 		 * XXX - The above conditional (mss = maxmtu - min_protoh)
3645 		 * probably violates the TCP spec.
3646 		 * The problem is that, since we don't know the
3647 		 * other end's MSS, we are supposed to use a conservative
3648 		 * default.  But, if we do that, then MTU discovery will
3649 		 * never actually take place, because the conservative
3650 		 * default is much less than the MTUs typically seen
3651 		 * on the Internet today.  For the moment, we'll sweep
3652 		 * this under the carpet.
3653 		 *
3654 		 * The conservative default might not actually be a problem
3655 		 * if the only case this occurs is when sending an initial
3656 		 * SYN with options and data to a host we've never talked
3657 		 * to before.  Then, they will reply with an MSS value which
3658 		 * will get recorded and the new parameters should get
3659 		 * recomputed.  For Further Study.
3660 		 */
3661 	}
3662 	mss = min(mss, offer);
3663 
3664 	/*
3665 	 * Sanity check: make sure that maxseg will be large
3666 	 * enough to allow some data on segments even if the
3667 	 * all the option space is used (40bytes).  Otherwise
3668 	 * funny things may happen in tcp_output.
3669 	 *
3670 	 * XXXGL: shouldn't we reserve space for IP/IPv6 options?
3671 	 */
3672 	mss = max(mss, 64);
3673 
3674 	tp->t_maxseg = mss;
3675 }
3676 
3677 void
3678 tcp_mss(struct tcpcb *tp, int offer)
3679 {
3680 	int mss;
3681 	uint32_t bufsize;
3682 	struct inpcb *inp;
3683 	struct socket *so;
3684 	struct hc_metrics_lite metrics;
3685 	struct tcp_ifcap cap;
3686 
3687 	KASSERT(tp != NULL, ("%s: tp == NULL", __func__));
3688 
3689 	bzero(&cap, sizeof(cap));
3690 	tcp_mss_update(tp, offer, -1, &metrics, &cap);
3691 
3692 	mss = tp->t_maxseg;
3693 	inp = tp->t_inpcb;
3694 
3695 	/*
3696 	 * If there's a pipesize, change the socket buffer to that size,
3697 	 * don't change if sb_hiwat is different than default (then it
3698 	 * has been changed on purpose with setsockopt).
3699 	 * Make the socket buffers an integral number of mss units;
3700 	 * if the mss is larger than the socket buffer, decrease the mss.
3701 	 */
3702 	so = inp->inp_socket;
3703 	SOCKBUF_LOCK(&so->so_snd);
3704 	if ((so->so_snd.sb_hiwat == V_tcp_sendspace) && metrics.rmx_sendpipe)
3705 		bufsize = metrics.rmx_sendpipe;
3706 	else
3707 		bufsize = so->so_snd.sb_hiwat;
3708 	if (bufsize < mss)
3709 		mss = bufsize;
3710 	else {
3711 		bufsize = roundup(bufsize, mss);
3712 		if (bufsize > sb_max)
3713 			bufsize = sb_max;
3714 		if (bufsize > so->so_snd.sb_hiwat)
3715 			(void)sbreserve_locked(&so->so_snd, bufsize, so, NULL);
3716 	}
3717 	SOCKBUF_UNLOCK(&so->so_snd);
3718 	/*
3719 	 * Sanity check: make sure that maxseg will be large
3720 	 * enough to allow some data on segments even if the
3721 	 * all the option space is used (40bytes).  Otherwise
3722 	 * funny things may happen in tcp_output.
3723 	 *
3724 	 * XXXGL: shouldn't we reserve space for IP/IPv6 options?
3725 	 */
3726 	tp->t_maxseg = max(mss, 64);
3727 
3728 	SOCKBUF_LOCK(&so->so_rcv);
3729 	if ((so->so_rcv.sb_hiwat == V_tcp_recvspace) && metrics.rmx_recvpipe)
3730 		bufsize = metrics.rmx_recvpipe;
3731 	else
3732 		bufsize = so->so_rcv.sb_hiwat;
3733 	if (bufsize > mss) {
3734 		bufsize = roundup(bufsize, mss);
3735 		if (bufsize > sb_max)
3736 			bufsize = sb_max;
3737 		if (bufsize > so->so_rcv.sb_hiwat)
3738 			(void)sbreserve_locked(&so->so_rcv, bufsize, so, NULL);
3739 	}
3740 	SOCKBUF_UNLOCK(&so->so_rcv);
3741 
3742 	/* Check the interface for TSO capabilities. */
3743 	if (cap.ifcap & CSUM_TSO) {
3744 		tp->t_flags |= TF_TSO;
3745 		tp->t_tsomax = cap.tsomax;
3746 		tp->t_tsomaxsegcount = cap.tsomaxsegcount;
3747 		tp->t_tsomaxsegsize = cap.tsomaxsegsize;
3748 	}
3749 }
3750 
3751 /*
3752  * Determine the MSS option to send on an outgoing SYN.
3753  */
3754 int
3755 tcp_mssopt(struct in_conninfo *inc)
3756 {
3757 	int mss = 0;
3758 	uint32_t thcmtu = 0;
3759 	uint32_t maxmtu = 0;
3760 	size_t min_protoh;
3761 
3762 	KASSERT(inc != NULL, ("tcp_mssopt with NULL in_conninfo pointer"));
3763 
3764 #ifdef INET6
3765 	if (inc->inc_flags & INC_ISIPV6) {
3766 		mss = V_tcp_v6mssdflt;
3767 		maxmtu = tcp_maxmtu6(inc, NULL);
3768 		min_protoh = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
3769 	}
3770 #endif
3771 #if defined(INET) && defined(INET6)
3772 	else
3773 #endif
3774 #ifdef INET
3775 	{
3776 		mss = V_tcp_mssdflt;
3777 		maxmtu = tcp_maxmtu(inc, NULL);
3778 		min_protoh = sizeof(struct tcpiphdr);
3779 	}
3780 #endif
3781 #if defined(INET6) || defined(INET)
3782 	thcmtu = tcp_hc_getmtu(inc); /* IPv4 and IPv6 */
3783 #endif
3784 
3785 	if (maxmtu && thcmtu)
3786 		mss = min(maxmtu, thcmtu) - min_protoh;
3787 	else if (maxmtu || thcmtu)
3788 		mss = max(maxmtu, thcmtu) - min_protoh;
3789 
3790 	return (mss);
3791 }
3792 
3793 
3794 /*
3795  * On a partial ack arrives, force the retransmission of the
3796  * next unacknowledged segment.  Do not clear tp->t_dupacks.
3797  * By setting snd_nxt to ti_ack, this forces retransmission timer to
3798  * be started again.
3799  */
3800 void
3801 tcp_newreno_partial_ack(struct tcpcb *tp, struct tcphdr *th)
3802 {
3803 	tcp_seq onxt = tp->snd_nxt;
3804 	uint32_t ocwnd = tp->snd_cwnd;
3805 	u_int maxseg = tcp_maxseg(tp);
3806 
3807 	INP_WLOCK_ASSERT(tp->t_inpcb);
3808 
3809 	tcp_timer_activate(tp, TT_REXMT, 0);
3810 	tp->t_rtttime = 0;
3811 	tp->snd_nxt = th->th_ack;
3812 	/*
3813 	 * Set snd_cwnd to one segment beyond acknowledged offset.
3814 	 * (tp->snd_una has not yet been updated when this function is called.)
3815 	 */
3816 	tp->snd_cwnd = maxseg + BYTES_THIS_ACK(tp, th);
3817 	tp->t_flags |= TF_ACKNOW;
3818 	(void) tp->t_fb->tfb_tcp_output(tp);
3819 	tp->snd_cwnd = ocwnd;
3820 	if (SEQ_GT(onxt, tp->snd_nxt))
3821 		tp->snd_nxt = onxt;
3822 	/*
3823 	 * Partial window deflation.  Relies on fact that tp->snd_una
3824 	 * not updated yet.
3825 	 */
3826 	if (tp->snd_cwnd > BYTES_THIS_ACK(tp, th))
3827 		tp->snd_cwnd -= BYTES_THIS_ACK(tp, th);
3828 	else
3829 		tp->snd_cwnd = 0;
3830 	tp->snd_cwnd += maxseg;
3831 }
3832 
3833 int
3834 tcp_compute_pipe(struct tcpcb *tp)
3835 {
3836 	return (tp->snd_max - tp->snd_una +
3837 		tp->sackhint.sack_bytes_rexmit -
3838 		tp->sackhint.sacked_bytes);
3839 }
3840 
3841 uint32_t
3842 tcp_compute_initwnd(uint32_t maxseg)
3843 {
3844 	/*
3845 	 * Calculate the Initial Window, also used as Restart Window
3846 	 *
3847 	 * RFC5681 Section 3.1 specifies the default conservative values.
3848 	 * RFC3390 specifies slightly more aggressive values.
3849 	 * RFC6928 increases it to ten segments.
3850 	 * Support for user specified value for initial flight size.
3851 	 */
3852 	if (V_tcp_initcwnd_segments)
3853 		return min(V_tcp_initcwnd_segments * maxseg,
3854 		    max(2 * maxseg, V_tcp_initcwnd_segments * 1460));
3855 	else if (V_tcp_do_rfc3390)
3856 		return min(4 * maxseg, max(2 * maxseg, 4380));
3857 	else {
3858 		/* Per RFC5681 Section 3.1 */
3859 		if (maxseg > 2190)
3860 			return (2 * maxseg);
3861 		else if (maxseg > 1095)
3862 			return (3 * maxseg);
3863 		else
3864 			return (4 * maxseg);
3865 	}
3866 }
3867