xref: /freebsd/sys/netinet/tcp_reass.c (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
1 /*
2  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)tcp_input.c	8.12 (Berkeley) 5/24/95
34  * $FreeBSD$
35  */
36 
37 #include "opt_ipfw.h"		/* for ipfw_fwd		*/
38 #include "opt_inet6.h"
39 #include "opt_ipsec.h"
40 #include "opt_tcpdebug.h"
41 #include "opt_tcp_input.h"
42 
43 #include <sys/param.h>
44 #include <sys/kernel.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>
47 #include <sys/proc.h>		/* for proc0 declaration */
48 #include <sys/protosw.h>
49 #include <sys/signalvar.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <sys/sysctl.h>
53 #include <sys/syslog.h>
54 #include <sys/systm.h>
55 
56 #include <machine/cpu.h>	/* before tcp_seq.h, for tcp_random18() */
57 
58 #include <net/if.h>
59 #include <net/route.h>
60 
61 #include <netinet/in.h>
62 #include <netinet/in_pcb.h>
63 #include <netinet/in_systm.h>
64 #include <netinet/in_var.h>
65 #include <netinet/ip.h>
66 #include <netinet/ip_icmp.h>	/* for ICMP_BANDLIM		*/
67 #include <netinet/icmp_var.h>	/* for ICMP_BANDLIM		*/
68 #include <netinet/ip_var.h>
69 #ifdef INET6
70 #include <netinet/ip6.h>
71 #include <netinet/icmp6.h>
72 #include <netinet6/in6_pcb.h>
73 #include <netinet6/ip6_var.h>
74 #include <netinet6/nd6.h>
75 #endif
76 #include <netinet/tcp.h>
77 #include <netinet/tcp_fsm.h>
78 #include <netinet/tcp_seq.h>
79 #include <netinet/tcp_timer.h>
80 #include <netinet/tcp_var.h>
81 #ifdef INET6
82 #include <netinet6/tcp6_var.h>
83 #endif
84 #include <netinet/tcpip.h>
85 #ifdef TCPDEBUG
86 #include <netinet/tcp_debug.h>
87 
88 #endif /* TCPDEBUG */
89 
90 #ifdef IPSEC
91 #include <netinet6/ipsec.h>
92 #ifdef INET6
93 #include <netinet6/ipsec6.h>
94 #endif
95 #include <netkey/key.h>
96 #endif /*IPSEC*/
97 
98 #include <machine/in_cksum.h>
99 
100 MALLOC_DEFINE(M_TSEGQ, "tseg_qent", "TCP segment queue entry");
101 
102 static int	tcprexmtthresh = 3;
103 tcp_cc	tcp_ccgen;
104 
105 struct	tcpstat tcpstat;
106 SYSCTL_STRUCT(_net_inet_tcp, TCPCTL_STATS, stats, CTLFLAG_RW,
107     &tcpstat , tcpstat, "TCP statistics (struct tcpstat, netinet/tcp_var.h)");
108 
109 static int log_in_vain = 0;
110 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_in_vain, CTLFLAG_RW,
111     &log_in_vain, 0, "Log all incoming TCP connections");
112 
113 static int blackhole = 0;
114 SYSCTL_INT(_net_inet_tcp, OID_AUTO, blackhole, CTLFLAG_RW,
115 	&blackhole, 0, "Do not send RST when dropping refused connections");
116 
117 int tcp_delack_enabled = 1;
118 SYSCTL_INT(_net_inet_tcp, OID_AUTO, delayed_ack, CTLFLAG_RW,
119     &tcp_delack_enabled, 0,
120     "Delay ACK to try and piggyback it onto a data packet");
121 
122 #ifdef TCP_DROP_SYNFIN
123 static int drop_synfin = 0;
124 SYSCTL_INT(_net_inet_tcp, OID_AUTO, drop_synfin, CTLFLAG_RW,
125     &drop_synfin, 0, "Drop TCP packets with SYN+FIN set");
126 #endif
127 
128 struct inpcbhead tcb;
129 #define	tcb6	tcb  /* for KAME src sync over BSD*'s */
130 struct inpcbinfo tcbinfo;
131 struct mtx	*tcbinfo_mtx;
132 
133 static void	 tcp_dooptions(struct tcpopt *, u_char *, int, int);
134 static void	 tcp_pulloutofband(struct socket *,
135 		     struct tcphdr *, struct mbuf *, int);
136 static int	 tcp_reass(struct tcpcb *, struct tcphdr *, int *,
137 		     struct mbuf *);
138 static void	 tcp_xmit_timer(struct tcpcb *, int);
139 static int	 tcp_newreno(struct tcpcb *, struct tcphdr *);
140 
141 /* Neighbor Discovery, Neighbor Unreachability Detection Upper layer hint. */
142 #ifdef INET6
143 #define ND6_HINT(tp) \
144 do { \
145 	if ((tp) && (tp)->t_inpcb && \
146 	    ((tp)->t_inpcb->inp_vflag & INP_IPV6) != 0 && \
147 	    (tp)->t_inpcb->in6p_route.ro_rt) \
148 		nd6_nud_hint((tp)->t_inpcb->in6p_route.ro_rt, NULL, 0); \
149 } while (0)
150 #else
151 #define ND6_HINT(tp)
152 #endif
153 
154 /*
155  * Indicate whether this ack should be delayed.  We can delay the ack if
156  *	- delayed acks are enabled and
157  *	- there is no delayed ack timer in progress and
158  *	- our last ack wasn't a 0-sized window.  We never want to delay
159  *	  the ack that opens up a 0-sized window.
160  */
161 #define DELAY_ACK(tp) \
162 	(tcp_delack_enabled && !callout_pending(tp->tt_delack) && \
163 	(tp->t_flags & TF_RXWIN0SENT) == 0)
164 
165 static int
166 tcp_reass(tp, th, tlenp, m)
167 	register struct tcpcb *tp;
168 	register struct tcphdr *th;
169 	int *tlenp;
170 	struct mbuf *m;
171 {
172 	struct tseg_qent *q;
173 	struct tseg_qent *p = NULL;
174 	struct tseg_qent *nq;
175 	struct tseg_qent *te;
176 	struct socket *so = tp->t_inpcb->inp_socket;
177 	int flags;
178 
179 	/*
180 	 * Call with th==0 after become established to
181 	 * force pre-ESTABLISHED data up to user socket.
182 	 */
183 	if (th == 0)
184 		goto present;
185 
186 	/* Allocate a new queue entry. If we can't, just drop the pkt. XXX */
187 	MALLOC(te, struct tseg_qent *, sizeof (struct tseg_qent), M_TSEGQ,
188 	       M_NOWAIT);
189 	if (te == NULL) {
190 		tcpstat.tcps_rcvmemdrop++;
191 		m_freem(m);
192 		return (0);
193 	}
194 
195 	/*
196 	 * Find a segment which begins after this one does.
197 	 */
198 	LIST_FOREACH(q, &tp->t_segq, tqe_q) {
199 		if (SEQ_GT(q->tqe_th->th_seq, th->th_seq))
200 			break;
201 		p = q;
202 	}
203 
204 	/*
205 	 * If there is a preceding segment, it may provide some of
206 	 * our data already.  If so, drop the data from the incoming
207 	 * segment.  If it provides all of our data, drop us.
208 	 */
209 	if (p != NULL) {
210 		register int i;
211 		/* conversion to int (in i) handles seq wraparound */
212 		i = p->tqe_th->th_seq + p->tqe_len - th->th_seq;
213 		if (i > 0) {
214 			if (i >= *tlenp) {
215 				tcpstat.tcps_rcvduppack++;
216 				tcpstat.tcps_rcvdupbyte += *tlenp;
217 				m_freem(m);
218 				FREE(te, M_TSEGQ);
219 				/*
220 				 * Try to present any queued data
221 				 * at the left window edge to the user.
222 				 * This is needed after the 3-WHS
223 				 * completes.
224 				 */
225 				goto present;	/* ??? */
226 			}
227 			m_adj(m, i);
228 			*tlenp -= i;
229 			th->th_seq += i;
230 		}
231 	}
232 	tcpstat.tcps_rcvoopack++;
233 	tcpstat.tcps_rcvoobyte += *tlenp;
234 
235 	/*
236 	 * While we overlap succeeding segments trim them or,
237 	 * if they are completely covered, dequeue them.
238 	 */
239 	while (q) {
240 		register int i = (th->th_seq + *tlenp) - q->tqe_th->th_seq;
241 		if (i <= 0)
242 			break;
243 		if (i < q->tqe_len) {
244 			q->tqe_th->th_seq += i;
245 			q->tqe_len -= i;
246 			m_adj(q->tqe_m, i);
247 			break;
248 		}
249 
250 		nq = LIST_NEXT(q, tqe_q);
251 		LIST_REMOVE(q, tqe_q);
252 		m_freem(q->tqe_m);
253 		FREE(q, M_TSEGQ);
254 		q = nq;
255 	}
256 
257 	/* Insert the new segment queue entry into place. */
258 	te->tqe_m = m;
259 	te->tqe_th = th;
260 	te->tqe_len = *tlenp;
261 
262 	if (p == NULL) {
263 		LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q);
264 	} else {
265 		LIST_INSERT_AFTER(p, te, tqe_q);
266 	}
267 
268 present:
269 	/*
270 	 * Present data to user, advancing rcv_nxt through
271 	 * completed sequence space.
272 	 */
273 	if (!TCPS_HAVEESTABLISHED(tp->t_state))
274 		return (0);
275 	q = LIST_FIRST(&tp->t_segq);
276 	if (!q || q->tqe_th->th_seq != tp->rcv_nxt)
277 		return (0);
278 	do {
279 		tp->rcv_nxt += q->tqe_len;
280 		flags = q->tqe_th->th_flags & TH_FIN;
281 		nq = LIST_NEXT(q, tqe_q);
282 		LIST_REMOVE(q, tqe_q);
283 		if (so->so_state & SS_CANTRCVMORE)
284 			m_freem(q->tqe_m);
285 		else
286 			sbappend(&so->so_rcv, q->tqe_m);
287 		FREE(q, M_TSEGQ);
288 		q = nq;
289 	} while (q && q->tqe_th->th_seq == tp->rcv_nxt);
290 	ND6_HINT(tp);
291 	sorwakeup(so);
292 	return (flags);
293 }
294 
295 /*
296  * TCP input routine, follows pages 65-76 of the
297  * protocol specification dated September, 1981 very closely.
298  */
299 #ifdef INET6
300 int
301 tcp6_input(mp, offp, proto)
302 	struct mbuf **mp;
303 	int *offp, proto;
304 {
305 	register struct mbuf *m = *mp;
306 	struct in6_ifaddr *ia6;
307 
308 	IP6_EXTHDR_CHECK(m, *offp, sizeof(struct tcphdr), IPPROTO_DONE);
309 
310 	/*
311 	 * draft-itojun-ipv6-tcp-to-anycast
312 	 * better place to put this in?
313 	 */
314 	ia6 = ip6_getdstifaddr(m);
315 	if (ia6 && (ia6->ia6_flags & IN6_IFF_ANYCAST)) {
316 		struct ip6_hdr *ip6;
317 
318 		ip6 = mtod(m, struct ip6_hdr *);
319 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR,
320 			    (caddr_t)&ip6->ip6_dst - (caddr_t)ip6);
321 		return IPPROTO_DONE;
322 	}
323 
324 	tcp_input(m, *offp);
325 	return IPPROTO_DONE;
326 }
327 #endif
328 
329 void
330 tcp_input(m, off0)
331 	register struct mbuf *m;
332 	int off0;
333 {
334 	register struct tcphdr *th;
335 	register struct ip *ip = NULL;
336 	register struct ipovly *ipov;
337 	register struct inpcb *inp = NULL;
338 	u_char *optp = NULL;
339 	int optlen = 0;
340 	int len, tlen, off;
341 	int drop_hdrlen;
342 	register struct tcpcb *tp = 0;
343 	register int thflags;
344 	struct socket *so = 0;
345 	int todrop, acked, ourfinisacked, needoutput = 0;
346 	u_long tiwin;
347 	struct tcpopt to;		/* options in this segment */
348 	struct rmxp_tao *taop;		/* pointer to our TAO cache entry */
349 	struct rmxp_tao	tao_noncached;	/* in case there's no cached entry */
350 	int headlocked = 0;
351 
352 #ifdef TCPDEBUG
353 	u_char tcp_saveipgen[40];
354 		/* the size of the above must be of max ip header, now IPv6 */
355 	struct tcphdr tcp_savetcp;
356 	short ostate = 0;
357 #endif
358 #ifdef INET6
359 	struct ip6_hdr *ip6 = NULL;
360 	int isipv6;
361 #endif /* INET6 */
362 	struct sockaddr_in *next_hop = NULL;
363 	int rstreason; /* For badport_bandlim accounting purposes */
364 
365 	/* Grab info from MT_TAG mbufs prepended to the chain. */
366 	for (;m && m->m_type == MT_TAG; m = m->m_next) {
367 		if (m->m_tag_id == PACKET_TAG_IPFORWARD)
368 			next_hop = (struct sockaddr_in *)m->m_hdr.mh_data;
369 	}
370 
371 #ifdef INET6
372 	isipv6 = (mtod(m, struct ip *)->ip_v == 6) ? 1 : 0;
373 #endif
374 	bzero((char *)&to, sizeof(to));
375 
376 	tcpstat.tcps_rcvtotal++;
377 
378 #ifdef INET6
379 	if (isipv6) {
380 		/* IP6_EXTHDR_CHECK() is already done at tcp6_input() */
381 		ip6 = mtod(m, struct ip6_hdr *);
382 		tlen = sizeof(*ip6) + ntohs(ip6->ip6_plen) - off0;
383 		if (in6_cksum(m, IPPROTO_TCP, off0, tlen)) {
384 			tcpstat.tcps_rcvbadsum++;
385 			goto drop;
386 		}
387 		th = (struct tcphdr *)((caddr_t)ip6 + off0);
388 
389 		/*
390 		 * Be proactive about unspecified IPv6 address in source.
391 		 * As we use all-zero to indicate unbounded/unconnected pcb,
392 		 * unspecified IPv6 address can be used to confuse us.
393 		 *
394 		 * Note that packets with unspecified IPv6 destination is
395 		 * already dropped in ip6_input.
396 		 */
397 		if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
398 			/* XXX stat */
399 			goto drop;
400 		}
401 	} else
402 #endif /* INET6 */
403       {
404 	/*
405 	 * Get IP and TCP header together in first mbuf.
406 	 * Note: IP leaves IP header in first mbuf.
407 	 */
408 	if (off0 > sizeof (struct ip)) {
409 		ip_stripoptions(m, (struct mbuf *)0);
410 		off0 = sizeof(struct ip);
411 	}
412 	if (m->m_len < sizeof (struct tcpiphdr)) {
413 		if ((m = m_pullup(m, sizeof (struct tcpiphdr))) == 0) {
414 			tcpstat.tcps_rcvshort++;
415 			return;
416 		}
417 	}
418 	ip = mtod(m, struct ip *);
419 	ipov = (struct ipovly *)ip;
420 	th = (struct tcphdr *)((caddr_t)ip + off0);
421 	tlen = ip->ip_len;
422 
423 	if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
424 		if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
425                 	th->th_sum = m->m_pkthdr.csum_data;
426 		else
427 	                th->th_sum = in_pseudo(ip->ip_src.s_addr,
428 			    ip->ip_dst.s_addr, htonl(m->m_pkthdr.csum_data +
429 			    ip->ip_len + IPPROTO_TCP));
430 		th->th_sum ^= 0xffff;
431 	} else {
432 		/*
433 		 * Checksum extended TCP header and data.
434 		 */
435 		len = sizeof (struct ip) + tlen;
436 		bzero(ipov->ih_x1, sizeof(ipov->ih_x1));
437 		ipov->ih_len = (u_short)tlen;
438 		ipov->ih_len = htons(ipov->ih_len);
439 		th->th_sum = in_cksum(m, len);
440 	}
441 	if (th->th_sum) {
442 		tcpstat.tcps_rcvbadsum++;
443 		goto drop;
444 	}
445 #ifdef INET6
446 	/* Re-initialization for later version check */
447 	ip->ip_v = IPVERSION;
448 #endif
449       }
450 
451 	/*
452 	 * Check that TCP offset makes sense,
453 	 * pull out TCP options and adjust length.		XXX
454 	 */
455 	off = th->th_off << 2;
456 	if (off < sizeof (struct tcphdr) || off > tlen) {
457 		tcpstat.tcps_rcvbadoff++;
458 		goto drop;
459 	}
460 	tlen -= off;	/* tlen is used instead of ti->ti_len */
461 	if (off > sizeof (struct tcphdr)) {
462 #ifdef INET6
463 		if (isipv6) {
464 			IP6_EXTHDR_CHECK(m, off0, off, );
465 			ip6 = mtod(m, struct ip6_hdr *);
466 			th = (struct tcphdr *)((caddr_t)ip6 + off0);
467 		} else
468 #endif /* INET6 */
469 	      {
470 		if (m->m_len < sizeof(struct ip) + off) {
471 			if ((m = m_pullup(m, sizeof (struct ip) + off)) == 0) {
472 				tcpstat.tcps_rcvshort++;
473 				return;
474 			}
475 			ip = mtod(m, struct ip *);
476 			ipov = (struct ipovly *)ip;
477 			th = (struct tcphdr *)((caddr_t)ip + off0);
478 		}
479 	      }
480 		optlen = off - sizeof (struct tcphdr);
481 		optp = (u_char *)(th + 1);
482 	}
483 	thflags = th->th_flags;
484 
485 #ifdef TCP_DROP_SYNFIN
486 	/*
487 	 * If the drop_synfin option is enabled, drop all packets with
488 	 * both the SYN and FIN bits set. This prevents e.g. nmap from
489 	 * identifying the TCP/IP stack.
490 	 *
491 	 * This is a violation of the TCP specification.
492 	 */
493 	if (drop_synfin && (thflags & (TH_SYN|TH_FIN)) == (TH_SYN|TH_FIN))
494 		goto drop;
495 #endif
496 
497 	/*
498 	 * Convert TCP protocol specific fields to host format.
499 	 */
500 	th->th_seq = ntohl(th->th_seq);
501 	th->th_ack = ntohl(th->th_ack);
502 	th->th_win = ntohs(th->th_win);
503 	th->th_urp = ntohs(th->th_urp);
504 
505 	/*
506 	 * Delay droping TCP, IP headers, IPv6 ext headers, and TCP options,
507 	 * until after ip6_savecontrol() is called and before other functions
508 	 * which don't want those proto headers.
509 	 * Because ip6_savecontrol() is going to parse the mbuf to
510 	 * search for data to be passed up to user-land, it wants mbuf
511 	 * parameters to be unchanged.
512 	 * XXX: the call of ip6_savecontrol() has been obsoleted based on
513 	 * latest version of the advanced API (20020110).
514 	 */
515 	drop_hdrlen = off0 + off;
516 
517 	/*
518 	 * Locate pcb for segment.
519 	 */
520 	 INP_INFO_WLOCK(&tcbinfo);
521 	 headlocked = 1;
522 findpcb:
523 	/* IPFIREWALL_FORWARD section */
524 	if (next_hop != NULL
525 #ifdef INET6
526 	    && isipv6 == NULL /* IPv6 support is not yet */
527 #endif /* INET6 */
528 	    ) {
529 		/*
530 		 * Transparently forwarded. Pretend to be the destination.
531 		 * already got one like this?
532 		 */
533 		inp = in_pcblookup_hash(&tcbinfo, ip->ip_src, th->th_sport,
534 			ip->ip_dst, th->th_dport, 0, m->m_pkthdr.rcvif);
535 		if (!inp) {
536 			/*
537 			 * No, then it's new. Try find the ambushing socket
538 			 */
539 			if (next_hop->sin_port == 0) {
540 				inp = in_pcblookup_hash(&tcbinfo, ip->ip_src,
541 				    th->th_sport, next_hop->sin_addr,
542 				    th->th_dport, 1, m->m_pkthdr.rcvif);
543 			} else {
544 				inp = in_pcblookup_hash(&tcbinfo,
545 				    ip->ip_src, th->th_sport,
546 	    			    next_hop->sin_addr,
547 				    ntohs(next_hop->sin_port), 1,
548 				    m->m_pkthdr.rcvif);
549 			}
550 		}
551 	} else
552       {
553 #ifdef INET6
554 	if (isipv6)
555 		inp = in6_pcblookup_hash(&tcbinfo, &ip6->ip6_src, th->th_sport,
556 					 &ip6->ip6_dst, th->th_dport, 1,
557 					 m->m_pkthdr.rcvif);
558 	else
559 #endif /* INET6 */
560 	inp = in_pcblookup_hash(&tcbinfo, ip->ip_src, th->th_sport,
561 	    ip->ip_dst, th->th_dport, 1, m->m_pkthdr.rcvif);
562       }
563 
564 #ifdef IPSEC
565 #ifdef INET6
566 	if (isipv6) {
567 		if (inp != NULL && ipsec6_in_reject_so(m, inp->inp_socket)) {
568 			ipsec6stat.in_polvio++;
569 			goto drop;
570 		}
571 	} else
572 #endif /* INET6 */
573 	if (inp != NULL && ipsec4_in_reject_so(m, inp->inp_socket)) {
574 		ipsecstat.in_polvio++;
575 		goto drop;
576 	}
577 #endif /*IPSEC*/
578 
579 	/*
580 	 * If the state is CLOSED (i.e., TCB does not exist) then
581 	 * all data in the incoming segment is discarded.
582 	 * If the TCB exists but is in CLOSED state, it is embryonic,
583 	 * but should either do a listen or a connect soon.
584 	 */
585 	if (inp == NULL) {
586 		if (log_in_vain) {
587 #ifdef INET6
588 			char dbuf[INET6_ADDRSTRLEN], sbuf[INET6_ADDRSTRLEN];
589 #else /* INET6 */
590 			char dbuf[4*sizeof "123"], sbuf[4*sizeof "123"];
591 #endif /* INET6 */
592 
593 #ifdef INET6
594 			if (isipv6) {
595 				strcpy(dbuf, ip6_sprintf(&ip6->ip6_dst));
596 				strcpy(sbuf, ip6_sprintf(&ip6->ip6_src));
597 			} else
598 #endif
599 		      {
600 			strcpy(dbuf, inet_ntoa(ip->ip_dst));
601 			strcpy(sbuf, inet_ntoa(ip->ip_src));
602 		      }
603 			switch (log_in_vain) {
604 			case 1:
605 				if(thflags & TH_SYN)
606 					log(LOG_INFO,
607 			    		"Connection attempt to TCP %s:%d from %s:%d\n",
608 			    		dbuf, ntohs(th->th_dport),
609 					sbuf,
610 					ntohs(th->th_sport));
611 				break;
612 			case 2:
613 				log(LOG_INFO,
614 			    	"Connection attempt to TCP %s:%d from %s:%d flags:0x%x\n",
615 			    	dbuf, ntohs(th->th_dport), sbuf,
616 			    	ntohs(th->th_sport), thflags);
617 				break;
618 			default:
619 				break;
620 			}
621 		}
622 		if (blackhole) {
623 			switch (blackhole) {
624 			case 1:
625 				if (thflags & TH_SYN)
626 					goto drop;
627 				break;
628 			case 2:
629 				goto drop;
630 			default:
631 				goto drop;
632 			}
633 		}
634 		rstreason = BANDLIM_RST_CLOSEDPORT;
635 		goto dropwithreset;
636 	}
637 	INP_LOCK(inp);
638 	tp = intotcpcb(inp);
639 	if (tp == 0) {
640 		INP_UNLOCK(inp);
641 		rstreason = BANDLIM_RST_CLOSEDPORT;
642 		goto dropwithreset;
643 	}
644 	if (tp->t_state == TCPS_CLOSED)
645 		goto drop;
646 
647 	/* Unscale the window into a 32-bit value. */
648 	if ((thflags & TH_SYN) == 0)
649 		tiwin = th->th_win << tp->snd_scale;
650 	else
651 		tiwin = th->th_win;
652 
653 	so = inp->inp_socket;
654 	if (so->so_options & (SO_DEBUG|SO_ACCEPTCONN)) {
655 		struct in_conninfo inc;
656 #ifdef TCPDEBUG
657 		if (so->so_options & SO_DEBUG) {
658 			ostate = tp->t_state;
659 #ifdef INET6
660 			if (isipv6)
661 				bcopy((char *)ip6, (char *)tcp_saveipgen,
662 				      sizeof(*ip6));
663 			else
664 #endif /* INET6 */
665 			bcopy((char *)ip, (char *)tcp_saveipgen, sizeof(*ip));
666 			tcp_savetcp = *th;
667 		}
668 #endif
669 		/* skip if this isn't a listen socket */
670 		if ((so->so_options & SO_ACCEPTCONN) == 0)
671 			goto after_listen;
672 #ifdef INET6
673 		inc.inc_isipv6 = isipv6;
674 		if (isipv6) {
675 			inc.inc6_faddr = ip6->ip6_src;
676 			inc.inc6_laddr = ip6->ip6_dst;
677 			inc.inc6_route.ro_rt = NULL;		/* XXX */
678 
679 		} else
680 #endif /* INET6 */
681 		{
682 			inc.inc_faddr = ip->ip_src;
683 			inc.inc_laddr = ip->ip_dst;
684 			inc.inc_route.ro_rt = NULL;		/* XXX */
685 		}
686 		inc.inc_fport = th->th_sport;
687 		inc.inc_lport = th->th_dport;
688 
689 	        /*
690 	         * If the state is LISTEN then ignore segment if it contains
691 		 * a RST.  If the segment contains an ACK then it is bad and
692 		 * send a RST.  If it does not contain a SYN then it is not
693 		 * interesting; drop it.
694 		 *
695 		 * If the state is SYN_RECEIVED (syncache) and seg contains
696 		 * an ACK, but not for our SYN/ACK, send a RST.  If the seg
697 		 * contains a RST, check the sequence number to see if it
698 		 * is a valid reset segment.
699 		 */
700 		if ((thflags & (TH_RST|TH_ACK|TH_SYN)) != TH_SYN) {
701 			if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) {
702 				if (!syncache_expand(&inc, th, &so, m)) {
703 					/*
704 					 * No syncache entry, or ACK was not
705 					 * for our SYN/ACK.  Send a RST.
706 					 */
707 					tcpstat.tcps_badsyn++;
708 					rstreason = BANDLIM_RST_OPENPORT;
709 					goto dropwithreset;
710 				}
711 				if (so == NULL) {
712 					/*
713 					 * Could not complete 3-way handshake,
714 					 * connection is being closed down, and
715 					 * syncache will free mbuf.
716 					 */
717 					INP_UNLOCK(inp);
718 					INP_INFO_WUNLOCK(&tcbinfo);
719 					return;
720 				}
721 				/*
722 				 * Socket is created in state SYN_RECEIVED.
723 				 * Continue processing segment.
724 				 */
725 				INP_UNLOCK(inp);
726 				inp = sotoinpcb(so);
727 				INP_LOCK(inp);
728 				tp = intotcpcb(inp);
729 				/*
730 				 * This is what would have happened in
731 				 * tcp_output() when the SYN,ACK was sent.
732 				 */
733 				tp->snd_up = tp->snd_una;
734 				tp->snd_max = tp->snd_nxt = tp->iss + 1;
735 				tp->last_ack_sent = tp->rcv_nxt;
736 /*
737  * XXX possible bug - it doesn't appear that tp->snd_wnd is unscaled
738  * until the _second_ ACK is received:
739  *    rcv SYN (set wscale opts)	 --> send SYN/ACK, set snd_wnd = window.
740  *    rcv ACK, calculate tiwin --> process SYN_RECEIVED, determine wscale,
741  *        move to ESTAB, set snd_wnd to tiwin.
742  */
743 				tp->snd_wnd = tiwin;	/* unscaled */
744 				goto after_listen;
745 			}
746 			if (thflags & TH_RST) {
747 				syncache_chkrst(&inc, th);
748 				goto drop;
749 			}
750 			if (thflags & TH_ACK) {
751 				syncache_badack(&inc);
752 				tcpstat.tcps_badsyn++;
753 				rstreason = BANDLIM_RST_OPENPORT;
754 				goto dropwithreset;
755 			}
756 			goto drop;
757 		}
758 
759 		/*
760 		 * Segment's flags are (SYN) or (SYN|FIN).
761 		 */
762 #ifdef INET6
763 		/*
764 		 * If deprecated address is forbidden,
765 		 * we do not accept SYN to deprecated interface
766 		 * address to prevent any new inbound connection from
767 		 * getting established.
768 		 * When we do not accept SYN, we send a TCP RST,
769 		 * with deprecated source address (instead of dropping
770 		 * it).  We compromise it as it is much better for peer
771 		 * to send a RST, and RST will be the final packet
772 		 * for the exchange.
773 		 *
774 		 * If we do not forbid deprecated addresses, we accept
775 		 * the SYN packet.  RFC2462 does not suggest dropping
776 		 * SYN in this case.
777 		 * If we decipher RFC2462 5.5.4, it says like this:
778 		 * 1. use of deprecated addr with existing
779 		 *    communication is okay - "SHOULD continue to be
780 		 *    used"
781 		 * 2. use of it with new communication:
782 		 *   (2a) "SHOULD NOT be used if alternate address
783 		 *        with sufficient scope is available"
784 		 *   (2b) nothing mentioned otherwise.
785 		 * Here we fall into (2b) case as we have no choice in
786 		 * our source address selection - we must obey the peer.
787 		 *
788 		 * The wording in RFC2462 is confusing, and there are
789 		 * multiple description text for deprecated address
790 		 * handling - worse, they are not exactly the same.
791 		 * I believe 5.5.4 is the best one, so we follow 5.5.4.
792 		 */
793 		if (isipv6 && !ip6_use_deprecated) {
794 			struct in6_ifaddr *ia6;
795 
796 			if ((ia6 = ip6_getdstifaddr(m)) &&
797 			    (ia6->ia6_flags & IN6_IFF_DEPRECATED)) {
798 				INP_UNLOCK(inp);
799 				tp = NULL;
800 				rstreason = BANDLIM_RST_OPENPORT;
801 				goto dropwithreset;
802 			}
803 		}
804 #endif
805 		/*
806 		 * If it is from this socket, drop it, it must be forged.
807 		 * Don't bother responding if the destination was a broadcast.
808 		 */
809 		if (th->th_dport == th->th_sport) {
810 #ifdef INET6
811 			if (isipv6) {
812 				if (IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
813 						       &ip6->ip6_src))
814 					goto drop;
815 			} else
816 #endif /* INET6 */
817 			if (ip->ip_dst.s_addr == ip->ip_src.s_addr)
818 				goto drop;
819 		}
820 		/*
821 		 * RFC1122 4.2.3.10, p. 104: discard bcast/mcast SYN
822 		 *
823 		 * Note that it is quite possible to receive unicast
824 		 * link-layer packets with a broadcast IP address. Use
825 		 * in_broadcast() to find them.
826 		 */
827 		if (m->m_flags & (M_BCAST|M_MCAST))
828 			goto drop;
829 #ifdef INET6
830 		if (isipv6) {
831 			if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
832 			    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src))
833 				goto drop;
834 		} else
835 #endif
836 		if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
837 		    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
838 		    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
839 		    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
840 			goto drop;
841 		/*
842 		 * SYN appears to be valid; create compressed TCP state
843 		 * for syncache, or perform t/tcp connection.
844 		 */
845 		if (so->so_qlen <= so->so_qlimit) {
846 			tcp_dooptions(&to, optp, optlen, 1);
847 			if (!syncache_add(&inc, &to, th, &so, m))
848 				goto drop;
849 			if (so == NULL) {
850 				/*
851 				 * Entry added to syncache, mbuf used to
852 				 * send SYN,ACK packet.
853 				 */
854 				KASSERT(headlocked, ("headlocked"));
855 				INP_UNLOCK(inp);
856 				INP_INFO_WUNLOCK(&tcbinfo);
857 				return;
858 			}
859 			/*
860 			 * Segment passed TAO tests.
861 			 */
862 			INP_UNLOCK(inp);
863 			inp = sotoinpcb(so);
864 			INP_LOCK(inp);
865 			tp = intotcpcb(inp);
866 			tp->snd_wnd = tiwin;
867 			tp->t_starttime = ticks;
868 			tp->t_state = TCPS_ESTABLISHED;
869 
870 			/*
871 			 * If there is a FIN, or if there is data and the
872 			 * connection is local, then delay SYN,ACK(SYN) in
873 			 * the hope of piggy-backing it on a response
874 			 * segment.  Otherwise must send ACK now in case
875 			 * the other side is slow starting.
876 			 */
877 			if (DELAY_ACK(tp) && ((thflags & TH_FIN) ||
878 			    (tlen != 0 &&
879 #ifdef INET6
880 			      ((isipv6 && in6_localaddr(&inp->in6p_faddr))
881 			      ||
882 			      (!isipv6 &&
883 #endif
884 			    in_localaddr(inp->inp_faddr)
885 #ifdef INET6
886 			       ))
887 #endif
888 			     ))) {
889                                 callout_reset(tp->tt_delack, tcp_delacktime,
890                                     tcp_timer_delack, tp);
891 				tp->t_flags |= TF_NEEDSYN;
892 			} else
893 				tp->t_flags |= (TF_ACKNOW | TF_NEEDSYN);
894 
895 			tcpstat.tcps_connects++;
896 			soisconnected(so);
897 			goto trimthenstep6;
898 		}
899 		goto drop;
900 	}
901 after_listen:
902 
903 /* XXX temp debugging */
904 	/* should not happen - syncache should pick up these connections */
905 	if (tp->t_state == TCPS_LISTEN)
906 		panic("tcp_input: TCPS_LISTEN");
907 
908 	/*
909 	 * Segment received on connection.
910 	 * Reset idle time and keep-alive timer.
911 	 */
912 	tp->t_rcvtime = ticks;
913 	if (TCPS_HAVEESTABLISHED(tp->t_state))
914 		callout_reset(tp->tt_keep, tcp_keepidle, tcp_timer_keep, tp);
915 
916 	/*
917 	 * Process options.
918 	 * XXX this is tradtitional behavior, may need to be cleaned up.
919 	 */
920 	tcp_dooptions(&to, optp, optlen, thflags & TH_SYN);
921 	if (thflags & TH_SYN) {
922 		if (to.to_flags & TOF_SCALE) {
923 			tp->t_flags |= TF_RCVD_SCALE;
924 			tp->requested_s_scale = to.to_requested_s_scale;
925 		}
926 		if (to.to_flags & TOF_TS) {
927 			tp->t_flags |= TF_RCVD_TSTMP;
928 			tp->ts_recent = to.to_tsval;
929 			tp->ts_recent_age = ticks;
930 		}
931 		if (to.to_flags & (TOF_CC|TOF_CCNEW))
932 			tp->t_flags |= TF_RCVD_CC;
933 		if (to.to_flags & TOF_MSS)
934 			tcp_mss(tp, to.to_mss);
935 	}
936 
937 	/*
938 	 * Header prediction: check for the two common cases
939 	 * of a uni-directional data xfer.  If the packet has
940 	 * no control flags, is in-sequence, the window didn't
941 	 * change and we're not retransmitting, it's a
942 	 * candidate.  If the length is zero and the ack moved
943 	 * forward, we're the sender side of the xfer.  Just
944 	 * free the data acked & wake any higher level process
945 	 * that was blocked waiting for space.  If the length
946 	 * is non-zero and the ack didn't move, we're the
947 	 * receiver side.  If we're getting packets in-order
948 	 * (the reassembly queue is empty), add the data to
949 	 * the socket buffer and note that we need a delayed ack.
950 	 * Make sure that the hidden state-flags are also off.
951 	 * Since we check for TCPS_ESTABLISHED above, it can only
952 	 * be TH_NEEDSYN.
953 	 */
954 	if (tp->t_state == TCPS_ESTABLISHED &&
955 	    (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK &&
956 	    ((tp->t_flags & (TF_NEEDSYN|TF_NEEDFIN)) == 0) &&
957 	    ((to.to_flags & TOF_TS) == 0 ||
958 	     TSTMP_GEQ(to.to_tsval, tp->ts_recent)) &&
959 	    /*
960 	     * Using the CC option is compulsory if once started:
961 	     *   the segment is OK if no T/TCP was negotiated or
962 	     *   if the segment has a CC option equal to CCrecv
963 	     */
964 	    ((tp->t_flags & (TF_REQ_CC|TF_RCVD_CC)) != (TF_REQ_CC|TF_RCVD_CC) ||
965 	     ((to.to_flags & TOF_CC) != 0 && to.to_cc == tp->cc_recv)) &&
966 	    th->th_seq == tp->rcv_nxt &&
967 	    tiwin && tiwin == tp->snd_wnd &&
968 	    tp->snd_nxt == tp->snd_max) {
969 
970 		/*
971 		 * If last ACK falls within this segment's sequence numbers,
972 		 * record the timestamp.
973 		 * NOTE that the test is modified according to the latest
974 		 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
975 		 */
976 		if ((to.to_flags & TOF_TS) != 0 &&
977 		   SEQ_LEQ(th->th_seq, tp->last_ack_sent)) {
978 			tp->ts_recent_age = ticks;
979 			tp->ts_recent = to.to_tsval;
980 		}
981 
982 		if (tlen == 0) {
983 			if (SEQ_GT(th->th_ack, tp->snd_una) &&
984 			    SEQ_LEQ(th->th_ack, tp->snd_max) &&
985 			    tp->snd_cwnd >= tp->snd_wnd &&
986 			    tp->t_dupacks < tcprexmtthresh) {
987 				KASSERT(headlocked, ("headlocked"));
988 				INP_INFO_WUNLOCK(&tcbinfo);
989 				headlocked = 0;
990 				/*
991 				 * this is a pure ack for outstanding data.
992 				 */
993 				++tcpstat.tcps_predack;
994 				/*
995 				 * "bad retransmit" recovery
996 				 */
997 				if (tp->t_rxtshift == 1 &&
998 				    ticks < tp->t_badrxtwin) {
999 					tp->snd_cwnd = tp->snd_cwnd_prev;
1000 					tp->snd_ssthresh =
1001 					    tp->snd_ssthresh_prev;
1002 					tp->snd_nxt = tp->snd_max;
1003 					tp->t_badrxtwin = 0;
1004 				}
1005 				if ((to.to_flags & TOF_TS) != 0)
1006 					tcp_xmit_timer(tp,
1007 					    ticks - to.to_tsecr + 1);
1008 				else if (tp->t_rtttime &&
1009 					    SEQ_GT(th->th_ack, tp->t_rtseq))
1010 					tcp_xmit_timer(tp, ticks - tp->t_rtttime);
1011 				acked = th->th_ack - tp->snd_una;
1012 				tcpstat.tcps_rcvackpack++;
1013 				tcpstat.tcps_rcvackbyte += acked;
1014 				sbdrop(&so->so_snd, acked);
1015 				tp->snd_una = th->th_ack;
1016 				m_freem(m);
1017 				ND6_HINT(tp); /* some progress has been done */
1018 
1019 				/*
1020 				 * If all outstanding data are acked, stop
1021 				 * retransmit timer, otherwise restart timer
1022 				 * using current (possibly backed-off) value.
1023 				 * If process is waiting for space,
1024 				 * wakeup/selwakeup/signal.  If data
1025 				 * are ready to send, let tcp_output
1026 				 * decide between more output or persist.
1027 				 */
1028 				if (tp->snd_una == tp->snd_max)
1029 					callout_stop(tp->tt_rexmt);
1030 				else if (!callout_active(tp->tt_persist))
1031 					callout_reset(tp->tt_rexmt,
1032 						      tp->t_rxtcur,
1033 						      tcp_timer_rexmt, tp);
1034 
1035 				sowwakeup(so);
1036 				if (so->so_snd.sb_cc)
1037 					(void) tcp_output(tp);
1038 				INP_UNLOCK(inp);
1039 				return;
1040 			}
1041 		} else if (th->th_ack == tp->snd_una &&
1042 		    LIST_EMPTY(&tp->t_segq) &&
1043 		    tlen <= sbspace(&so->so_rcv)) {
1044 			KASSERT(headlocked, ("headlocked"));
1045 			INP_INFO_WUNLOCK(&tcbinfo);
1046 			headlocked = 0;
1047 			/*
1048 			 * this is a pure, in-sequence data packet
1049 			 * with nothing on the reassembly queue and
1050 			 * we have enough buffer space to take it.
1051 			 */
1052 			++tcpstat.tcps_preddat;
1053 			tp->rcv_nxt += tlen;
1054 			tcpstat.tcps_rcvpack++;
1055 			tcpstat.tcps_rcvbyte += tlen;
1056 			ND6_HINT(tp);	/* some progress has been done */
1057 			/*
1058 			 * Add data to socket buffer.
1059 			 */
1060 			m_adj(m, drop_hdrlen);	/* delayed header drop */
1061 			sbappend(&so->so_rcv, m);
1062 			sorwakeup(so);
1063 			if (DELAY_ACK(tp)) {
1064 	                        callout_reset(tp->tt_delack, tcp_delacktime,
1065 	                            tcp_timer_delack, tp);
1066 			} else {
1067 				tp->t_flags |= TF_ACKNOW;
1068 				tcp_output(tp);
1069 			}
1070 			INP_UNLOCK(inp);
1071 			return;
1072 		}
1073 	}
1074 
1075 	/*
1076 	 * Calculate amount of space in receive window,
1077 	 * and then do TCP input processing.
1078 	 * Receive window is amount of space in rcv queue,
1079 	 * but not less than advertised window.
1080 	 */
1081 	{ int win;
1082 
1083 	win = sbspace(&so->so_rcv);
1084 	if (win < 0)
1085 		win = 0;
1086 	tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt));
1087 	}
1088 
1089 	switch (tp->t_state) {
1090 
1091 	/*
1092 	 * If the state is SYN_RECEIVED:
1093 	 *	if seg contains an ACK, but not for our SYN/ACK, send a RST.
1094 	 */
1095 	case TCPS_SYN_RECEIVED:
1096 		if ((thflags & TH_ACK) &&
1097 		    (SEQ_LEQ(th->th_ack, tp->snd_una) ||
1098 		     SEQ_GT(th->th_ack, tp->snd_max))) {
1099 				rstreason = BANDLIM_RST_OPENPORT;
1100 				goto dropwithreset;
1101 		}
1102 		break;
1103 
1104 	/*
1105 	 * If the state is SYN_SENT:
1106 	 *	if seg contains an ACK, but not for our SYN, drop the input.
1107 	 *	if seg contains a RST, then drop the connection.
1108 	 *	if seg does not contain SYN, then drop it.
1109 	 * Otherwise this is an acceptable SYN segment
1110 	 *	initialize tp->rcv_nxt and tp->irs
1111 	 *	if seg contains ack then advance tp->snd_una
1112 	 *	if SYN has been acked change to ESTABLISHED else SYN_RCVD state
1113 	 *	arrange for segment to be acked (eventually)
1114 	 *	continue processing rest of data/controls, beginning with URG
1115 	 */
1116 	case TCPS_SYN_SENT:
1117 		if ((taop = tcp_gettaocache(&inp->inp_inc)) == NULL) {
1118 			taop = &tao_noncached;
1119 			bzero(taop, sizeof(*taop));
1120 		}
1121 
1122 		if ((thflags & TH_ACK) &&
1123 		    (SEQ_LEQ(th->th_ack, tp->iss) ||
1124 		     SEQ_GT(th->th_ack, tp->snd_max))) {
1125 			/*
1126 			 * If we have a cached CCsent for the remote host,
1127 			 * hence we haven't just crashed and restarted,
1128 			 * do not send a RST.  This may be a retransmission
1129 			 * from the other side after our earlier ACK was lost.
1130 			 * Our new SYN, when it arrives, will serve as the
1131 			 * needed ACK.
1132 			 */
1133 			if (taop->tao_ccsent != 0)
1134 				goto drop;
1135 			else {
1136 				rstreason = BANDLIM_UNLIMITED;
1137 				goto dropwithreset;
1138 			}
1139 		}
1140 		if (thflags & TH_RST) {
1141 			if (thflags & TH_ACK)
1142 				tp = tcp_drop(tp, ECONNREFUSED);
1143 			goto drop;
1144 		}
1145 		if ((thflags & TH_SYN) == 0)
1146 			goto drop;
1147 		tp->snd_wnd = th->th_win;	/* initial send window */
1148 		tp->cc_recv = to.to_cc;		/* foreign CC */
1149 
1150 		tp->irs = th->th_seq;
1151 		tcp_rcvseqinit(tp);
1152 		if (thflags & TH_ACK) {
1153 			/*
1154 			 * Our SYN was acked.  If segment contains CC.ECHO
1155 			 * option, check it to make sure this segment really
1156 			 * matches our SYN.  If not, just drop it as old
1157 			 * duplicate, but send an RST if we're still playing
1158 			 * by the old rules.  If no CC.ECHO option, make sure
1159 			 * we don't get fooled into using T/TCP.
1160 			 */
1161 			if (to.to_flags & TOF_CCECHO) {
1162 				if (tp->cc_send != to.to_ccecho) {
1163 					if (taop->tao_ccsent != 0)
1164 						goto drop;
1165 					else {
1166 						rstreason = BANDLIM_UNLIMITED;
1167 						goto dropwithreset;
1168 					}
1169 				}
1170 			} else
1171 				tp->t_flags &= ~TF_RCVD_CC;
1172 			tcpstat.tcps_connects++;
1173 			soisconnected(so);
1174 			/* Do window scaling on this connection? */
1175 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1176 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
1177 				tp->snd_scale = tp->requested_s_scale;
1178 				tp->rcv_scale = tp->request_r_scale;
1179 			}
1180 			/* Segment is acceptable, update cache if undefined. */
1181 			if (taop->tao_ccsent == 0)
1182 				taop->tao_ccsent = to.to_ccecho;
1183 
1184 			tp->rcv_adv += tp->rcv_wnd;
1185 			tp->snd_una++;		/* SYN is acked */
1186 			/*
1187 			 * If there's data, delay ACK; if there's also a FIN
1188 			 * ACKNOW will be turned on later.
1189 			 */
1190 			if (DELAY_ACK(tp) && tlen != 0)
1191                                 callout_reset(tp->tt_delack, tcp_delacktime,
1192                                     tcp_timer_delack, tp);
1193 			else
1194 				tp->t_flags |= TF_ACKNOW;
1195 			/*
1196 			 * Received <SYN,ACK> in SYN_SENT[*] state.
1197 			 * Transitions:
1198 			 *	SYN_SENT  --> ESTABLISHED
1199 			 *	SYN_SENT* --> FIN_WAIT_1
1200 			 */
1201 			tp->t_starttime = ticks;
1202 			if (tp->t_flags & TF_NEEDFIN) {
1203 				tp->t_state = TCPS_FIN_WAIT_1;
1204 				tp->t_flags &= ~TF_NEEDFIN;
1205 				thflags &= ~TH_SYN;
1206 			} else {
1207 				tp->t_state = TCPS_ESTABLISHED;
1208 				callout_reset(tp->tt_keep, tcp_keepidle,
1209 					      tcp_timer_keep, tp);
1210 			}
1211 		} else {
1212 		/*
1213 		 *  Received initial SYN in SYN-SENT[*] state => simul-
1214 		 *  taneous open.  If segment contains CC option and there is
1215 		 *  a cached CC, apply TAO test; if it succeeds, connection is
1216 		 *  half-synchronized.  Otherwise, do 3-way handshake:
1217 		 *        SYN-SENT -> SYN-RECEIVED
1218 		 *        SYN-SENT* -> SYN-RECEIVED*
1219 		 *  If there was no CC option, clear cached CC value.
1220 		 */
1221 			tp->t_flags |= TF_ACKNOW;
1222 			callout_stop(tp->tt_rexmt);
1223 			if (to.to_flags & TOF_CC) {
1224 				if (taop->tao_cc != 0 &&
1225 				    CC_GT(to.to_cc, taop->tao_cc)) {
1226 					/*
1227 					 * update cache and make transition:
1228 					 *        SYN-SENT -> ESTABLISHED*
1229 					 *        SYN-SENT* -> FIN-WAIT-1*
1230 					 */
1231 					taop->tao_cc = to.to_cc;
1232 					tp->t_starttime = ticks;
1233 					if (tp->t_flags & TF_NEEDFIN) {
1234 						tp->t_state = TCPS_FIN_WAIT_1;
1235 						tp->t_flags &= ~TF_NEEDFIN;
1236 					} else {
1237 						tp->t_state = TCPS_ESTABLISHED;
1238 						callout_reset(tp->tt_keep,
1239 							      tcp_keepidle,
1240 							      tcp_timer_keep,
1241 							      tp);
1242 					}
1243 					tp->t_flags |= TF_NEEDSYN;
1244 				} else
1245 					tp->t_state = TCPS_SYN_RECEIVED;
1246 			} else {
1247 				/* CC.NEW or no option => invalidate cache */
1248 				taop->tao_cc = 0;
1249 				tp->t_state = TCPS_SYN_RECEIVED;
1250 			}
1251 		}
1252 
1253 trimthenstep6:
1254 		/*
1255 		 * Advance th->th_seq to correspond to first data byte.
1256 		 * If data, trim to stay within window,
1257 		 * dropping FIN if necessary.
1258 		 */
1259 		th->th_seq++;
1260 		if (tlen > tp->rcv_wnd) {
1261 			todrop = tlen - tp->rcv_wnd;
1262 			m_adj(m, -todrop);
1263 			tlen = tp->rcv_wnd;
1264 			thflags &= ~TH_FIN;
1265 			tcpstat.tcps_rcvpackafterwin++;
1266 			tcpstat.tcps_rcvbyteafterwin += todrop;
1267 		}
1268 		tp->snd_wl1 = th->th_seq - 1;
1269 		tp->rcv_up = th->th_seq;
1270 		/*
1271 		 *  Client side of transaction: already sent SYN and data.
1272 		 *  If the remote host used T/TCP to validate the SYN,
1273 		 *  our data will be ACK'd; if so, enter normal data segment
1274 		 *  processing in the middle of step 5, ack processing.
1275 		 *  Otherwise, goto step 6.
1276 		 */
1277  		if (thflags & TH_ACK)
1278 			goto process_ACK;
1279 		goto step6;
1280 	/*
1281 	 * If the state is LAST_ACK or CLOSING or TIME_WAIT:
1282 	 *	if segment contains a SYN and CC [not CC.NEW] option:
1283 	 *              if state == TIME_WAIT and connection duration > MSL,
1284 	 *                  drop packet and send RST;
1285 	 *
1286 	 *		if SEG.CC > CCrecv then is new SYN, and can implicitly
1287 	 *		    ack the FIN (and data) in retransmission queue.
1288 	 *                  Complete close and delete TCPCB.  Then reprocess
1289 	 *                  segment, hoping to find new TCPCB in LISTEN state;
1290 	 *
1291 	 *		else must be old SYN; drop it.
1292 	 *      else do normal processing.
1293 	 */
1294 	case TCPS_LAST_ACK:
1295 	case TCPS_CLOSING:
1296 	case TCPS_TIME_WAIT:
1297 		if ((thflags & TH_SYN) &&
1298 		    (to.to_flags & TOF_CC) && tp->cc_recv != 0) {
1299 			if (tp->t_state == TCPS_TIME_WAIT &&
1300 					(ticks - tp->t_starttime) > tcp_msl) {
1301 				rstreason = BANDLIM_UNLIMITED;
1302 				goto dropwithreset;
1303 			}
1304 			if (CC_GT(to.to_cc, tp->cc_recv)) {
1305 				tp = tcp_close(tp);
1306 				goto findpcb;
1307 			}
1308 			else
1309 				goto drop;
1310 		}
1311  		break;  /* continue normal processing */
1312 	}
1313 
1314 	/*
1315 	 * States other than LISTEN or SYN_SENT.
1316 	 * First check the RST flag and sequence number since reset segments
1317 	 * are exempt from the timestamp and connection count tests.  This
1318 	 * fixes a bug introduced by the Stevens, vol. 2, p. 960 bugfix
1319 	 * below which allowed reset segments in half the sequence space
1320 	 * to fall though and be processed (which gives forged reset
1321 	 * segments with a random sequence number a 50 percent chance of
1322 	 * killing a connection).
1323 	 * Then check timestamp, if present.
1324 	 * Then check the connection count, if present.
1325 	 * Then check that at least some bytes of segment are within
1326 	 * receive window.  If segment begins before rcv_nxt,
1327 	 * drop leading data (and SYN); if nothing left, just ack.
1328 	 *
1329 	 *
1330 	 * If the RST bit is set, check the sequence number to see
1331 	 * if this is a valid reset segment.
1332 	 * RFC 793 page 37:
1333 	 *   In all states except SYN-SENT, all reset (RST) segments
1334 	 *   are validated by checking their SEQ-fields.  A reset is
1335 	 *   valid if its sequence number is in the window.
1336 	 * Note: this does not take into account delayed ACKs, so
1337 	 *   we should test against last_ack_sent instead of rcv_nxt.
1338 	 *   The sequence number in the reset segment is normally an
1339 	 *   echo of our outgoing acknowlegement numbers, but some hosts
1340 	 *   send a reset with the sequence number at the rightmost edge
1341 	 *   of our receive window, and we have to handle this case.
1342 	 * If we have multiple segments in flight, the intial reset
1343 	 * segment sequence numbers will be to the left of last_ack_sent,
1344 	 * but they will eventually catch up.
1345 	 * In any case, it never made sense to trim reset segments to
1346 	 * fit the receive window since RFC 1122 says:
1347 	 *   4.2.2.12  RST Segment: RFC-793 Section 3.4
1348 	 *
1349 	 *    A TCP SHOULD allow a received RST segment to include data.
1350 	 *
1351 	 *    DISCUSSION
1352 	 *         It has been suggested that a RST segment could contain
1353 	 *         ASCII text that encoded and explained the cause of the
1354 	 *         RST.  No standard has yet been established for such
1355 	 *         data.
1356 	 *
1357 	 * If the reset segment passes the sequence number test examine
1358 	 * the state:
1359 	 *    SYN_RECEIVED STATE:
1360 	 *	If passive open, return to LISTEN state.
1361 	 *	If active open, inform user that connection was refused.
1362 	 *    ESTABLISHED, FIN_WAIT_1, FIN_WAIT_2, CLOSE_WAIT STATES:
1363 	 *	Inform user that connection was reset, and close tcb.
1364 	 *    CLOSING, LAST_ACK STATES:
1365 	 *	Close the tcb.
1366 	 *    TIME_WAIT STATE:
1367 	 *	Drop the segment - see Stevens, vol. 2, p. 964 and
1368 	 *      RFC 1337.
1369 	 */
1370 	if (thflags & TH_RST) {
1371 		if (SEQ_GEQ(th->th_seq, tp->last_ack_sent) &&
1372 		    SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) {
1373 			switch (tp->t_state) {
1374 
1375 			case TCPS_SYN_RECEIVED:
1376 				so->so_error = ECONNREFUSED;
1377 				goto close;
1378 
1379 			case TCPS_ESTABLISHED:
1380 			case TCPS_FIN_WAIT_1:
1381 			case TCPS_FIN_WAIT_2:
1382 			case TCPS_CLOSE_WAIT:
1383 				so->so_error = ECONNRESET;
1384 			close:
1385 				tp->t_state = TCPS_CLOSED;
1386 				tcpstat.tcps_drops++;
1387 				tp = tcp_close(tp);
1388 				break;
1389 
1390 			case TCPS_CLOSING:
1391 			case TCPS_LAST_ACK:
1392 				tp = tcp_close(tp);
1393 				break;
1394 
1395 			case TCPS_TIME_WAIT:
1396 				break;
1397 			}
1398 		}
1399 		goto drop;
1400 	}
1401 
1402 	/*
1403 	 * RFC 1323 PAWS: If we have a timestamp reply on this segment
1404 	 * and it's less than ts_recent, drop it.
1405 	 */
1406 	if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
1407 	    TSTMP_LT(to.to_tsval, tp->ts_recent)) {
1408 
1409 		/* Check to see if ts_recent is over 24 days old.  */
1410 		if ((int)(ticks - tp->ts_recent_age) > TCP_PAWS_IDLE) {
1411 			/*
1412 			 * Invalidate ts_recent.  If this segment updates
1413 			 * ts_recent, the age will be reset later and ts_recent
1414 			 * will get a valid value.  If it does not, setting
1415 			 * ts_recent to zero will at least satisfy the
1416 			 * requirement that zero be placed in the timestamp
1417 			 * echo reply when ts_recent isn't valid.  The
1418 			 * age isn't reset until we get a valid ts_recent
1419 			 * because we don't want out-of-order segments to be
1420 			 * dropped when ts_recent is old.
1421 			 */
1422 			tp->ts_recent = 0;
1423 		} else {
1424 			tcpstat.tcps_rcvduppack++;
1425 			tcpstat.tcps_rcvdupbyte += tlen;
1426 			tcpstat.tcps_pawsdrop++;
1427 			goto dropafterack;
1428 		}
1429 	}
1430 
1431 	/*
1432 	 * T/TCP mechanism
1433 	 *   If T/TCP was negotiated and the segment doesn't have CC,
1434 	 *   or if its CC is wrong then drop the segment.
1435 	 *   RST segments do not have to comply with this.
1436 	 */
1437 	if ((tp->t_flags & (TF_REQ_CC|TF_RCVD_CC)) == (TF_REQ_CC|TF_RCVD_CC) &&
1438 	    ((to.to_flags & TOF_CC) == 0 || tp->cc_recv != to.to_cc))
1439  		goto dropafterack;
1440 
1441 	/*
1442 	 * In the SYN-RECEIVED state, validate that the packet belongs to
1443 	 * this connection before trimming the data to fit the receive
1444 	 * window.  Check the sequence number versus IRS since we know
1445 	 * the sequence numbers haven't wrapped.  This is a partial fix
1446 	 * for the "LAND" DoS attack.
1447 	 */
1448 	if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) {
1449 		rstreason = BANDLIM_RST_OPENPORT;
1450 		goto dropwithreset;
1451 	}
1452 
1453 	todrop = tp->rcv_nxt - th->th_seq;
1454 	if (todrop > 0) {
1455 		if (thflags & TH_SYN) {
1456 			thflags &= ~TH_SYN;
1457 			th->th_seq++;
1458 			if (th->th_urp > 1)
1459 				th->th_urp--;
1460 			else
1461 				thflags &= ~TH_URG;
1462 			todrop--;
1463 		}
1464 		/*
1465 		 * Following if statement from Stevens, vol. 2, p. 960.
1466 		 */
1467 		if (todrop > tlen
1468 		    || (todrop == tlen && (thflags & TH_FIN) == 0)) {
1469 			/*
1470 			 * Any valid FIN must be to the left of the window.
1471 			 * At this point the FIN must be a duplicate or out
1472 			 * of sequence; drop it.
1473 			 */
1474 			thflags &= ~TH_FIN;
1475 
1476 			/*
1477 			 * Send an ACK to resynchronize and drop any data.
1478 			 * But keep on processing for RST or ACK.
1479 			 */
1480 			tp->t_flags |= TF_ACKNOW;
1481 			todrop = tlen;
1482 			tcpstat.tcps_rcvduppack++;
1483 			tcpstat.tcps_rcvdupbyte += todrop;
1484 		} else {
1485 			tcpstat.tcps_rcvpartduppack++;
1486 			tcpstat.tcps_rcvpartdupbyte += todrop;
1487 		}
1488 		drop_hdrlen += todrop;	/* drop from the top afterwards */
1489 		th->th_seq += todrop;
1490 		tlen -= todrop;
1491 		if (th->th_urp > todrop)
1492 			th->th_urp -= todrop;
1493 		else {
1494 			thflags &= ~TH_URG;
1495 			th->th_urp = 0;
1496 		}
1497 	}
1498 
1499 	/*
1500 	 * If new data are received on a connection after the
1501 	 * user processes are gone, then RST the other end.
1502 	 */
1503 	if ((so->so_state & SS_NOFDREF) &&
1504 	    tp->t_state > TCPS_CLOSE_WAIT && tlen) {
1505 		tp = tcp_close(tp);
1506 		tcpstat.tcps_rcvafterclose++;
1507 		rstreason = BANDLIM_UNLIMITED;
1508 		goto dropwithreset;
1509 	}
1510 
1511 	/*
1512 	 * If segment ends after window, drop trailing data
1513 	 * (and PUSH and FIN); if nothing left, just ACK.
1514 	 */
1515 	todrop = (th->th_seq+tlen) - (tp->rcv_nxt+tp->rcv_wnd);
1516 	if (todrop > 0) {
1517 		tcpstat.tcps_rcvpackafterwin++;
1518 		if (todrop >= tlen) {
1519 			tcpstat.tcps_rcvbyteafterwin += tlen;
1520 			/*
1521 			 * If a new connection request is received
1522 			 * while in TIME_WAIT, drop the old connection
1523 			 * and start over if the sequence numbers
1524 			 * are above the previous ones.
1525 			 */
1526 			if (thflags & TH_SYN &&
1527 			    tp->t_state == TCPS_TIME_WAIT &&
1528 			    SEQ_GT(th->th_seq, tp->rcv_nxt)) {
1529 				tp = tcp_close(tp);
1530 				goto findpcb;
1531 			}
1532 			/*
1533 			 * If window is closed can only take segments at
1534 			 * window edge, and have to drop data and PUSH from
1535 			 * incoming segments.  Continue processing, but
1536 			 * remember to ack.  Otherwise, drop segment
1537 			 * and ack.
1538 			 */
1539 			if (tp->rcv_wnd == 0 && th->th_seq == tp->rcv_nxt) {
1540 				tp->t_flags |= TF_ACKNOW;
1541 				tcpstat.tcps_rcvwinprobe++;
1542 			} else
1543 				goto dropafterack;
1544 		} else
1545 			tcpstat.tcps_rcvbyteafterwin += todrop;
1546 		m_adj(m, -todrop);
1547 		tlen -= todrop;
1548 		thflags &= ~(TH_PUSH|TH_FIN);
1549 	}
1550 
1551 	/*
1552 	 * If last ACK falls within this segment's sequence numbers,
1553 	 * record its timestamp.
1554 	 * NOTE that the test is modified according to the latest
1555 	 * proposal of the tcplw@cray.com list (Braden 1993/04/26).
1556 	 */
1557 	if ((to.to_flags & TOF_TS) != 0 &&
1558 	    SEQ_LEQ(th->th_seq, tp->last_ack_sent)) {
1559 		tp->ts_recent_age = ticks;
1560 		tp->ts_recent = to.to_tsval;
1561 	}
1562 
1563 	/*
1564 	 * If a SYN is in the window, then this is an
1565 	 * error and we send an RST and drop the connection.
1566 	 */
1567 	if (thflags & TH_SYN) {
1568 		tp = tcp_drop(tp, ECONNRESET);
1569 		rstreason = BANDLIM_UNLIMITED;
1570 		goto dropwithreset;
1571 	}
1572 
1573 	/*
1574 	 * If the ACK bit is off:  if in SYN-RECEIVED state or SENDSYN
1575 	 * flag is on (half-synchronized state), then queue data for
1576 	 * later processing; else drop segment and return.
1577 	 */
1578 	if ((thflags & TH_ACK) == 0) {
1579 		if (tp->t_state == TCPS_SYN_RECEIVED ||
1580 		    (tp->t_flags & TF_NEEDSYN))
1581 			goto step6;
1582 		else
1583 			goto drop;
1584 	}
1585 
1586 	/*
1587 	 * Ack processing.
1588 	 */
1589 	switch (tp->t_state) {
1590 
1591 	/*
1592 	 * In SYN_RECEIVED state, the ack ACKs our SYN, so enter
1593 	 * ESTABLISHED state and continue processing.
1594 	 * The ACK was checked above.
1595 	 */
1596 	case TCPS_SYN_RECEIVED:
1597 
1598 		tcpstat.tcps_connects++;
1599 		soisconnected(so);
1600 		/* Do window scaling? */
1601 		if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1602 			(TF_RCVD_SCALE|TF_REQ_SCALE)) {
1603 			tp->snd_scale = tp->requested_s_scale;
1604 			tp->rcv_scale = tp->request_r_scale;
1605 		}
1606 		/*
1607 		 * Upon successful completion of 3-way handshake,
1608 		 * update cache.CC if it was undefined, pass any queued
1609 		 * data to the user, and advance state appropriately.
1610 		 */
1611 		if ((taop = tcp_gettaocache(&inp->inp_inc)) != NULL &&
1612 		    taop->tao_cc == 0)
1613 			taop->tao_cc = tp->cc_recv;
1614 
1615 		/*
1616 		 * Make transitions:
1617 		 *      SYN-RECEIVED  -> ESTABLISHED
1618 		 *      SYN-RECEIVED* -> FIN-WAIT-1
1619 		 */
1620 		tp->t_starttime = ticks;
1621 		if (tp->t_flags & TF_NEEDFIN) {
1622 			tp->t_state = TCPS_FIN_WAIT_1;
1623 			tp->t_flags &= ~TF_NEEDFIN;
1624 		} else {
1625 			tp->t_state = TCPS_ESTABLISHED;
1626 			callout_reset(tp->tt_keep, tcp_keepidle,
1627 				      tcp_timer_keep, tp);
1628 		}
1629 		/*
1630 		 * If segment contains data or ACK, will call tcp_reass()
1631 		 * later; if not, do so now to pass queued data to user.
1632 		 */
1633 		if (tlen == 0 && (thflags & TH_FIN) == 0)
1634 			(void) tcp_reass(tp, (struct tcphdr *)0, 0,
1635 			    (struct mbuf *)0);
1636 		tp->snd_wl1 = th->th_seq - 1;
1637 		/* fall into ... */
1638 
1639 	/*
1640 	 * In ESTABLISHED state: drop duplicate ACKs; ACK out of range
1641 	 * ACKs.  If the ack is in the range
1642 	 *	tp->snd_una < th->th_ack <= tp->snd_max
1643 	 * then advance tp->snd_una to th->th_ack and drop
1644 	 * data from the retransmission queue.  If this ACK reflects
1645 	 * more up to date window information we update our window information.
1646 	 */
1647 	case TCPS_ESTABLISHED:
1648 	case TCPS_FIN_WAIT_1:
1649 	case TCPS_FIN_WAIT_2:
1650 	case TCPS_CLOSE_WAIT:
1651 	case TCPS_CLOSING:
1652 	case TCPS_LAST_ACK:
1653 	case TCPS_TIME_WAIT:
1654 
1655 		if (SEQ_LEQ(th->th_ack, tp->snd_una)) {
1656 			if (tlen == 0 && tiwin == tp->snd_wnd) {
1657 				tcpstat.tcps_rcvdupack++;
1658 				/*
1659 				 * If we have outstanding data (other than
1660 				 * a window probe), this is a completely
1661 				 * duplicate ack (ie, window info didn't
1662 				 * change), the ack is the biggest we've
1663 				 * seen and we've seen exactly our rexmt
1664 				 * threshhold of them, assume a packet
1665 				 * has been dropped and retransmit it.
1666 				 * Kludge snd_nxt & the congestion
1667 				 * window so we send only this one
1668 				 * packet.
1669 				 *
1670 				 * We know we're losing at the current
1671 				 * window size so do congestion avoidance
1672 				 * (set ssthresh to half the current window
1673 				 * and pull our congestion window back to
1674 				 * the new ssthresh).
1675 				 *
1676 				 * Dup acks mean that packets have left the
1677 				 * network (they're now cached at the receiver)
1678 				 * so bump cwnd by the amount in the receiver
1679 				 * to keep a constant cwnd packets in the
1680 				 * network.
1681 				 */
1682 				if (!callout_active(tp->tt_rexmt) ||
1683 				    th->th_ack != tp->snd_una)
1684 					tp->t_dupacks = 0;
1685 				else if (++tp->t_dupacks == tcprexmtthresh) {
1686 					tcp_seq onxt = tp->snd_nxt;
1687 					u_int win =
1688 					    min(tp->snd_wnd, tp->snd_cwnd) / 2 /
1689 						tp->t_maxseg;
1690 					if (tcp_do_newreno && SEQ_LT(th->th_ack,
1691 					    tp->snd_recover)) {
1692 						/* False retransmit, should not
1693 						 * cut window
1694 						 */
1695 						tp->snd_cwnd += tp->t_maxseg;
1696 						tp->t_dupacks = 0;
1697 						(void) tcp_output(tp);
1698 						goto drop;
1699 					}
1700 					if (win < 2)
1701 						win = 2;
1702 					tp->snd_ssthresh = win * tp->t_maxseg;
1703 					tp->snd_recover = tp->snd_max;
1704 					callout_stop(tp->tt_rexmt);
1705 					tp->t_rtttime = 0;
1706 					tp->snd_nxt = th->th_ack;
1707 					tp->snd_cwnd = tp->t_maxseg;
1708 					(void) tcp_output(tp);
1709 					tp->snd_cwnd = tp->snd_ssthresh +
1710 					       tp->t_maxseg * tp->t_dupacks;
1711 					if (SEQ_GT(onxt, tp->snd_nxt))
1712 						tp->snd_nxt = onxt;
1713 					goto drop;
1714 				} else if (tp->t_dupacks > tcprexmtthresh) {
1715 					tp->snd_cwnd += tp->t_maxseg;
1716 					(void) tcp_output(tp);
1717 					goto drop;
1718 				}
1719 			} else
1720 				tp->t_dupacks = 0;
1721 			break;
1722 		}
1723 		/*
1724 		 * If the congestion window was inflated to account
1725 		 * for the other side's cached packets, retract it.
1726 		 */
1727 		if (tcp_do_newreno == 0) {
1728                         if (tp->t_dupacks >= tcprexmtthresh &&
1729                                 tp->snd_cwnd > tp->snd_ssthresh)
1730                                 tp->snd_cwnd = tp->snd_ssthresh;
1731                         tp->t_dupacks = 0;
1732                 } else if (tp->t_dupacks >= tcprexmtthresh &&
1733 		    !tcp_newreno(tp, th)) {
1734                         /*
1735                          * Window inflation should have left us with approx.
1736                          * snd_ssthresh outstanding data.  But in case we
1737                          * would be inclined to send a burst, better to do
1738                          * it via the slow start mechanism.
1739                          */
1740 			if (SEQ_GT(th->th_ack + tp->snd_ssthresh, tp->snd_max))
1741                                 tp->snd_cwnd =
1742 				    tp->snd_max - th->th_ack + tp->t_maxseg;
1743 			else
1744                         	tp->snd_cwnd = tp->snd_ssthresh;
1745                         tp->t_dupacks = 0;
1746                 }
1747 		if (tp->t_dupacks < tcprexmtthresh)
1748 			tp->t_dupacks = 0;
1749 		if (SEQ_GT(th->th_ack, tp->snd_max)) {
1750 			tcpstat.tcps_rcvacktoomuch++;
1751 			goto dropafterack;
1752 		}
1753 		/*
1754 		 *  If we reach this point, ACK is not a duplicate,
1755 		 *     i.e., it ACKs something we sent.
1756 		 */
1757 		if (tp->t_flags & TF_NEEDSYN) {
1758 			/*
1759 			 * T/TCP: Connection was half-synchronized, and our
1760 			 * SYN has been ACK'd (so connection is now fully
1761 			 * synchronized).  Go to non-starred state,
1762 			 * increment snd_una for ACK of SYN, and check if
1763 			 * we can do window scaling.
1764 			 */
1765 			tp->t_flags &= ~TF_NEEDSYN;
1766 			tp->snd_una++;
1767 			/* Do window scaling? */
1768 			if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1769 				(TF_RCVD_SCALE|TF_REQ_SCALE)) {
1770 				tp->snd_scale = tp->requested_s_scale;
1771 				tp->rcv_scale = tp->request_r_scale;
1772 			}
1773 		}
1774 
1775 process_ACK:
1776 		acked = th->th_ack - tp->snd_una;
1777 		tcpstat.tcps_rcvackpack++;
1778 		tcpstat.tcps_rcvackbyte += acked;
1779 
1780 		/*
1781 		 * If we just performed our first retransmit, and the ACK
1782 		 * arrives within our recovery window, then it was a mistake
1783 		 * to do the retransmit in the first place.  Recover our
1784 		 * original cwnd and ssthresh, and proceed to transmit where
1785 		 * we left off.
1786 		 */
1787 		if (tp->t_rxtshift == 1 && ticks < tp->t_badrxtwin) {
1788 			++tcpstat.tcps_sndrexmitbad;
1789 			tp->snd_cwnd = tp->snd_cwnd_prev;
1790 			tp->snd_ssthresh = tp->snd_ssthresh_prev;
1791 			tp->snd_nxt = tp->snd_max;
1792 			tp->t_badrxtwin = 0;	/* XXX probably not required */
1793 		}
1794 
1795 		/*
1796 		 * If we have a timestamp reply, update smoothed
1797 		 * round trip time.  If no timestamp is present but
1798 		 * transmit timer is running and timed sequence
1799 		 * number was acked, update smoothed round trip time.
1800 		 * Since we now have an rtt measurement, cancel the
1801 		 * timer backoff (cf., Phil Karn's retransmit alg.).
1802 		 * Recompute the initial retransmit timer.
1803 		 */
1804 		if (to.to_flags & TOF_TS)
1805 			tcp_xmit_timer(tp, ticks - to.to_tsecr + 1);
1806 		else if (tp->t_rtttime && SEQ_GT(th->th_ack, tp->t_rtseq))
1807 			tcp_xmit_timer(tp, ticks - tp->t_rtttime);
1808 
1809 		/*
1810 		 * If all outstanding data is acked, stop retransmit
1811 		 * timer and remember to restart (more output or persist).
1812 		 * If there is more data to be acked, restart retransmit
1813 		 * timer, using current (possibly backed-off) value.
1814 		 */
1815 		if (th->th_ack == tp->snd_max) {
1816 			callout_stop(tp->tt_rexmt);
1817 			needoutput = 1;
1818 		} else if (!callout_active(tp->tt_persist))
1819 			callout_reset(tp->tt_rexmt, tp->t_rxtcur,
1820 				      tcp_timer_rexmt, tp);
1821 
1822 		/*
1823 		 * If no data (only SYN) was ACK'd,
1824 		 *    skip rest of ACK processing.
1825 		 */
1826 		if (acked == 0)
1827 			goto step6;
1828 
1829 		/*
1830 		 * When new data is acked, open the congestion window.
1831 		 * If the window gives us less than ssthresh packets
1832 		 * in flight, open exponentially (maxseg per packet).
1833 		 * Otherwise open linearly: maxseg per window
1834 		 * (maxseg^2 / cwnd per packet).
1835 		 */
1836 		{
1837 		register u_int cw = tp->snd_cwnd;
1838 		register u_int incr = tp->t_maxseg;
1839 
1840 		if (cw > tp->snd_ssthresh)
1841 			incr = incr * incr / cw;
1842 		/*
1843 		 * If t_dupacks != 0 here, it indicates that we are still
1844 		 * in NewReno fast recovery mode, so we leave the congestion
1845 		 * window alone.
1846 		 */
1847 		if (tcp_do_newreno == 0 || tp->t_dupacks == 0)
1848 			tp->snd_cwnd = min(cw + incr,TCP_MAXWIN<<tp->snd_scale);
1849 		}
1850 		if (acked > so->so_snd.sb_cc) {
1851 			tp->snd_wnd -= so->so_snd.sb_cc;
1852 			sbdrop(&so->so_snd, (int)so->so_snd.sb_cc);
1853 			ourfinisacked = 1;
1854 		} else {
1855 			sbdrop(&so->so_snd, acked);
1856 			tp->snd_wnd -= acked;
1857 			ourfinisacked = 0;
1858 		}
1859 		sowwakeup(so);
1860 		tp->snd_una = th->th_ack;
1861 		if (SEQ_LT(tp->snd_nxt, tp->snd_una))
1862 			tp->snd_nxt = tp->snd_una;
1863 
1864 		switch (tp->t_state) {
1865 
1866 		/*
1867 		 * In FIN_WAIT_1 STATE in addition to the processing
1868 		 * for the ESTABLISHED state if our FIN is now acknowledged
1869 		 * then enter FIN_WAIT_2.
1870 		 */
1871 		case TCPS_FIN_WAIT_1:
1872 			if (ourfinisacked) {
1873 				/*
1874 				 * If we can't receive any more
1875 				 * data, then closing user can proceed.
1876 				 * Starting the timer is contrary to the
1877 				 * specification, but if we don't get a FIN
1878 				 * we'll hang forever.
1879 				 */
1880 				if (so->so_state & SS_CANTRCVMORE) {
1881 					soisdisconnected(so);
1882 					callout_reset(tp->tt_2msl, tcp_maxidle,
1883 						      tcp_timer_2msl, tp);
1884 				}
1885 				tp->t_state = TCPS_FIN_WAIT_2;
1886 			}
1887 			break;
1888 
1889 	 	/*
1890 		 * In CLOSING STATE in addition to the processing for
1891 		 * the ESTABLISHED state if the ACK acknowledges our FIN
1892 		 * then enter the TIME-WAIT state, otherwise ignore
1893 		 * the segment.
1894 		 */
1895 		case TCPS_CLOSING:
1896 			if (ourfinisacked) {
1897 				tp->t_state = TCPS_TIME_WAIT;
1898 				tcp_canceltimers(tp);
1899 				/* Shorten TIME_WAIT [RFC-1644, p.28] */
1900 				if (tp->cc_recv != 0 &&
1901 				    (ticks - tp->t_starttime) < tcp_msl)
1902 					callout_reset(tp->tt_2msl,
1903 						      tp->t_rxtcur *
1904 						      TCPTV_TWTRUNC,
1905 						      tcp_timer_2msl, tp);
1906 				else
1907 					callout_reset(tp->tt_2msl, 2 * tcp_msl,
1908 						      tcp_timer_2msl, tp);
1909 				soisdisconnected(so);
1910 			}
1911 			break;
1912 
1913 		/*
1914 		 * In LAST_ACK, we may still be waiting for data to drain
1915 		 * and/or to be acked, as well as for the ack of our FIN.
1916 		 * If our FIN is now acknowledged, delete the TCB,
1917 		 * enter the closed state and return.
1918 		 */
1919 		case TCPS_LAST_ACK:
1920 			if (ourfinisacked) {
1921 				tp = tcp_close(tp);
1922 				goto drop;
1923 			}
1924 			break;
1925 
1926 		/*
1927 		 * In TIME_WAIT state the only thing that should arrive
1928 		 * is a retransmission of the remote FIN.  Acknowledge
1929 		 * it and restart the finack timer.
1930 		 */
1931 		case TCPS_TIME_WAIT:
1932 			callout_reset(tp->tt_2msl, 2 * tcp_msl,
1933 				      tcp_timer_2msl, tp);
1934 			goto dropafterack;
1935 		}
1936 	}
1937 
1938 step6:
1939 	/*
1940 	 * Update window information.
1941 	 * Don't look at window if no ACK: TAC's send garbage on first SYN.
1942 	 */
1943 	if ((thflags & TH_ACK) &&
1944 	    (SEQ_LT(tp->snd_wl1, th->th_seq) ||
1945 	    (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) ||
1946 	     (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) {
1947 		/* keep track of pure window updates */
1948 		if (tlen == 0 &&
1949 		    tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd)
1950 			tcpstat.tcps_rcvwinupd++;
1951 		tp->snd_wnd = tiwin;
1952 		tp->snd_wl1 = th->th_seq;
1953 		tp->snd_wl2 = th->th_ack;
1954 		if (tp->snd_wnd > tp->max_sndwnd)
1955 			tp->max_sndwnd = tp->snd_wnd;
1956 		needoutput = 1;
1957 	}
1958 
1959 	/*
1960 	 * Process segments with URG.
1961 	 */
1962 	if ((thflags & TH_URG) && th->th_urp &&
1963 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
1964 		/*
1965 		 * This is a kludge, but if we receive and accept
1966 		 * random urgent pointers, we'll crash in
1967 		 * soreceive.  It's hard to imagine someone
1968 		 * actually wanting to send this much urgent data.
1969 		 */
1970 		if (th->th_urp + so->so_rcv.sb_cc > sb_max) {
1971 			th->th_urp = 0;			/* XXX */
1972 			thflags &= ~TH_URG;		/* XXX */
1973 			goto dodata;			/* XXX */
1974 		}
1975 		/*
1976 		 * If this segment advances the known urgent pointer,
1977 		 * then mark the data stream.  This should not happen
1978 		 * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since
1979 		 * a FIN has been received from the remote side.
1980 		 * In these states we ignore the URG.
1981 		 *
1982 		 * According to RFC961 (Assigned Protocols),
1983 		 * the urgent pointer points to the last octet
1984 		 * of urgent data.  We continue, however,
1985 		 * to consider it to indicate the first octet
1986 		 * of data past the urgent section as the original
1987 		 * spec states (in one of two places).
1988 		 */
1989 		if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) {
1990 			tp->rcv_up = th->th_seq + th->th_urp;
1991 			so->so_oobmark = so->so_rcv.sb_cc +
1992 			    (tp->rcv_up - tp->rcv_nxt) - 1;
1993 			if (so->so_oobmark == 0)
1994 				so->so_state |= SS_RCVATMARK;
1995 			sohasoutofband(so);
1996 			tp->t_oobflags &= ~(TCPOOB_HAVEDATA | TCPOOB_HADDATA);
1997 		}
1998 		/*
1999 		 * Remove out of band data so doesn't get presented to user.
2000 		 * This can happen independent of advancing the URG pointer,
2001 		 * but if two URG's are pending at once, some out-of-band
2002 		 * data may creep in... ick.
2003 		 */
2004 		if (th->th_urp <= (u_long)tlen
2005 #ifdef SO_OOBINLINE
2006 		     && (so->so_options & SO_OOBINLINE) == 0
2007 #endif
2008 		     )
2009 			tcp_pulloutofband(so, th, m,
2010 				drop_hdrlen);	/* hdr drop is delayed */
2011 	} else
2012 		/*
2013 		 * If no out of band data is expected,
2014 		 * pull receive urgent pointer along
2015 		 * with the receive window.
2016 		 */
2017 		if (SEQ_GT(tp->rcv_nxt, tp->rcv_up))
2018 			tp->rcv_up = tp->rcv_nxt;
2019 dodata:							/* XXX */
2020 	KASSERT(headlocked, ("headlocked"));
2021 	INP_INFO_WUNLOCK(&tcbinfo);
2022 	headlocked = 0;
2023 	/*
2024 	 * Process the segment text, merging it into the TCP sequencing queue,
2025 	 * and arranging for acknowledgment of receipt if necessary.
2026 	 * This process logically involves adjusting tp->rcv_wnd as data
2027 	 * is presented to the user (this happens in tcp_usrreq.c,
2028 	 * case PRU_RCVD).  If a FIN has already been received on this
2029 	 * connection then we just ignore the text.
2030 	 */
2031 	if ((tlen || (thflags&TH_FIN)) &&
2032 	    TCPS_HAVERCVDFIN(tp->t_state) == 0) {
2033 		m_adj(m, drop_hdrlen);	/* delayed header drop */
2034 		/*
2035 		 * Insert segment which inludes th into reassembly queue of tcp with
2036 		 * control block tp.  Return TH_FIN if reassembly now includes
2037 		 * a segment with FIN.  This handle the common case inline (segment
2038 		 * is the next to be received on an established connection, and the
2039 		 * queue is empty), avoiding linkage into and removal from the queue
2040 		 * and repetition of various conversions.
2041 		 * Set DELACK for segments received in order, but ack immediately
2042 		 * when segments are out of order (so fast retransmit can work).
2043 		 */
2044 		if (th->th_seq == tp->rcv_nxt &&
2045 		    LIST_EMPTY(&tp->t_segq) &&
2046 		    TCPS_HAVEESTABLISHED(tp->t_state)) {
2047 			if (DELAY_ACK(tp))
2048 				callout_reset(tp->tt_delack, tcp_delacktime,
2049 				    tcp_timer_delack, tp);
2050 			else
2051 				tp->t_flags |= TF_ACKNOW;
2052 			tp->rcv_nxt += tlen;
2053 			thflags = th->th_flags & TH_FIN;
2054 			tcpstat.tcps_rcvpack++;
2055 			tcpstat.tcps_rcvbyte += tlen;
2056 			ND6_HINT(tp);
2057 			sbappend(&so->so_rcv, m);
2058 			sorwakeup(so);
2059 		} else {
2060 			thflags = tcp_reass(tp, th, &tlen, m);
2061 			tp->t_flags |= TF_ACKNOW;
2062 		}
2063 
2064 		/*
2065 		 * Note the amount of data that peer has sent into
2066 		 * our window, in order to estimate the sender's
2067 		 * buffer size.
2068 		 */
2069 		len = so->so_rcv.sb_hiwat - (tp->rcv_adv - tp->rcv_nxt);
2070 	} else {
2071 		m_freem(m);
2072 		thflags &= ~TH_FIN;
2073 	}
2074 
2075 	/*
2076 	 * If FIN is received ACK the FIN and let the user know
2077 	 * that the connection is closing.
2078 	 */
2079 	if (thflags & TH_FIN) {
2080 		if (TCPS_HAVERCVDFIN(tp->t_state) == 0) {
2081 			socantrcvmore(so);
2082 			/*
2083 			 *  If connection is half-synchronized
2084 			 *  (ie NEEDSYN flag on) then delay ACK,
2085 			 *  so it may be piggybacked when SYN is sent.
2086 			 *  Otherwise, since we received a FIN then no
2087 			 *  more input can be expected, send ACK now.
2088 			 */
2089 			if (DELAY_ACK(tp) && (tp->t_flags & TF_NEEDSYN))
2090                                 callout_reset(tp->tt_delack, tcp_delacktime,
2091                                     tcp_timer_delack, tp);
2092 			else
2093 				tp->t_flags |= TF_ACKNOW;
2094 			tp->rcv_nxt++;
2095 		}
2096 		switch (tp->t_state) {
2097 
2098 	 	/*
2099 		 * In SYN_RECEIVED and ESTABLISHED STATES
2100 		 * enter the CLOSE_WAIT state.
2101 		 */
2102 		case TCPS_SYN_RECEIVED:
2103 			tp->t_starttime = ticks;
2104 			/*FALLTHROUGH*/
2105 		case TCPS_ESTABLISHED:
2106 			tp->t_state = TCPS_CLOSE_WAIT;
2107 			break;
2108 
2109 	 	/*
2110 		 * If still in FIN_WAIT_1 STATE FIN has not been acked so
2111 		 * enter the CLOSING state.
2112 		 */
2113 		case TCPS_FIN_WAIT_1:
2114 			tp->t_state = TCPS_CLOSING;
2115 			break;
2116 
2117 	 	/*
2118 		 * In FIN_WAIT_2 state enter the TIME_WAIT state,
2119 		 * starting the time-wait timer, turning off the other
2120 		 * standard timers.
2121 		 */
2122 		case TCPS_FIN_WAIT_2:
2123 			tp->t_state = TCPS_TIME_WAIT;
2124 			tcp_canceltimers(tp);
2125 			/* Shorten TIME_WAIT [RFC-1644, p.28] */
2126 			if (tp->cc_recv != 0 &&
2127 			    (ticks - tp->t_starttime) < tcp_msl) {
2128 				callout_reset(tp->tt_2msl,
2129 					      tp->t_rxtcur * TCPTV_TWTRUNC,
2130 					      tcp_timer_2msl, tp);
2131 				/* For transaction client, force ACK now. */
2132 				tp->t_flags |= TF_ACKNOW;
2133 			}
2134 			else
2135 				callout_reset(tp->tt_2msl, 2 * tcp_msl,
2136 					      tcp_timer_2msl, tp);
2137 			soisdisconnected(so);
2138 			break;
2139 
2140 		/*
2141 		 * In TIME_WAIT state restart the 2 MSL time_wait timer.
2142 		 */
2143 		case TCPS_TIME_WAIT:
2144 			callout_reset(tp->tt_2msl, 2 * tcp_msl,
2145 				      tcp_timer_2msl, tp);
2146 			break;
2147 		}
2148 	}
2149 #ifdef TCPDEBUG
2150 	if (so->so_options & SO_DEBUG)
2151 		tcp_trace(TA_INPUT, ostate, tp, (void *)tcp_saveipgen,
2152 			  &tcp_savetcp, 0);
2153 #endif
2154 
2155 	/*
2156 	 * Return any desired output.
2157 	 */
2158 	if (needoutput || (tp->t_flags & TF_ACKNOW))
2159 		(void) tcp_output(tp);
2160 	INP_UNLOCK(inp);
2161 	return;
2162 
2163 dropafterack:
2164 	/*
2165 	 * Generate an ACK dropping incoming segment if it occupies
2166 	 * sequence space, where the ACK reflects our state.
2167 	 *
2168 	 * We can now skip the test for the RST flag since all
2169 	 * paths to this code happen after packets containing
2170 	 * RST have been dropped.
2171 	 *
2172 	 * In the SYN-RECEIVED state, don't send an ACK unless the
2173 	 * segment we received passes the SYN-RECEIVED ACK test.
2174 	 * If it fails send a RST.  This breaks the loop in the
2175 	 * "LAND" DoS attack, and also prevents an ACK storm
2176 	 * between two listening ports that have been sent forged
2177 	 * SYN segments, each with the source address of the other.
2178 	 */
2179 	if (tp->t_state == TCPS_SYN_RECEIVED && (thflags & TH_ACK) &&
2180 	    (SEQ_GT(tp->snd_una, th->th_ack) ||
2181 	     SEQ_GT(th->th_ack, tp->snd_max)) ) {
2182 		rstreason = BANDLIM_RST_OPENPORT;
2183 		goto dropwithreset;
2184 	}
2185 #ifdef TCPDEBUG
2186 	if (so->so_options & SO_DEBUG)
2187 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
2188 			  &tcp_savetcp, 0);
2189 #endif
2190 	if (headlocked)
2191 		INP_INFO_WUNLOCK(&tcbinfo);
2192 	m_freem(m);
2193 	tp->t_flags |= TF_ACKNOW;
2194 	(void) tcp_output(tp);
2195 	INP_UNLOCK(inp);
2196 	return;
2197 
2198 dropwithreset:
2199 	/*
2200 	 * Generate a RST, dropping incoming segment.
2201 	 * Make ACK acceptable to originator of segment.
2202 	 * Don't bother to respond if destination was broadcast/multicast.
2203 	 */
2204 	if ((thflags & TH_RST) || m->m_flags & (M_BCAST|M_MCAST))
2205 		goto drop;
2206 #ifdef INET6
2207 	if (isipv6) {
2208 		if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
2209 		    IN6_IS_ADDR_MULTICAST(&ip6->ip6_src))
2210 			goto drop;
2211 	} else
2212 #endif /* INET6 */
2213 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
2214 	    IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
2215 	    ip->ip_src.s_addr == htonl(INADDR_BROADCAST) ||
2216 	    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
2217 		goto drop;
2218 	/* IPv6 anycast check is done at tcp6_input() */
2219 
2220 	/*
2221 	 * Perform bandwidth limiting.
2222 	 */
2223 	if (badport_bandlim(rstreason) < 0)
2224 		goto drop;
2225 
2226 #ifdef TCPDEBUG
2227 	if (tp == 0 || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG))
2228 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
2229 			  &tcp_savetcp, 0);
2230 #endif
2231 
2232 	if (tp)
2233 		INP_UNLOCK(inp);
2234 
2235 	if (thflags & TH_ACK)
2236 		/* mtod() below is safe as long as hdr dropping is delayed */
2237 		tcp_respond(tp, mtod(m, void *), th, m, (tcp_seq)0, th->th_ack,
2238 			    TH_RST);
2239 	else {
2240 		if (thflags & TH_SYN)
2241 			tlen++;
2242 		/* mtod() below is safe as long as hdr dropping is delayed */
2243 		tcp_respond(tp, mtod(m, void *), th, m, th->th_seq+tlen,
2244 			    (tcp_seq)0, TH_RST|TH_ACK);
2245 	}
2246 	if (headlocked)
2247 		INP_INFO_WUNLOCK(&tcbinfo);
2248 	return;
2249 
2250 drop:
2251 	/*
2252 	 * Drop space held by incoming segment and return.
2253 	 */
2254 #ifdef TCPDEBUG
2255 	if (tp == 0 || (tp->t_inpcb->inp_socket->so_options & SO_DEBUG))
2256 		tcp_trace(TA_DROP, ostate, tp, (void *)tcp_saveipgen,
2257 			  &tcp_savetcp, 0);
2258 #endif
2259 	if (tp)
2260 		INP_UNLOCK(inp);
2261 	m_freem(m);
2262 	if (headlocked)
2263 		INP_INFO_WUNLOCK(&tcbinfo);
2264 	return;
2265 }
2266 
2267 /*
2268  * Parse TCP options and place in tcpopt.
2269  */
2270 static void
2271 tcp_dooptions(to, cp, cnt, is_syn)
2272 	struct tcpopt *to;
2273 	u_char *cp;
2274 	int cnt;
2275 {
2276 	int opt, optlen;
2277 
2278 	to->to_flags = 0;
2279 	for (; cnt > 0; cnt -= optlen, cp += optlen) {
2280 		opt = cp[0];
2281 		if (opt == TCPOPT_EOL)
2282 			break;
2283 		if (opt == TCPOPT_NOP)
2284 			optlen = 1;
2285 		else {
2286 			if (cnt < 2)
2287 				break;
2288 			optlen = cp[1];
2289 			if (optlen < 2 || optlen > cnt)
2290 				break;
2291 		}
2292 		switch (opt) {
2293 		case TCPOPT_MAXSEG:
2294 			if (optlen != TCPOLEN_MAXSEG)
2295 				continue;
2296 			if (!is_syn)
2297 				continue;
2298 			to->to_flags |= TOF_MSS;
2299 			bcopy((char *)cp + 2,
2300 			    (char *)&to->to_mss, sizeof(to->to_mss));
2301 			to->to_mss = ntohs(to->to_mss);
2302 			break;
2303 		case TCPOPT_WINDOW:
2304 			if (optlen != TCPOLEN_WINDOW)
2305 				continue;
2306 			if (! is_syn)
2307 				continue;
2308 			to->to_flags |= TOF_SCALE;
2309 			to->to_requested_s_scale = min(cp[2], TCP_MAX_WINSHIFT);
2310 			break;
2311 		case TCPOPT_TIMESTAMP:
2312 			if (optlen != TCPOLEN_TIMESTAMP)
2313 				continue;
2314 			to->to_flags |= TOF_TS;
2315 			bcopy((char *)cp + 2,
2316 			    (char *)&to->to_tsval, sizeof(to->to_tsval));
2317 			to->to_tsval = ntohl(to->to_tsval);
2318 			bcopy((char *)cp + 6,
2319 			    (char *)&to->to_tsecr, sizeof(to->to_tsecr));
2320 			to->to_tsecr = ntohl(to->to_tsecr);
2321 			break;
2322 		case TCPOPT_CC:
2323 			if (optlen != TCPOLEN_CC)
2324 				continue;
2325 			to->to_flags |= TOF_CC;
2326 			bcopy((char *)cp + 2,
2327 			    (char *)&to->to_cc, sizeof(to->to_cc));
2328 			to->to_cc = ntohl(to->to_cc);
2329 			break;
2330 		case TCPOPT_CCNEW:
2331 			if (optlen != TCPOLEN_CC)
2332 				continue;
2333 			if (!is_syn)
2334 				continue;
2335 			to->to_flags |= TOF_CCNEW;
2336 			bcopy((char *)cp + 2,
2337 			    (char *)&to->to_cc, sizeof(to->to_cc));
2338 			to->to_cc = ntohl(to->to_cc);
2339 			break;
2340 		case TCPOPT_CCECHO:
2341 			if (optlen != TCPOLEN_CC)
2342 				continue;
2343 			if (!is_syn)
2344 				continue;
2345 			to->to_flags |= TOF_CCECHO;
2346 			bcopy((char *)cp + 2,
2347 			    (char *)&to->to_ccecho, sizeof(to->to_ccecho));
2348 			to->to_ccecho = ntohl(to->to_ccecho);
2349 			break;
2350 		default:
2351 			continue;
2352 		}
2353 	}
2354 }
2355 
2356 /*
2357  * Pull out of band byte out of a segment so
2358  * it doesn't appear in the user's data queue.
2359  * It is still reflected in the segment length for
2360  * sequencing purposes.
2361  */
2362 static void
2363 tcp_pulloutofband(so, th, m, off)
2364 	struct socket *so;
2365 	struct tcphdr *th;
2366 	register struct mbuf *m;
2367 	int off;		/* delayed to be droped hdrlen */
2368 {
2369 	int cnt = off + th->th_urp - 1;
2370 
2371 	while (cnt >= 0) {
2372 		if (m->m_len > cnt) {
2373 			char *cp = mtod(m, caddr_t) + cnt;
2374 			struct tcpcb *tp = sototcpcb(so);
2375 
2376 			tp->t_iobc = *cp;
2377 			tp->t_oobflags |= TCPOOB_HAVEDATA;
2378 			bcopy(cp+1, cp, (unsigned)(m->m_len - cnt - 1));
2379 			m->m_len--;
2380 			if (m->m_flags & M_PKTHDR)
2381 				m->m_pkthdr.len--;
2382 			return;
2383 		}
2384 		cnt -= m->m_len;
2385 		m = m->m_next;
2386 		if (m == 0)
2387 			break;
2388 	}
2389 	panic("tcp_pulloutofband");
2390 }
2391 
2392 /*
2393  * Collect new round-trip time estimate
2394  * and update averages and current timeout.
2395  */
2396 static void
2397 tcp_xmit_timer(tp, rtt)
2398 	register struct tcpcb *tp;
2399 	int rtt;
2400 {
2401 	register int delta;
2402 
2403 	tcpstat.tcps_rttupdated++;
2404 	tp->t_rttupdated++;
2405 	if (tp->t_srtt != 0) {
2406 		/*
2407 		 * srtt is stored as fixed point with 5 bits after the
2408 		 * binary point (i.e., scaled by 8).  The following magic
2409 		 * is equivalent to the smoothing algorithm in rfc793 with
2410 		 * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed
2411 		 * point).  Adjust rtt to origin 0.
2412 		 */
2413 		delta = ((rtt - 1) << TCP_DELTA_SHIFT)
2414 			- (tp->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT));
2415 
2416 		if ((tp->t_srtt += delta) <= 0)
2417 			tp->t_srtt = 1;
2418 
2419 		/*
2420 		 * We accumulate a smoothed rtt variance (actually, a
2421 		 * smoothed mean difference), then set the retransmit
2422 		 * timer to smoothed rtt + 4 times the smoothed variance.
2423 		 * rttvar is stored as fixed point with 4 bits after the
2424 		 * binary point (scaled by 16).  The following is
2425 		 * equivalent to rfc793 smoothing with an alpha of .75
2426 		 * (rttvar = rttvar*3/4 + |delta| / 4).  This replaces
2427 		 * rfc793's wired-in beta.
2428 		 */
2429 		if (delta < 0)
2430 			delta = -delta;
2431 		delta -= tp->t_rttvar >> (TCP_RTTVAR_SHIFT - TCP_DELTA_SHIFT);
2432 		if ((tp->t_rttvar += delta) <= 0)
2433 			tp->t_rttvar = 1;
2434 	} else {
2435 		/*
2436 		 * No rtt measurement yet - use the unsmoothed rtt.
2437 		 * Set the variance to half the rtt (so our first
2438 		 * retransmit happens at 3*rtt).
2439 		 */
2440 		tp->t_srtt = rtt << TCP_RTT_SHIFT;
2441 		tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1);
2442 	}
2443 	tp->t_rtttime = 0;
2444 	tp->t_rxtshift = 0;
2445 
2446 	/*
2447 	 * the retransmit should happen at rtt + 4 * rttvar.
2448 	 * Because of the way we do the smoothing, srtt and rttvar
2449 	 * will each average +1/2 tick of bias.  When we compute
2450 	 * the retransmit timer, we want 1/2 tick of rounding and
2451 	 * 1 extra tick because of +-1/2 tick uncertainty in the
2452 	 * firing of the timer.  The bias will give us exactly the
2453 	 * 1.5 tick we need.  But, because the bias is
2454 	 * statistical, we have to test that we don't drop below
2455 	 * the minimum feasible timer (which is 2 ticks).
2456 	 */
2457 	TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
2458 		      max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
2459 
2460 	/*
2461 	 * We received an ack for a packet that wasn't retransmitted;
2462 	 * it is probably safe to discard any error indications we've
2463 	 * received recently.  This isn't quite right, but close enough
2464 	 * for now (a route might have failed after we sent a segment,
2465 	 * and the return path might not be symmetrical).
2466 	 */
2467 	tp->t_softerror = 0;
2468 }
2469 
2470 /*
2471  * Determine a reasonable value for maxseg size.
2472  * If the route is known, check route for mtu.
2473  * If none, use an mss that can be handled on the outgoing
2474  * interface without forcing IP to fragment; if bigger than
2475  * an mbuf cluster (MCLBYTES), round down to nearest multiple of MCLBYTES
2476  * to utilize large mbufs.  If no route is found, route has no mtu,
2477  * or the destination isn't local, use a default, hopefully conservative
2478  * size (usually 512 or the default IP max size, but no more than the mtu
2479  * of the interface), as we can't discover anything about intervening
2480  * gateways or networks.  We also initialize the congestion/slow start
2481  * window to be a single segment if the destination isn't local.
2482  * While looking at the routing entry, we also initialize other path-dependent
2483  * parameters from pre-set or cached values in the routing entry.
2484  *
2485  * Also take into account the space needed for options that we
2486  * send regularly.  Make maxseg shorter by that amount to assure
2487  * that we can send maxseg amount of data even when the options
2488  * are present.  Store the upper limit of the length of options plus
2489  * data in maxopd.
2490  *
2491  * NOTE that this routine is only called when we process an incoming
2492  * segment, for outgoing segments only tcp_mssopt is called.
2493  *
2494  * In case of T/TCP, we call this routine during implicit connection
2495  * setup as well (offer = -1), to initialize maxseg from the cached
2496  * MSS of our peer.
2497  */
2498 void
2499 tcp_mss(tp, offer)
2500 	struct tcpcb *tp;
2501 	int offer;
2502 {
2503 	register struct rtentry *rt;
2504 	struct ifnet *ifp;
2505 	register int rtt, mss;
2506 	u_long bufsize;
2507 	struct inpcb *inp;
2508 	struct socket *so;
2509 	struct rmxp_tao *taop;
2510 	int origoffer = offer;
2511 #ifdef INET6
2512 	int isipv6;
2513 	int min_protoh;
2514 #endif
2515 
2516 	inp = tp->t_inpcb;
2517 #ifdef INET6
2518 	isipv6 = ((inp->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
2519 	min_protoh = isipv6 ? sizeof (struct ip6_hdr) + sizeof (struct tcphdr)
2520 			    : sizeof (struct tcpiphdr);
2521 #else
2522 #define min_protoh  (sizeof (struct tcpiphdr))
2523 #endif
2524 #ifdef INET6
2525 	if (isipv6)
2526 		rt = tcp_rtlookup6(&inp->inp_inc);
2527 	else
2528 #endif
2529 	rt = tcp_rtlookup(&inp->inp_inc);
2530 	if (rt == NULL) {
2531 		tp->t_maxopd = tp->t_maxseg =
2532 #ifdef INET6
2533 		isipv6 ? tcp_v6mssdflt :
2534 #endif /* INET6 */
2535 		tcp_mssdflt;
2536 		return;
2537 	}
2538 	ifp = rt->rt_ifp;
2539 	so = inp->inp_socket;
2540 
2541 	taop = rmx_taop(rt->rt_rmx);
2542 	/*
2543 	 * Offer == -1 means that we didn't receive SYN yet,
2544 	 * use cached value in that case;
2545 	 */
2546 	if (offer == -1)
2547 		offer = taop->tao_mssopt;
2548 	/*
2549 	 * Offer == 0 means that there was no MSS on the SYN segment,
2550 	 * in this case we use tcp_mssdflt.
2551 	 */
2552 	if (offer == 0)
2553 		offer =
2554 #ifdef INET6
2555 			isipv6 ? tcp_v6mssdflt :
2556 #endif /* INET6 */
2557 			tcp_mssdflt;
2558 	else
2559 		/*
2560 		 * Sanity check: make sure that maxopd will be large
2561 		 * enough to allow some data on segments even is the
2562 		 * all the option space is used (40bytes).  Otherwise
2563 		 * funny things may happen in tcp_output.
2564 		 */
2565 		offer = max(offer, 64);
2566 	taop->tao_mssopt = offer;
2567 
2568 	/*
2569 	 * While we're here, check if there's an initial rtt
2570 	 * or rttvar.  Convert from the route-table units
2571 	 * to scaled multiples of the slow timeout timer.
2572 	 */
2573 	if (tp->t_srtt == 0 && (rtt = rt->rt_rmx.rmx_rtt)) {
2574 		/*
2575 		 * XXX the lock bit for RTT indicates that the value
2576 		 * is also a minimum value; this is subject to time.
2577 		 */
2578 		if (rt->rt_rmx.rmx_locks & RTV_RTT)
2579 			tp->t_rttmin = rtt / (RTM_RTTUNIT / hz);
2580 		tp->t_srtt = rtt / (RTM_RTTUNIT / (hz * TCP_RTT_SCALE));
2581 		tcpstat.tcps_usedrtt++;
2582 		if (rt->rt_rmx.rmx_rttvar) {
2583 			tp->t_rttvar = rt->rt_rmx.rmx_rttvar /
2584 			    (RTM_RTTUNIT / (hz * TCP_RTTVAR_SCALE));
2585 			tcpstat.tcps_usedrttvar++;
2586 		} else {
2587 			/* default variation is +- 1 rtt */
2588 			tp->t_rttvar =
2589 			    tp->t_srtt * TCP_RTTVAR_SCALE / TCP_RTT_SCALE;
2590 		}
2591 		TCPT_RANGESET(tp->t_rxtcur,
2592 			      ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1,
2593 			      tp->t_rttmin, TCPTV_REXMTMAX);
2594 	}
2595 	/*
2596 	 * if there's an mtu associated with the route, use it
2597 	 * else, use the link mtu.
2598 	 */
2599 	if (rt->rt_rmx.rmx_mtu)
2600 		mss = rt->rt_rmx.rmx_mtu - min_protoh;
2601 	else
2602 	{
2603 		mss =
2604 #ifdef INET6
2605 			(isipv6 ? nd_ifinfo[rt->rt_ifp->if_index].linkmtu :
2606 #endif
2607 			 ifp->if_mtu
2608 #ifdef INET6
2609 			 )
2610 #endif
2611 			- min_protoh;
2612 #ifdef INET6
2613 		if (isipv6) {
2614 			if (!in6_localaddr(&inp->in6p_faddr))
2615 				mss = min(mss, tcp_v6mssdflt);
2616 		} else
2617 #endif
2618 		if (!in_localaddr(inp->inp_faddr))
2619 			mss = min(mss, tcp_mssdflt);
2620 	}
2621 	mss = min(mss, offer);
2622 	/*
2623 	 * maxopd stores the maximum length of data AND options
2624 	 * in a segment; maxseg is the amount of data in a normal
2625 	 * segment.  We need to store this value (maxopd) apart
2626 	 * from maxseg, because now every segment carries options
2627 	 * and thus we normally have somewhat less data in segments.
2628 	 */
2629 	tp->t_maxopd = mss;
2630 
2631 	/*
2632 	 * In case of T/TCP, origoffer==-1 indicates, that no segments
2633 	 * were received yet.  In this case we just guess, otherwise
2634 	 * we do the same as before T/TCP.
2635 	 */
2636  	if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
2637 	    (origoffer == -1 ||
2638 	     (tp->t_flags & TF_RCVD_TSTMP) == TF_RCVD_TSTMP))
2639 		mss -= TCPOLEN_TSTAMP_APPA;
2640  	if ((tp->t_flags & (TF_REQ_CC|TF_NOOPT)) == TF_REQ_CC &&
2641 	    (origoffer == -1 ||
2642 	     (tp->t_flags & TF_RCVD_CC) == TF_RCVD_CC))
2643 		mss -= TCPOLEN_CC_APPA;
2644 
2645 #if	(MCLBYTES & (MCLBYTES - 1)) == 0
2646 		if (mss > MCLBYTES)
2647 			mss &= ~(MCLBYTES-1);
2648 #else
2649 		if (mss > MCLBYTES)
2650 			mss = mss / MCLBYTES * MCLBYTES;
2651 #endif
2652 	/*
2653 	 * If there's a pipesize, change the socket buffer
2654 	 * to that size.  Make the socket buffers an integral
2655 	 * number of mss units; if the mss is larger than
2656 	 * the socket buffer, decrease the mss.
2657 	 */
2658 #ifdef RTV_SPIPE
2659 	if ((bufsize = rt->rt_rmx.rmx_sendpipe) == 0)
2660 #endif
2661 		bufsize = so->so_snd.sb_hiwat;
2662 	if (bufsize < mss)
2663 		mss = bufsize;
2664 	else {
2665 		bufsize = roundup(bufsize, mss);
2666 		if (bufsize > sb_max)
2667 			bufsize = sb_max;
2668 		if (bufsize > so->so_snd.sb_hiwat)
2669 			(void)sbreserve(&so->so_snd, bufsize, so, NULL);
2670 	}
2671 	tp->t_maxseg = mss;
2672 
2673 #ifdef RTV_RPIPE
2674 	if ((bufsize = rt->rt_rmx.rmx_recvpipe) == 0)
2675 #endif
2676 		bufsize = so->so_rcv.sb_hiwat;
2677 	if (bufsize > mss) {
2678 		bufsize = roundup(bufsize, mss);
2679 		if (bufsize > sb_max)
2680 			bufsize = sb_max;
2681 		if (bufsize > so->so_rcv.sb_hiwat)
2682 			(void)sbreserve(&so->so_rcv, bufsize, so, NULL);
2683 	}
2684 
2685 	/*
2686 	 * Set the slow-start flight size depending on whether this
2687 	 * is a local network or not.
2688 	 */
2689 	if (
2690 #ifdef INET6
2691 	    (isipv6 && in6_localaddr(&inp->in6p_faddr)) ||
2692 	    (!isipv6 &&
2693 #endif
2694 	     in_localaddr(inp->inp_faddr)
2695 #ifdef INET6
2696 	     )
2697 #endif
2698 	    )
2699 		tp->snd_cwnd = mss * ss_fltsz_local;
2700 	else
2701 		tp->snd_cwnd = mss * ss_fltsz;
2702 
2703 	if (rt->rt_rmx.rmx_ssthresh) {
2704 		/*
2705 		 * There's some sort of gateway or interface
2706 		 * buffer limit on the path.  Use this to set
2707 		 * the slow start threshhold, but set the
2708 		 * threshold to no less than 2*mss.
2709 		 */
2710 		tp->snd_ssthresh = max(2 * mss, rt->rt_rmx.rmx_ssthresh);
2711 		tcpstat.tcps_usedssthresh++;
2712 	}
2713 }
2714 
2715 /*
2716  * Determine the MSS option to send on an outgoing SYN.
2717  */
2718 int
2719 tcp_mssopt(tp)
2720 	struct tcpcb *tp;
2721 {
2722 	struct rtentry *rt;
2723 #ifdef INET6
2724 	int isipv6;
2725 	int min_protoh;
2726 #endif
2727 
2728 #ifdef INET6
2729 	isipv6 = ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) ? 1 : 0;
2730 	min_protoh = isipv6 ? sizeof (struct ip6_hdr) + sizeof (struct tcphdr)
2731 			    : sizeof (struct tcpiphdr);
2732 #else
2733 #define min_protoh  (sizeof (struct tcpiphdr))
2734 #endif
2735 #ifdef INET6
2736 	if (isipv6)
2737 		rt = tcp_rtlookup6(&tp->t_inpcb->inp_inc);
2738 	else
2739 #endif /* INET6 */
2740 	rt = tcp_rtlookup(&tp->t_inpcb->inp_inc);
2741 	if (rt == NULL)
2742 		return
2743 #ifdef INET6
2744 			isipv6 ? tcp_v6mssdflt :
2745 #endif /* INET6 */
2746 			tcp_mssdflt;
2747 
2748 	return rt->rt_ifp->if_mtu - min_protoh;
2749 }
2750 
2751 
2752 /*
2753  * Checks for partial ack.  If partial ack arrives, force the retransmission
2754  * of the next unacknowledged segment, do not clear tp->t_dupacks, and return
2755  * 1.  By setting snd_nxt to ti_ack, this forces retransmission timer to
2756  * be started again.  If the ack advances at least to tp->snd_recover, return 0.
2757  */
2758 static int
2759 tcp_newreno(tp, th)
2760 	struct tcpcb *tp;
2761 	struct tcphdr *th;
2762 {
2763 	if (SEQ_LT(th->th_ack, tp->snd_recover)) {
2764 		tcp_seq onxt = tp->snd_nxt;
2765 		u_long  ocwnd = tp->snd_cwnd;
2766 
2767 		callout_stop(tp->tt_rexmt);
2768 		tp->t_rtttime = 0;
2769 		tp->snd_nxt = th->th_ack;
2770 		/*
2771 		 * Set snd_cwnd to one segment beyond acknowledged offset
2772 		 * (tp->snd_una has not yet been updated when this function
2773 		 *  is called)
2774 		 */
2775 		tp->snd_cwnd = tp->t_maxseg + (th->th_ack - tp->snd_una);
2776 		(void) tcp_output(tp);
2777 		tp->snd_cwnd = ocwnd;
2778 		if (SEQ_GT(onxt, tp->snd_nxt))
2779 			tp->snd_nxt = onxt;
2780 		/*
2781 		 * Partial window deflation.  Relies on fact that tp->snd_una
2782 		 * not updated yet.
2783 		 */
2784 		tp->snd_cwnd -= (th->th_ack - tp->snd_una - tp->t_maxseg);
2785 		return (1);
2786 	}
2787 	return (0);
2788 }
2789