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