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