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