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