xref: /freebsd/sys/netinet/tcp_output.c (revision 3a2a9f797620b306b1d93461c5e568497d0a9e0f)
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"
390cc12cc5SJoerg Wunsch #include "opt_tcpdebug.h"
400cc12cc5SJoerg Wunsch 
41a04884fcSBill Fenner #include <stddef.h>
42a04884fcSBill Fenner 
43df8bae1dSRodney W. Grimes #include <sys/param.h>
44df8bae1dSRodney W. Grimes #include <sys/systm.h>
459a039a5fSDavid Greenman #include <sys/kernel.h>
469a039a5fSDavid Greenman #include <sys/sysctl.h>
47df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
48df8bae1dSRodney W. Grimes #include <sys/protosw.h>
49df8bae1dSRodney W. Grimes #include <sys/socket.h>
50df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
51df8bae1dSRodney W. Grimes 
52df8bae1dSRodney W. Grimes #include <net/route.h>
53df8bae1dSRodney W. Grimes 
54df8bae1dSRodney W. Grimes #include <netinet/in.h>
55df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
56df8bae1dSRodney W. Grimes #include <netinet/ip.h>
57fb59c426SYoshinobu Inoue #ifdef INET6
58fb59c426SYoshinobu Inoue #include <netinet/ip6.h>
59fb59c426SYoshinobu Inoue #endif
60df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h>
61fb59c426SYoshinobu Inoue #ifdef INET6
62fb59c426SYoshinobu Inoue #include <netinet6/in6_pcb.h>
63fb59c426SYoshinobu Inoue #endif
64df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
65fb59c426SYoshinobu Inoue #ifdef INET6
66fb59c426SYoshinobu Inoue #include <netinet6/ip6_var.h>
67fb59c426SYoshinobu Inoue #endif
68df8bae1dSRodney W. Grimes #include <netinet/tcp.h>
69df8bae1dSRodney W. Grimes #define	TCPOUTFLAGS
70df8bae1dSRodney W. Grimes #include <netinet/tcp_fsm.h>
71df8bae1dSRodney W. Grimes #include <netinet/tcp_seq.h>
72df8bae1dSRodney W. Grimes #include <netinet/tcp_timer.h>
73df8bae1dSRodney W. Grimes #include <netinet/tcp_var.h>
74df8bae1dSRodney W. Grimes #include <netinet/tcpip.h>
75610ee2f9SDavid Greenman #ifdef TCPDEBUG
76df8bae1dSRodney W. Grimes #include <netinet/tcp_debug.h>
77610ee2f9SDavid Greenman #endif
78df8bae1dSRodney W. Grimes 
793a2a9f79SYoshinobu Inoue #ifdef IPSEC
803a2a9f79SYoshinobu Inoue #include <netinet6/ipsec.h>
813a2a9f79SYoshinobu Inoue #endif /*IPSEC*/
823a2a9f79SYoshinobu Inoue 
83df8bae1dSRodney W. Grimes #ifdef notyet
84df8bae1dSRodney W. Grimes extern struct mbuf *m_copypack();
85df8bae1dSRodney W. Grimes #endif
86df8bae1dSRodney W. Grimes 
879a039a5fSDavid Greenman static int path_mtu_discovery = 1;
889a039a5fSDavid Greenman SYSCTL_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_RW,
899a039a5fSDavid Greenman 	&path_mtu_discovery, 1, "Enable Path MTU Discovery");
909a039a5fSDavid Greenman 
919b8b58e0SJonathan Lemon int ss_fltsz = 1;
929b8b58e0SJonathan Lemon SYSCTL_INT(_net_inet_tcp, OID_AUTO, slowstart_flightsize, CTLFLAG_RW,
939b8b58e0SJonathan Lemon 	&ss_fltsz, 1, "Slow start flight size");
949b8b58e0SJonathan Lemon 
959b8b58e0SJonathan Lemon int ss_fltsz_local = TCP_MAXWIN;               /* something large */
969b8b58e0SJonathan Lemon SYSCTL_INT(_net_inet_tcp, OID_AUTO, local_slowstart_flightsize, CTLFLAG_RW,
979b8b58e0SJonathan Lemon 	&ss_fltsz_local, 1, "Slow start flight size for local networks");
98df8bae1dSRodney W. Grimes 
99df8bae1dSRodney W. Grimes /*
100df8bae1dSRodney W. Grimes  * Tcp output routine: figure out what should be sent and send it.
101df8bae1dSRodney W. Grimes  */
102df8bae1dSRodney W. Grimes int
103df8bae1dSRodney W. Grimes tcp_output(tp)
104df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
105df8bae1dSRodney W. Grimes {
106df8bae1dSRodney W. Grimes 	register struct socket *so = tp->t_inpcb->inp_socket;
107df8bae1dSRodney W. Grimes 	register long len, win;
108df8bae1dSRodney W. Grimes 	int off, flags, error;
109df8bae1dSRodney W. Grimes 	register struct mbuf *m;
110fb59c426SYoshinobu Inoue 	struct ip *ip = NULL;
111fb59c426SYoshinobu Inoue 	register struct ipovly *ipov = NULL;
112fb59c426SYoshinobu Inoue #ifdef INET6
113fb59c426SYoshinobu Inoue 	struct ip6_hdr *ip6 = NULL;
114fb59c426SYoshinobu Inoue #endif /* INET6 */
115fb59c426SYoshinobu Inoue 	register struct tcphdr *th;
116a0292f23SGarrett Wollman 	u_char opt[TCP_MAXOLEN];
117a04884fcSBill Fenner 	unsigned ipoptlen, optlen, hdrlen;
118df8bae1dSRodney W. Grimes 	int idle, sendalot;
119a0292f23SGarrett Wollman 	struct rmxp_tao *taop;
120a0292f23SGarrett Wollman 	struct rmxp_tao tao_noncached;
121fb59c426SYoshinobu Inoue #ifdef INET6
122fb59c426SYoshinobu Inoue 	int isipv6;
123fb59c426SYoshinobu Inoue #endif
124fb59c426SYoshinobu Inoue 
125fb59c426SYoshinobu Inoue #ifdef INET6
126fb59c426SYoshinobu Inoue 	isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0;
127fb59c426SYoshinobu Inoue #endif
128df8bae1dSRodney W. Grimes 
129df8bae1dSRodney W. Grimes 	/*
130df8bae1dSRodney W. Grimes 	 * Determine length of data that should be transmitted,
131df8bae1dSRodney W. Grimes 	 * and flags that will be used.
132df8bae1dSRodney W. Grimes 	 * If there is some data or critical controls (SYN, RST)
133df8bae1dSRodney W. Grimes 	 * to send, then transmit; otherwise, investigate further.
134df8bae1dSRodney W. Grimes 	 */
135df8bae1dSRodney W. Grimes 	idle = (tp->snd_max == tp->snd_una);
1369b8b58e0SJonathan Lemon 	if (idle && (ticks - tp->t_rcvtime) >= tp->t_rxtcur) {
137df8bae1dSRodney W. Grimes 		/*
138df8bae1dSRodney W. Grimes 		 * We have been idle for "a while" and no acks are
139df8bae1dSRodney W. Grimes 		 * expected to clock out any data we send --
140df8bae1dSRodney W. Grimes 		 * slow start to get ack "clock" running again.
1419b8b58e0SJonathan Lemon 		 *
1429b8b58e0SJonathan Lemon 		 * Set the slow-start flight size depending on whether
1439b8b58e0SJonathan Lemon 		 * this is a local network or not.
144df8bae1dSRodney W. Grimes 		 */
145fb59c426SYoshinobu Inoue 		if (
146fb59c426SYoshinobu Inoue #ifdef INET6
147fb59c426SYoshinobu Inoue 		    (isipv6 && in6_localaddr(&tp->t_inpcb->in6p_faddr)) ||
148fb59c426SYoshinobu Inoue 		    (!isipv6 &&
149fb59c426SYoshinobu Inoue #endif
150fb59c426SYoshinobu Inoue 		     in_localaddr(tp->t_inpcb->inp_faddr)
151fb59c426SYoshinobu Inoue #ifdef INET6
152fb59c426SYoshinobu Inoue 		     )
153fb59c426SYoshinobu Inoue #endif
154fb59c426SYoshinobu Inoue 		    )
1559b8b58e0SJonathan Lemon 			tp->snd_cwnd = tp->t_maxseg * ss_fltsz_local;
1569b8b58e0SJonathan Lemon 		else
1579b8b58e0SJonathan Lemon 			tp->snd_cwnd = tp->t_maxseg * ss_fltsz;
1589b8b58e0SJonathan Lemon 	}
159df8bae1dSRodney W. Grimes again:
160df8bae1dSRodney W. Grimes 	sendalot = 0;
161df8bae1dSRodney W. Grimes 	off = tp->snd_nxt - tp->snd_una;
162df8bae1dSRodney W. Grimes 	win = min(tp->snd_wnd, tp->snd_cwnd);
163df8bae1dSRodney W. Grimes 
164df8bae1dSRodney W. Grimes 	flags = tcp_outflags[tp->t_state];
165a0292f23SGarrett Wollman 	/*
166a0292f23SGarrett Wollman 	 * Get standard flags, and add SYN or FIN if requested by 'hidden'
167a0292f23SGarrett Wollman 	 * state flags.
168a0292f23SGarrett Wollman 	 */
169a0292f23SGarrett Wollman 	if (tp->t_flags & TF_NEEDFIN)
170a0292f23SGarrett Wollman 		flags |= TH_FIN;
171a0292f23SGarrett Wollman 	if (tp->t_flags & TF_NEEDSYN)
172a0292f23SGarrett Wollman 		flags |= TH_SYN;
173a0292f23SGarrett Wollman 
174df8bae1dSRodney W. Grimes 	/*
175df8bae1dSRodney W. Grimes 	 * If in persist timeout with window of 0, send 1 byte.
176df8bae1dSRodney W. Grimes 	 * Otherwise, if window is small but nonzero
177df8bae1dSRodney W. Grimes 	 * and timer expired, we will send what we can
178df8bae1dSRodney W. Grimes 	 * and go to transmit state.
179df8bae1dSRodney W. Grimes 	 */
180df8bae1dSRodney W. Grimes 	if (tp->t_force) {
181df8bae1dSRodney W. Grimes 		if (win == 0) {
182df8bae1dSRodney W. Grimes 			/*
183df8bae1dSRodney W. Grimes 			 * If we still have some data to send, then
184df8bae1dSRodney W. Grimes 			 * clear the FIN bit.  Usually this would
185df8bae1dSRodney W. Grimes 			 * happen below when it realizes that we
186df8bae1dSRodney W. Grimes 			 * aren't sending all the data.  However,
18729089b51SJulian Elischer 			 * if we have exactly 1 byte of unsent data,
188df8bae1dSRodney W. Grimes 			 * then it won't clear the FIN bit below,
189df8bae1dSRodney W. Grimes 			 * and if we are in persist state, we wind
190df8bae1dSRodney W. Grimes 			 * up sending the packet without recording
191df8bae1dSRodney W. Grimes 			 * that we sent the FIN bit.
192df8bae1dSRodney W. Grimes 			 *
193df8bae1dSRodney W. Grimes 			 * We can't just blindly clear the FIN bit,
194df8bae1dSRodney W. Grimes 			 * because if we don't have any more data
195df8bae1dSRodney W. Grimes 			 * to send then the probe will be the FIN
196df8bae1dSRodney W. Grimes 			 * itself.
197df8bae1dSRodney W. Grimes 			 */
198df8bae1dSRodney W. Grimes 			if (off < so->so_snd.sb_cc)
199df8bae1dSRodney W. Grimes 				flags &= ~TH_FIN;
200df8bae1dSRodney W. Grimes 			win = 1;
201df8bae1dSRodney W. Grimes 		} else {
2029b8b58e0SJonathan Lemon 			callout_stop(tp->tt_persist);
203df8bae1dSRodney W. Grimes 			tp->t_rxtshift = 0;
204df8bae1dSRodney W. Grimes 		}
205df8bae1dSRodney W. Grimes 	}
206df8bae1dSRodney W. Grimes 
2079105bb46SBruce Evans 	len = (long)ulmin(so->so_snd.sb_cc, win) - off;
208df8bae1dSRodney W. Grimes 
209a0292f23SGarrett Wollman 	if ((taop = tcp_gettaocache(tp->t_inpcb)) == NULL) {
210a0292f23SGarrett Wollman 		taop = &tao_noncached;
211a0292f23SGarrett Wollman 		bzero(taop, sizeof(*taop));
212a0292f23SGarrett Wollman 	}
213a0292f23SGarrett Wollman 
214a0292f23SGarrett Wollman 	/*
215a0292f23SGarrett Wollman 	 * Lop off SYN bit if it has already been sent.  However, if this
216a0292f23SGarrett Wollman 	 * is SYN-SENT state and if segment contains data and if we don't
217a0292f23SGarrett Wollman 	 * know that foreign host supports TAO, suppress sending segment.
218a0292f23SGarrett Wollman 	 */
219a0292f23SGarrett Wollman 	if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
220a0292f23SGarrett Wollman 		flags &= ~TH_SYN;
221a0292f23SGarrett Wollman 		off--, len++;
222a0292f23SGarrett Wollman 		if (len > 0 && tp->t_state == TCPS_SYN_SENT &&
223a0292f23SGarrett Wollman 		    taop->tao_ccsent == 0)
224a0292f23SGarrett Wollman 			return 0;
225a0292f23SGarrett Wollman 	}
226a0292f23SGarrett Wollman 
22781165e48SAndras Olah 	/*
22881165e48SAndras Olah 	 * Be careful not to send data and/or FIN on SYN segments
22981165e48SAndras Olah 	 * in cases when no CC option will be sent.
23081165e48SAndras Olah 	 * This measure is needed to prevent interoperability problems
23181165e48SAndras Olah 	 * with not fully conformant TCP implementations.
23281165e48SAndras Olah 	 */
23381165e48SAndras Olah 	if ((flags & TH_SYN) &&
23481165e48SAndras Olah 	    ((tp->t_flags & TF_NOOPT) || !(tp->t_flags & TF_REQ_CC) ||
23581165e48SAndras Olah 	     ((flags & TH_ACK) && !(tp->t_flags & TF_RCVD_CC)))) {
23681165e48SAndras Olah 		len = 0;
23781165e48SAndras Olah 		flags &= ~TH_FIN;
23881165e48SAndras Olah 	}
23981165e48SAndras Olah 
240df8bae1dSRodney W. Grimes 	if (len < 0) {
241df8bae1dSRodney W. Grimes 		/*
242df8bae1dSRodney W. Grimes 		 * If FIN has been sent but not acked,
243df8bae1dSRodney W. Grimes 		 * but we haven't been called to retransmit,
244df8bae1dSRodney W. Grimes 		 * len will be -1.  Otherwise, window shrank
245df8bae1dSRodney W. Grimes 		 * after we sent into it.  If window shrank to 0,
2462d8266afSDavid Greenman 		 * cancel pending retransmit, pull snd_nxt back
2472d8266afSDavid Greenman 		 * to (closed) window, and set the persist timer
2482d8266afSDavid Greenman 		 * if it isn't already going.  If the window didn't
2492d8266afSDavid Greenman 		 * close completely, just wait for an ACK.
250df8bae1dSRodney W. Grimes 		 */
251df8bae1dSRodney W. Grimes 		len = 0;
252df8bae1dSRodney W. Grimes 		if (win == 0) {
2539b8b58e0SJonathan Lemon 			callout_stop(tp->tt_rexmt);
2542d8266afSDavid Greenman 			tp->t_rxtshift = 0;
255df8bae1dSRodney W. Grimes 			tp->snd_nxt = tp->snd_una;
2569b8b58e0SJonathan Lemon 			if (!callout_active(tp->tt_persist))
2572d8266afSDavid Greenman 				tcp_setpersist(tp);
258df8bae1dSRodney W. Grimes 		}
259df8bae1dSRodney W. Grimes 	}
260df8bae1dSRodney W. Grimes 	if (len > tp->t_maxseg) {
261df8bae1dSRodney W. Grimes 		len = tp->t_maxseg;
262df8bae1dSRodney W. Grimes 		sendalot = 1;
263df8bae1dSRodney W. Grimes 	}
264df8bae1dSRodney W. Grimes 	if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
265df8bae1dSRodney W. Grimes 		flags &= ~TH_FIN;
266df8bae1dSRodney W. Grimes 
267df8bae1dSRodney W. Grimes 	win = sbspace(&so->so_rcv);
268df8bae1dSRodney W. Grimes 
269df8bae1dSRodney W. Grimes 	/*
270df8bae1dSRodney W. Grimes 	 * Sender silly window avoidance.  If connection is idle
271df8bae1dSRodney W. Grimes 	 * and can send all data, a maximum segment,
272df8bae1dSRodney W. Grimes 	 * at least a maximum default-size segment do it,
273df8bae1dSRodney W. Grimes 	 * or are forced, do it; otherwise don't bother.
274df8bae1dSRodney W. Grimes 	 * If peer's buffer is tiny, then send
275df8bae1dSRodney W. Grimes 	 * when window is at least half open.
276df8bae1dSRodney W. Grimes 	 * If retransmitting (possibly after persist timer forced us
277df8bae1dSRodney W. Grimes 	 * to send into a small window), then must resend.
278df8bae1dSRodney W. Grimes 	 */
279df8bae1dSRodney W. Grimes 	if (len) {
280df8bae1dSRodney W. Grimes 		if (len == tp->t_maxseg)
281df8bae1dSRodney W. Grimes 			goto send;
282b0acefa8SBill Fenner 		if (!(tp->t_flags & TF_MORETOCOME) &&
283b0acefa8SBill Fenner 		    (idle || tp->t_flags & TF_NODELAY) &&
284a0292f23SGarrett Wollman 		    (tp->t_flags & TF_NOPUSH) == 0 &&
285df8bae1dSRodney W. Grimes 		    len + off >= so->so_snd.sb_cc)
286df8bae1dSRodney W. Grimes 			goto send;
287df8bae1dSRodney W. Grimes 		if (tp->t_force)
288df8bae1dSRodney W. Grimes 			goto send;
289a0292f23SGarrett Wollman 		if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0)
290df8bae1dSRodney W. Grimes 			goto send;
291df8bae1dSRodney W. Grimes 		if (SEQ_LT(tp->snd_nxt, tp->snd_max))
292df8bae1dSRodney W. Grimes 			goto send;
293df8bae1dSRodney W. Grimes 	}
294df8bae1dSRodney W. Grimes 
295df8bae1dSRodney W. Grimes 	/*
296df8bae1dSRodney W. Grimes 	 * Compare available window to amount of window
297df8bae1dSRodney W. Grimes 	 * known to peer (as advertised window less
298df8bae1dSRodney W. Grimes 	 * next expected input).  If the difference is at least two
299df8bae1dSRodney W. Grimes 	 * max size segments, or at least 50% of the maximum possible
300df8bae1dSRodney W. Grimes 	 * window, then want to send a window update to peer.
301df8bae1dSRodney W. Grimes 	 */
302df8bae1dSRodney W. Grimes 	if (win > 0) {
303df8bae1dSRodney W. Grimes 		/*
304df8bae1dSRodney W. Grimes 		 * "adv" is the amount we can increase the window,
305df8bae1dSRodney W. Grimes 		 * taking into account that we are limited by
306df8bae1dSRodney W. Grimes 		 * TCP_MAXWIN << tp->rcv_scale.
307df8bae1dSRodney W. Grimes 		 */
308df8bae1dSRodney W. Grimes 		long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
309df8bae1dSRodney W. Grimes 			(tp->rcv_adv - tp->rcv_nxt);
310df8bae1dSRodney W. Grimes 
311df8bae1dSRodney W. Grimes 		if (adv >= (long) (2 * tp->t_maxseg))
312df8bae1dSRodney W. Grimes 			goto send;
313df8bae1dSRodney W. Grimes 		if (2 * adv >= (long) so->so_rcv.sb_hiwat)
314df8bae1dSRodney W. Grimes 			goto send;
315df8bae1dSRodney W. Grimes 	}
316df8bae1dSRodney W. Grimes 
317df8bae1dSRodney W. Grimes 	/*
318df8bae1dSRodney W. Grimes 	 * Send if we owe peer an ACK.
319df8bae1dSRodney W. Grimes 	 */
320df8bae1dSRodney W. Grimes 	if (tp->t_flags & TF_ACKNOW)
321df8bae1dSRodney W. Grimes 		goto send;
322a0292f23SGarrett Wollman 	if ((flags & TH_RST) ||
323a0292f23SGarrett Wollman 	    ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0))
324df8bae1dSRodney W. Grimes 		goto send;
325df8bae1dSRodney W. Grimes 	if (SEQ_GT(tp->snd_up, tp->snd_una))
326df8bae1dSRodney W. Grimes 		goto send;
327df8bae1dSRodney W. Grimes 	/*
328df8bae1dSRodney W. Grimes 	 * If our state indicates that FIN should be sent
329df8bae1dSRodney W. Grimes 	 * and we have not yet done so, or we're retransmitting the FIN,
330df8bae1dSRodney W. Grimes 	 * then we need to send.
331df8bae1dSRodney W. Grimes 	 */
332df8bae1dSRodney W. Grimes 	if (flags & TH_FIN &&
333df8bae1dSRodney W. Grimes 	    ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
334df8bae1dSRodney W. Grimes 		goto send;
335df8bae1dSRodney W. Grimes 
336df8bae1dSRodney W. Grimes 	/*
337df8bae1dSRodney W. Grimes 	 * TCP window updates are not reliable, rather a polling protocol
338df8bae1dSRodney W. Grimes 	 * using ``persist'' packets is used to insure receipt of window
339df8bae1dSRodney W. Grimes 	 * updates.  The three ``states'' for the output side are:
340df8bae1dSRodney W. Grimes 	 *	idle			not doing retransmits or persists
341df8bae1dSRodney W. Grimes 	 *	persisting		to move a small or zero window
342df8bae1dSRodney W. Grimes 	 *	(re)transmitting	and thereby not persisting
343df8bae1dSRodney W. Grimes 	 *
3449b8b58e0SJonathan Lemon 	 * callout_active(tp->tt_persist)
3459b8b58e0SJonathan Lemon 	 *	is true when we are in persist state.
346df8bae1dSRodney W. Grimes 	 * tp->t_force
347df8bae1dSRodney W. Grimes 	 *	is set when we are called to send a persist packet.
3489b8b58e0SJonathan Lemon 	 * callout_active(tp->tt_rexmt)
349df8bae1dSRodney W. Grimes 	 *	is set when we are retransmitting
350df8bae1dSRodney W. Grimes 	 * The output side is idle when both timers are zero.
351df8bae1dSRodney W. Grimes 	 *
352df8bae1dSRodney W. Grimes 	 * If send window is too small, there is data to transmit, and no
353df8bae1dSRodney W. Grimes 	 * retransmit or persist is pending, then go to persist state.
354df8bae1dSRodney W. Grimes 	 * If nothing happens soon, send when timer expires:
355df8bae1dSRodney W. Grimes 	 * if window is nonzero, transmit what we can,
356df8bae1dSRodney W. Grimes 	 * otherwise force out a byte.
357df8bae1dSRodney W. Grimes 	 */
3589b8b58e0SJonathan Lemon 	if (so->so_snd.sb_cc && !callout_active(tp->tt_rexmt) &&
3599b8b58e0SJonathan Lemon 	    !callout_active(tp->tt_persist)) {
360df8bae1dSRodney W. Grimes 		tp->t_rxtshift = 0;
361df8bae1dSRodney W. Grimes 		tcp_setpersist(tp);
362df8bae1dSRodney W. Grimes 	}
363df8bae1dSRodney W. Grimes 
364df8bae1dSRodney W. Grimes 	/*
365df8bae1dSRodney W. Grimes 	 * No reason to send a segment, just return.
366df8bae1dSRodney W. Grimes 	 */
367df8bae1dSRodney W. Grimes 	return (0);
368df8bae1dSRodney W. Grimes 
369df8bae1dSRodney W. Grimes send:
370df8bae1dSRodney W. Grimes 	/*
371df8bae1dSRodney W. Grimes 	 * Before ESTABLISHED, force sending of initial options
372df8bae1dSRodney W. Grimes 	 * unless TCP set not to do any options.
373df8bae1dSRodney W. Grimes 	 * NOTE: we assume that the IP/TCP header plus TCP options
374df8bae1dSRodney W. Grimes 	 * always fit in a single mbuf, leaving room for a maximum
375df8bae1dSRodney W. Grimes 	 * link header, i.e.
376df8bae1dSRodney W. Grimes 	 *	max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MHLEN
377df8bae1dSRodney W. Grimes 	 */
378df8bae1dSRodney W. Grimes 	optlen = 0;
379fb59c426SYoshinobu Inoue #ifdef INET6
380fb59c426SYoshinobu Inoue 	if (isipv6)
381fb59c426SYoshinobu Inoue 		hdrlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
382fb59c426SYoshinobu Inoue 	else
383fb59c426SYoshinobu Inoue #endif
384df8bae1dSRodney W. Grimes 	hdrlen = sizeof (struct tcpiphdr);
385df8bae1dSRodney W. Grimes 	if (flags & TH_SYN) {
386df8bae1dSRodney W. Grimes 		tp->snd_nxt = tp->iss;
387df8bae1dSRodney W. Grimes 		if ((tp->t_flags & TF_NOOPT) == 0) {
388df8bae1dSRodney W. Grimes 			u_short mss;
389df8bae1dSRodney W. Grimes 
390df8bae1dSRodney W. Grimes 			opt[0] = TCPOPT_MAXSEG;
391a0292f23SGarrett Wollman 			opt[1] = TCPOLEN_MAXSEG;
392a0292f23SGarrett Wollman 			mss = htons((u_short) tcp_mssopt(tp));
39394a5d9b6SDavid Greenman 			(void)memcpy(opt + 2, &mss, sizeof(mss));
394a0292f23SGarrett Wollman 			optlen = TCPOLEN_MAXSEG;
395df8bae1dSRodney W. Grimes 
396df8bae1dSRodney W. Grimes 			if ((tp->t_flags & TF_REQ_SCALE) &&
397df8bae1dSRodney W. Grimes 			    ((flags & TH_ACK) == 0 ||
398df8bae1dSRodney W. Grimes 			    (tp->t_flags & TF_RCVD_SCALE))) {
3999105bb46SBruce Evans 				*((u_int32_t *)(opt + optlen)) = htonl(
400df8bae1dSRodney W. Grimes 					TCPOPT_NOP << 24 |
401df8bae1dSRodney W. Grimes 					TCPOPT_WINDOW << 16 |
402df8bae1dSRodney W. Grimes 					TCPOLEN_WINDOW << 8 |
403df8bae1dSRodney W. Grimes 					tp->request_r_scale);
404df8bae1dSRodney W. Grimes 				optlen += 4;
405df8bae1dSRodney W. Grimes 			}
406df8bae1dSRodney W. Grimes 		}
407df8bae1dSRodney W. Grimes  	}
408df8bae1dSRodney W. Grimes 
409df8bae1dSRodney W. Grimes  	/*
410df8bae1dSRodney W. Grimes 	 * Send a timestamp and echo-reply if this is a SYN and our side
411df8bae1dSRodney W. Grimes 	 * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
412df8bae1dSRodney W. Grimes 	 * and our peer have sent timestamps in our SYN's.
413df8bae1dSRodney W. Grimes  	 */
414df8bae1dSRodney W. Grimes  	if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
415df8bae1dSRodney W. Grimes  	    (flags & TH_RST) == 0 &&
416a0292f23SGarrett Wollman 	    ((flags & TH_ACK) == 0 ||
417df8bae1dSRodney W. Grimes 	     (tp->t_flags & TF_RCVD_TSTMP))) {
4189105bb46SBruce Evans 		u_int32_t *lp = (u_int32_t *)(opt + optlen);
419df8bae1dSRodney W. Grimes 
420df8bae1dSRodney W. Grimes  		/* Form timestamp option as shown in appendix A of RFC 1323. */
421df8bae1dSRodney W. Grimes  		*lp++ = htonl(TCPOPT_TSTAMP_HDR);
4229b8b58e0SJonathan Lemon  		*lp++ = htonl(ticks);
423df8bae1dSRodney W. Grimes  		*lp   = htonl(tp->ts_recent);
424df8bae1dSRodney W. Grimes  		optlen += TCPOLEN_TSTAMP_APPA;
425df8bae1dSRodney W. Grimes  	}
426df8bae1dSRodney W. Grimes 
427a0292f23SGarrett Wollman  	/*
428a0292f23SGarrett Wollman 	 * Send `CC-family' options if our side wants to use them (TF_REQ_CC),
429a0292f23SGarrett Wollman 	 * options are allowed (!TF_NOOPT) and it's not a RST.
430a0292f23SGarrett Wollman  	 */
431a0292f23SGarrett Wollman  	if ((tp->t_flags & (TF_REQ_CC|TF_NOOPT)) == TF_REQ_CC &&
432a0292f23SGarrett Wollman  	     (flags & TH_RST) == 0) {
433a0292f23SGarrett Wollman 		switch (flags & (TH_SYN|TH_ACK)) {
434a0292f23SGarrett Wollman 		/*
435a0292f23SGarrett Wollman 		 * This is a normal ACK, send CC if we received CC before
436a0292f23SGarrett Wollman 		 * from our peer.
437a0292f23SGarrett Wollman 		 */
438a0292f23SGarrett Wollman 		case TH_ACK:
439a0292f23SGarrett Wollman 			if (!(tp->t_flags & TF_RCVD_CC))
440a0292f23SGarrett Wollman 				break;
441a0292f23SGarrett Wollman 			/*FALLTHROUGH*/
442a0292f23SGarrett Wollman 
443a0292f23SGarrett Wollman 		/*
444a0292f23SGarrett Wollman 		 * We can only get here in T/TCP's SYN_SENT* state, when
445a0292f23SGarrett Wollman 		 * we're a sending a non-SYN segment without waiting for
446a0292f23SGarrett Wollman 		 * the ACK of our SYN.  A check above assures that we only
447a0292f23SGarrett Wollman 		 * do this if our peer understands T/TCP.
448a0292f23SGarrett Wollman 		 */
449a0292f23SGarrett Wollman 		case 0:
450a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
451a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
452a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_CC;
453a0292f23SGarrett Wollman 			opt[optlen++] = TCPOLEN_CC;
454a0292f23SGarrett Wollman 			*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
455a0292f23SGarrett Wollman 
456a0292f23SGarrett Wollman 			optlen += 4;
457a0292f23SGarrett Wollman 			break;
458a0292f23SGarrett Wollman 
459a0292f23SGarrett Wollman 		/*
460a0292f23SGarrett Wollman 		 * This is our initial SYN, check whether we have to use
461a0292f23SGarrett Wollman 		 * CC or CC.new.
462a0292f23SGarrett Wollman 		 */
463a0292f23SGarrett Wollman 		case TH_SYN:
464a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
465a0292f23SGarrett Wollman 			opt[optlen++] = TCPOPT_NOP;
466a45d2726SAndras Olah 			opt[optlen++] = tp->t_flags & TF_SENDCCNEW ?
467a45d2726SAndras Olah 						TCPOPT_CCNEW : TCPOPT_CC;
468a0292f23SGarrett Wollman 			opt[optlen++] = TCPOLEN_CC;
469a0292f23SGarrett Wollman 			*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
470a0292f23SGarrett Wollman  			optlen += 4;
471a0292f23SGarrett Wollman 			break;
472a0292f23SGarrett Wollman 
473a0292f23SGarrett Wollman 		/*
474a0292f23SGarrett Wollman 		 * This is a SYN,ACK; send CC and CC.echo if we received
475a0292f23SGarrett Wollman 		 * CC from our peer.
476a0292f23SGarrett Wollman 		 */
477a0292f23SGarrett Wollman 		case (TH_SYN|TH_ACK):
478a0292f23SGarrett Wollman 			if (tp->t_flags & TF_RCVD_CC) {
479a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
480a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
481a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_CC;
482a0292f23SGarrett Wollman 				opt[optlen++] = TCPOLEN_CC;
483a0292f23SGarrett Wollman 				*(u_int32_t *)&opt[optlen] =
484a0292f23SGarrett Wollman 					htonl(tp->cc_send);
485a0292f23SGarrett Wollman 				optlen += 4;
486a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
487a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_NOP;
488a0292f23SGarrett Wollman 				opt[optlen++] = TCPOPT_CCECHO;
489a0292f23SGarrett Wollman 				opt[optlen++] = TCPOLEN_CC;
490a0292f23SGarrett Wollman 				*(u_int32_t *)&opt[optlen] =
491a0292f23SGarrett Wollman 					htonl(tp->cc_recv);
492a0292f23SGarrett Wollman 				optlen += 4;
493a0292f23SGarrett Wollman 			}
494a0292f23SGarrett Wollman 			break;
495a0292f23SGarrett Wollman 		}
496a0292f23SGarrett Wollman  	}
497a0292f23SGarrett Wollman 
498df8bae1dSRodney W. Grimes  	hdrlen += optlen;
499df8bae1dSRodney W. Grimes 
500fb59c426SYoshinobu Inoue #ifdef INET6
501fb59c426SYoshinobu Inoue 	if (isipv6)
502fb59c426SYoshinobu Inoue 		ipoptlen = ip6_optlen(tp->t_inpcb);
503fb59c426SYoshinobu Inoue 	else
504fb59c426SYoshinobu Inoue #endif
505fb59c426SYoshinobu Inoue       {
506a04884fcSBill Fenner 	if (tp->t_inpcb->inp_options) {
507a04884fcSBill Fenner 		ipoptlen = tp->t_inpcb->inp_options->m_len -
508a04884fcSBill Fenner 				offsetof(struct ipoption, ipopt_list);
509a04884fcSBill Fenner 	} else {
510a04884fcSBill Fenner 		ipoptlen = 0;
511a04884fcSBill Fenner 	}
512fb59c426SYoshinobu Inoue       }
513fb59c426SYoshinobu Inoue #ifdef IPSEC
514fb59c426SYoshinobu Inoue 	ipoptlen += ipsec_hdrsiz_tcp(tp);
515fb59c426SYoshinobu Inoue #endif
516a04884fcSBill Fenner 
517df8bae1dSRodney W. Grimes 	/*
518df8bae1dSRodney W. Grimes 	 * Adjust data length if insertion of options will
519a0292f23SGarrett Wollman 	 * bump the packet length beyond the t_maxopd length.
520a0292f23SGarrett Wollman 	 * Clear the FIN bit because we cut off the tail of
521a0292f23SGarrett Wollman 	 * the segment.
522df8bae1dSRodney W. Grimes 	 */
523a04884fcSBill Fenner 	if (len + optlen + ipoptlen > tp->t_maxopd) {
524297a37f3SDavid Greenman 		/*
525297a37f3SDavid Greenman 		 * If there is still more to send, don't close the connection.
526297a37f3SDavid Greenman 		 */
527297a37f3SDavid Greenman 		flags &= ~TH_FIN;
528a04884fcSBill Fenner 		len = tp->t_maxopd - optlen - ipoptlen;
529df8bae1dSRodney W. Grimes 		sendalot = 1;
530df8bae1dSRodney W. Grimes 	}
531df8bae1dSRodney W. Grimes 
532a0292f23SGarrett Wollman /*#ifdef DIAGNOSTIC*/
533df8bae1dSRodney W. Grimes  	if (max_linkhdr + hdrlen > MHLEN)
534df8bae1dSRodney W. Grimes 		panic("tcphdr too big");
535a0292f23SGarrett Wollman /*#endif*/
536df8bae1dSRodney W. Grimes 
537df8bae1dSRodney W. Grimes 	/*
538df8bae1dSRodney W. Grimes 	 * Grab a header mbuf, attaching a copy of data to
539df8bae1dSRodney W. Grimes 	 * be transmitted, and initialize the header from
540df8bae1dSRodney W. Grimes 	 * the template for sends on this connection.
541df8bae1dSRodney W. Grimes 	 */
542df8bae1dSRodney W. Grimes 	if (len) {
543df8bae1dSRodney W. Grimes 		if (tp->t_force && len == 1)
544df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndprobe++;
545df8bae1dSRodney W. Grimes 		else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
546df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndrexmitpack++;
547df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndrexmitbyte += len;
548df8bae1dSRodney W. Grimes 		} else {
549df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndpack++;
550df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndbyte += len;
551df8bae1dSRodney W. Grimes 		}
552df8bae1dSRodney W. Grimes #ifdef notyet
553df8bae1dSRodney W. Grimes 		if ((m = m_copypack(so->so_snd.sb_mb, off,
554df8bae1dSRodney W. Grimes 		    (int)len, max_linkhdr + hdrlen)) == 0) {
555df8bae1dSRodney W. Grimes 			error = ENOBUFS;
556df8bae1dSRodney W. Grimes 			goto out;
557df8bae1dSRodney W. Grimes 		}
558df8bae1dSRodney W. Grimes 		/*
559df8bae1dSRodney W. Grimes 		 * m_copypack left space for our hdr; use it.
560df8bae1dSRodney W. Grimes 		 */
561df8bae1dSRodney W. Grimes 		m->m_len += hdrlen;
562df8bae1dSRodney W. Grimes 		m->m_data -= hdrlen;
563df8bae1dSRodney W. Grimes #else
564df8bae1dSRodney W. Grimes 		MGETHDR(m, M_DONTWAIT, MT_HEADER);
565df8bae1dSRodney W. Grimes 		if (m == NULL) {
566df8bae1dSRodney W. Grimes 			error = ENOBUFS;
567df8bae1dSRodney W. Grimes 			goto out;
568df8bae1dSRodney W. Grimes 		}
569fb59c426SYoshinobu Inoue #ifdef INET6
570fb59c426SYoshinobu Inoue 		if (isipv6 && (MHLEN < hdrlen + max_linkhdr) &&
571fb59c426SYoshinobu Inoue 		    MHLEN >= hdrlen) {
572fb59c426SYoshinobu Inoue 			MH_ALIGN(m, hdrlen);
573fb59c426SYoshinobu Inoue 		} else
574fb59c426SYoshinobu Inoue #endif
575df8bae1dSRodney W. Grimes 		m->m_data += max_linkhdr;
576df8bae1dSRodney W. Grimes 		m->m_len = hdrlen;
577df8bae1dSRodney W. Grimes 		if (len <= MHLEN - hdrlen - max_linkhdr) {
578df8bae1dSRodney W. Grimes 			m_copydata(so->so_snd.sb_mb, off, (int) len,
579df8bae1dSRodney W. Grimes 			    mtod(m, caddr_t) + hdrlen);
580df8bae1dSRodney W. Grimes 			m->m_len += len;
581df8bae1dSRodney W. Grimes 		} else {
582df8bae1dSRodney W. Grimes 			m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
58351823c3aSGarrett Wollman 			if (m->m_next == 0) {
584d7f570e6SGarrett Wollman 				(void) m_free(m);
58551823c3aSGarrett Wollman 				error = ENOBUFS;
58651823c3aSGarrett Wollman 				goto out;
58751823c3aSGarrett Wollman 			}
588df8bae1dSRodney W. Grimes 		}
589df8bae1dSRodney W. Grimes #endif
590df8bae1dSRodney W. Grimes 		/*
591df8bae1dSRodney W. Grimes 		 * If we're sending everything we've got, set PUSH.
592df8bae1dSRodney W. Grimes 		 * (This will keep happy those implementations which only
593df8bae1dSRodney W. Grimes 		 * give data to the user when a buffer fills or
594df8bae1dSRodney W. Grimes 		 * a PUSH comes in.)
595df8bae1dSRodney W. Grimes 		 */
596df8bae1dSRodney W. Grimes 		if (off + len == so->so_snd.sb_cc)
597df8bae1dSRodney W. Grimes 			flags |= TH_PUSH;
598df8bae1dSRodney W. Grimes 	} else {
599df8bae1dSRodney W. Grimes 		if (tp->t_flags & TF_ACKNOW)
600df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndacks++;
601df8bae1dSRodney W. Grimes 		else if (flags & (TH_SYN|TH_FIN|TH_RST))
602df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndctrl++;
603df8bae1dSRodney W. Grimes 		else if (SEQ_GT(tp->snd_up, tp->snd_una))
604df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndurg++;
605df8bae1dSRodney W. Grimes 		else
606df8bae1dSRodney W. Grimes 			tcpstat.tcps_sndwinup++;
607df8bae1dSRodney W. Grimes 
608df8bae1dSRodney W. Grimes 		MGETHDR(m, M_DONTWAIT, MT_HEADER);
609df8bae1dSRodney W. Grimes 		if (m == NULL) {
610df8bae1dSRodney W. Grimes 			error = ENOBUFS;
611df8bae1dSRodney W. Grimes 			goto out;
612df8bae1dSRodney W. Grimes 		}
613fb59c426SYoshinobu Inoue #ifdef INET6
614fb59c426SYoshinobu Inoue 		if (isipv6 && (MHLEN < hdrlen + max_linkhdr) &&
615fb59c426SYoshinobu Inoue 		    MHLEN >= hdrlen) {
616fb59c426SYoshinobu Inoue 			MH_ALIGN(m, hdrlen);
617fb59c426SYoshinobu Inoue 		} else
618fb59c426SYoshinobu Inoue #endif
619df8bae1dSRodney W. Grimes 		m->m_data += max_linkhdr;
620df8bae1dSRodney W. Grimes 		m->m_len = hdrlen;
621df8bae1dSRodney W. Grimes 	}
622df8bae1dSRodney W. Grimes 	m->m_pkthdr.rcvif = (struct ifnet *)0;
623df8bae1dSRodney W. Grimes 	if (tp->t_template == 0)
624df8bae1dSRodney W. Grimes 		panic("tcp_output");
625fb59c426SYoshinobu Inoue #ifdef INET6
626fb59c426SYoshinobu Inoue 	if (isipv6) {
627fb59c426SYoshinobu Inoue 		ip6 = mtod(m, struct ip6_hdr *);
628fb59c426SYoshinobu Inoue 		th = (struct tcphdr *)(ip6 + 1);
629fb59c426SYoshinobu Inoue 		bcopy((caddr_t)tp->t_template->tt_ipgen, (caddr_t)ip6,
630fb59c426SYoshinobu Inoue 		      sizeof(struct ip6_hdr));
631fb59c426SYoshinobu Inoue 		bcopy((caddr_t)&tp->t_template->tt_t, (caddr_t)th,
632fb59c426SYoshinobu Inoue 		      sizeof(struct tcphdr));
633fb59c426SYoshinobu Inoue 	} else
634fb59c426SYoshinobu Inoue #endif /* INET6 */
635fb59c426SYoshinobu Inoue       {
636fb59c426SYoshinobu Inoue 	ip = mtod(m, struct ip *);
637fb59c426SYoshinobu Inoue 	ipov = (struct ipovly *)ip;
638fb59c426SYoshinobu Inoue 	th = (struct tcphdr *)(ip + 1);
639fb59c426SYoshinobu Inoue 	bcopy((caddr_t)tp->t_template->tt_ipgen, (caddr_t)ip,
640fb59c426SYoshinobu Inoue 	      sizeof(struct ip));
641fb59c426SYoshinobu Inoue 	bcopy((caddr_t)&tp->t_template->tt_t, (caddr_t)th,
642fb59c426SYoshinobu Inoue 	      sizeof(struct tcphdr));
643fb59c426SYoshinobu Inoue       }
644df8bae1dSRodney W. Grimes 
645df8bae1dSRodney W. Grimes 	/*
646df8bae1dSRodney W. Grimes 	 * Fill in fields, remembering maximum advertised
647df8bae1dSRodney W. Grimes 	 * window for use in delaying messages about window sizes.
648df8bae1dSRodney W. Grimes 	 * If resending a FIN, be sure not to use a new sequence number.
649df8bae1dSRodney W. Grimes 	 */
650df8bae1dSRodney W. Grimes 	if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
651df8bae1dSRodney W. Grimes 	    tp->snd_nxt == tp->snd_max)
652df8bae1dSRodney W. Grimes 		tp->snd_nxt--;
653df8bae1dSRodney W. Grimes 	/*
654df8bae1dSRodney W. Grimes 	 * If we are doing retransmissions, then snd_nxt will
655df8bae1dSRodney W. Grimes 	 * not reflect the first unsent octet.  For ACK only
656df8bae1dSRodney W. Grimes 	 * packets, we do not want the sequence number of the
657df8bae1dSRodney W. Grimes 	 * retransmitted packet, we want the sequence number
658df8bae1dSRodney W. Grimes 	 * of the next unsent octet.  So, if there is no data
659df8bae1dSRodney W. Grimes 	 * (and no SYN or FIN), use snd_max instead of snd_nxt
660df8bae1dSRodney W. Grimes 	 * when filling in ti_seq.  But if we are in persist
661df8bae1dSRodney W. Grimes 	 * state, snd_max might reflect one byte beyond the
662df8bae1dSRodney W. Grimes 	 * right edge of the window, so use snd_nxt in that
663df8bae1dSRodney W. Grimes 	 * case, since we know we aren't doing a retransmission.
664df8bae1dSRodney W. Grimes 	 * (retransmit and persist are mutually exclusive...)
665df8bae1dSRodney W. Grimes 	 */
6669b8b58e0SJonathan Lemon 	if (len || (flags & (TH_SYN|TH_FIN))
6679b8b58e0SJonathan Lemon 	    || callout_active(tp->tt_persist))
668fb59c426SYoshinobu Inoue 		th->th_seq = htonl(tp->snd_nxt);
669df8bae1dSRodney W. Grimes 	else
670fb59c426SYoshinobu Inoue 		th->th_seq = htonl(tp->snd_max);
671fb59c426SYoshinobu Inoue 	th->th_ack = htonl(tp->rcv_nxt);
672df8bae1dSRodney W. Grimes 	if (optlen) {
673fb59c426SYoshinobu Inoue 		bcopy(opt, th + 1, optlen);
674fb59c426SYoshinobu Inoue 		th->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
675df8bae1dSRodney W. Grimes 	}
676fb59c426SYoshinobu Inoue 	th->th_flags = flags;
677df8bae1dSRodney W. Grimes 	/*
678df8bae1dSRodney W. Grimes 	 * Calculate receive window.  Don't shrink window,
679df8bae1dSRodney W. Grimes 	 * but avoid silly window syndrome.
680df8bae1dSRodney W. Grimes 	 */
681df8bae1dSRodney W. Grimes 	if (win < (long)(so->so_rcv.sb_hiwat / 4) && win < (long)tp->t_maxseg)
682df8bae1dSRodney W. Grimes 		win = 0;
683df8bae1dSRodney W. Grimes 	if (win < (long)(tp->rcv_adv - tp->rcv_nxt))
684df8bae1dSRodney W. Grimes 		win = (long)(tp->rcv_adv - tp->rcv_nxt);
685610a2e9cSBill Fenner 	if (win > (long)TCP_MAXWIN << tp->rcv_scale)
686610a2e9cSBill Fenner 		win = (long)TCP_MAXWIN << tp->rcv_scale;
687fb59c426SYoshinobu Inoue 	th->th_win = htons((u_short) (win>>tp->rcv_scale));
688df8bae1dSRodney W. Grimes 	if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
689fb59c426SYoshinobu Inoue 		th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt));
690fb59c426SYoshinobu Inoue 		th->th_flags |= TH_URG;
691df8bae1dSRodney W. Grimes 	} else
692df8bae1dSRodney W. Grimes 		/*
693df8bae1dSRodney W. Grimes 		 * If no urgent pointer to send, then we pull
694df8bae1dSRodney W. Grimes 		 * the urgent pointer to the left edge of the send window
695df8bae1dSRodney W. Grimes 		 * so that it doesn't drift into the send window on sequence
696df8bae1dSRodney W. Grimes 		 * number wraparound.
697df8bae1dSRodney W. Grimes 		 */
698df8bae1dSRodney W. Grimes 		tp->snd_up = tp->snd_una;		/* drag it along */
699df8bae1dSRodney W. Grimes 
700df8bae1dSRodney W. Grimes 	/*
701df8bae1dSRodney W. Grimes 	 * Put TCP length in extended header, and then
702df8bae1dSRodney W. Grimes 	 * checksum extended header and data.
703df8bae1dSRodney W. Grimes 	 */
704fb59c426SYoshinobu Inoue 	m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */
705fb59c426SYoshinobu Inoue #ifdef INET6
706fb59c426SYoshinobu Inoue 	if (isipv6)
707fb59c426SYoshinobu Inoue 		/*
708fb59c426SYoshinobu Inoue 		 * ip6_plen is not need to be filled now, and will be filled
709fb59c426SYoshinobu Inoue 		 * in ip6_output.
710fb59c426SYoshinobu Inoue 		 */
711fb59c426SYoshinobu Inoue 		th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr),
712fb59c426SYoshinobu Inoue 				       sizeof(struct tcphdr) + optlen + len);
713fb59c426SYoshinobu Inoue 	else
714fb59c426SYoshinobu Inoue #endif /* INET6 */
715fb59c426SYoshinobu Inoue       {
716df8bae1dSRodney W. Grimes 	if (len + optlen)
717fb59c426SYoshinobu Inoue 		ipov->ih_len = htons((u_short)(sizeof (struct tcphdr) +
718df8bae1dSRodney W. Grimes 		    optlen + len));
719fb59c426SYoshinobu Inoue 	th->th_sum = in_cksum(m, (int)(hdrlen + len));
720fb59c426SYoshinobu Inoue #ifdef INET6
721fb59c426SYoshinobu Inoue 	/* Re-initialization for later version check */
722fb59c426SYoshinobu Inoue 	ip->ip_v = IPVERSION;
723fb59c426SYoshinobu Inoue 
724fb59c426SYoshinobu Inoue #endif /* INET6 */
725fb59c426SYoshinobu Inoue       }
726df8bae1dSRodney W. Grimes 
727df8bae1dSRodney W. Grimes 	/*
728df8bae1dSRodney W. Grimes 	 * In transmit state, time the transmission and arrange for
729df8bae1dSRodney W. Grimes 	 * the retransmit.  In persist state, just set snd_max.
730df8bae1dSRodney W. Grimes 	 */
7319b8b58e0SJonathan Lemon 	if (tp->t_force == 0 || !callout_active(tp->tt_persist)) {
732df8bae1dSRodney W. Grimes 		tcp_seq startseq = tp->snd_nxt;
733df8bae1dSRodney W. Grimes 
734df8bae1dSRodney W. Grimes 		/*
735df8bae1dSRodney W. Grimes 		 * Advance snd_nxt over sequence space of this segment.
736df8bae1dSRodney W. Grimes 		 */
737df8bae1dSRodney W. Grimes 		if (flags & (TH_SYN|TH_FIN)) {
738df8bae1dSRodney W. Grimes 			if (flags & TH_SYN)
739df8bae1dSRodney W. Grimes 				tp->snd_nxt++;
740df8bae1dSRodney W. Grimes 			if (flags & TH_FIN) {
741df8bae1dSRodney W. Grimes 				tp->snd_nxt++;
742df8bae1dSRodney W. Grimes 				tp->t_flags |= TF_SENTFIN;
743df8bae1dSRodney W. Grimes 			}
744df8bae1dSRodney W. Grimes 		}
745df8bae1dSRodney W. Grimes 		tp->snd_nxt += len;
746df8bae1dSRodney W. Grimes 		if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
747df8bae1dSRodney W. Grimes 			tp->snd_max = tp->snd_nxt;
748df8bae1dSRodney W. Grimes 			/*
749df8bae1dSRodney W. Grimes 			 * Time this transmission if not a retransmission and
750df8bae1dSRodney W. Grimes 			 * not currently timing anything.
751df8bae1dSRodney W. Grimes 			 */
7529b8b58e0SJonathan Lemon 			if (tp->t_rtttime == 0) {
7539b8b58e0SJonathan Lemon 				tp->t_rtttime = ticks;
754df8bae1dSRodney W. Grimes 				tp->t_rtseq = startseq;
755df8bae1dSRodney W. Grimes 				tcpstat.tcps_segstimed++;
756df8bae1dSRodney W. Grimes 			}
757df8bae1dSRodney W. Grimes 		}
758df8bae1dSRodney W. Grimes 
759df8bae1dSRodney W. Grimes 		/*
760df8bae1dSRodney W. Grimes 		 * Set retransmit timer if not currently set,
761df8bae1dSRodney W. Grimes 		 * and not doing an ack or a keep-alive probe.
762df8bae1dSRodney W. Grimes 		 * Initial value for retransmit timer is smoothed
763df8bae1dSRodney W. Grimes 		 * round-trip time + 2 * round-trip time variance.
764df8bae1dSRodney W. Grimes 		 * Initialize shift counter which is used for backoff
765df8bae1dSRodney W. Grimes 		 * of retransmit time.
766df8bae1dSRodney W. Grimes 		 */
7679b8b58e0SJonathan Lemon 		if (!callout_active(tp->tt_rexmt) &&
768df8bae1dSRodney W. Grimes 		    tp->snd_nxt != tp->snd_una) {
7699b8b58e0SJonathan Lemon 			callout_reset(tp->tt_rexmt, tp->t_rxtcur,
7709b8b58e0SJonathan Lemon 				      tcp_timer_rexmt, tp);
7719b8b58e0SJonathan Lemon 			if (callout_active(tp->tt_persist)) {
7729b8b58e0SJonathan Lemon 				callout_stop(tp->tt_persist);
773df8bae1dSRodney W. Grimes 				tp->t_rxtshift = 0;
774df8bae1dSRodney W. Grimes 			}
775df8bae1dSRodney W. Grimes 		}
776df8bae1dSRodney W. Grimes 	} else
777df8bae1dSRodney W. Grimes 		if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
778df8bae1dSRodney W. Grimes 			tp->snd_max = tp->snd_nxt + len;
779df8bae1dSRodney W. Grimes 
780610ee2f9SDavid Greenman #ifdef TCPDEBUG
781df8bae1dSRodney W. Grimes 	/*
782df8bae1dSRodney W. Grimes 	 * Trace.
783df8bae1dSRodney W. Grimes 	 */
784df8bae1dSRodney W. Grimes 	if (so->so_options & SO_DEBUG)
785fb59c426SYoshinobu Inoue 		tcp_trace(TA_OUTPUT, tp->t_state, tp, mtod(m, void *), th, 0);
786610ee2f9SDavid Greenman #endif
787df8bae1dSRodney W. Grimes 
788df8bae1dSRodney W. Grimes 	/*
789df8bae1dSRodney W. Grimes 	 * Fill in IP length and desired time to live and
790df8bae1dSRodney W. Grimes 	 * send to IP level.  There should be a better way
791df8bae1dSRodney W. Grimes 	 * to handle ttl and tos; we could keep them in
792df8bae1dSRodney W. Grimes 	 * the template, but need a way to checksum without them.
793df8bae1dSRodney W. Grimes 	 */
794fb59c426SYoshinobu Inoue 	/*
795fb59c426SYoshinobu Inoue 	 * m->m_pkthdr.len should have been set before cksum calcuration,
796fb59c426SYoshinobu Inoue 	 * because in6_cksum() need it.
797fb59c426SYoshinobu Inoue 	 */
798fb59c426SYoshinobu Inoue #ifdef INET6
799fb59c426SYoshinobu Inoue 	if (isipv6) {
800fb59c426SYoshinobu Inoue 		/*
801fb59c426SYoshinobu Inoue 		 * we separately set hoplimit for every segment, since the
802fb59c426SYoshinobu Inoue 		 * user might want to change the value via setsockopt.
803fb59c426SYoshinobu Inoue 		 * Also, desired default hop limit might be changed via
804fb59c426SYoshinobu Inoue 		 * Neighbor Discovery.
805fb59c426SYoshinobu Inoue 		 */
806fb59c426SYoshinobu Inoue 		ip6->ip6_hlim = in6_selecthlim(tp->t_inpcb,
807fb59c426SYoshinobu Inoue 					       tp->t_inpcb->in6p_route.ro_rt ?
808fb59c426SYoshinobu Inoue 					       tp->t_inpcb->in6p_route.ro_rt->rt_ifp
809fb59c426SYoshinobu Inoue 					       : NULL);
810fb59c426SYoshinobu Inoue 
811fb59c426SYoshinobu Inoue 		/* TODO: IPv6 IP6TOS_ECT bit on */
812fb59c426SYoshinobu Inoue #ifdef IPSEC
813fb59c426SYoshinobu Inoue 		m->m_pkthdr.rcvif = (struct ifnet *)so;
814fb59c426SYoshinobu Inoue #endif /*IPSEC*/
815fb59c426SYoshinobu Inoue 		error = ip6_output(m,
816fb59c426SYoshinobu Inoue 			    tp->t_inpcb->in6p_outputopts,
817fb59c426SYoshinobu Inoue 			    &tp->t_inpcb->in6p_route,
818fb59c426SYoshinobu Inoue 			    (so->so_options & SO_DONTROUTE)|IPV6_SOCKINMRCVIF,
819fb59c426SYoshinobu Inoue 			    NULL, NULL);
820fb59c426SYoshinobu Inoue 	} else
821fb59c426SYoshinobu Inoue #endif /* INET6 */
822df8bae1dSRodney W. Grimes     {
823f138387aSGarrett Wollman 	struct rtentry *rt;
824fb59c426SYoshinobu Inoue 	ip->ip_len = m->m_pkthdr.len;
825fb59c426SYoshinobu Inoue 	ip->ip_ttl = tp->t_inpcb->inp_ip_ttl;	/* XXX */
826fb59c426SYoshinobu Inoue 	ip->ip_tos = tp->t_inpcb->inp_ip_tos;	/* XXX */
827f138387aSGarrett Wollman 	/*
828f138387aSGarrett Wollman 	 * See if we should do MTU discovery.  We do it only if the following
829f138387aSGarrett Wollman 	 * are true:
830f138387aSGarrett Wollman 	 *	1) we have a valid route to the destination
831f138387aSGarrett Wollman 	 *	2) the MTU is not locked (if it is, then discovery has been
832f138387aSGarrett Wollman 	 *	   disabled)
833f138387aSGarrett Wollman 	 */
8349a039a5fSDavid Greenman 	if (path_mtu_discovery
8359a039a5fSDavid Greenman 	    && (rt = tp->t_inpcb->inp_route.ro_rt)
836f138387aSGarrett Wollman 	    && rt->rt_flags & RTF_UP
837f138387aSGarrett Wollman 	    && !(rt->rt_rmx.rmx_locks & RTV_MTU)) {
838fb59c426SYoshinobu Inoue 		ip->ip_off |= IP_DF;
839f138387aSGarrett Wollman 	}
840df8bae1dSRodney W. Grimes 	error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route,
841fb59c426SYoshinobu Inoue 	    (so->so_options & SO_DONTROUTE)|IP_SOCKINMRCVIF, 0);
842df8bae1dSRodney W. Grimes     }
843df8bae1dSRodney W. Grimes 	if (error) {
844df8bae1dSRodney W. Grimes out:
845df8bae1dSRodney W. Grimes 		if (error == ENOBUFS) {
846df8bae1dSRodney W. Grimes 			tcp_quench(tp->t_inpcb, 0);
847df8bae1dSRodney W. Grimes 			return (0);
848df8bae1dSRodney W. Grimes 		}
8493d1f141bSGarrett Wollman 		if (error == EMSGSIZE) {
8503d1f141bSGarrett Wollman 			/*
8513d1f141bSGarrett Wollman 			 * ip_output() will have already fixed the route
8523d1f141bSGarrett Wollman 			 * for us.  tcp_mtudisc() will, as its last action,
8533d1f141bSGarrett Wollman 			 * initiate retransmission, so it is important to
8543d1f141bSGarrett Wollman 			 * not do so here.
8553d1f141bSGarrett Wollman 			 */
8563d1f141bSGarrett Wollman 			tcp_mtudisc(tp->t_inpcb, 0);
8573d1f141bSGarrett Wollman 			return 0;
8583d1f141bSGarrett Wollman 		}
859df8bae1dSRodney W. Grimes 		if ((error == EHOSTUNREACH || error == ENETDOWN)
860df8bae1dSRodney W. Grimes 		    && TCPS_HAVERCVDSYN(tp->t_state)) {
861df8bae1dSRodney W. Grimes 			tp->t_softerror = error;
862df8bae1dSRodney W. Grimes 			return (0);
863df8bae1dSRodney W. Grimes 		}
864df8bae1dSRodney W. Grimes 		return (error);
865df8bae1dSRodney W. Grimes 	}
866df8bae1dSRodney W. Grimes 	tcpstat.tcps_sndtotal++;
867df8bae1dSRodney W. Grimes 
868df8bae1dSRodney W. Grimes 	/*
869df8bae1dSRodney W. Grimes 	 * Data sent (as far as we can tell).
870df8bae1dSRodney W. Grimes 	 * If this advertises a larger window than any other segment,
871df8bae1dSRodney W. Grimes 	 * then remember the size of the advertised window.
872df8bae1dSRodney W. Grimes 	 * Any pending ACK has now been sent.
873df8bae1dSRodney W. Grimes 	 */
874df8bae1dSRodney W. Grimes 	if (win > 0 && SEQ_GT(tp->rcv_nxt+win, tp->rcv_adv))
875df8bae1dSRodney W. Grimes 		tp->rcv_adv = tp->rcv_nxt + win;
876df8bae1dSRodney W. Grimes 	tp->last_ack_sent = tp->rcv_nxt;
8779b8b58e0SJonathan Lemon 	tp->t_flags &= ~TF_ACKNOW;
8789b8b58e0SJonathan Lemon 	if (tcp_delack_enabled)
8799b8b58e0SJonathan Lemon 		callout_stop(tp->tt_delack);
880df8bae1dSRodney W. Grimes 	if (sendalot)
881df8bae1dSRodney W. Grimes 		goto again;
882df8bae1dSRodney W. Grimes 	return (0);
883df8bae1dSRodney W. Grimes }
884df8bae1dSRodney W. Grimes 
885df8bae1dSRodney W. Grimes void
886df8bae1dSRodney W. Grimes tcp_setpersist(tp)
887df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
888df8bae1dSRodney W. Grimes {
8899b8b58e0SJonathan Lemon 	int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1;
8909b8b58e0SJonathan Lemon 	int tt;
891df8bae1dSRodney W. Grimes 
8929b8b58e0SJonathan Lemon 	if (callout_active(tp->tt_rexmt))
8939b8b58e0SJonathan Lemon 		panic("tcp_setpersist: retransmit pending");
894df8bae1dSRodney W. Grimes 	/*
895df8bae1dSRodney W. Grimes 	 * Start/restart persistance timer.
896df8bae1dSRodney W. Grimes 	 */
8979b8b58e0SJonathan Lemon 	TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift],
898df8bae1dSRodney W. Grimes 		      TCPTV_PERSMIN, TCPTV_PERSMAX);
8999b8b58e0SJonathan Lemon 	callout_reset(tp->tt_persist, tt, tcp_timer_persist, tp);
900df8bae1dSRodney W. Grimes 	if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
901df8bae1dSRodney W. Grimes 		tp->t_rxtshift++;
902df8bae1dSRodney W. Grimes }
903