msafd + afd: Changed type of PVOID args to PAFD_WSABUF, avoiding some casts.
[reactos.git] / reactos / drivers / lib / oskittcp / oskittcp / tcp_output.c
1 /*
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_output.c 8.3 (Berkeley) 12/30/93
34 */
35
36 #define TCPOUTFLAGS
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/malloc.h>
40 #include <sys/mbuf.h>
41 #include <sys/protosw.h>
42 #include <sys/socket.h>
43 #include <sys/socketvar.h>
44 #include <sys/errno.h>
45 #include <sys/queue.h>
46
47 #include <net/route.h>
48
49 #include <netinet/in.h>
50 #include <netinet/in_systm.h>
51 #include <netinet/ip.h>
52 #include <netinet/in_pcb.h>
53 #include <netinet/ip_var.h>
54 #include <netinet/tcp.h>
55 #include <netinet/tcp_fsm.h>
56 #include <netinet/tcp_seq.h>
57 #include <netinet/tcp_timer.h>
58 #include <netinet/tcp_var.h>
59 #include <netinet/tcpip.h>
60 #ifdef TCPDEBUG
61 #include <netinet/tcp_debug.h>
62 #endif
63 #include <oskittcp.h>
64
65 #ifdef notyet
66 extern struct mbuf *m_copypack();
67 #endif
68
69
70 /*
71 * Tcp output routine: figure out what should be sent and send it.
72 */
73 int
74 tcp_output(tp)
75 register struct tcpcb *tp;
76 {
77 register struct socket *so = tp->t_inpcb->inp_socket;
78 register long len, win;
79 int off, flags, error = EINVAL;
80 register struct mbuf *m;
81 register struct tcpiphdr *ti;
82 u_char opt[TCP_MAXOLEN];
83 unsigned optlen, hdrlen;
84 int idle, sendalot;
85 struct rmxp_tao *taop;
86 struct rmxp_tao tao_noncached;
87
88 OS_DbgPrint(OSK_MID_TRACE,("Start\n"));
89
90 /*
91 * Determine length of data that should be transmitted,
92 * and flags that will be used.
93 * If there is some data or critical controls (SYN, RST)
94 * to send, then transmit; otherwise, investigate further.
95 */
96 idle = (tp->snd_max == tp->snd_una);
97 if (idle && tp->t_idle >= tp->t_rxtcur)
98 /*
99 * We have been idle for "a while" and no acks are
100 * expected to clock out any data we send --
101 * slow start to get ack "clock" running again.
102 */
103 tp->snd_cwnd = tp->t_maxseg;
104
105 again:
106 OS_DbgPrint(OSK_MID_TRACE,("Again...\n"));
107 sendalot = 0;
108 off = tp->snd_nxt - tp->snd_una;
109 win = min(tp->snd_wnd, tp->snd_cwnd);
110
111 flags = tcp_outflags[tp->t_state];
112 /*
113 * Get standard flags, and add SYN or FIN if requested by 'hidden'
114 * state flags.
115 */
116 if (tp->t_flags & TF_NEEDFIN)
117 flags |= TH_FIN;
118 if (tp->t_flags & TF_NEEDSYN)
119 flags |= TH_SYN;
120
121 /*
122 * If in persist timeout with window of 0, send 1 byte.
123 * Otherwise, if window is small but nonzero
124 * and timer expired, we will send what we can
125 * and go to transmit state.
126 */
127 if (tp->t_force) {
128 if (win == 0) {
129 /*
130 * If we still have some data to send, then
131 * clear the FIN bit. Usually this would
132 * happen below when it realizes that we
133 * aren't sending all the data. However,
134 * if we have exactly 1 byte of unset data,
135 * then it won't clear the FIN bit below,
136 * and if we are in persist state, we wind
137 * up sending the packet without recording
138 * that we sent the FIN bit.
139 *
140 * We can't just blindly clear the FIN bit,
141 * because if we don't have any more data
142 * to send then the probe will be the FIN
143 * itself.
144 */
145 if (off < so->so_snd.sb_cc)
146 flags &= ~TH_FIN;
147 win = 1;
148 } else {
149 tp->t_timer[TCPT_PERSIST] = 0;
150 tp->t_rxtshift = 0;
151 }
152 }
153
154 len = min(so->so_snd.sb_cc, win) - off;
155
156 if ((taop = tcp_gettaocache(tp->t_inpcb)) == NULL) {
157 taop = &tao_noncached;
158 bzero(taop, sizeof(*taop));
159 }
160
161 /*
162 * Lop off SYN bit if it has already been sent. However, if this
163 * is SYN-SENT state and if segment contains data and if we don't
164 * know that foreign host supports TAO, suppress sending segment.
165 */
166 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
167 flags &= ~TH_SYN;
168 off--, len++;
169 if (len > 0 && tp->t_state == TCPS_SYN_SENT &&
170 taop->tao_ccsent == 0)
171 return 0;
172 }
173
174 /*
175 * Be careful not to send data and/or FIN on SYN segments
176 * in cases when no CC option will be sent.
177 * This measure is needed to prevent interoperability problems
178 * with not fully conformant TCP implementations.
179 */
180 if ((flags & TH_SYN) &&
181 ((tp->t_flags & TF_NOOPT) || !(tp->t_flags & TF_REQ_CC) ||
182 ((flags & TH_ACK) && !(tp->t_flags & TF_RCVD_CC)))) {
183 len = 0;
184 flags &= ~TH_FIN;
185 }
186
187 if (len < 0) {
188 /*
189 * If FIN has been sent but not acked,
190 * but we haven't been called to retransmit,
191 * len will be -1. Otherwise, window shrank
192 * after we sent into it. If window shrank to 0,
193 * cancel pending retransmit, pull snd_nxt back
194 * to (closed) window, and set the persist timer
195 * if it isn't already going. If the window didn't
196 * close completely, just wait for an ACK.
197 */
198 len = 0;
199 if (win == 0) {
200 tp->t_timer[TCPT_REXMT] = 0;
201 tp->t_rxtshift = 0;
202 tp->snd_nxt = tp->snd_una;
203 if (tp->t_timer[TCPT_PERSIST] == 0)
204 tcp_setpersist(tp);
205 }
206 }
207 if (len > tp->t_maxseg) {
208 len = tp->t_maxseg;
209 sendalot = 1;
210 }
211 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
212 flags &= ~TH_FIN;
213
214 win = sbspace(&so->so_rcv);
215
216 /*
217 * Sender silly window avoidance. If connection is idle
218 * and can send all data, a maximum segment,
219 * at least a maximum default-size segment do it,
220 * or are forced, do it; otherwise don't bother.
221 * If peer's buffer is tiny, then send
222 * when window is at least half open.
223 * If retransmitting (possibly after persist timer forced us
224 * to send into a small window), then must resend.
225 */
226 if (len) {
227 if (len == tp->t_maxseg)
228 goto send;
229 if ((idle || tp->t_flags & TF_NODELAY) &&
230 (tp->t_flags & TF_NOPUSH) == 0 &&
231 len + off >= so->so_snd.sb_cc)
232 goto send;
233 if (tp->t_force)
234 goto send;
235 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0)
236 goto send;
237 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
238 goto send;
239 }
240
241 /*
242 * Compare available window to amount of window
243 * known to peer (as advertised window less
244 * next expected input). If the difference is at least two
245 * max size segments, or at least 50% of the maximum possible
246 * window, then want to send a window update to peer.
247 */
248 if (win > 0) {
249 /*
250 * "adv" is the amount we can increase the window,
251 * taking into account that we are limited by
252 * TCP_MAXWIN << tp->rcv_scale.
253 */
254 long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
255 (tp->rcv_adv - tp->rcv_nxt);
256
257 if (adv >= (long) (2 * tp->t_maxseg))
258 goto send;
259 if (2 * adv >= (long) so->so_rcv.sb_hiwat)
260 goto send;
261 }
262
263 /*
264 * Send if we owe peer an ACK.
265 */
266 if (tp->t_flags & TF_ACKNOW)
267 goto send;
268 if ((flags & TH_RST) ||
269 ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0))
270 goto send;
271 if (SEQ_GT(tp->snd_up, tp->snd_una))
272 goto send;
273 /*
274 * If our state indicates that FIN should be sent
275 * and we have not yet done so, or we're retransmitting the FIN,
276 * then we need to send.
277 */
278 if (flags & TH_FIN &&
279 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
280 goto send;
281
282 /*
283 * TCP window updates are not reliable, rather a polling protocol
284 * using ``persist'' packets is used to insure receipt of window
285 * updates. The three ``states'' for the output side are:
286 * idle not doing retransmits or persists
287 * persisting to move a small or zero window
288 * (re)transmitting and thereby not persisting
289 *
290 * tp->t_timer[TCPT_PERSIST]
291 * is set when we are in persist state.
292 * tp->t_force
293 * is set when we are called to send a persist packet.
294 * tp->t_timer[TCPT_REXMT]
295 * is set when we are retransmitting
296 * The output side is idle when both timers are zero.
297 *
298 * If send window is too small, there is data to transmit, and no
299 * retransmit or persist is pending, then go to persist state.
300 * If nothing happens soon, send when timer expires:
301 * if window is nonzero, transmit what we can,
302 * otherwise force out a byte.
303 */
304 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 &&
305 tp->t_timer[TCPT_PERSIST] == 0) {
306 tp->t_rxtshift = 0;
307 tcp_setpersist(tp);
308 }
309
310 /*
311 * No reason to send a segment, just return.
312 */
313 /*return (0);*/
314
315 send:
316 /*
317 * Before ESTABLISHED, force sending of initial options
318 * unless TCP set not to do any options.
319 * NOTE: we assume that the IP/TCP header plus TCP options
320 * always fit in a single mbuf, leaving room for a maximum
321 * link header, i.e.
322 * max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MHLEN
323 */
324 optlen = 0;
325 hdrlen = sizeof (struct tcpiphdr);
326 if (flags & TH_SYN) {
327 tp->snd_nxt = tp->iss;
328 if ((tp->t_flags & TF_NOOPT) == 0) {
329 u_short mss;
330
331 opt[0] = TCPOPT_MAXSEG;
332 opt[1] = TCPOLEN_MAXSEG;
333 mss = htons((u_short) tcp_mssopt(tp));
334 (void)memcpy(opt + 2, &mss, sizeof(mss));
335 optlen = TCPOLEN_MAXSEG;
336
337 if ((tp->t_flags & TF_REQ_SCALE) &&
338 ((flags & TH_ACK) == 0 ||
339 (tp->t_flags & TF_RCVD_SCALE))) {
340 *((u_long *) (opt + optlen)) = htonl(
341 TCPOPT_NOP << 24 |
342 TCPOPT_WINDOW << 16 |
343 TCPOLEN_WINDOW << 8 |
344 tp->request_r_scale);
345 optlen += 4;
346 }
347 }
348 }
349
350 /*
351 * Send a timestamp and echo-reply if this is a SYN and our side
352 * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
353 * and our peer have sent timestamps in our SYN's.
354 */
355 if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
356 (flags & TH_RST) == 0 &&
357 ((flags & TH_ACK) == 0 ||
358 (tp->t_flags & TF_RCVD_TSTMP))) {
359 u_long *lp = (u_long *)(opt + optlen);
360
361 /* Form timestamp option as shown in appendix A of RFC 1323. */
362 *lp++ = htonl(TCPOPT_TSTAMP_HDR);
363 *lp++ = htonl(tcp_now);
364 *lp = htonl(tp->ts_recent);
365 optlen += TCPOLEN_TSTAMP_APPA;
366 }
367
368 /*
369 * Send `CC-family' options if our side wants to use them (TF_REQ_CC),
370 * options are allowed (!TF_NOOPT) and it's not a RST.
371 */
372 if ((tp->t_flags & (TF_REQ_CC|TF_NOOPT)) == TF_REQ_CC &&
373 (flags & TH_RST) == 0) {
374 switch (flags & (TH_SYN|TH_ACK)) {
375 /*
376 * This is a normal ACK, send CC if we received CC before
377 * from our peer.
378 */
379 case TH_ACK:
380 if (!(tp->t_flags & TF_RCVD_CC))
381 break;
382 /*FALLTHROUGH*/
383
384 /*
385 * We can only get here in T/TCP's SYN_SENT* state, when
386 * we're a sending a non-SYN segment without waiting for
387 * the ACK of our SYN. A check above assures that we only
388 * do this if our peer understands T/TCP.
389 */
390 case 0:
391 opt[optlen++] = TCPOPT_NOP;
392 opt[optlen++] = TCPOPT_NOP;
393 opt[optlen++] = TCPOPT_CC;
394 opt[optlen++] = TCPOLEN_CC;
395 *(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
396
397 optlen += 4;
398 break;
399
400 /*
401 * This is our initial SYN, check whether we have to use
402 * CC or CC.new.
403 */
404 case TH_SYN:
405 #if 0
406 opt[optlen++] = TCPOPT_NOP;
407 opt[optlen++] = TCPOPT_NOP;
408 opt[optlen++] = tp->t_flags & TF_SENDCCNEW ?
409 TCPOPT_CCNEW : TCPOPT_CC;
410 opt[optlen++] = TCPOLEN_CC;
411 *(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
412 optlen += 4;
413 #endif
414 break;
415
416 /*
417 * This is a SYN,ACK; send CC and CC.echo if we received
418 * CC from our peer.
419 */
420 case (TH_SYN|TH_ACK):
421 if (tp->t_flags & TF_RCVD_CC) {
422 opt[optlen++] = TCPOPT_NOP;
423 opt[optlen++] = TCPOPT_NOP;
424 opt[optlen++] = TCPOPT_CC;
425 opt[optlen++] = TCPOLEN_CC;
426 *(u_int32_t *)&opt[optlen] =
427 htonl(tp->cc_send);
428 optlen += 4;
429 opt[optlen++] = TCPOPT_NOP;
430 opt[optlen++] = TCPOPT_NOP;
431 opt[optlen++] = TCPOPT_CCECHO;
432 opt[optlen++] = TCPOLEN_CC;
433 *(u_int32_t *)&opt[optlen] =
434 htonl(tp->cc_recv);
435 optlen += 4;
436 }
437 break;
438 }
439 }
440
441 hdrlen += optlen;
442
443 /*
444 * Adjust data length if insertion of options will
445 * bump the packet length beyond the t_maxopd length.
446 * Clear the FIN bit because we cut off the tail of
447 * the segment.
448 */
449 if (len + optlen > tp->t_maxopd) {
450 /*
451 * If there is still more to send, don't close the connection.
452 */
453 flags &= ~TH_FIN;
454 len = tp->t_maxopd - optlen;
455 sendalot = 1;
456 }
457
458 /*#ifdef DIAGNOSTIC*/
459 if (max_linkhdr + hdrlen > MHLEN)
460 panic("tcphdr too big");
461 /*#endif*/
462
463
464 /*
465 * Grab a header mbuf, attaching a copy of data to
466 * be transmitted, and initialize the header from
467 * the template for sends on this connection.
468 */
469 if (len) {
470 if (tp->t_force && len == 1)
471 tcpstat.tcps_sndprobe++;
472 else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
473 tcpstat.tcps_sndrexmitpack++;
474 tcpstat.tcps_sndrexmitbyte += len;
475 } else {
476 tcpstat.tcps_sndpack++;
477 tcpstat.tcps_sndbyte += len;
478 }
479 #ifdef notyet
480 if ((m = m_copypack(so->so_snd.sb_mb, off,
481 (int)len, max_linkhdr + hdrlen)) == 0) {
482 error = ENOBUFS;
483 goto out;
484 }
485 /*
486 * m_copypack left space for our hdr; use it.
487 */
488 m->m_len += hdrlen;
489 m->m_data -= hdrlen;
490 #else
491 MGETHDR(m, M_DONTWAIT, MT_HEADER);
492 if (m == NULL) {
493 error = ENOBUFS;
494 goto out;
495 }
496 m->m_data += max_linkhdr;
497 m->m_len = hdrlen;
498 if (len <= MHLEN - hdrlen - max_linkhdr) {
499 m_copydata(so->so_snd.sb_mb, off, (int) len,
500 mtod(m, caddr_t) + hdrlen);
501 m->m_len += len;
502 } else {
503 m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
504 if (m->m_next == 0) {
505 (void) m_free(m);
506 error = ENOBUFS;
507 goto out;
508 }
509 }
510 #endif
511 /*
512 * If we're sending everything we've got, set PUSH.
513 * (This will keep happy those implementations which only
514 * give data to the user when a buffer fills or
515 * a PUSH comes in.)
516 */
517 if (off + len == so->so_snd.sb_cc)
518 flags |= TH_PUSH;
519 } else {
520 if (tp->t_flags & TF_ACKNOW)
521 tcpstat.tcps_sndacks++;
522 else if (flags & (TH_SYN|TH_FIN|TH_RST))
523 tcpstat.tcps_sndctrl++;
524 else if (SEQ_GT(tp->snd_up, tp->snd_una))
525 tcpstat.tcps_sndurg++;
526 else
527 tcpstat.tcps_sndwinup++;
528
529 MGETHDR(m, M_DONTWAIT, MT_HEADER);
530 if (m == NULL) {
531 error = ENOBUFS;
532 goto out;
533 }
534 m->m_data += max_linkhdr;
535 m->m_len = hdrlen;
536 }
537
538 m->m_pkthdr.rcvif = (struct ifnet *)0;
539 ti = mtod(m, struct tcpiphdr *);
540 if (tp->t_template == 0)
541 panic("tcp_output");
542 (void)memcpy(ti, tp->t_template, sizeof (struct tcpiphdr));
543
544 /*
545 * Fill in fields, remembering maximum advertised
546 * window for use in delaying messages about window sizes.
547 * If resending a FIN, be sure not to use a new sequence number.
548 */
549
550 if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
551 tp->snd_nxt == tp->snd_max)
552 tp->snd_nxt--;
553
554 /*
555 * If we are doing retransmissions, then snd_nxt will
556 * not reflect the first unsent octet. For ACK only
557 * packets, we do not want the sequence number of the
558 * retransmitted packet, we want the sequence number
559 * of the next unsent octet. So, if there is no data
560 * (and no SYN or FIN), use snd_max instead of snd_nxt
561 * when filling in ti_seq. But if we are in persist
562 * state, snd_max might reflect one byte beyond the
563 * right edge of the window, so use snd_nxt in that
564 * case, since we know we aren't doing a retransmission.
565 * (retransmit and persist are mutually exclusive...)
566 */
567 if (len || (flags & (TH_SYN|TH_FIN)) || tp->t_timer[TCPT_PERSIST])
568 ti->ti_seq = htonl(tp->snd_nxt);
569 else
570 ti->ti_seq = htonl(tp->snd_max);
571
572 ti->ti_ack = htonl(tp->rcv_nxt);
573 printf("ti->ti_ack = %d\n", ti->ti_ack);
574
575 if (optlen) {
576 (void)memcpy(ti + 1, opt, optlen);
577 ti->ti_off = (sizeof (struct tcphdr) + optlen) >> 2;
578 }
579
580 ti->ti_flags = flags;
581
582 /*
583 * Calculate receive window. Don't shrink window,
584 * but avoid silly window syndrome.
585 */
586 if (win < (long)(so->so_rcv.sb_hiwat / 4) && win < (long)tp->t_maxseg)
587 win = 0;
588
589 if (win > (long)TCP_MAXWIN << tp->rcv_scale)
590 win = (long)TCP_MAXWIN << tp->rcv_scale;
591
592 if (win < (long)(tp->rcv_adv - tp->rcv_nxt))
593 win = (long)(tp->rcv_adv - tp->rcv_nxt);
594
595 ti->ti_win = htons((u_short) (win>>tp->rcv_scale));
596 if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
597 ti->ti_urp = htons((u_short)(tp->snd_up - tp->snd_nxt));
598 ti->ti_flags |= TH_URG;
599 } else
600 /*
601 * If no urgent pointer to send, then we pull
602 * the urgent pointer to the left edge of the send window
603 * so that it doesn't drift into the send window on sequence
604 * number wraparound.
605 */
606 tp->snd_up = tp->snd_una; /* drag it along */
607
608 /*
609 * Put TCP length in extended header, and then
610 * checksum extended header and data.
611 */
612
613 if (len + optlen) {
614 ti->ti_src.s_addr = tp->t_inpcb->inp_laddr.s_addr;
615 ti->ti_dst.s_addr = tp->t_inpcb->inp_faddr.s_addr;
616 ti->ti_pr = 6;
617 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) +
618 optlen + len));
619 }
620
621 ti->ti_sum = in_cksum(m, (int)(hdrlen + len));
622
623 /*
624 * In transmit state, time the transmission and arrange for
625 * the retransmit. In persist state, just set snd_max.
626 */
627 if (tp->t_force == 0 || tp->t_timer[TCPT_PERSIST] == 0) {
628 tcp_seq startseq = tp->snd_nxt;
629
630 /*
631 * Advance snd_nxt over sequence space of this segment.
632 */
633 if (flags & (TH_SYN|TH_FIN)) {
634 if (flags & TH_SYN)
635 tp->snd_nxt++;
636 if (flags & TH_FIN) {
637 tp->snd_nxt++;
638 tp->t_flags |= TF_SENTFIN;
639 }
640 }
641 tp->snd_nxt += len;
642 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
643 tp->snd_max = tp->snd_nxt;
644 /*
645 * Time this transmission if not a retransmission and
646 * not currently timing anything.
647 */
648 if (tp->t_rtt == 0) {
649 tp->t_rtt = 1;
650 tp->t_rtseq = startseq;
651 tcpstat.tcps_segstimed++;
652 }
653 }
654
655 /*
656 * Set retransmit timer if not currently set,
657 * and not doing an ack or a keep-alive probe.
658 * Initial value for retransmit timer is smoothed
659 * round-trip time + 2 * round-trip time variance.
660 * Initialize shift counter which is used for backoff
661 * of retransmit time.
662 */
663 if (tp->t_timer[TCPT_REXMT] == 0 &&
664 tp->snd_nxt != tp->snd_una) {
665 tp->t_timer[TCPT_REXMT] = tp->t_rxtcur;
666 if (tp->t_timer[TCPT_PERSIST]) {
667 tp->t_timer[TCPT_PERSIST] = 0;
668 tp->t_rxtshift = 0;
669 }
670 }
671 } else
672 if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
673 tp->snd_max = tp->snd_nxt + len;
674
675 #ifdef TCPDEBUG
676 /*
677 * Trace.
678 */
679 if (so->so_options & SO_DEBUG)
680 tcp_trace(TA_OUTPUT, tp->t_state, tp, ti, 0);
681 #endif
682
683 /*
684 * Fill in IP length and desired time to live and
685 * send to IP level. There should be a better way
686 * to handle ttl and tos; we could keep them in
687 * the template, but need a way to checksum without them.
688 */
689 m->m_pkthdr.len = hdrlen + len;
690 #ifdef TUBA
691 if (tp->t_tuba_pcb)
692 error = tuba_output(m, tp);
693 else
694 #endif
695 {
696 #if 1
697 struct rtentry *rt;
698 #endif
699 ((struct ip *)ti)->ip_len = m->m_pkthdr.len;
700 ((struct ip *)ti)->ip_ttl = tp->t_inpcb->inp_ip.ip_ttl; /* XXX */
701 ((struct ip *)ti)->ip_tos = tp->t_inpcb->inp_ip.ip_tos; /* XXX */
702 #if 1
703 /*
704 * See if we should do MTU discovery. We do it only if the following
705 * are true:
706 * 1) we have a valid route to the destination
707 * 2) the MTU is not locked (if it is, then discovery has been
708 * disabled)
709 */
710 if ((rt = &tp->t_inpcb->inp_route.ro_rt)
711 && rt->rt_flags & RTF_UP
712 && !(rt->rt_rmx.rmx_locks & RTV_MTU)) {
713 ((struct ip *)ti)->ip_off |= IP_DF;
714 }
715 #endif
716
717 OS_DbgPrint(OSK_MID_TRACE,("Calling ip_output\n"));
718 error = ip_output(so, m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route,
719 so->so_options & SO_DONTROUTE, 0);
720 }
721 if (error) {
722 out:
723 if (error == ENOBUFS) {
724 tcp_quench(tp->t_inpcb, 0);
725 return (0);
726 }
727 #if 1
728 if (error == EMSGSIZE) {
729 /*
730 * ip_output() will have already fixed the route
731 * for us. tcp_mtudisc() will, as its last action,
732 * initiate retransmission, so it is important to
733 * not do so here.
734 */
735 tcp_mtudisc(tp->t_inpcb, 0);
736 return 0;
737 }
738 #endif
739 if ((error == EHOSTUNREACH || error == ENETDOWN)
740 && TCPS_HAVERCVDSYN(tp->t_state)) {
741 tp->t_softerror = error;
742 return (0);
743 }
744 return (error);
745 }
746 tcpstat.tcps_sndtotal++;
747
748 /*
749 * Data sent (as far as we can tell).
750 * If this advertises a larger window than any other segment,
751 * then remember the size of the advertised window.
752 * Any pending ACK has now been sent.
753 */
754 if (win > 0 && SEQ_GT(tp->rcv_nxt+win, tp->rcv_adv))
755 tp->rcv_adv = tp->rcv_nxt + win;
756 tp->last_ack_sent = tp->rcv_nxt;
757 tp->t_flags &= ~(TF_ACKNOW|TF_DELACK);
758 OS_DbgPrint(OSK_MID_TRACE,("sendalot: %d (flags %x)\n",
759 sendalot, tp->t_flags));
760 if (sendalot)
761 goto again;
762 return (0);
763 }
764
765 void
766 tcp_setpersist(tp)
767 register struct tcpcb *tp;
768 {
769 register t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1;
770
771 if (tp->t_timer[TCPT_REXMT])
772 panic("tcp_output REXMT");
773 /*
774 * Start/restart persistance timer.
775 */
776 TCPT_RANGESET(tp->t_timer[TCPT_PERSIST],
777 t * tcp_backoff[tp->t_rxtshift],
778 TCPTV_PERSMIN, TCPTV_PERSMAX);
779 if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
780 tp->t_rxtshift++;
781 }