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