xref: /freebsd/sys/netinet/tcp_output.c (revision b9234fafa0783687e83b2fa646e3ee137d87913a)
1df8bae1dSRodney W. Grimes /*
2d7f570e6SGarrett Wollman  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
14df8bae1dSRodney W. Grimes  *    must display the following acknowledgement:
15df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
16df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
17df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19df8bae1dSRodney W. Grimes  *    without specific prior written permission.
20df8bae1dSRodney W. Grimes  *
21df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
32df8bae1dSRodney W. Grimes  *
33d7f570e6SGarrett Wollman  *	@(#)tcp_output.c	8.4 (Berkeley) 5/24/95
34c3aac50fSPeter Wemm  * $FreeBSD$
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37fb59c426SYoshinobu Inoue #include "opt_inet6.h"
383a2a9f79SYoshinobu Inoue #include "opt_ipsec.h"
39c488362eSRobert Watson #include "opt_mac.h"
400cc12cc5SJoerg Wunsch #include "opt_tcpdebug.h"
410cc12cc5SJoerg Wunsch 
42df8bae1dSRodney W. Grimes #include <sys/param.h>
43df8bae1dSRodney W. Grimes #include <sys/systm.h>
44686cdd19SJun-ichiro itojun Hagino #include <sys/domain.h>
45fb919e4dSMark Murray #include <sys/kernel.h>
46fb919e4dSMark Murray #include <sys/lock.h>
47c488362eSRobert Watson #include <sys/mac.h>
48fb919e4dSMark Murray #include <sys/mbuf.h>
49fb919e4dSMark Murray #include <sys/mutex.h>
50df8bae1dSRodney W. Grimes #include <sys/protosw.h>
51df8bae1dSRodney W. Grimes #include <sys/socket.h>
52df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
53fb919e4dSMark Murray #include <sys/sysctl.h>
54df8bae1dSRodney W. Grimes 
55df8bae1dSRodney W. Grimes #include <net/route.h>
56df8bae1dSRodney W. Grimes 
57df8bae1dSRodney W. Grimes #include <netinet/in.h>
58df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
59df8bae1dSRodney W. Grimes #include <netinet/ip.h>
60df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h>
61df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
62fb59c426SYoshinobu Inoue #ifdef INET6
63686cdd19SJun-ichiro itojun Hagino #include <netinet6/in6_pcb.h>
64686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h>
65fb59c426SYoshinobu Inoue #include <netinet6/ip6_var.h>
66fb59c426SYoshinobu Inoue #endif
67df8bae1dSRodney W. Grimes #include <netinet/tcp.h>
68df8bae1dSRodney W. Grimes #define	TCPOUTFLAGS
69df8bae1dSRodney W. Grimes #include <netinet/tcp_fsm.h>
70df8bae1dSRodney W. Grimes #include <netinet/tcp_seq.h>
71df8bae1dSRodney W. Grimes #include <netinet/tcp_timer.h>
72df8bae1dSRodney W. Grimes #include <netinet/tcp_var.h>
73df8bae1dSRodney W. Grimes #include <netinet/tcpip.h>
74610ee2f9SDavid Greenman #ifdef TCPDEBUG
75df8bae1dSRodney W. Grimes #include <netinet/tcp_debug.h>
76610ee2f9SDavid Greenman #endif
77df8bae1dSRodney W. Grimes 
783a2a9f79SYoshinobu Inoue #ifdef IPSEC
793a2a9f79SYoshinobu Inoue #include <netinet6/ipsec.h>
803a2a9f79SYoshinobu Inoue #endif /*IPSEC*/
813a2a9f79SYoshinobu Inoue 
82b9234fafSSam Leffler #ifdef FAST_IPSEC
83b9234fafSSam Leffler #include <netipsec/ipsec.h>
84b9234fafSSam Leffler #define	IPSEC
85b9234fafSSam Leffler #endif /*FAST_IPSEC*/
86b9234fafSSam Leffler 
87db4f9cc7SJonathan Lemon #include <machine/in_cksum.h>
88db4f9cc7SJonathan Lemon 
89df8bae1dSRodney W. Grimes #ifdef notyet
90df8bae1dSRodney W. Grimes extern struct mbuf *m_copypack();
91df8bae1dSRodney W. Grimes #endif
92df8bae1dSRodney W. Grimes 
93eb5afebaSMike Silbersack int path_mtu_discovery = 1;
949a039a5fSDavid Greenman SYSCTL_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_RW,
959a039a5fSDavid Greenman 	&path_mtu_discovery, 1, "Enable Path MTU Discovery");
969a039a5fSDavid Greenman 
979b8b58e0SJonathan Lemon int ss_fltsz = 1;
989b8b58e0SJonathan Lemon SYSCTL_INT(_net_inet_tcp, OID_AUTO, slowstart_flightsize, CTLFLAG_RW,
999b8b58e0SJonathan Lemon 	&ss_fltsz, 1, "Slow start flight size");
1009b8b58e0SJonathan Lemon 
1013260eb18SMike Silbersack int ss_fltsz_local = 4;
1029b8b58e0SJonathan Lemon SYSCTL_INT(_net_inet_tcp, OID_AUTO, local_slowstart_flightsize, CTLFLAG_RW,
1039b8b58e0SJonathan Lemon 	&ss_fltsz_local, 1, "Slow start flight size for local networks");
104df8bae1dSRodney W. Grimes 
1057d200109SJayanth Vijayaraghavan int     tcp_do_newreno = 1;
10646f58482SJonathan Lemon SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno, CTLFLAG_RW, &tcp_do_newreno,
10746f58482SJonathan Lemon         0, "Enable NewReno Algorithms");
108df8bae1dSRodney W. Grimes /*
109df8bae1dSRodney W. Grimes  * Tcp output routine: figure out what should be sent and send it.
110df8bae1dSRodney W. Grimes  */
111df8bae1dSRodney W. Grimes int
112f10e85d7SLuigi Rizzo tcp_output(struct tcpcb *tp)
113df8bae1dSRodney W. Grimes {
114f10e85d7SLuigi Rizzo 	struct socket *so = tp->t_inpcb->inp_socket;
115f10e85d7SLuigi Rizzo 	long len, win;
116df8bae1dSRodney W. Grimes 	int off, flags, error;
117f10e85d7SLuigi Rizzo 	struct mbuf *m;
118fb59c426SYoshinobu Inoue 	struct ip *ip = NULL;
119f10e85d7SLuigi Rizzo 	struct ipovly *ipov = NULL;
120f10e85d7SLuigi Rizzo 	struct tcphdr *th;
121a0292f23SGarrett Wollman 	u_char opt[TCP_MAXOLEN];
122a04884fcSBill Fenner 	unsigned ipoptlen, optlen, hdrlen;
123df8bae1dSRodney W. Grimes 	int idle, sendalot;
124262c1c1aSMatthew Dillon #if 0
12546f58482SJonathan Lemon 	int maxburst = TCP_MAXBURST;
126262c1c1aSMatthew Dillon #endif
127a0292f23SGarrett Wollman 	struct rmxp_tao *taop;
128a0292f23SGarrett Wollman 	struct rmxp_tao tao_noncached;
129fb59c426SYoshinobu Inoue #ifdef INET6
130f10e85d7SLuigi Rizzo 	struct ip6_hdr *ip6 = NULL;
131fb59c426SYoshinobu Inoue 	int isipv6;
132fb59c426SYoshinobu Inoue 
133fb59c426SYoshinobu Inoue 	isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0;
134fb59c426SYoshinobu Inoue #endif
135df8bae1dSRodney W. Grimes 
1364a03a8a8SJennifer Yang #ifndef INET6
1373d6ade3aSJennifer Yang 	mtx_assert(&tp->t_inpcb->inp_mtx, MA_OWNED);
1384a03a8a8SJennifer Yang #endif
1393d6ade3aSJennifer Yang 
140df8bae1dSRodney W. Grimes 	/*
141df8bae1dSRodney W. Grimes 	 * Determine length of data that should be transmitted,
142df8bae1dSRodney W. Grimes 	 * and flags that will be used.
143df8bae1dSRodney W. Grimes 	 * If there is some data or critical controls (SYN, RST)
144df8bae1dSRodney W. Grimes 	 * to send, then transmit; otherwise, investigate further.
145df8bae1dSRodney W. Grimes 	 */
146c24d5daeSJayanth Vijayaraghavan 	idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
1479b8b58e0SJonathan Lemon 	if (idle && (ticks - tp->t_rcvtime) >= tp->t_rxtcur) {
148df8bae1dSRodney W. Grimes 		/*
149df8bae1dSRodney W. Grimes 		 * We have been idle for "a while" and no acks are
150df8bae1dSRodney W. Grimes 		 * expected to clock out any data we send --
151df8bae1dSRodney W. Grimes 		 * slow start to get ack "clock" running again.
1529b8b58e0SJonathan Lemon 		 *
1539b8b58e0SJonathan Lemon 		 * Set the slow-start flight size depending on whether
1549b8b58e0SJonathan Lemon 		 * this is a local network or not.
155df8bae1dSRodney W. Grimes 		 */
156f10e85d7SLuigi Rizzo 		int ss = ss_fltsz;
157fb59c426SYoshinobu Inoue #ifdef INET6
158f10e85d7SLuigi Rizzo 		if (isipv6) {
159f10e85d7SLuigi Rizzo 			if (in6_localaddr(&tp->t_inpcb->in6p_faddr))
160f10e85d7SLuigi Rizzo 				ss = ss_fltsz_local;
161f10e85d7SLuigi Rizzo 		} else
162f10e85d7SLuigi Rizzo #endif /* INET6 */
163f10e85d7SLuigi Rizzo 		if (in_localaddr(tp->t_inpcb->inp_faddr))
164f10e85d7SLuigi Rizzo 			ss = ss_fltsz_local;
165f10e85d7SLuigi Rizzo 		tp->snd_cwnd = tp->t_maxseg * ss;
1669b8b58e0SJonathan Lemon 	}
167c24d5daeSJayanth Vijayaraghavan 	tp->t_flags &= ~TF_LASTIDLE;
168c24d5daeSJayanth Vijayaraghavan 	if (idle) {
169c24d5daeSJayanth Vijayaraghavan 		if (tp->t_flags & TF_MORETOCOME) {
170c24d5daeSJayanth Vijayaraghavan 			tp->t_flags |= TF_LASTIDLE;
171c24d5daeSJayanth Vijayaraghavan 			idle = 0;
172c24d5daeSJayanth Vijayaraghavan 		}
173c24d5daeSJayanth Vijayaraghavan 	}
174df8bae1dSRodney W. Grimes again:
175df8bae1dSRodney W. Grimes 	sendalot = 0;
176df8bae1dSRodney W. Grimes 	off = tp->snd_nxt - tp->snd_una;
177df8bae1dSRodney W. Grimes 	win = min(tp->snd_wnd, tp->snd_cwnd);
1781fcc99b5SMatthew Dillon 	win = min(win, tp->snd_bwnd);
179df8bae1dSRodney W. Grimes 
180df8bae1dSRodney W. Grimes 	flags = tcp_outflags[tp->t_state];
181a0292f23SGarrett Wollman 	/*
182a0292f23SGarrett Wollman 	 * Get standard flags, and add SYN or FIN if requested by 'hidden'
183a0292f23SGarrett Wollman 	 * state flags.
184a0292f23SGarrett Wollman 	 */
185a0292f23SGarrett Wollman 	if (tp->t_flags & TF_NEEDFIN)
186a0292f23SGarrett Wollman 		flags |= TH_FIN;
187a0292f23SGarrett Wollman 	if (tp->t_flags & TF_NEEDSYN)
188a0292f23SGarrett Wollman 		flags |= TH_SYN;
189a0292f23SGarrett Wollman 
190df8bae1dSRodney W. Grimes 	/*
191df8bae1dSRodney W. Grimes 	 * If in persist timeout with window of 0, send 1 byte.
192df8bae1dSRodney W. Grimes 	 * Otherwise, if window is small but nonzero
193df8bae1dSRodney W. Grimes 	 * and timer expired, we will send what we can
194df8bae1dSRodney W. Grimes 	 * and go to transmit state.
195df8bae1dSRodney W. Grimes 	 */
196df8bae1dSRodney W. Grimes 	if (tp->t_force) {
197df8bae1dSRodney W. Grimes 		if (win == 0) {
198df8bae1dSRodney W. Grimes 			/*
199df8bae1dSRodney W. Grimes 			 * If we still have some data to send, then
200df8bae1dSRodney W. Grimes 			 * clear the FIN bit.  Usually this would
201df8bae1dSRodney W. Grimes 			 * happen below when it realizes that we
202df8bae1dSRodney W. Grimes 			 * aren't sending all the data.  However,
20329089b51SJulian Elischer 			 * if we have exactly 1 byte of unsent data,
204df8bae1dSRodney W. Grimes 			 * then it won't clear the FIN bit below,
205df8bae1dSRodney W. Grimes 			 * and if we are in persist state, we wind
206df8bae1dSRodney W. Grimes 			 * up sending the packet without recording
207df8bae1dSRodney W. Grimes 			 * that we sent the FIN bit.
208df8bae1dSRodney W. Grimes 			 *
209df8bae1dSRodney W. Grimes 			 * We can't just blindly clear the FIN bit,
210df8bae1dSRodney W. Grimes 			 * because if we don't have any more data
211df8bae1dSRodney W. Grimes 			 * to send then the probe will be the FIN
212df8bae1dSRodney W. Grimes 			 * itself.
213df8bae1dSRodney W. Grimes 			 */
214df8bae1dSRodney W. Grimes 			if (off < so->so_snd.sb_cc)
215df8bae1dSRodney W. Grimes 				flags &= ~TH_FIN;
216df8bae1dSRodney W. Grimes 			win = 1;
217df8bae1dSRodney W. Grimes 		} else {
2189b8b58e0SJonathan Lemon 			callout_stop(tp->tt_persist);
219df8bae1dSRodney W. Grimes 			tp->t_rxtshift = 0;
220df8bae1dSRodney W. Grimes 		}
221df8bae1dSRodney W. Grimes 	}
222df8bae1dSRodney W. Grimes 
22328257b5cSMatthew Dillon 	/*
22428257b5cSMatthew Dillon 	 * If snd_nxt == snd_max and we have transmitted a FIN, the
22528257b5cSMatthew Dillon 	 * offset will be > 0 even if so_snd.sb_cc is 0, resulting in
22628257b5cSMatthew Dillon 	 * a negative length.  This can also occur when tcp opens up
22728257b5cSMatthew Dillon 	 * its congestion window while receiving additional duplicate
22828257b5cSMatthew Dillon 	 * acks after fast-retransmit because TCP will reset snd_nxt
22928257b5cSMatthew Dillon 	 * to snd_max after the fast-retransmit.
23028257b5cSMatthew Dillon 	 *
23128257b5cSMatthew Dillon 	 * In the normal retransmit-FIN-only case, however, snd_nxt will
23228257b5cSMatthew Dillon 	 * be set to snd_una, the offset will be 0, and the length may
23328257b5cSMatthew Dillon 	 * wind up 0.
23428257b5cSMatthew Dillon 	 */
2359105bb46SBruce Evans 	len = (long)ulmin(so->so_snd.sb_cc, win) - off;
236df8bae1dSRodney W. Grimes 
237be2ac88cSJonathan Lemon 	if ((taop = tcp_gettaocache(&tp->t_inpcb->inp_inc)) == NULL) {
238a0292f23SGarrett Wollman 		taop = &tao_noncached;
239a0292f23SGarrett Wollman 		bzero(taop, sizeof(*taop));
240a0292f23SGarrett Wollman 	}
241a0292f23SGarrett Wollman 
242a0292f23SGarrett Wollman 	/*
243a0292f23SGarrett Wollman 	 * Lop off SYN bit if it has already been sent.  However, if this
244a0292f23SGarrett Wollman 	 * is SYN-SENT state and if segment contains data and if we don't
245a0292f23SGarrett Wollman 	 * know that foreign host supports TAO, suppress sending segment.
246a0292f23SGarrett Wollman 	 */
247a0292f23SGarrett Wollman 	if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
248a0292f23SGarrett Wollman 		flags &= ~TH_SYN;
249a0292f23SGarrett Wollman 		off--, len++;
250a0292f23SGarrett Wollman 		if (len > 0 && tp->t_state == TCPS_SYN_SENT &&
251a0292f23SGarrett Wollman 		    taop->tao_ccsent == 0)
252a0292f23SGarrett Wollman 			return 0;
253a0292f23SGarrett Wollman 	}
254a0292f23SGarrett Wollman 
25581165e48SAndras Olah 	/*
25681165e48SAndras Olah 	 * Be careful not to send data and/or FIN on SYN segments
25781165e48SAndras Olah 	 * in cases when no CC option will be sent.
25881165e48SAndras Olah 	 * This measure is needed to prevent interoperability problems
25981165e48SAndras Olah 	 * with not fully conformant TCP implementations.
26081165e48SAndras Olah 	 */
26181165e48SAndras Olah 	if ((flags & TH_SYN) &&
26281165e48SAndras Olah 	    ((tp->t_flags & TF_NOOPT) || !(tp->t_flags & TF_REQ_CC) ||
26381165e48SAndras Olah 	     ((flags & TH_ACK) && !(tp->t_flags & TF_RCVD_CC)))) {
26481165e48SAndras Olah 		len = 0;
26581165e48SAndras Olah 		flags &= ~TH_FIN;
26681165e48SAndras Olah 	}
26781165e48SAndras Olah 
268df8bae1dSRodney W. Grimes 	if (len < 0) {
269df8bae1dSRodney W. Grimes 		/*
270df8bae1dSRodney W. Grimes 		 * If FIN has been sent but not acked,
271df8bae1dSRodney W. Grimes 		 * but we haven't been called to retransmit,
27228257b5cSMatthew Dillon 		 * len will be < 0.  Otherwise, window shrank
273df8bae1dSRodney W. Grimes 		 * after we sent into it.  If window shrank to 0,
2742d8266afSDavid Greenman 		 * cancel pending retransmit, pull snd_nxt back
2752d8266afSDavid Greenman 		 * to (closed) window, and set the persist timer
2762d8266afSDavid Greenman 		 * if it isn't already going.  If the window didn't
2772d8266afSDavid Greenman 		 * close completely, just wait for an ACK.
278df8bae1dSRodney W. Grimes 		 */
279df8bae1dSRodney W. Grimes 		len = 0;
280df8bae1dSRodney W. Grimes 		if (win == 0) {
2819b8b58e0SJonathan Lemon 			callout_stop(tp->tt_rexmt);
2822d8266afSDavid Greenman 			tp->t_rxtshift = 0;
283df8bae1dSRodney W. Grimes 			tp->snd_nxt = tp->snd_una;
2849b8b58e0SJonathan Lemon 			if (!callout_active(tp->tt_persist))
2852d8266afSDavid Greenman 				tcp_setpersist(tp);
286df8bae1dSRodney W. Grimes 		}
287df8bae1dSRodney W. Grimes 	}
28828257b5cSMatthew Dillon 
28928257b5cSMatthew Dillon 	/*
29028257b5cSMatthew Dillon 	 * len will be >= 0 after this point.  Truncate to the maximum
29128257b5cSMatthew Dillon 	 * segment length and ensure that FIN is removed if the length
29228257b5cSMatthew Dillon 	 * no longer contains the last data byte.
29328257b5cSMatthew Dillon 	 */
294df8bae1dSRodney W. Grimes 	if (len > tp->t_maxseg) {
295df8bae1dSRodney W. Grimes 		len = tp->t_maxseg;
296df8bae1dSRodney W. Grimes 		sendalot = 1;
297df8bae1dSRodney W. Grimes 	}
298df8bae1dSRodney W. Grimes 	if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
299df8bae1dSRodney W. Grimes 		flags &= ~TH_FIN;
300df8bae1dSRodney W. Grimes 
301df8bae1dSRodney W. Grimes 	win = sbspace(&so->so_rcv);
302df8bae1dSRodney W. Grimes 
303df8bae1dSRodney W. Grimes 	/*
304262c1c1aSMatthew Dillon 	 * Sender silly window avoidance.   We transmit under the following
305262c1c1aSMatthew Dillon 	 * conditions when len is non-zero:
306262c1c1aSMatthew Dillon 	 *
307262c1c1aSMatthew Dillon 	 *	- We have a full segment
308262c1c1aSMatthew Dillon 	 *	- This is the last buffer in a write()/send() and we are
309262c1c1aSMatthew Dillon 	 *	  either idle or running NODELAY
310262c1c1aSMatthew Dillon 	 *	- we've timed out (e.g. persist timer)
311262c1c1aSMatthew Dillon 	 *	- we have more then 1/2 the maximum send window's worth of
312262c1c1aSMatthew Dillon 	 *	  data (receiver may be limited the window size)
313262c1c1aSMatthew Dillon 	 *	- we need to retransmit
314df8bae1dSRodney W. Grimes 	 */
315df8bae1dSRodney W. Grimes 	if (len) {
316df8bae1dSRodney W. Grimes 		if (len == tp->t_maxseg)
317df8bae1dSRodney W. Grimes 			goto send;
318262c1c1aSMatthew Dillon 		/*
319262c1c1aSMatthew Dillon 		 * NOTE! on localhost connections an 'ack' from the remote
320262c1c1aSMatthew Dillon 		 * end may occur synchronously with the output and cause
321262c1c1aSMatthew Dillon 		 * us to flush a buffer queued with moretocome.  XXX
322262c1c1aSMatthew Dillon 		 *
323262c1c1aSMatthew Dillon 		 * note: the len + off check is almost certainly unnecessary.
324262c1c1aSMatthew Dillon 		 */
325262c1c1aSMatthew Dillon 		if (!(tp->t_flags & TF_MORETOCOME) &&	/* normal case */
326262c1c1aSMatthew Dillon 		    (idle || (tp->t_flags & TF_NODELAY)) &&
327262c1c1aSMatthew Dillon 		    len + off >= so->so_snd.sb_cc &&
328262c1c1aSMatthew Dillon 		    (tp->t_flags & TF_NOPUSH) == 0) {
329df8bae1dSRodney W. Grimes 			goto send;
330262c1c1aSMatthew Dillon 		}
331262c1c1aSMatthew Dillon 		if (tp->t_force)			/* typ. timeout case */
332df8bae1dSRodney W. Grimes 			goto send;
333a0292f23SGarrett Wollman 		if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0)
334df8bae1dSRodney W. Grimes 			goto send;
335262c1c1aSMatthew Dillon 		if (SEQ_LT(tp->snd_nxt, tp->snd_max))	/* retransmit case */
336df8bae1dSRodney W. Grimes 			goto send;
337df8bae1dSRodney W. Grimes 	}
338df8bae1dSRodney W. Grimes 
339df8bae1dSRodney W. Grimes 	/*
340df8bae1dSRodney W. Grimes 	 * Compare available window to amount of window
341df8bae1dSRodney W. Grimes 	 * known to peer (as advertised window less
342df8bae1dSRodney W. Grimes 	 * next expected input).  If the difference is at least two
343df8bae1dSRodney W. Grimes 	 * max size segments, or at least 50% of the maximum possible
344df8bae1dSRodney W. Grimes 	 * window, then want to send a window update to peer.
345df8bae1dSRodney W. Grimes 	 */
346df8bae1dSRodney W. Grimes 	if (win > 0) {
347df8bae1dSRodney W. Grimes 		/*
348df8bae1dSRodney W. Grimes 		 * "adv" is the amount we can increase the window,
349df8bae1dSRodney W. Grimes 		 * taking into account that we are limited by
350df8bae1dSRodney W. Grimes 		 * TCP_MAXWIN << tp->rcv_scale.
351df8bae1dSRodney W. Grimes 		 */
352df8bae1dSRodney W. Grimes 		long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
353df8bae1dSRodney W. Grimes 			(tp->rcv_adv - tp->rcv_nxt);
354df8bae1dSRodney W. Grimes 
355df8bae1dSRodney W. Grimes 		if (adv >= (long) (2 * tp->t_maxseg))
356df8bae1dSRodney W. Grimes 			goto send;
357df8bae1dSRodney W. Grimes 		if (2 * adv >= (long) so->so_rcv.sb_hiwat)
358df8bae1dSRodney W. Grimes 			goto send;
359df8bae1dSRodney W. Grimes 	}
360df8bae1dSRodney W. Grimes 
361df8bae1dSRodney W. Grimes 	/*
36228257b5cSMatthew Dillon 	 * Send if we owe the peer an ACK, RST, SYN, or urgent data.  ACKNOW
36328257b5cSMatthew Dillon 	 * is also a catch-all for the retransmit timer timeout case.
364df8bae1dSRodney W. Grimes 	 */
365df8bae1dSRodney W. Grimes 	if (tp->t_flags & TF_ACKNOW)
366df8bae1dSRodney W. Grimes 		goto send;
367a0292f23SGarrett Wollman 	if ((flags & TH_RST) ||
368a0292f23SGarrett Wollman 	    ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0))
369df8bae1dSRodney W. Grimes 		goto send;
370df8bae1dSRodney W. Grimes 	if (SEQ_GT(tp->snd_up, tp->snd_una))
371df8bae1dSRodney W. Grimes 		goto send;
372df8bae1dSRodney W. Grimes 	/*
373df8bae1dSRodney W. Grimes 	 * If our state indicates that FIN should be sent
37428257b5cSMatthew Dillon 	 * and we have not yet done so, then we need to send.
375df8bae1dSRodney W. Grimes 	 */
376df8bae1dSRodney W. Grimes 	if (flags & TH_FIN &&
377df8bae1dSRodney W. Grimes 	    ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
378df8bae1dSRodney W. Grimes 		goto send;
379df8bae1dSRodney W. Grimes 
380df8bae1dSRodney W. Grimes 	/*
381df8bae1dSRodney W. Grimes 	 * TCP window updates are not reliable, rather a polling protocol
382df8bae1dSRodney W. Grimes 	 * using ``persist'' packets is used to insure receipt of window
383df8bae1dSRodney W. Grimes 	 * updates.  The three ``states'' for the output side are:
384df8bae1dSRodney W. Grimes 	 *	idle			not doing retransmits or persists
385df8bae1dSRodney W. Grimes 	 *	persisting		to move a small or zero window
386df8bae1dSRodney W. Grimes 	 *	(re)transmitting	and thereby not persisting
387df8bae1dSRodney W. Grimes 	 *
3889b8b58e0SJonathan Lemon 	 * callout_active(tp->tt_persist)
3899b8b58e0SJonathan Lemon 	 *	is true when we are in persist state.
390df8bae1dSRodney W. Grimes 	 * tp->t_force
391df8bae1dSRodney W. Grimes 	 *	is set when we are called to send a persist packet.
3929b8b58e0SJonathan Lemon 	 * callout_active(tp->tt_rexmt)
393df8bae1dSRodney W. Grimes 	 *	is set when we are retransmitting
394df8bae1dSRodney W. Grimes 	 * The output side is idle when both timers are zero.
395df8bae1dSRodney W. Grimes 	 *
396df8bae1dSRodney W. Grimes 	 * If send window is too small, there is data to transmit, and no
397df8bae1dSRodney W. Grimes 	 * retransmit or persist is pending, then go to persist state.
398df8bae1dSRodney W. Grimes 	 * If nothing happens soon, send when timer expires:
399df8bae1dSRodney W. Grimes 	 * if window is nonzero, transmit what we can,
400df8bae1dSRodney W. Grimes 	 * otherwise force out a byte.
401df8bae1dSRodney W. Grimes 	 */
4029b8b58e0SJonathan Lemon 	if (so->so_snd.sb_cc && !callout_active(tp->tt_rexmt) &&
4039b8b58e0SJonathan Lemon 	    !callout_active(tp->tt_persist)) {
404df8bae1dSRodney W. Grimes 		tp->t_rxtshift = 0;
405df8bae1dSRodney W. Grimes 		tcp_setpersist(tp);
406df8bae1dSRodney W. Grimes 	}
407df8bae1dSRodney W. Grimes 
408df8bae1dSRodney W. Grimes 	/*
409df8bae1dSRodney W. Grimes 	 * No reason to send a segment, just return.
410df8bae1dSRodney W. Grimes 	 */
411df8bae1dSRodney W. Grimes 	return (0);
412df8bae1dSRodney W. Grimes 
413df8bae1dSRodney W. Grimes send:
414df8bae1dSRodney W. Grimes 	/*
415df8bae1dSRodney W. Grimes 	 * Before ESTABLISHED, force sending of initial options
416df8bae1dSRodney W. Grimes 	 * unless TCP set not to do any options.
417df8bae1dSRodney W. Grimes 	 * NOTE: we assume that the IP/TCP header plus TCP options
418df8bae1dSRodney W. Grimes 	 * always fit in a single mbuf, leaving room for a maximum
419df8bae1dSRodney W. Grimes 	 * link header, i.e.
42033841545SHajimu UMEMOTO 	 *	max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MCLBYTES
421df8bae1dSRodney W. Grimes 	 */
422df8bae1dSRodney W. Grimes 	optlen = 0;
423fb59c426SYoshinobu Inoue #ifdef INET6
424fb59c426SYoshinobu Inoue 	if (isipv6)
425fb59c426SYoshinobu Inoue 		hdrlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
426fb59c426SYoshinobu Inoue 	else
427fb59c426SYoshinobu Inoue #endif
428df8bae1dSRodney W. Grimes 	hdrlen = sizeof (struct tcpiphdr);
429df8bae1dSRodney W. Grimes 	if (flags & TH_SYN) {
430df8bae1dSRodney W. Grimes 		tp->snd_nxt = tp->iss;
431df8bae1dSRodney W. Grimes 		if ((tp->t_flags & TF_NOOPT) == 0) {
432df8bae1dSRodney W. Grimes 			u_short mss;
433df8bae1dSRodney W. Grimes 
434df8bae1dSRodney W. Grimes 			opt[0] = TCPOPT_MAXSEG;
435a0292f23SGarrett Wollman 			opt[1] = TCPOLEN_MAXSEG;
436a0292f23SGarrett Wollman 			mss = htons((u_short) tcp_mssopt(tp));
43794a5d9b6SDavid Greenman 			(void)memcpy(opt + 2, &mss, sizeof(mss));
438a0292f23SGarrett Wollman 			optlen = TCPOLEN_MAXSEG;
439df8bae1dSRodney W. Grimes 
440df8bae1dSRodney W. Grimes 			if ((tp->t_flags & TF_REQ_SCALE) &&
441df8bae1dSRodney W. Grimes 			    ((flags & TH_ACK) == 0 ||
442df8bae1dSRodney W. Grimes 			    (tp->t_flags & TF_RCVD_SCALE))) {
4439105bb46SBruce Evans 				*((u_int32_t *)(opt + optlen)) = htonl(
444df8bae1dSRodney W. Grimes 					TCPOPT_NOP << 24 |
445df8bae1dSRodney W. Grimes 					TCPOPT_WINDOW << 16 |
446df8bae1dSRodney W. Grimes 					TCPOLEN_WINDOW << 8 |
447df8bae1dSRodney W. Grimes 					tp->request_r_scale);
448df8bae1dSRodney W. Grimes 				optlen += 4;
449df8bae1dSRodney W. Grimes 			}
450df8bae1dSRodney W. Grimes 		}
451df8bae1dSRodney W. Grimes  	}
452df8bae1dSRodney W. Grimes 
453df8bae1dSRodney W. Grimes  	/*
454df8bae1dSRodney W. Grimes 	 * Send a timestamp and echo-reply if this is a SYN and our side
455df8bae1dSRodney W. Grimes 	 * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
456df8bae1dSRodney W. Grimes 	 * and our peer have sent timestamps in our SYN's.
457df8bae1dSRodney W. Grimes  	 */
458df8bae1dSRodney W. Grimes  	if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
459df8bae1dSRodney W. Grimes  	    (flags & TH_RST) == 0 &&
460a0292f23SGarrett Wollman 	    ((flags & TH_ACK) == 0 ||
461df8bae1dSRodney W. Grimes 	     (tp->t_flags & TF_RCVD_TSTMP))) {
4629105bb46SBruce Evans 		u_int32_t *lp = (u_int32_t *)(opt + optlen);
463df8bae1dSRodney W. Grimes 
464df8bae1dSRodney W. Grimes  		/* Form timestamp option as shown in appendix A of RFC 1323. */
465df8bae1dSRodney W. Grimes  		*lp++ = htonl(TCPOPT_TSTAMP_HDR);
4669b8b58e0SJonathan Lemon  		*lp++ = htonl(ticks);
467df8bae1dSRodney W. Grimes  		*lp   = htonl(tp->ts_recent);
468df8bae1dSRodney W. Grimes  		optlen += TCPOLEN_TSTAMP_APPA;
469df8bae1dSRodney W. Grimes  	}
470df8bae1dSRodney W. Grimes 
471a0292f23SGarrett Wollman  	/*
472a0292f23SGarrett Wollman 	 * Send `CC-family' options if our side wants to use them (TF_REQ_CC),
473a0292f23SGarrett Wollman 	 * options are allowed (!TF_NOOPT) and it's not a RST.
474a0292f23SGarrett Wollman  	 */
475a0292f23SGarrett Wollman  	if ((tp->t_flags & (TF_REQ_CC|TF_NOOPT)) == TF_REQ_CC &&
476a0292f23SGarrett Wollman  	     (flags & TH_RST) == 0) {
477a0292f23SGarrett Wollman 		switch (flags & (TH_SYN|TH_ACK)) {
478a0292f23SGarrett Wollman 		/*
479a0292f23SGarrett Wollman 		 * This is a normal ACK, send CC if we received CC before
480a0292f23SGarrett Wollman 		 * from our peer.
481a0292f23SGarrett Wollman 		 */
482a0292f23SGarrett Wollman 		case TH_ACK:
483a0292f23SGarrett Wollman 			if (!(tp->t_flags & TF_RCVD_CC))
484a0292f23SGarrett Wollman 				break;
485a0292f23SGarrett Wollman 			/*FALLTHROUGH*/
486a0292f23SGarrett Wollman 
487a0292f23SGarrett Wollman 		/*
488a0292f23SGarrett Wollman 		 * We can only get here in T/TCP's SYN_SENT* state, when
489a0292f23SGarrett Wollman 		 * we're a sending a non-SYN segment without waiting for
490a0292f23SGarrett Wollman 		 * the ACK of our SYN.  A check above assures that we only
491a0292f23SGarrett Wollman 		 * do this if our peer understands T/TCP.
492a0292f23SGarrett Wollman 		 */
493a0292f23SGarrett Wollman 		case 0:
494a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
495a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
496a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_CC;
497a0292f23SGarrett Wollman 			opt[optlen++] = TCPOLEN_CC;
498a0292f23SGarrett Wollman 			*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
499a0292f23SGarrett Wollman 
500a0292f23SGarrett Wollman 			optlen += 4;
501a0292f23SGarrett Wollman 			break;
502a0292f23SGarrett Wollman 
503a0292f23SGarrett Wollman 		/*
504a0292f23SGarrett Wollman 		 * This is our initial SYN, check whether we have to use
505a0292f23SGarrett Wollman 		 * CC or CC.new.
506a0292f23SGarrett Wollman 		 */
507a0292f23SGarrett Wollman 		case TH_SYN:
508a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
509a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
510a45d2726SAndras Olah 			opt[optlen++] = tp->t_flags & TF_SENDCCNEW ?
511a45d2726SAndras Olah 						TCPOPT_CCNEW : TCPOPT_CC;
512a0292f23SGarrett Wollman 			opt[optlen++] = TCPOLEN_CC;
513a0292f23SGarrett Wollman 			*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
514a0292f23SGarrett Wollman  			optlen += 4;
515a0292f23SGarrett Wollman 			break;
516a0292f23SGarrett Wollman 
517a0292f23SGarrett Wollman 		/*
518a0292f23SGarrett Wollman 		 * This is a SYN,ACK; send CC and CC.echo if we received
519a0292f23SGarrett Wollman 		 * CC from our peer.
520a0292f23SGarrett Wollman 		 */
521a0292f23SGarrett Wollman 		case (TH_SYN|TH_ACK):
522a0292f23SGarrett Wollman 			if (tp->t_flags & TF_RCVD_CC) {
523a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
524a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
525a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_CC;
526a0292f23SGarrett Wollman 				opt[optlen++] = TCPOLEN_CC;
527a0292f23SGarrett Wollman 				*(u_int32_t *)&opt[optlen] =
528a0292f23SGarrett Wollman 					htonl(tp->cc_send);
529a0292f23SGarrett Wollman 				optlen += 4;
530a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
531a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
532a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_CCECHO;
533a0292f23SGarrett Wollman 				opt[optlen++] = TCPOLEN_CC;
534a0292f23SGarrett Wollman 				*(u_int32_t *)&opt[optlen] =
535a0292f23SGarrett Wollman 					htonl(tp->cc_recv);
536a0292f23SGarrett Wollman 				optlen += 4;
537a0292f23SGarrett Wollman 			}
538a0292f23SGarrett Wollman 			break;
539a0292f23SGarrett Wollman 		}
540a0292f23SGarrett Wollman  	}
541a0292f23SGarrett Wollman 
542df8bae1dSRodney W. Grimes  	hdrlen += optlen;
543df8bae1dSRodney W. Grimes 
544fb59c426SYoshinobu Inoue #ifdef INET6
545fb59c426SYoshinobu Inoue 	if (isipv6)
546fb59c426SYoshinobu Inoue 		ipoptlen = ip6_optlen(tp->t_inpcb);
547fb59c426SYoshinobu Inoue 	else
548fb59c426SYoshinobu Inoue #endif
549f10e85d7SLuigi Rizzo 	if (tp->t_inpcb->inp_options)
550a04884fcSBill Fenner 		ipoptlen = tp->t_inpcb->inp_options->m_len -
551a04884fcSBill Fenner 				offsetof(struct ipoption, ipopt_list);
552f10e85d7SLuigi Rizzo 	else
553a04884fcSBill Fenner 		ipoptlen = 0;
554fb59c426SYoshinobu Inoue #ifdef IPSEC
555fb59c426SYoshinobu Inoue 	ipoptlen += ipsec_hdrsiz_tcp(tp);
556fb59c426SYoshinobu Inoue #endif
557a04884fcSBill Fenner 
558df8bae1dSRodney W. Grimes 	/*
559df8bae1dSRodney W. Grimes 	 * Adjust data length if insertion of options will
560a0292f23SGarrett Wollman 	 * bump the packet length beyond the t_maxopd length.
561a0292f23SGarrett Wollman 	 * Clear the FIN bit because we cut off the tail of
562a0292f23SGarrett Wollman 	 * the segment.
563df8bae1dSRodney W. Grimes 	 */
564a04884fcSBill Fenner 	if (len + optlen + ipoptlen > tp->t_maxopd) {
565297a37f3SDavid Greenman 		/*
566297a37f3SDavid Greenman 		 * If there is still more to send, don't close the connection.
567297a37f3SDavid Greenman 		 */
568297a37f3SDavid Greenman 		flags &= ~TH_FIN;
569a04884fcSBill Fenner 		len = tp->t_maxopd - optlen - ipoptlen;
570df8bae1dSRodney W. Grimes 		sendalot = 1;
571df8bae1dSRodney W. Grimes 	}
572df8bae1dSRodney W. Grimes 
573a0292f23SGarrett Wollman /*#ifdef DIAGNOSTIC*/
574a683a7ddSYoshinobu Inoue #ifdef INET6
575a683a7ddSYoshinobu Inoue  	if (max_linkhdr + hdrlen > MCLBYTES)
576a683a7ddSYoshinobu Inoue #else
577df8bae1dSRodney W. Grimes  	if (max_linkhdr + hdrlen > MHLEN)
578a683a7ddSYoshinobu Inoue #endif
579f10e85d7SLuigi Rizzo 		panic("tcphdr too big");
580a0292f23SGarrett Wollman /*#endif*/
581df8bae1dSRodney W. Grimes 
582df8bae1dSRodney W. Grimes 	/*
583df8bae1dSRodney W. Grimes 	 * Grab a header mbuf, attaching a copy of data to
584df8bae1dSRodney W. Grimes 	 * be transmitted, and initialize the header from
585df8bae1dSRodney W. Grimes 	 * the template for sends on this connection.
586df8bae1dSRodney W. Grimes 	 */
587df8bae1dSRodney W. Grimes 	if (len) {
588df8bae1dSRodney W. Grimes 		if (tp->t_force && len == 1)
589df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndprobe++;
590df8bae1dSRodney W. Grimes 		else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
591df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndrexmitpack++;
592df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndrexmitbyte += len;
593df8bae1dSRodney W. Grimes 		} else {
594df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndpack++;
595df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndbyte += len;
596df8bae1dSRodney W. Grimes 		}
597df8bae1dSRodney W. Grimes #ifdef notyet
598df8bae1dSRodney W. Grimes 		if ((m = m_copypack(so->so_snd.sb_mb, off,
599df8bae1dSRodney W. Grimes 		    (int)len, max_linkhdr + hdrlen)) == 0) {
600df8bae1dSRodney W. Grimes 			error = ENOBUFS;
601df8bae1dSRodney W. Grimes 			goto out;
602df8bae1dSRodney W. Grimes 		}
603df8bae1dSRodney W. Grimes 		/*
604df8bae1dSRodney W. Grimes 		 * m_copypack left space for our hdr; use it.
605df8bae1dSRodney W. Grimes 		 */
606df8bae1dSRodney W. Grimes 		m->m_len += hdrlen;
607df8bae1dSRodney W. Grimes 		m->m_data -= hdrlen;
608df8bae1dSRodney W. Grimes #else
609df8bae1dSRodney W. Grimes 		MGETHDR(m, M_DONTWAIT, MT_HEADER);
610df8bae1dSRodney W. Grimes 		if (m == NULL) {
611df8bae1dSRodney W. Grimes 			error = ENOBUFS;
612df8bae1dSRodney W. Grimes 			goto out;
613df8bae1dSRodney W. Grimes 		}
614fb59c426SYoshinobu Inoue #ifdef INET6
615a683a7ddSYoshinobu Inoue 		if (MHLEN < hdrlen + max_linkhdr) {
616a683a7ddSYoshinobu Inoue 			MCLGET(m, M_DONTWAIT);
617a683a7ddSYoshinobu Inoue 			if ((m->m_flags & M_EXT) == 0) {
618a683a7ddSYoshinobu Inoue 				m_freem(m);
619a683a7ddSYoshinobu Inoue 				error = ENOBUFS;
620a683a7ddSYoshinobu Inoue 				goto out;
621a683a7ddSYoshinobu Inoue 			}
622a683a7ddSYoshinobu Inoue 		}
623fb59c426SYoshinobu Inoue #endif
624df8bae1dSRodney W. Grimes 		m->m_data += max_linkhdr;
625df8bae1dSRodney W. Grimes 		m->m_len = hdrlen;
626df8bae1dSRodney W. Grimes 		if (len <= MHLEN - hdrlen - max_linkhdr) {
627df8bae1dSRodney W. Grimes 			m_copydata(so->so_snd.sb_mb, off, (int) len,
628df8bae1dSRodney W. Grimes 			    mtod(m, caddr_t) + hdrlen);
629df8bae1dSRodney W. Grimes 			m->m_len += len;
630df8bae1dSRodney W. Grimes 		} else {
631df8bae1dSRodney W. Grimes 			m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
63251823c3aSGarrett Wollman 			if (m->m_next == 0) {
633d7f570e6SGarrett Wollman 				(void) m_free(m);
63451823c3aSGarrett Wollman 				error = ENOBUFS;
63551823c3aSGarrett Wollman 				goto out;
63651823c3aSGarrett Wollman 			}
637df8bae1dSRodney W. Grimes 		}
638df8bae1dSRodney W. Grimes #endif
639df8bae1dSRodney W. Grimes 		/*
640df8bae1dSRodney W. Grimes 		 * If we're sending everything we've got, set PUSH.
641df8bae1dSRodney W. Grimes 		 * (This will keep happy those implementations which only
642df8bae1dSRodney W. Grimes 		 * give data to the user when a buffer fills or
643df8bae1dSRodney W. Grimes 		 * a PUSH comes in.)
644df8bae1dSRodney W. Grimes 		 */
645df8bae1dSRodney W. Grimes 		if (off + len == so->so_snd.sb_cc)
646df8bae1dSRodney W. Grimes 			flags |= TH_PUSH;
647df8bae1dSRodney W. Grimes 	} else {
648df8bae1dSRodney W. Grimes 		if (tp->t_flags & TF_ACKNOW)
649df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndacks++;
650df8bae1dSRodney W. Grimes 		else if (flags & (TH_SYN|TH_FIN|TH_RST))
651df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndctrl++;
652df8bae1dSRodney W. Grimes 		else if (SEQ_GT(tp->snd_up, tp->snd_una))
653df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndurg++;
654df8bae1dSRodney W. Grimes 		else
655df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndwinup++;
656df8bae1dSRodney W. Grimes 
657df8bae1dSRodney W. Grimes 		MGETHDR(m, M_DONTWAIT, MT_HEADER);
658df8bae1dSRodney W. Grimes 		if (m == NULL) {
659df8bae1dSRodney W. Grimes 			error = ENOBUFS;
660df8bae1dSRodney W. Grimes 			goto out;
661df8bae1dSRodney W. Grimes 		}
662fb59c426SYoshinobu Inoue #ifdef INET6
663fb59c426SYoshinobu Inoue 		if (isipv6 && (MHLEN < hdrlen + max_linkhdr) &&
664fb59c426SYoshinobu Inoue 		    MHLEN >= hdrlen) {
665fb59c426SYoshinobu Inoue 			MH_ALIGN(m, hdrlen);
666fb59c426SYoshinobu Inoue 		} else
667fb59c426SYoshinobu Inoue #endif
668df8bae1dSRodney W. Grimes 		m->m_data += max_linkhdr;
669df8bae1dSRodney W. Grimes 		m->m_len = hdrlen;
670df8bae1dSRodney W. Grimes 	}
671df8bae1dSRodney W. Grimes 	m->m_pkthdr.rcvif = (struct ifnet *)0;
672c488362eSRobert Watson #ifdef MAC
673c488362eSRobert Watson 	mac_create_mbuf_from_socket(so, m);
674c488362eSRobert Watson #endif
675fb59c426SYoshinobu Inoue #ifdef INET6
676fb59c426SYoshinobu Inoue 	if (isipv6) {
677fb59c426SYoshinobu Inoue 		ip6 = mtod(m, struct ip6_hdr *);
678fb59c426SYoshinobu Inoue 		th = (struct tcphdr *)(ip6 + 1);
67908517d53SMike Silbersack 		tcp_fillheaders(tp, ip6, th);
680fb59c426SYoshinobu Inoue 	} else
681fb59c426SYoshinobu Inoue #endif /* INET6 */
682fb59c426SYoshinobu Inoue       {
683fb59c426SYoshinobu Inoue 	ip = mtod(m, struct ip *);
684fb59c426SYoshinobu Inoue 	ipov = (struct ipovly *)ip;
685fb59c426SYoshinobu Inoue 	th = (struct tcphdr *)(ip + 1);
686db4f9cc7SJonathan Lemon 	/* this picks up the pseudo header (w/o the length) */
68708517d53SMike Silbersack 	tcp_fillheaders(tp, ip, th);
688fb59c426SYoshinobu Inoue       }
689df8bae1dSRodney W. Grimes 
690df8bae1dSRodney W. Grimes 	/*
691df8bae1dSRodney W. Grimes 	 * Fill in fields, remembering maximum advertised
692df8bae1dSRodney W. Grimes 	 * window for use in delaying messages about window sizes.
693df8bae1dSRodney W. Grimes 	 * If resending a FIN, be sure not to use a new sequence number.
694df8bae1dSRodney W. Grimes 	 */
695df8bae1dSRodney W. Grimes 	if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
696df8bae1dSRodney W. Grimes 	    tp->snd_nxt == tp->snd_max)
697df8bae1dSRodney W. Grimes 		tp->snd_nxt--;
698df8bae1dSRodney W. Grimes 	/*
699df8bae1dSRodney W. Grimes 	 * If we are doing retransmissions, then snd_nxt will
700df8bae1dSRodney W. Grimes 	 * not reflect the first unsent octet.  For ACK only
701df8bae1dSRodney W. Grimes 	 * packets, we do not want the sequence number of the
702df8bae1dSRodney W. Grimes 	 * retransmitted packet, we want the sequence number
703df8bae1dSRodney W. Grimes 	 * of the next unsent octet.  So, if there is no data
704df8bae1dSRodney W. Grimes 	 * (and no SYN or FIN), use snd_max instead of snd_nxt
705df8bae1dSRodney W. Grimes 	 * when filling in ti_seq.  But if we are in persist
706df8bae1dSRodney W. Grimes 	 * state, snd_max might reflect one byte beyond the
707df8bae1dSRodney W. Grimes 	 * right edge of the window, so use snd_nxt in that
708df8bae1dSRodney W. Grimes 	 * case, since we know we aren't doing a retransmission.
709df8bae1dSRodney W. Grimes 	 * (retransmit and persist are mutually exclusive...)
710df8bae1dSRodney W. Grimes 	 */
7119b8b58e0SJonathan Lemon 	if (len || (flags & (TH_SYN|TH_FIN))
7129b8b58e0SJonathan Lemon 	    || callout_active(tp->tt_persist))
713fb59c426SYoshinobu Inoue 		th->th_seq = htonl(tp->snd_nxt);
714df8bae1dSRodney W. Grimes 	else
715fb59c426SYoshinobu Inoue 		th->th_seq = htonl(tp->snd_max);
716fb59c426SYoshinobu Inoue 	th->th_ack = htonl(tp->rcv_nxt);
717df8bae1dSRodney W. Grimes 	if (optlen) {
718fb59c426SYoshinobu Inoue 		bcopy(opt, th + 1, optlen);
719fb59c426SYoshinobu Inoue 		th->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
720df8bae1dSRodney W. Grimes 	}
721fb59c426SYoshinobu Inoue 	th->th_flags = flags;
722df8bae1dSRodney W. Grimes 	/*
723df8bae1dSRodney W. Grimes 	 * Calculate receive window.  Don't shrink window,
724df8bae1dSRodney W. Grimes 	 * but avoid silly window syndrome.
725df8bae1dSRodney W. Grimes 	 */
726df8bae1dSRodney W. Grimes 	if (win < (long)(so->so_rcv.sb_hiwat / 4) && win < (long)tp->t_maxseg)
727df8bae1dSRodney W. Grimes 		win = 0;
728df8bae1dSRodney W. Grimes 	if (win < (long)(tp->rcv_adv - tp->rcv_nxt))
729df8bae1dSRodney W. Grimes 		win = (long)(tp->rcv_adv - tp->rcv_nxt);
730610a2e9cSBill Fenner 	if (win > (long)TCP_MAXWIN << tp->rcv_scale)
731610a2e9cSBill Fenner 		win = (long)TCP_MAXWIN << tp->rcv_scale;
732fb59c426SYoshinobu Inoue 	th->th_win = htons((u_short) (win>>tp->rcv_scale));
733262c1c1aSMatthew Dillon 
734262c1c1aSMatthew Dillon 
735262c1c1aSMatthew Dillon 	/*
736262c1c1aSMatthew Dillon 	 * Adjust the RXWIN0SENT flag - indicate that we have advertised
737262c1c1aSMatthew Dillon 	 * a 0 window.  This may cause the remote transmitter to stall.  This
738262c1c1aSMatthew Dillon 	 * flag tells soreceive() to disable delayed acknowledgements when
739262c1c1aSMatthew Dillon 	 * draining the buffer.  This can occur if the receiver is attempting
740262c1c1aSMatthew Dillon 	 * to read more data then can be buffered prior to transmitting on
741262c1c1aSMatthew Dillon 	 * the connection.
742262c1c1aSMatthew Dillon 	 */
743262c1c1aSMatthew Dillon 	if (win == 0)
744262c1c1aSMatthew Dillon 		tp->t_flags |= TF_RXWIN0SENT;
745262c1c1aSMatthew Dillon 	else
746262c1c1aSMatthew Dillon 		tp->t_flags &= ~TF_RXWIN0SENT;
747df8bae1dSRodney W. Grimes 	if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
748fb59c426SYoshinobu Inoue 		th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt));
749fb59c426SYoshinobu Inoue 		th->th_flags |= TH_URG;
750df8bae1dSRodney W. Grimes 	} else
751df8bae1dSRodney W. Grimes 		/*
752df8bae1dSRodney W. Grimes 		 * If no urgent pointer to send, then we pull
753df8bae1dSRodney W. Grimes 		 * the urgent pointer to the left edge of the send window
754df8bae1dSRodney W. Grimes 		 * so that it doesn't drift into the send window on sequence
755df8bae1dSRodney W. Grimes 		 * number wraparound.
756df8bae1dSRodney W. Grimes 		 */
757df8bae1dSRodney W. Grimes 		tp->snd_up = tp->snd_una;		/* drag it along */
758df8bae1dSRodney W. Grimes 
759df8bae1dSRodney W. Grimes 	/*
760df8bae1dSRodney W. Grimes 	 * Put TCP length in extended header, and then
761df8bae1dSRodney W. Grimes 	 * checksum extended header and data.
762df8bae1dSRodney W. Grimes 	 */
763fb59c426SYoshinobu Inoue 	m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */
764fb59c426SYoshinobu Inoue #ifdef INET6
765fb59c426SYoshinobu Inoue 	if (isipv6)
766fb59c426SYoshinobu Inoue 		/*
767fb59c426SYoshinobu Inoue 		 * ip6_plen is not need to be filled now, and will be filled
768fb59c426SYoshinobu Inoue 		 * in ip6_output.
769fb59c426SYoshinobu Inoue 		 */
770fb59c426SYoshinobu Inoue 		th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr),
771fb59c426SYoshinobu Inoue 				       sizeof(struct tcphdr) + optlen + len);
772fb59c426SYoshinobu Inoue 	else
773fb59c426SYoshinobu Inoue #endif /* INET6 */
774fb59c426SYoshinobu Inoue       {
775db4f9cc7SJonathan Lemon 	m->m_pkthdr.csum_flags = CSUM_TCP;
776db4f9cc7SJonathan Lemon 	m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
777df8bae1dSRodney W. Grimes 	if (len + optlen)
778db4f9cc7SJonathan Lemon 		th->th_sum = in_addword(th->th_sum,
779db4f9cc7SJonathan Lemon 		    htons((u_short)(optlen + len)));
780fb59c426SYoshinobu Inoue 
781db4f9cc7SJonathan Lemon 	/* IP version must be set here for ipv4/ipv6 checking later */
782db4f9cc7SJonathan Lemon 	KASSERT(ip->ip_v == IPVERSION,
7836e551fb6SDavid E. O'Brien 	    ("%s: IP version incorrect: %d", __func__, ip->ip_v));
784fb59c426SYoshinobu Inoue       }
785df8bae1dSRodney W. Grimes 
786df8bae1dSRodney W. Grimes 	/*
787df8bae1dSRodney W. Grimes 	 * In transmit state, time the transmission and arrange for
788df8bae1dSRodney W. Grimes 	 * the retransmit.  In persist state, just set snd_max.
789df8bae1dSRodney W. Grimes 	 */
7909b8b58e0SJonathan Lemon 	if (tp->t_force == 0 || !callout_active(tp->tt_persist)) {
791df8bae1dSRodney W. Grimes 		tcp_seq startseq = tp->snd_nxt;
792df8bae1dSRodney W. Grimes 
793df8bae1dSRodney W. Grimes 		/*
794df8bae1dSRodney W. Grimes 		 * Advance snd_nxt over sequence space of this segment.
795df8bae1dSRodney W. Grimes 		 */
796df8bae1dSRodney W. Grimes 		if (flags & (TH_SYN|TH_FIN)) {
797df8bae1dSRodney W. Grimes 			if (flags & TH_SYN)
798df8bae1dSRodney W. Grimes 				tp->snd_nxt++;
799df8bae1dSRodney W. Grimes 			if (flags & TH_FIN) {
800df8bae1dSRodney W. Grimes 				tp->snd_nxt++;
801df8bae1dSRodney W. Grimes 				tp->t_flags |= TF_SENTFIN;
802df8bae1dSRodney W. Grimes 			}
803df8bae1dSRodney W. Grimes 		}
804df8bae1dSRodney W. Grimes 		tp->snd_nxt += len;
805df8bae1dSRodney W. Grimes 		if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
806df8bae1dSRodney W. Grimes 			tp->snd_max = tp->snd_nxt;
807df8bae1dSRodney W. Grimes 			/*
808df8bae1dSRodney W. Grimes 			 * Time this transmission if not a retransmission and
809df8bae1dSRodney W. Grimes 			 * not currently timing anything.
810df8bae1dSRodney W. Grimes 			 */
8119b8b58e0SJonathan Lemon 			if (tp->t_rtttime == 0) {
8129b8b58e0SJonathan Lemon 				tp->t_rtttime = ticks;
813df8bae1dSRodney W. Grimes 				tp->t_rtseq = startseq;
814df8bae1dSRodney W. Grimes 				tcpstat.tcps_segstimed++;
815df8bae1dSRodney W. Grimes 			}
816df8bae1dSRodney W. Grimes 		}
817df8bae1dSRodney W. Grimes 
818df8bae1dSRodney W. Grimes 		/*
819df8bae1dSRodney W. Grimes 		 * Set retransmit timer if not currently set,
82028257b5cSMatthew Dillon 		 * and not doing a pure ack or a keep-alive probe.
821df8bae1dSRodney W. Grimes 		 * Initial value for retransmit timer is smoothed
822df8bae1dSRodney W. Grimes 		 * round-trip time + 2 * round-trip time variance.
823df8bae1dSRodney W. Grimes 		 * Initialize shift counter which is used for backoff
824df8bae1dSRodney W. Grimes 		 * of retransmit time.
825df8bae1dSRodney W. Grimes 		 */
8269b8b58e0SJonathan Lemon 		if (!callout_active(tp->tt_rexmt) &&
827df8bae1dSRodney W. Grimes 		    tp->snd_nxt != tp->snd_una) {
8289b8b58e0SJonathan Lemon 			if (callout_active(tp->tt_persist)) {
8299b8b58e0SJonathan Lemon 				callout_stop(tp->tt_persist);
830df8bae1dSRodney W. Grimes 				tp->t_rxtshift = 0;
831df8bae1dSRodney W. Grimes 			}
83246f58482SJonathan Lemon 			callout_reset(tp->tt_rexmt, tp->t_rxtcur,
83346f58482SJonathan Lemon 				      tcp_timer_rexmt, tp);
834df8bae1dSRodney W. Grimes 		}
83528257b5cSMatthew Dillon 	} else {
83628257b5cSMatthew Dillon 		/*
83728257b5cSMatthew Dillon 		 * Persist case, update snd_max but since we are in
83828257b5cSMatthew Dillon 		 * persist mode (no window) we do not update snd_nxt.
83928257b5cSMatthew Dillon 		 */
84028257b5cSMatthew Dillon 		int xlen = len;
84128257b5cSMatthew Dillon 		if (flags & TH_SYN)
84228257b5cSMatthew Dillon 			++xlen;
84328257b5cSMatthew Dillon 		if (flags & TH_FIN) {
84428257b5cSMatthew Dillon 			++xlen;
84528257b5cSMatthew Dillon 			tp->t_flags |= TF_SENTFIN;
84628257b5cSMatthew Dillon 		}
847df8bae1dSRodney W. Grimes 		if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
848df8bae1dSRodney W. Grimes 			tp->snd_max = tp->snd_nxt + len;
84928257b5cSMatthew Dillon 	}
850df8bae1dSRodney W. Grimes 
851610ee2f9SDavid Greenman #ifdef TCPDEBUG
852df8bae1dSRodney W. Grimes 	/*
853df8bae1dSRodney W. Grimes 	 * Trace.
854df8bae1dSRodney W. Grimes 	 */
8554cc20ab1SSeigo Tanimura 	if (so->so_options & SO_DEBUG)
856fb59c426SYoshinobu Inoue 		tcp_trace(TA_OUTPUT, tp->t_state, tp, mtod(m, void *), th, 0);
857610ee2f9SDavid Greenman #endif
858df8bae1dSRodney W. Grimes 
859df8bae1dSRodney W. Grimes 	/*
860df8bae1dSRodney W. Grimes 	 * Fill in IP length and desired time to live and
861df8bae1dSRodney W. Grimes 	 * send to IP level.  There should be a better way
862df8bae1dSRodney W. Grimes 	 * to handle ttl and tos; we could keep them in
863df8bae1dSRodney W. Grimes 	 * the template, but need a way to checksum without them.
864df8bae1dSRodney W. Grimes 	 */
865fb59c426SYoshinobu Inoue 	/*
866fb59c426SYoshinobu Inoue 	 * m->m_pkthdr.len should have been set before cksum calcuration,
867fb59c426SYoshinobu Inoue 	 * because in6_cksum() need it.
868fb59c426SYoshinobu Inoue 	 */
869fb59c426SYoshinobu Inoue #ifdef INET6
870fb59c426SYoshinobu Inoue 	if (isipv6) {
871fb59c426SYoshinobu Inoue 		/*
872fb59c426SYoshinobu Inoue 		 * we separately set hoplimit for every segment, since the
873fb59c426SYoshinobu Inoue 		 * user might want to change the value via setsockopt.
874fb59c426SYoshinobu Inoue 		 * Also, desired default hop limit might be changed via
875fb59c426SYoshinobu Inoue 		 * Neighbor Discovery.
876fb59c426SYoshinobu Inoue 		 */
877fb59c426SYoshinobu Inoue 		ip6->ip6_hlim = in6_selecthlim(tp->t_inpcb,
878fb59c426SYoshinobu Inoue 					       tp->t_inpcb->in6p_route.ro_rt ?
879fb59c426SYoshinobu Inoue 					       tp->t_inpcb->in6p_route.ro_rt->rt_ifp
880fb59c426SYoshinobu Inoue 					       : NULL);
881fb59c426SYoshinobu Inoue 
882fb59c426SYoshinobu Inoue 		/* TODO: IPv6 IP6TOS_ECT bit on */
883fb59c426SYoshinobu Inoue 		error = ip6_output(m,
884fb59c426SYoshinobu Inoue 			    tp->t_inpcb->in6p_outputopts,
885fb59c426SYoshinobu Inoue 			    &tp->t_inpcb->in6p_route,
8865d846453SSam Leffler 			    (so->so_options & SO_DONTROUTE), NULL, NULL,
8875d846453SSam Leffler 			    tp->t_inpcb);
888fb59c426SYoshinobu Inoue 	} else
889fb59c426SYoshinobu Inoue #endif /* INET6 */
890df8bae1dSRodney W. Grimes     {
891f138387aSGarrett Wollman 	struct rtentry *rt;
892fb59c426SYoshinobu Inoue 	ip->ip_len = m->m_pkthdr.len;
893686cdd19SJun-ichiro itojun Hagino #ifdef INET6
894686cdd19SJun-ichiro itojun Hagino  	if (INP_CHECK_SOCKAF(so, AF_INET6))
895686cdd19SJun-ichiro itojun Hagino  		ip->ip_ttl = in6_selecthlim(tp->t_inpcb,
896686cdd19SJun-ichiro itojun Hagino  					    tp->t_inpcb->in6p_route.ro_rt ?
897686cdd19SJun-ichiro itojun Hagino  					    tp->t_inpcb->in6p_route.ro_rt->rt_ifp
898686cdd19SJun-ichiro itojun Hagino  					    : NULL);
899686cdd19SJun-ichiro itojun Hagino  	else
900686cdd19SJun-ichiro itojun Hagino #endif /* INET6 */
901fb59c426SYoshinobu Inoue 	ip->ip_ttl = tp->t_inpcb->inp_ip_ttl;	/* XXX */
902fb59c426SYoshinobu Inoue 	ip->ip_tos = tp->t_inpcb->inp_ip_tos;	/* XXX */
903f138387aSGarrett Wollman 	/*
904f138387aSGarrett Wollman 	 * See if we should do MTU discovery.  We do it only if the following
905f138387aSGarrett Wollman 	 * are true:
906f138387aSGarrett Wollman 	 *	1) we have a valid route to the destination
907f138387aSGarrett Wollman 	 *	2) the MTU is not locked (if it is, then discovery has been
908f138387aSGarrett Wollman 	 *	   disabled)
909f138387aSGarrett Wollman 	 */
9109a039a5fSDavid Greenman 	if (path_mtu_discovery
9119a039a5fSDavid Greenman 	    && (rt = tp->t_inpcb->inp_route.ro_rt)
912f138387aSGarrett Wollman 	    && rt->rt_flags & RTF_UP
913f138387aSGarrett Wollman 	    && !(rt->rt_rmx.rmx_locks & RTV_MTU)) {
914fb59c426SYoshinobu Inoue 		ip->ip_off |= IP_DF;
915f138387aSGarrett Wollman 	}
916df8bae1dSRodney W. Grimes 	error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route,
9175d846453SSam Leffler 	    (so->so_options & SO_DONTROUTE), 0, tp->t_inpcb);
918df8bae1dSRodney W. Grimes     }
919df8bae1dSRodney W. Grimes 	if (error) {
9207734ea06SArchie Cobbs 
9217734ea06SArchie Cobbs 		/*
9227734ea06SArchie Cobbs 		 * We know that the packet was lost, so back out the
9237734ea06SArchie Cobbs 		 * sequence number advance, if any.
9247734ea06SArchie Cobbs 		 */
9257734ea06SArchie Cobbs 		if (tp->t_force == 0 || !callout_active(tp->tt_persist)) {
9267734ea06SArchie Cobbs 			/*
9277734ea06SArchie Cobbs 			 * No need to check for TH_FIN here because
9287734ea06SArchie Cobbs 			 * the TF_SENTFIN flag handles that case.
9297734ea06SArchie Cobbs 			 */
9306612c70eSArchie Cobbs 			if ((flags & TH_SYN) == 0)
9317734ea06SArchie Cobbs 				tp->snd_nxt -= len;
9327734ea06SArchie Cobbs 		}
9337734ea06SArchie Cobbs 
934df8bae1dSRodney W. Grimes out:
935df8bae1dSRodney W. Grimes 		if (error == ENOBUFS) {
93659f577adSJonathan Lemon 	                if (!callout_active(tp->tt_rexmt) &&
93759f577adSJonathan Lemon                             !callout_active(tp->tt_persist))
93859f577adSJonathan Lemon 	                        callout_reset(tp->tt_rexmt, tp->t_rxtcur,
93959f577adSJonathan Lemon                                       tcp_timer_rexmt, tp);
940df8bae1dSRodney W. Grimes 			tcp_quench(tp->t_inpcb, 0);
941df8bae1dSRodney W. Grimes 			return (0);
942df8bae1dSRodney W. Grimes 		}
9433d1f141bSGarrett Wollman 		if (error == EMSGSIZE) {
9443d1f141bSGarrett Wollman 			/*
9453d1f141bSGarrett Wollman 			 * ip_output() will have already fixed the route
9463d1f141bSGarrett Wollman 			 * for us.  tcp_mtudisc() will, as its last action,
9473d1f141bSGarrett Wollman 			 * initiate retransmission, so it is important to
9483d1f141bSGarrett Wollman 			 * not do so here.
9493d1f141bSGarrett Wollman 			 */
9503d1f141bSGarrett Wollman 			tcp_mtudisc(tp->t_inpcb, 0);
9513d1f141bSGarrett Wollman 			return 0;
9523d1f141bSGarrett Wollman 		}
953df8bae1dSRodney W. Grimes 		if ((error == EHOSTUNREACH || error == ENETDOWN)
954df8bae1dSRodney W. Grimes 		    && TCPS_HAVERCVDSYN(tp->t_state)) {
955df8bae1dSRodney W. Grimes 			tp->t_softerror = error;
956df8bae1dSRodney W. Grimes 			return (0);
957df8bae1dSRodney W. Grimes 		}
958df8bae1dSRodney W. Grimes 		return (error);
959df8bae1dSRodney W. Grimes 	}
960df8bae1dSRodney W. Grimes 	tcpstat.tcps_sndtotal++;
961df8bae1dSRodney W. Grimes 
962df8bae1dSRodney W. Grimes 	/*
963df8bae1dSRodney W. Grimes 	 * Data sent (as far as we can tell).
964df8bae1dSRodney W. Grimes 	 * If this advertises a larger window than any other segment,
965df8bae1dSRodney W. Grimes 	 * then remember the size of the advertised window.
966df8bae1dSRodney W. Grimes 	 * Any pending ACK has now been sent.
967df8bae1dSRodney W. Grimes 	 */
968df8bae1dSRodney W. Grimes 	if (win > 0 && SEQ_GT(tp->rcv_nxt+win, tp->rcv_adv))
969df8bae1dSRodney W. Grimes 		tp->rcv_adv = tp->rcv_nxt + win;
970df8bae1dSRodney W. Grimes 	tp->last_ack_sent = tp->rcv_nxt;
9719b8b58e0SJonathan Lemon 	tp->t_flags &= ~TF_ACKNOW;
9729b8b58e0SJonathan Lemon 	if (tcp_delack_enabled)
9739b8b58e0SJonathan Lemon 		callout_stop(tp->tt_delack);
974d912c694SMatthew Dillon #if 0
975d912c694SMatthew Dillon 	/*
976d912c694SMatthew Dillon 	 * This completely breaks TCP if newreno is turned on.  What happens
977d912c694SMatthew Dillon 	 * is that if delayed-acks are turned on on the receiver, this code
978d912c694SMatthew Dillon 	 * on the transmitter effectively destroys the TCP window, forcing
979d912c694SMatthew Dillon 	 * it to four packets (1.5Kx4 = 6K window).
980d912c694SMatthew Dillon 	 */
98146f58482SJonathan Lemon 	if (sendalot && (!tcp_do_newreno || --maxburst))
982df8bae1dSRodney W. Grimes 		goto again;
983d912c694SMatthew Dillon #endif
984d912c694SMatthew Dillon 	if (sendalot)
985d912c694SMatthew Dillon 		goto again;
986df8bae1dSRodney W. Grimes 	return (0);
987df8bae1dSRodney W. Grimes }
988df8bae1dSRodney W. Grimes 
989df8bae1dSRodney W. Grimes void
990df8bae1dSRodney W. Grimes tcp_setpersist(tp)
991df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
992df8bae1dSRodney W. Grimes {
9939b8b58e0SJonathan Lemon 	int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1;
9949b8b58e0SJonathan Lemon 	int tt;
995df8bae1dSRodney W. Grimes 
9969b8b58e0SJonathan Lemon 	if (callout_active(tp->tt_rexmt))
9979b8b58e0SJonathan Lemon 		panic("tcp_setpersist: retransmit pending");
998df8bae1dSRodney W. Grimes 	/*
999df8bae1dSRodney W. Grimes 	 * Start/restart persistance timer.
1000df8bae1dSRodney W. Grimes 	 */
10019b8b58e0SJonathan Lemon 	TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift],
1002df8bae1dSRodney W. Grimes 		      TCPTV_PERSMIN, TCPTV_PERSMAX);
10039b8b58e0SJonathan Lemon 	callout_reset(tp->tt_persist, tt, tcp_timer_persist, tp);
1004df8bae1dSRodney W. Grimes 	if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
1005df8bae1dSRodney W. Grimes 		tp->t_rxtshift++;
1006df8bae1dSRodney W. Grimes }
1007