tcp_output.c revision 1.16 1 1.16 kml /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */
2 1.10 cgd
3 1.1 cgd /*
4 1.9 mycroft * Copyright (c) 1982, 1986, 1988, 1990, 1993
5 1.9 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd *
35 1.10 cgd * @(#)tcp_output.c 8.3 (Berkeley) 12/30/93
36 1.1 cgd */
37 1.1 cgd
38 1.4 mycroft #include <sys/param.h>
39 1.4 mycroft #include <sys/systm.h>
40 1.4 mycroft #include <sys/malloc.h>
41 1.4 mycroft #include <sys/mbuf.h>
42 1.4 mycroft #include <sys/protosw.h>
43 1.4 mycroft #include <sys/socket.h>
44 1.4 mycroft #include <sys/socketvar.h>
45 1.4 mycroft #include <sys/errno.h>
46 1.1 cgd
47 1.4 mycroft #include <net/route.h>
48 1.1 cgd
49 1.4 mycroft #include <netinet/in.h>
50 1.4 mycroft #include <netinet/in_systm.h>
51 1.4 mycroft #include <netinet/ip.h>
52 1.4 mycroft #include <netinet/in_pcb.h>
53 1.4 mycroft #include <netinet/ip_var.h>
54 1.4 mycroft #include <netinet/tcp.h>
55 1.1 cgd #define TCPOUTFLAGS
56 1.4 mycroft #include <netinet/tcp_fsm.h>
57 1.4 mycroft #include <netinet/tcp_seq.h>
58 1.4 mycroft #include <netinet/tcp_timer.h>
59 1.4 mycroft #include <netinet/tcp_var.h>
60 1.4 mycroft #include <netinet/tcpip.h>
61 1.4 mycroft #include <netinet/tcp_debug.h>
62 1.14 christos
63 1.14 christos #ifdef TUBA
64 1.14 christos #include <netiso/iso.h>
65 1.14 christos #include <netiso/tuba_table.h>
66 1.14 christos #endif
67 1.1 cgd
68 1.1 cgd #ifdef notyet
69 1.1 cgd extern struct mbuf *m_copypack();
70 1.1 cgd #endif
71 1.1 cgd
72 1.9 mycroft
73 1.9 mycroft #define MAX_TCPOPTLEN 32 /* max # bytes that go in options */
74 1.1 cgd
75 1.1 cgd /*
76 1.1 cgd * Tcp output routine: figure out what should be sent and send it.
77 1.1 cgd */
78 1.6 mycroft int
79 1.1 cgd tcp_output(tp)
80 1.1 cgd register struct tcpcb *tp;
81 1.1 cgd {
82 1.1 cgd register struct socket *so = tp->t_inpcb->inp_socket;
83 1.1 cgd register long len, win;
84 1.1 cgd int off, flags, error;
85 1.1 cgd register struct mbuf *m;
86 1.1 cgd register struct tcpiphdr *ti;
87 1.9 mycroft u_char opt[MAX_TCPOPTLEN];
88 1.1 cgd unsigned optlen, hdrlen;
89 1.1 cgd int idle, sendalot;
90 1.1 cgd
91 1.1 cgd /*
92 1.1 cgd * Determine length of data that should be transmitted,
93 1.1 cgd * and flags that will be used.
94 1.1 cgd * If there is some data or critical controls (SYN, RST)
95 1.1 cgd * to send, then transmit; otherwise, investigate further.
96 1.1 cgd */
97 1.1 cgd idle = (tp->snd_max == tp->snd_una);
98 1.1 cgd if (idle && tp->t_idle >= tp->t_rxtcur)
99 1.1 cgd /*
100 1.1 cgd * We have been idle for "a while" and no acks are
101 1.1 cgd * expected to clock out any data we send --
102 1.1 cgd * slow start to get ack "clock" running again.
103 1.1 cgd */
104 1.1 cgd tp->snd_cwnd = tp->t_maxseg;
105 1.1 cgd again:
106 1.1 cgd sendalot = 0;
107 1.1 cgd off = tp->snd_nxt - tp->snd_una;
108 1.1 cgd win = min(tp->snd_wnd, tp->snd_cwnd);
109 1.1 cgd
110 1.9 mycroft flags = tcp_outflags[tp->t_state];
111 1.1 cgd /*
112 1.1 cgd * If in persist timeout with window of 0, send 1 byte.
113 1.1 cgd * Otherwise, if window is small but nonzero
114 1.1 cgd * and timer expired, we will send what we can
115 1.1 cgd * and go to transmit state.
116 1.1 cgd */
117 1.1 cgd if (tp->t_force) {
118 1.9 mycroft if (win == 0) {
119 1.9 mycroft /*
120 1.9 mycroft * If we still have some data to send, then
121 1.9 mycroft * clear the FIN bit. Usually this would
122 1.9 mycroft * happen below when it realizes that we
123 1.9 mycroft * aren't sending all the data. However,
124 1.9 mycroft * if we have exactly 1 byte of unset data,
125 1.9 mycroft * then it won't clear the FIN bit below,
126 1.9 mycroft * and if we are in persist state, we wind
127 1.9 mycroft * up sending the packet without recording
128 1.9 mycroft * that we sent the FIN bit.
129 1.9 mycroft *
130 1.9 mycroft * We can't just blindly clear the FIN bit,
131 1.9 mycroft * because if we don't have any more data
132 1.9 mycroft * to send then the probe will be the FIN
133 1.9 mycroft * itself.
134 1.9 mycroft */
135 1.9 mycroft if (off < so->so_snd.sb_cc)
136 1.9 mycroft flags &= ~TH_FIN;
137 1.1 cgd win = 1;
138 1.9 mycroft } else {
139 1.1 cgd tp->t_timer[TCPT_PERSIST] = 0;
140 1.1 cgd tp->t_rxtshift = 0;
141 1.1 cgd }
142 1.1 cgd }
143 1.1 cgd
144 1.11 mycroft if (win < so->so_snd.sb_cc) {
145 1.11 mycroft len = win - off;
146 1.11 mycroft flags &= ~TH_FIN;
147 1.11 mycroft } else
148 1.11 mycroft len = so->so_snd.sb_cc - off;
149 1.1 cgd
150 1.1 cgd if (len < 0) {
151 1.1 cgd /*
152 1.1 cgd * If FIN has been sent but not acked,
153 1.1 cgd * but we haven't been called to retransmit,
154 1.1 cgd * len will be -1. Otherwise, window shrank
155 1.1 cgd * after we sent into it. If window shrank to 0,
156 1.1 cgd * cancel pending retransmit and pull snd_nxt
157 1.1 cgd * back to (closed) window. We will enter persist
158 1.1 cgd * state below. If the window didn't close completely,
159 1.1 cgd * just wait for an ACK.
160 1.1 cgd */
161 1.1 cgd len = 0;
162 1.1 cgd if (win == 0) {
163 1.1 cgd tp->t_timer[TCPT_REXMT] = 0;
164 1.1 cgd tp->snd_nxt = tp->snd_una;
165 1.1 cgd }
166 1.1 cgd }
167 1.1 cgd if (len > tp->t_maxseg) {
168 1.1 cgd len = tp->t_maxseg;
169 1.11 mycroft flags &= ~TH_FIN;
170 1.1 cgd sendalot = 1;
171 1.1 cgd }
172 1.1 cgd
173 1.1 cgd win = sbspace(&so->so_rcv);
174 1.1 cgd
175 1.1 cgd /*
176 1.1 cgd * Sender silly window avoidance. If connection is idle
177 1.1 cgd * and can send all data, a maximum segment,
178 1.1 cgd * at least a maximum default-size segment do it,
179 1.1 cgd * or are forced, do it; otherwise don't bother.
180 1.1 cgd * If peer's buffer is tiny, then send
181 1.1 cgd * when window is at least half open.
182 1.1 cgd * If retransmitting (possibly after persist timer forced us
183 1.1 cgd * to send into a small window), then must resend.
184 1.1 cgd */
185 1.1 cgd if (len) {
186 1.1 cgd if (len == tp->t_maxseg)
187 1.1 cgd goto send;
188 1.1 cgd if ((idle || tp->t_flags & TF_NODELAY) &&
189 1.1 cgd len + off >= so->so_snd.sb_cc)
190 1.1 cgd goto send;
191 1.1 cgd if (tp->t_force)
192 1.1 cgd goto send;
193 1.1 cgd if (len >= tp->max_sndwnd / 2)
194 1.1 cgd goto send;
195 1.1 cgd if (SEQ_LT(tp->snd_nxt, tp->snd_max))
196 1.1 cgd goto send;
197 1.1 cgd }
198 1.1 cgd
199 1.1 cgd /*
200 1.1 cgd * Compare available window to amount of window
201 1.1 cgd * known to peer (as advertised window less
202 1.1 cgd * next expected input). If the difference is at least two
203 1.1 cgd * max size segments, or at least 50% of the maximum possible
204 1.1 cgd * window, then want to send a window update to peer.
205 1.1 cgd */
206 1.1 cgd if (win > 0) {
207 1.9 mycroft /*
208 1.9 mycroft * "adv" is the amount we can increase the window,
209 1.9 mycroft * taking into account that we are limited by
210 1.9 mycroft * TCP_MAXWIN << tp->rcv_scale.
211 1.9 mycroft */
212 1.9 mycroft long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
213 1.9 mycroft (tp->rcv_adv - tp->rcv_nxt);
214 1.1 cgd
215 1.1 cgd if (adv >= (long) (2 * tp->t_maxseg))
216 1.1 cgd goto send;
217 1.1 cgd if (2 * adv >= (long) so->so_rcv.sb_hiwat)
218 1.1 cgd goto send;
219 1.1 cgd }
220 1.1 cgd
221 1.1 cgd /*
222 1.1 cgd * Send if we owe peer an ACK.
223 1.1 cgd */
224 1.1 cgd if (tp->t_flags & TF_ACKNOW)
225 1.1 cgd goto send;
226 1.1 cgd if (flags & (TH_SYN|TH_RST))
227 1.1 cgd goto send;
228 1.1 cgd if (SEQ_GT(tp->snd_up, tp->snd_una))
229 1.1 cgd goto send;
230 1.1 cgd /*
231 1.1 cgd * If our state indicates that FIN should be sent
232 1.1 cgd * and we have not yet done so, or we're retransmitting the FIN,
233 1.1 cgd * then we need to send.
234 1.1 cgd */
235 1.1 cgd if (flags & TH_FIN &&
236 1.1 cgd ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
237 1.1 cgd goto send;
238 1.1 cgd
239 1.1 cgd /*
240 1.1 cgd * TCP window updates are not reliable, rather a polling protocol
241 1.1 cgd * using ``persist'' packets is used to insure receipt of window
242 1.1 cgd * updates. The three ``states'' for the output side are:
243 1.1 cgd * idle not doing retransmits or persists
244 1.1 cgd * persisting to move a small or zero window
245 1.1 cgd * (re)transmitting and thereby not persisting
246 1.1 cgd *
247 1.1 cgd * tp->t_timer[TCPT_PERSIST]
248 1.1 cgd * is set when we are in persist state.
249 1.1 cgd * tp->t_force
250 1.1 cgd * is set when we are called to send a persist packet.
251 1.1 cgd * tp->t_timer[TCPT_REXMT]
252 1.1 cgd * is set when we are retransmitting
253 1.1 cgd * The output side is idle when both timers are zero.
254 1.1 cgd *
255 1.1 cgd * If send window is too small, there is data to transmit, and no
256 1.1 cgd * retransmit or persist is pending, then go to persist state.
257 1.1 cgd * If nothing happens soon, send when timer expires:
258 1.1 cgd * if window is nonzero, transmit what we can,
259 1.1 cgd * otherwise force out a byte.
260 1.1 cgd */
261 1.1 cgd if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 &&
262 1.1 cgd tp->t_timer[TCPT_PERSIST] == 0) {
263 1.1 cgd tp->t_rxtshift = 0;
264 1.1 cgd tcp_setpersist(tp);
265 1.1 cgd }
266 1.1 cgd
267 1.1 cgd /*
268 1.1 cgd * No reason to send a segment, just return.
269 1.1 cgd */
270 1.1 cgd return (0);
271 1.1 cgd
272 1.1 cgd send:
273 1.1 cgd /*
274 1.1 cgd * Before ESTABLISHED, force sending of initial options
275 1.1 cgd * unless TCP set not to do any options.
276 1.1 cgd * NOTE: we assume that the IP/TCP header plus TCP options
277 1.1 cgd * always fit in a single mbuf, leaving room for a maximum
278 1.1 cgd * link header, i.e.
279 1.1 cgd * max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MHLEN
280 1.1 cgd */
281 1.1 cgd optlen = 0;
282 1.1 cgd hdrlen = sizeof (struct tcpiphdr);
283 1.9 mycroft if (flags & TH_SYN) {
284 1.9 mycroft tp->snd_nxt = tp->iss;
285 1.9 mycroft if ((tp->t_flags & TF_NOOPT) == 0) {
286 1.12 cgd u_int16_t mss;
287 1.9 mycroft
288 1.9 mycroft opt[0] = TCPOPT_MAXSEG;
289 1.9 mycroft opt[1] = 4;
290 1.12 cgd mss = htons((u_int16_t) tcp_mss(tp, 0));
291 1.9 mycroft bcopy((caddr_t)&mss, (caddr_t)(opt + 2), sizeof(mss));
292 1.9 mycroft optlen = 4;
293 1.9 mycroft
294 1.9 mycroft if ((tp->t_flags & TF_REQ_SCALE) &&
295 1.9 mycroft ((flags & TH_ACK) == 0 ||
296 1.9 mycroft (tp->t_flags & TF_RCVD_SCALE))) {
297 1.12 cgd *((u_int32_t *) (opt + optlen)) = htonl(
298 1.9 mycroft TCPOPT_NOP << 24 |
299 1.9 mycroft TCPOPT_WINDOW << 16 |
300 1.9 mycroft TCPOLEN_WINDOW << 8 |
301 1.9 mycroft tp->request_r_scale);
302 1.9 mycroft optlen += 4;
303 1.9 mycroft }
304 1.9 mycroft }
305 1.9 mycroft }
306 1.9 mycroft
307 1.9 mycroft /*
308 1.9 mycroft * Send a timestamp and echo-reply if this is a SYN and our side
309 1.9 mycroft * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
310 1.9 mycroft * and our peer have sent timestamps in our SYN's.
311 1.9 mycroft */
312 1.9 mycroft if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
313 1.9 mycroft (flags & TH_RST) == 0 &&
314 1.9 mycroft ((flags & (TH_SYN|TH_ACK)) == TH_SYN ||
315 1.9 mycroft (tp->t_flags & TF_RCVD_TSTMP))) {
316 1.13 cgd u_int32_t *lp = (u_int32_t *)(opt + optlen);
317 1.9 mycroft
318 1.9 mycroft /* Form timestamp option as shown in appendix A of RFC 1323. */
319 1.9 mycroft *lp++ = htonl(TCPOPT_TSTAMP_HDR);
320 1.9 mycroft *lp++ = htonl(tcp_now);
321 1.9 mycroft *lp = htonl(tp->ts_recent);
322 1.9 mycroft optlen += TCPOLEN_TSTAMP_APPA;
323 1.9 mycroft }
324 1.9 mycroft
325 1.9 mycroft hdrlen += optlen;
326 1.9 mycroft
327 1.9 mycroft /*
328 1.9 mycroft * Adjust data length if insertion of options will
329 1.9 mycroft * bump the packet length beyond the t_maxseg length.
330 1.9 mycroft */
331 1.9 mycroft if (len > tp->t_maxseg - optlen) {
332 1.9 mycroft len = tp->t_maxseg - optlen;
333 1.11 mycroft flags &= ~TH_FIN;
334 1.9 mycroft sendalot = 1;
335 1.9 mycroft }
336 1.9 mycroft
337 1.1 cgd #ifdef DIAGNOSTIC
338 1.9 mycroft if (max_linkhdr + hdrlen > MHLEN)
339 1.9 mycroft panic("tcphdr too big");
340 1.1 cgd #endif
341 1.1 cgd
342 1.1 cgd /*
343 1.1 cgd * Grab a header mbuf, attaching a copy of data to
344 1.1 cgd * be transmitted, and initialize the header from
345 1.1 cgd * the template for sends on this connection.
346 1.1 cgd */
347 1.1 cgd if (len) {
348 1.1 cgd if (tp->t_force && len == 1)
349 1.1 cgd tcpstat.tcps_sndprobe++;
350 1.1 cgd else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
351 1.1 cgd tcpstat.tcps_sndrexmitpack++;
352 1.1 cgd tcpstat.tcps_sndrexmitbyte += len;
353 1.1 cgd } else {
354 1.1 cgd tcpstat.tcps_sndpack++;
355 1.1 cgd tcpstat.tcps_sndbyte += len;
356 1.1 cgd }
357 1.1 cgd #ifdef notyet
358 1.1 cgd if ((m = m_copypack(so->so_snd.sb_mb, off,
359 1.1 cgd (int)len, max_linkhdr + hdrlen)) == 0) {
360 1.1 cgd error = ENOBUFS;
361 1.1 cgd goto out;
362 1.1 cgd }
363 1.1 cgd /*
364 1.1 cgd * m_copypack left space for our hdr; use it.
365 1.1 cgd */
366 1.1 cgd m->m_len += hdrlen;
367 1.1 cgd m->m_data -= hdrlen;
368 1.1 cgd #else
369 1.1 cgd MGETHDR(m, M_DONTWAIT, MT_HEADER);
370 1.1 cgd if (m == NULL) {
371 1.1 cgd error = ENOBUFS;
372 1.1 cgd goto out;
373 1.1 cgd }
374 1.1 cgd m->m_data += max_linkhdr;
375 1.1 cgd m->m_len = hdrlen;
376 1.1 cgd if (len <= MHLEN - hdrlen - max_linkhdr) {
377 1.1 cgd m_copydata(so->so_snd.sb_mb, off, (int) len,
378 1.1 cgd mtod(m, caddr_t) + hdrlen);
379 1.1 cgd m->m_len += len;
380 1.1 cgd } else {
381 1.1 cgd m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
382 1.1 cgd if (m->m_next == 0)
383 1.1 cgd len = 0;
384 1.1 cgd }
385 1.1 cgd #endif
386 1.1 cgd /*
387 1.1 cgd * If we're sending everything we've got, set PUSH.
388 1.1 cgd * (This will keep happy those implementations which only
389 1.1 cgd * give data to the user when a buffer fills or
390 1.1 cgd * a PUSH comes in.)
391 1.1 cgd */
392 1.1 cgd if (off + len == so->so_snd.sb_cc)
393 1.1 cgd flags |= TH_PUSH;
394 1.1 cgd } else {
395 1.1 cgd if (tp->t_flags & TF_ACKNOW)
396 1.1 cgd tcpstat.tcps_sndacks++;
397 1.1 cgd else if (flags & (TH_SYN|TH_FIN|TH_RST))
398 1.1 cgd tcpstat.tcps_sndctrl++;
399 1.1 cgd else if (SEQ_GT(tp->snd_up, tp->snd_una))
400 1.1 cgd tcpstat.tcps_sndurg++;
401 1.1 cgd else
402 1.1 cgd tcpstat.tcps_sndwinup++;
403 1.1 cgd
404 1.1 cgd MGETHDR(m, M_DONTWAIT, MT_HEADER);
405 1.1 cgd if (m == NULL) {
406 1.1 cgd error = ENOBUFS;
407 1.1 cgd goto out;
408 1.1 cgd }
409 1.1 cgd m->m_data += max_linkhdr;
410 1.1 cgd m->m_len = hdrlen;
411 1.1 cgd }
412 1.1 cgd m->m_pkthdr.rcvif = (struct ifnet *)0;
413 1.1 cgd ti = mtod(m, struct tcpiphdr *);
414 1.1 cgd if (tp->t_template == 0)
415 1.1 cgd panic("tcp_output");
416 1.1 cgd bcopy((caddr_t)tp->t_template, (caddr_t)ti, sizeof (struct tcpiphdr));
417 1.1 cgd
418 1.1 cgd /*
419 1.1 cgd * Fill in fields, remembering maximum advertised
420 1.1 cgd * window for use in delaying messages about window sizes.
421 1.1 cgd * If resending a FIN, be sure not to use a new sequence number.
422 1.1 cgd */
423 1.9 mycroft if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
424 1.1 cgd tp->snd_nxt == tp->snd_max)
425 1.1 cgd tp->snd_nxt--;
426 1.9 mycroft /*
427 1.9 mycroft * If we are doing retransmissions, then snd_nxt will
428 1.9 mycroft * not reflect the first unsent octet. For ACK only
429 1.9 mycroft * packets, we do not want the sequence number of the
430 1.9 mycroft * retransmitted packet, we want the sequence number
431 1.9 mycroft * of the next unsent octet. So, if there is no data
432 1.9 mycroft * (and no SYN or FIN), use snd_max instead of snd_nxt
433 1.9 mycroft * when filling in ti_seq. But if we are in persist
434 1.9 mycroft * state, snd_max might reflect one byte beyond the
435 1.9 mycroft * right edge of the window, so use snd_nxt in that
436 1.9 mycroft * case, since we know we aren't doing a retransmission.
437 1.9 mycroft * (retransmit and persist are mutually exclusive...)
438 1.9 mycroft */
439 1.8 mycroft if (len || (flags & (TH_SYN|TH_FIN)) || tp->t_timer[TCPT_PERSIST])
440 1.8 mycroft ti->ti_seq = htonl(tp->snd_nxt);
441 1.8 mycroft else
442 1.8 mycroft ti->ti_seq = htonl(tp->snd_max);
443 1.1 cgd ti->ti_ack = htonl(tp->rcv_nxt);
444 1.1 cgd if (optlen) {
445 1.1 cgd bcopy((caddr_t)opt, (caddr_t)(ti + 1), optlen);
446 1.1 cgd ti->ti_off = (sizeof (struct tcphdr) + optlen) >> 2;
447 1.1 cgd }
448 1.1 cgd ti->ti_flags = flags;
449 1.1 cgd /*
450 1.1 cgd * Calculate receive window. Don't shrink window,
451 1.1 cgd * but avoid silly window syndrome.
452 1.1 cgd */
453 1.1 cgd if (win < (long)(so->so_rcv.sb_hiwat / 4) && win < (long)tp->t_maxseg)
454 1.1 cgd win = 0;
455 1.9 mycroft if (win > (long)TCP_MAXWIN << tp->rcv_scale)
456 1.9 mycroft win = (long)TCP_MAXWIN << tp->rcv_scale;
457 1.1 cgd if (win < (long)(tp->rcv_adv - tp->rcv_nxt))
458 1.1 cgd win = (long)(tp->rcv_adv - tp->rcv_nxt);
459 1.12 cgd ti->ti_win = htons((u_int16_t) (win>>tp->rcv_scale));
460 1.1 cgd if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
461 1.16 kml u_int32_t urp = tp->snd_up - tp->snd_nxt;
462 1.16 kml if (urp > IP_MAXPACKET)
463 1.16 kml urp = IP_MAXPACKET;
464 1.16 kml ti->ti_urp = htons((u_int16_t)urp);
465 1.1 cgd ti->ti_flags |= TH_URG;
466 1.1 cgd } else
467 1.1 cgd /*
468 1.1 cgd * If no urgent pointer to send, then we pull
469 1.1 cgd * the urgent pointer to the left edge of the send window
470 1.1 cgd * so that it doesn't drift into the send window on sequence
471 1.1 cgd * number wraparound.
472 1.1 cgd */
473 1.1 cgd tp->snd_up = tp->snd_una; /* drag it along */
474 1.1 cgd
475 1.1 cgd /*
476 1.1 cgd * Put TCP length in extended header, and then
477 1.1 cgd * checksum extended header and data.
478 1.1 cgd */
479 1.1 cgd if (len + optlen)
480 1.12 cgd ti->ti_len = htons((u_int16_t)(sizeof (struct tcphdr) +
481 1.1 cgd optlen + len));
482 1.1 cgd ti->ti_sum = in_cksum(m, (int)(hdrlen + len));
483 1.1 cgd
484 1.1 cgd /*
485 1.1 cgd * In transmit state, time the transmission and arrange for
486 1.1 cgd * the retransmit. In persist state, just set snd_max.
487 1.1 cgd */
488 1.1 cgd if (tp->t_force == 0 || tp->t_timer[TCPT_PERSIST] == 0) {
489 1.1 cgd tcp_seq startseq = tp->snd_nxt;
490 1.1 cgd
491 1.1 cgd /*
492 1.1 cgd * Advance snd_nxt over sequence space of this segment.
493 1.1 cgd */
494 1.1 cgd if (flags & (TH_SYN|TH_FIN)) {
495 1.1 cgd if (flags & TH_SYN)
496 1.1 cgd tp->snd_nxt++;
497 1.1 cgd if (flags & TH_FIN) {
498 1.1 cgd tp->snd_nxt++;
499 1.1 cgd tp->t_flags |= TF_SENTFIN;
500 1.1 cgd }
501 1.1 cgd }
502 1.1 cgd tp->snd_nxt += len;
503 1.1 cgd if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
504 1.1 cgd tp->snd_max = tp->snd_nxt;
505 1.1 cgd /*
506 1.1 cgd * Time this transmission if not a retransmission and
507 1.1 cgd * not currently timing anything.
508 1.1 cgd */
509 1.1 cgd if (tp->t_rtt == 0) {
510 1.1 cgd tp->t_rtt = 1;
511 1.1 cgd tp->t_rtseq = startseq;
512 1.1 cgd tcpstat.tcps_segstimed++;
513 1.1 cgd }
514 1.1 cgd }
515 1.1 cgd
516 1.1 cgd /*
517 1.1 cgd * Set retransmit timer if not currently set,
518 1.1 cgd * and not doing an ack or a keep-alive probe.
519 1.1 cgd * Initial value for retransmit timer is smoothed
520 1.1 cgd * round-trip time + 2 * round-trip time variance.
521 1.1 cgd * Initialize shift counter which is used for backoff
522 1.1 cgd * of retransmit time.
523 1.1 cgd */
524 1.1 cgd if (tp->t_timer[TCPT_REXMT] == 0 &&
525 1.1 cgd tp->snd_nxt != tp->snd_una) {
526 1.1 cgd tp->t_timer[TCPT_REXMT] = tp->t_rxtcur;
527 1.1 cgd if (tp->t_timer[TCPT_PERSIST]) {
528 1.1 cgd tp->t_timer[TCPT_PERSIST] = 0;
529 1.1 cgd tp->t_rxtshift = 0;
530 1.1 cgd }
531 1.1 cgd }
532 1.1 cgd } else
533 1.1 cgd if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
534 1.1 cgd tp->snd_max = tp->snd_nxt + len;
535 1.1 cgd
536 1.1 cgd /*
537 1.1 cgd * Trace.
538 1.1 cgd */
539 1.1 cgd if (so->so_options & SO_DEBUG)
540 1.1 cgd tcp_trace(TA_OUTPUT, tp->t_state, tp, ti, 0);
541 1.1 cgd
542 1.1 cgd /*
543 1.1 cgd * Fill in IP length and desired time to live and
544 1.1 cgd * send to IP level. There should be a better way
545 1.1 cgd * to handle ttl and tos; we could keep them in
546 1.1 cgd * the template, but need a way to checksum without them.
547 1.1 cgd */
548 1.1 cgd m->m_pkthdr.len = hdrlen + len;
549 1.9 mycroft #ifdef TUBA
550 1.9 mycroft if (tp->t_tuba_pcb)
551 1.9 mycroft error = tuba_output(m, tp);
552 1.9 mycroft else
553 1.9 mycroft #endif
554 1.9 mycroft {
555 1.1 cgd ((struct ip *)ti)->ip_len = m->m_pkthdr.len;
556 1.1 cgd ((struct ip *)ti)->ip_ttl = tp->t_inpcb->inp_ip.ip_ttl; /* XXX */
557 1.1 cgd ((struct ip *)ti)->ip_tos = tp->t_inpcb->inp_ip.ip_tos; /* XXX */
558 1.1 cgd #if BSD >= 43
559 1.1 cgd error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route,
560 1.9 mycroft so->so_options & SO_DONTROUTE, 0);
561 1.1 cgd #else
562 1.9 mycroft error = ip_output(m, (struct mbuf *)0, &tp->t_inpcb->inp_route,
563 1.1 cgd so->so_options & SO_DONTROUTE);
564 1.1 cgd #endif
565 1.9 mycroft }
566 1.1 cgd if (error) {
567 1.1 cgd out:
568 1.1 cgd if (error == ENOBUFS) {
569 1.6 mycroft tcp_quench(tp->t_inpcb, 0);
570 1.1 cgd return (0);
571 1.1 cgd }
572 1.1 cgd if ((error == EHOSTUNREACH || error == ENETDOWN)
573 1.1 cgd && TCPS_HAVERCVDSYN(tp->t_state)) {
574 1.1 cgd tp->t_softerror = error;
575 1.1 cgd return (0);
576 1.1 cgd }
577 1.1 cgd return (error);
578 1.1 cgd }
579 1.1 cgd tcpstat.tcps_sndtotal++;
580 1.1 cgd
581 1.1 cgd /*
582 1.1 cgd * Data sent (as far as we can tell).
583 1.1 cgd * If this advertises a larger window than any other segment,
584 1.1 cgd * then remember the size of the advertised window.
585 1.1 cgd * Any pending ACK has now been sent.
586 1.1 cgd */
587 1.1 cgd if (win > 0 && SEQ_GT(tp->rcv_nxt+win, tp->rcv_adv))
588 1.1 cgd tp->rcv_adv = tp->rcv_nxt + win;
589 1.9 mycroft tp->last_ack_sent = tp->rcv_nxt;
590 1.1 cgd tp->t_flags &= ~(TF_ACKNOW|TF_DELACK);
591 1.1 cgd if (sendalot)
592 1.1 cgd goto again;
593 1.1 cgd return (0);
594 1.1 cgd }
595 1.1 cgd
596 1.6 mycroft void
597 1.1 cgd tcp_setpersist(tp)
598 1.1 cgd register struct tcpcb *tp;
599 1.1 cgd {
600 1.15 mycroft register t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> (1 + 2);
601 1.1 cgd
602 1.1 cgd if (tp->t_timer[TCPT_REXMT])
603 1.1 cgd panic("tcp_output REXMT");
604 1.1 cgd /*
605 1.1 cgd * Start/restart persistance timer.
606 1.1 cgd */
607 1.1 cgd TCPT_RANGESET(tp->t_timer[TCPT_PERSIST],
608 1.1 cgd t * tcp_backoff[tp->t_rxtshift],
609 1.1 cgd TCPTV_PERSMIN, TCPTV_PERSMAX);
610 1.1 cgd if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
611 1.1 cgd tp->t_rxtshift++;
612 1.1 cgd }
613