1 /*- 2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * @(#)tcp_output.c 8.4 (Berkeley) 5/24/95 30 */ 31 32 #include <sys/cdefs.h> 33 __FBSDID("$FreeBSD$"); 34 35 #include "opt_inet.h" 36 #include "opt_inet6.h" 37 #include "opt_ipsec.h" 38 #include "opt_tcpdebug.h" 39 40 #include <sys/param.h> 41 #include <sys/systm.h> 42 #include <sys/domain.h> 43 #include <sys/hhook.h> 44 #include <sys/kernel.h> 45 #include <sys/lock.h> 46 #include <sys/mbuf.h> 47 #include <sys/mutex.h> 48 #include <sys/protosw.h> 49 #include <sys/socket.h> 50 #include <sys/socketvar.h> 51 #include <sys/sysctl.h> 52 53 #include <net/if.h> 54 #include <net/route.h> 55 #include <net/vnet.h> 56 57 #include <netinet/cc.h> 58 #include <netinet/in.h> 59 #include <netinet/in_systm.h> 60 #include <netinet/ip.h> 61 #include <netinet/in_pcb.h> 62 #include <netinet/ip_var.h> 63 #include <netinet/ip_options.h> 64 #ifdef INET6 65 #include <netinet6/in6_pcb.h> 66 #include <netinet/ip6.h> 67 #include <netinet6/ip6_var.h> 68 #endif 69 #define TCPOUTFLAGS 70 #include <netinet/tcp_fsm.h> 71 #include <netinet/tcp_seq.h> 72 #include <netinet/tcp_timer.h> 73 #include <netinet/tcp_var.h> 74 #include <netinet/tcpip.h> 75 #ifdef TCPDEBUG 76 #include <netinet/tcp_debug.h> 77 #endif 78 79 #ifdef IPSEC 80 #include <netipsec/ipsec.h> 81 #endif /*IPSEC*/ 82 83 #include <machine/in_cksum.h> 84 85 #include <security/mac/mac_framework.h> 86 87 #ifdef notyet 88 extern struct mbuf *m_copypack(); 89 #endif 90 91 VNET_DEFINE(int, path_mtu_discovery) = 1; 92 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_RW, 93 &VNET_NAME(path_mtu_discovery), 1, 94 "Enable Path MTU Discovery"); 95 96 VNET_DEFINE(int, ss_fltsz) = 1; 97 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, slowstart_flightsize, CTLFLAG_RW, 98 &VNET_NAME(ss_fltsz), 1, 99 "Slow start flight size"); 100 101 VNET_DEFINE(int, ss_fltsz_local) = 4; 102 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, local_slowstart_flightsize, 103 CTLFLAG_RW, &VNET_NAME(ss_fltsz_local), 1, 104 "Slow start flight size for local networks"); 105 106 VNET_DEFINE(int, tcp_do_tso) = 1; 107 #define V_tcp_do_tso VNET(tcp_do_tso) 108 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_RW, 109 &VNET_NAME(tcp_do_tso), 0, 110 "Enable TCP Segmentation Offload"); 111 112 VNET_DEFINE(int, tcp_do_autosndbuf) = 1; 113 #define V_tcp_do_autosndbuf VNET(tcp_do_autosndbuf) 114 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto, CTLFLAG_RW, 115 &VNET_NAME(tcp_do_autosndbuf), 0, 116 "Enable automatic send buffer sizing"); 117 118 VNET_DEFINE(int, tcp_autosndbuf_inc) = 8*1024; 119 #define V_tcp_autosndbuf_inc VNET(tcp_autosndbuf_inc) 120 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_inc, CTLFLAG_RW, 121 &VNET_NAME(tcp_autosndbuf_inc), 0, 122 "Incrementor step size of automatic send buffer"); 123 124 VNET_DEFINE(int, tcp_autosndbuf_max) = 256*1024; 125 #define V_tcp_autosndbuf_max VNET(tcp_autosndbuf_max) 126 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_max, CTLFLAG_RW, 127 &VNET_NAME(tcp_autosndbuf_max), 0, 128 "Max size of automatic send buffer"); 129 130 static void inline hhook_run_tcp_est_out(struct tcpcb *tp, 131 struct tcphdr *th, struct tcpopt *to, 132 long len, int tso); 133 static void inline cc_after_idle(struct tcpcb *tp); 134 135 /* 136 * Wrapper for the TCP established ouput helper hook. 137 */ 138 static void inline 139 hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, 140 struct tcpopt *to, long len, int tso) 141 { 142 struct tcp_hhook_data hhook_data; 143 144 if (V_tcp_hhh[HHOOK_TCP_EST_OUT]->hhh_nhooks > 0) { 145 hhook_data.tp = tp; 146 hhook_data.th = th; 147 hhook_data.to = to; 148 hhook_data.len = len; 149 hhook_data.tso = tso; 150 151 hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_OUT], &hhook_data, 152 tp->osd); 153 } 154 } 155 156 /* 157 * CC wrapper hook functions 158 */ 159 static void inline 160 cc_after_idle(struct tcpcb *tp) 161 { 162 INP_WLOCK_ASSERT(tp->t_inpcb); 163 164 if (CC_ALGO(tp)->after_idle != NULL) 165 CC_ALGO(tp)->after_idle(tp->ccv); 166 } 167 168 /* 169 * Tcp output routine: figure out what should be sent and send it. 170 */ 171 int 172 tcp_output(struct tcpcb *tp) 173 { 174 struct socket *so = tp->t_inpcb->inp_socket; 175 long len, recwin, sendwin; 176 int off, flags, error = 0; /* Keep compiler happy */ 177 struct mbuf *m; 178 struct ip *ip = NULL; 179 struct ipovly *ipov = NULL; 180 struct tcphdr *th; 181 u_char opt[TCP_MAXOLEN]; 182 unsigned ipoptlen, optlen, hdrlen; 183 #ifdef IPSEC 184 unsigned ipsec_optlen = 0; 185 #endif 186 int idle, sendalot; 187 int sack_rxmit, sack_bytes_rxmt; 188 struct sackhole *p; 189 int tso; 190 struct tcpopt to; 191 #if 0 192 int maxburst = TCP_MAXBURST; 193 #endif 194 #ifdef INET6 195 struct ip6_hdr *ip6 = NULL; 196 int isipv6; 197 198 isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0; 199 #endif 200 201 INP_WLOCK_ASSERT(tp->t_inpcb); 202 203 /* 204 * Determine length of data that should be transmitted, 205 * and flags that will be used. 206 * If there is some data or critical controls (SYN, RST) 207 * to send, then transmit; otherwise, investigate further. 208 */ 209 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); 210 if (idle && ticks - tp->t_rcvtime >= tp->t_rxtcur) 211 cc_after_idle(tp); 212 tp->t_flags &= ~TF_LASTIDLE; 213 if (idle) { 214 if (tp->t_flags & TF_MORETOCOME) { 215 tp->t_flags |= TF_LASTIDLE; 216 idle = 0; 217 } 218 } 219 again: 220 /* 221 * If we've recently taken a timeout, snd_max will be greater than 222 * snd_nxt. There may be SACK information that allows us to avoid 223 * resending already delivered data. Adjust snd_nxt accordingly. 224 */ 225 if ((tp->t_flags & TF_SACK_PERMIT) && 226 SEQ_LT(tp->snd_nxt, tp->snd_max)) 227 tcp_sack_adjust(tp); 228 sendalot = 0; 229 tso = 0; 230 off = tp->snd_nxt - tp->snd_una; 231 sendwin = min(tp->snd_wnd, tp->snd_cwnd); 232 233 flags = tcp_outflags[tp->t_state]; 234 /* 235 * Send any SACK-generated retransmissions. If we're explicitly trying 236 * to send out new data (when sendalot is 1), bypass this function. 237 * If we retransmit in fast recovery mode, decrement snd_cwnd, since 238 * we're replacing a (future) new transmission with a retransmission 239 * now, and we previously incremented snd_cwnd in tcp_input(). 240 */ 241 /* 242 * Still in sack recovery , reset rxmit flag to zero. 243 */ 244 sack_rxmit = 0; 245 sack_bytes_rxmt = 0; 246 len = 0; 247 p = NULL; 248 if ((tp->t_flags & TF_SACK_PERMIT) && IN_FASTRECOVERY(tp->t_flags) && 249 (p = tcp_sack_output(tp, &sack_bytes_rxmt))) { 250 long cwin; 251 252 cwin = min(tp->snd_wnd, tp->snd_cwnd) - sack_bytes_rxmt; 253 if (cwin < 0) 254 cwin = 0; 255 /* Do not retransmit SACK segments beyond snd_recover */ 256 if (SEQ_GT(p->end, tp->snd_recover)) { 257 /* 258 * (At least) part of sack hole extends beyond 259 * snd_recover. Check to see if we can rexmit data 260 * for this hole. 261 */ 262 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { 263 /* 264 * Can't rexmit any more data for this hole. 265 * That data will be rexmitted in the next 266 * sack recovery episode, when snd_recover 267 * moves past p->rxmit. 268 */ 269 p = NULL; 270 goto after_sack_rexmit; 271 } else 272 /* Can rexmit part of the current hole */ 273 len = ((long)ulmin(cwin, 274 tp->snd_recover - p->rxmit)); 275 } else 276 len = ((long)ulmin(cwin, p->end - p->rxmit)); 277 off = p->rxmit - tp->snd_una; 278 KASSERT(off >= 0,("%s: sack block to the left of una : %d", 279 __func__, off)); 280 if (len > 0) { 281 sack_rxmit = 1; 282 sendalot = 1; 283 TCPSTAT_INC(tcps_sack_rexmits); 284 TCPSTAT_ADD(tcps_sack_rexmit_bytes, 285 min(len, tp->t_maxseg)); 286 } 287 } 288 after_sack_rexmit: 289 /* 290 * Get standard flags, and add SYN or FIN if requested by 'hidden' 291 * state flags. 292 */ 293 if (tp->t_flags & TF_NEEDFIN) 294 flags |= TH_FIN; 295 if (tp->t_flags & TF_NEEDSYN) 296 flags |= TH_SYN; 297 298 SOCKBUF_LOCK(&so->so_snd); 299 /* 300 * If in persist timeout with window of 0, send 1 byte. 301 * Otherwise, if window is small but nonzero 302 * and timer expired, we will send what we can 303 * and go to transmit state. 304 */ 305 if (tp->t_flags & TF_FORCEDATA) { 306 if (sendwin == 0) { 307 /* 308 * If we still have some data to send, then 309 * clear the FIN bit. Usually this would 310 * happen below when it realizes that we 311 * aren't sending all the data. However, 312 * if we have exactly 1 byte of unsent data, 313 * then it won't clear the FIN bit below, 314 * and if we are in persist state, we wind 315 * up sending the packet without recording 316 * that we sent the FIN bit. 317 * 318 * We can't just blindly clear the FIN bit, 319 * because if we don't have any more data 320 * to send then the probe will be the FIN 321 * itself. 322 */ 323 if (off < so->so_snd.sb_cc) 324 flags &= ~TH_FIN; 325 sendwin = 1; 326 } else { 327 tcp_timer_activate(tp, TT_PERSIST, 0); 328 tp->t_rxtshift = 0; 329 } 330 } 331 332 /* 333 * If snd_nxt == snd_max and we have transmitted a FIN, the 334 * offset will be > 0 even if so_snd.sb_cc is 0, resulting in 335 * a negative length. This can also occur when TCP opens up 336 * its congestion window while receiving additional duplicate 337 * acks after fast-retransmit because TCP will reset snd_nxt 338 * to snd_max after the fast-retransmit. 339 * 340 * In the normal retransmit-FIN-only case, however, snd_nxt will 341 * be set to snd_una, the offset will be 0, and the length may 342 * wind up 0. 343 * 344 * If sack_rxmit is true we are retransmitting from the scoreboard 345 * in which case len is already set. 346 */ 347 if (sack_rxmit == 0) { 348 if (sack_bytes_rxmt == 0) 349 len = ((long)ulmin(so->so_snd.sb_cc, sendwin) - off); 350 else { 351 long cwin; 352 353 /* 354 * We are inside of a SACK recovery episode and are 355 * sending new data, having retransmitted all the 356 * data possible in the scoreboard. 357 */ 358 len = ((long)ulmin(so->so_snd.sb_cc, tp->snd_wnd) 359 - off); 360 /* 361 * Don't remove this (len > 0) check ! 362 * We explicitly check for len > 0 here (although it 363 * isn't really necessary), to work around a gcc 364 * optimization issue - to force gcc to compute 365 * len above. Without this check, the computation 366 * of len is bungled by the optimizer. 367 */ 368 if (len > 0) { 369 cwin = tp->snd_cwnd - 370 (tp->snd_nxt - tp->sack_newdata) - 371 sack_bytes_rxmt; 372 if (cwin < 0) 373 cwin = 0; 374 len = lmin(len, cwin); 375 } 376 } 377 } 378 379 /* 380 * Lop off SYN bit if it has already been sent. However, if this 381 * is SYN-SENT state and if segment contains data and if we don't 382 * know that foreign host supports TAO, suppress sending segment. 383 */ 384 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) { 385 if (tp->t_state != TCPS_SYN_RECEIVED) 386 flags &= ~TH_SYN; 387 off--, len++; 388 } 389 390 /* 391 * Be careful not to send data and/or FIN on SYN segments. 392 * This measure is needed to prevent interoperability problems 393 * with not fully conformant TCP implementations. 394 */ 395 if ((flags & TH_SYN) && (tp->t_flags & TF_NOOPT)) { 396 len = 0; 397 flags &= ~TH_FIN; 398 } 399 400 if (len < 0) { 401 /* 402 * If FIN has been sent but not acked, 403 * but we haven't been called to retransmit, 404 * len will be < 0. Otherwise, window shrank 405 * after we sent into it. If window shrank to 0, 406 * cancel pending retransmit, pull snd_nxt back 407 * to (closed) window, and set the persist timer 408 * if it isn't already going. If the window didn't 409 * close completely, just wait for an ACK. 410 */ 411 len = 0; 412 if (sendwin == 0) { 413 tcp_timer_activate(tp, TT_REXMT, 0); 414 tp->t_rxtshift = 0; 415 tp->snd_nxt = tp->snd_una; 416 if (!tcp_timer_active(tp, TT_PERSIST)) 417 tcp_setpersist(tp); 418 } 419 } 420 421 /* len will be >= 0 after this point. */ 422 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 423 424 /* 425 * Automatic sizing of send socket buffer. Often the send buffer 426 * size is not optimally adjusted to the actual network conditions 427 * at hand (delay bandwidth product). Setting the buffer size too 428 * small limits throughput on links with high bandwidth and high 429 * delay (eg. trans-continental/oceanic links). Setting the 430 * buffer size too big consumes too much real kernel memory, 431 * especially with many connections on busy servers. 432 * 433 * The criteria to step up the send buffer one notch are: 434 * 1. receive window of remote host is larger than send buffer 435 * (with a fudge factor of 5/4th); 436 * 2. send buffer is filled to 7/8th with data (so we actually 437 * have data to make use of it); 438 * 3. send buffer fill has not hit maximal automatic size; 439 * 4. our send window (slow start and cogestion controlled) is 440 * larger than sent but unacknowledged data in send buffer. 441 * 442 * The remote host receive window scaling factor may limit the 443 * growing of the send buffer before it reaches its allowed 444 * maximum. 445 * 446 * It scales directly with slow start or congestion window 447 * and does at most one step per received ACK. This fast 448 * scaling has the drawback of growing the send buffer beyond 449 * what is strictly necessary to make full use of a given 450 * delay*bandwith product. However testing has shown this not 451 * to be much of an problem. At worst we are trading wasting 452 * of available bandwith (the non-use of it) for wasting some 453 * socket buffer memory. 454 * 455 * TODO: Shrink send buffer during idle periods together 456 * with congestion window. Requires another timer. Has to 457 * wait for upcoming tcp timer rewrite. 458 */ 459 if (V_tcp_do_autosndbuf && so->so_snd.sb_flags & SB_AUTOSIZE) { 460 if ((tp->snd_wnd / 4 * 5) >= so->so_snd.sb_hiwat && 461 so->so_snd.sb_cc >= (so->so_snd.sb_hiwat / 8 * 7) && 462 so->so_snd.sb_cc < V_tcp_autosndbuf_max && 463 sendwin >= (so->so_snd.sb_cc - (tp->snd_nxt - tp->snd_una))) { 464 if (!sbreserve_locked(&so->so_snd, 465 min(so->so_snd.sb_hiwat + V_tcp_autosndbuf_inc, 466 V_tcp_autosndbuf_max), so, curthread)) 467 so->so_snd.sb_flags &= ~SB_AUTOSIZE; 468 } 469 } 470 471 /* 472 * Decide if we can use TCP Segmentation Offloading (if supported by 473 * hardware). 474 * 475 * TSO may only be used if we are in a pure bulk sending state. The 476 * presence of TCP-MD5, SACK retransmits, SACK advertizements and 477 * IP options prevent using TSO. With TSO the TCP header is the same 478 * (except for the sequence number) for all generated packets. This 479 * makes it impossible to transmit any options which vary per generated 480 * segment or packet. 481 */ 482 #ifdef IPSEC 483 /* 484 * Pre-calculate here as we save another lookup into the darknesses 485 * of IPsec that way and can actually decide if TSO is ok. 486 */ 487 ipsec_optlen = ipsec_hdrsiz_tcp(tp); 488 #endif 489 if ((tp->t_flags & TF_TSO) && V_tcp_do_tso && len > tp->t_maxseg && 490 ((tp->t_flags & TF_SIGNATURE) == 0) && 491 tp->rcv_numsacks == 0 && sack_rxmit == 0 && 492 #ifdef IPSEC 493 ipsec_optlen == 0 && 494 #endif 495 tp->t_inpcb->inp_options == NULL && 496 tp->t_inpcb->in6p_options == NULL) 497 tso = 1; 498 499 if (sack_rxmit) { 500 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) 501 flags &= ~TH_FIN; 502 } else { 503 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc)) 504 flags &= ~TH_FIN; 505 } 506 507 recwin = sbspace(&so->so_rcv); 508 509 /* 510 * Sender silly window avoidance. We transmit under the following 511 * conditions when len is non-zero: 512 * 513 * - We have a full segment (or more with TSO) 514 * - This is the last buffer in a write()/send() and we are 515 * either idle or running NODELAY 516 * - we've timed out (e.g. persist timer) 517 * - we have more then 1/2 the maximum send window's worth of 518 * data (receiver may be limited the window size) 519 * - we need to retransmit 520 */ 521 if (len) { 522 if (len >= tp->t_maxseg) 523 goto send; 524 /* 525 * NOTE! on localhost connections an 'ack' from the remote 526 * end may occur synchronously with the output and cause 527 * us to flush a buffer queued with moretocome. XXX 528 * 529 * note: the len + off check is almost certainly unnecessary. 530 */ 531 if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ 532 (idle || (tp->t_flags & TF_NODELAY)) && 533 len + off >= so->so_snd.sb_cc && 534 (tp->t_flags & TF_NOPUSH) == 0) { 535 goto send; 536 } 537 if (tp->t_flags & TF_FORCEDATA) /* typ. timeout case */ 538 goto send; 539 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0) 540 goto send; 541 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ 542 goto send; 543 if (sack_rxmit) 544 goto send; 545 } 546 547 /* 548 * Compare available window to amount of window 549 * known to peer (as advertised window less 550 * next expected input). If the difference is at least two 551 * max size segments, or at least 50% of the maximum possible 552 * window, then want to send a window update to peer. 553 * Skip this if the connection is in T/TCP half-open state. 554 * Don't send pure window updates when the peer has closed 555 * the connection and won't ever send more data. 556 */ 557 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && 558 !TCPS_HAVERCVDFIN(tp->t_state)) { 559 /* 560 * "adv" is the amount we can increase the window, 561 * taking into account that we are limited by 562 * TCP_MAXWIN << tp->rcv_scale. 563 */ 564 long adv; 565 int oldwin; 566 567 adv = min(recwin, (long)TCP_MAXWIN << tp->rcv_scale); 568 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt)) { 569 oldwin = (tp->rcv_adv - tp->rcv_nxt); 570 adv -= oldwin; 571 } else 572 oldwin = 0; 573 574 /* 575 * If the new window size ends up being the same as the old 576 * size when it is scaled, then don't force a window update. 577 */ 578 if (oldwin >> tp->rcv_scale == (adv + oldwin) >> tp->rcv_scale) 579 goto dontupdate; 580 if (adv >= (long) (2 * tp->t_maxseg)) 581 goto send; 582 if (2 * adv >= (long) so->so_rcv.sb_hiwat) 583 goto send; 584 } 585 dontupdate: 586 587 /* 588 * Send if we owe the peer an ACK, RST, SYN, or urgent data. ACKNOW 589 * is also a catch-all for the retransmit timer timeout case. 590 */ 591 if (tp->t_flags & TF_ACKNOW) 592 goto send; 593 if ((flags & TH_RST) || 594 ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0)) 595 goto send; 596 if (SEQ_GT(tp->snd_up, tp->snd_una)) 597 goto send; 598 /* 599 * If our state indicates that FIN should be sent 600 * and we have not yet done so, then we need to send. 601 */ 602 if (flags & TH_FIN && 603 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una)) 604 goto send; 605 /* 606 * In SACK, it is possible for tcp_output to fail to send a segment 607 * after the retransmission timer has been turned off. Make sure 608 * that the retransmission timer is set. 609 */ 610 if ((tp->t_flags & TF_SACK_PERMIT) && 611 SEQ_GT(tp->snd_max, tp->snd_una) && 612 !tcp_timer_active(tp, TT_REXMT) && 613 !tcp_timer_active(tp, TT_PERSIST)) { 614 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur); 615 goto just_return; 616 } 617 /* 618 * TCP window updates are not reliable, rather a polling protocol 619 * using ``persist'' packets is used to insure receipt of window 620 * updates. The three ``states'' for the output side are: 621 * idle not doing retransmits or persists 622 * persisting to move a small or zero window 623 * (re)transmitting and thereby not persisting 624 * 625 * tcp_timer_active(tp, TT_PERSIST) 626 * is true when we are in persist state. 627 * (tp->t_flags & TF_FORCEDATA) 628 * is set when we are called to send a persist packet. 629 * tcp_timer_active(tp, TT_REXMT) 630 * is set when we are retransmitting 631 * The output side is idle when both timers are zero. 632 * 633 * If send window is too small, there is data to transmit, and no 634 * retransmit or persist is pending, then go to persist state. 635 * If nothing happens soon, send when timer expires: 636 * if window is nonzero, transmit what we can, 637 * otherwise force out a byte. 638 */ 639 if (so->so_snd.sb_cc && !tcp_timer_active(tp, TT_REXMT) && 640 !tcp_timer_active(tp, TT_PERSIST)) { 641 tp->t_rxtshift = 0; 642 tcp_setpersist(tp); 643 } 644 645 /* 646 * No reason to send a segment, just return. 647 */ 648 just_return: 649 SOCKBUF_UNLOCK(&so->so_snd); 650 return (0); 651 652 send: 653 SOCKBUF_LOCK_ASSERT(&so->so_snd); 654 /* 655 * Before ESTABLISHED, force sending of initial options 656 * unless TCP set not to do any options. 657 * NOTE: we assume that the IP/TCP header plus TCP options 658 * always fit in a single mbuf, leaving room for a maximum 659 * link header, i.e. 660 * max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MCLBYTES 661 */ 662 optlen = 0; 663 #ifdef INET6 664 if (isipv6) 665 hdrlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr); 666 else 667 #endif 668 hdrlen = sizeof (struct tcpiphdr); 669 670 /* 671 * Compute options for segment. 672 * We only have to care about SYN and established connection 673 * segments. Options for SYN-ACK segments are handled in TCP 674 * syncache. 675 */ 676 if ((tp->t_flags & TF_NOOPT) == 0) { 677 to.to_flags = 0; 678 /* Maximum segment size. */ 679 if (flags & TH_SYN) { 680 tp->snd_nxt = tp->iss; 681 to.to_mss = tcp_mssopt(&tp->t_inpcb->inp_inc); 682 to.to_flags |= TOF_MSS; 683 } 684 /* Window scaling. */ 685 if ((flags & TH_SYN) && (tp->t_flags & TF_REQ_SCALE)) { 686 to.to_wscale = tp->request_r_scale; 687 to.to_flags |= TOF_SCALE; 688 } 689 /* Timestamps. */ 690 if ((tp->t_flags & TF_RCVD_TSTMP) || 691 ((flags & TH_SYN) && (tp->t_flags & TF_REQ_TSTMP))) { 692 to.to_tsval = ticks + tp->ts_offset; 693 to.to_tsecr = tp->ts_recent; 694 to.to_flags |= TOF_TS; 695 /* Set receive buffer autosizing timestamp. */ 696 if (tp->rfbuf_ts == 0 && 697 (so->so_rcv.sb_flags & SB_AUTOSIZE)) 698 tp->rfbuf_ts = ticks; 699 } 700 /* Selective ACK's. */ 701 if (tp->t_flags & TF_SACK_PERMIT) { 702 if (flags & TH_SYN) 703 to.to_flags |= TOF_SACKPERM; 704 else if (TCPS_HAVEESTABLISHED(tp->t_state) && 705 (tp->t_flags & TF_SACK_PERMIT) && 706 tp->rcv_numsacks > 0) { 707 to.to_flags |= TOF_SACK; 708 to.to_nsacks = tp->rcv_numsacks; 709 to.to_sacks = (u_char *)tp->sackblks; 710 } 711 } 712 #ifdef TCP_SIGNATURE 713 /* TCP-MD5 (RFC2385). */ 714 if (tp->t_flags & TF_SIGNATURE) 715 to.to_flags |= TOF_SIGNATURE; 716 #endif /* TCP_SIGNATURE */ 717 718 /* Processing the options. */ 719 hdrlen += optlen = tcp_addoptions(&to, opt); 720 } 721 722 #ifdef INET6 723 if (isipv6) 724 ipoptlen = ip6_optlen(tp->t_inpcb); 725 else 726 #endif 727 if (tp->t_inpcb->inp_options) 728 ipoptlen = tp->t_inpcb->inp_options->m_len - 729 offsetof(struct ipoption, ipopt_list); 730 else 731 ipoptlen = 0; 732 #ifdef IPSEC 733 ipoptlen += ipsec_optlen; 734 #endif 735 736 /* 737 * Adjust data length if insertion of options will 738 * bump the packet length beyond the t_maxopd length. 739 * Clear the FIN bit because we cut off the tail of 740 * the segment. 741 */ 742 if (len + optlen + ipoptlen > tp->t_maxopd) { 743 flags &= ~TH_FIN; 744 745 if (tso) { 746 KASSERT(ipoptlen == 0, 747 ("%s: TSO can't do IP options", __func__)); 748 749 /* 750 * Limit a burst to IP_MAXPACKET minus IP, 751 * TCP and options length to keep ip->ip_len 752 * from overflowing. 753 */ 754 if (len > IP_MAXPACKET - hdrlen) { 755 len = IP_MAXPACKET - hdrlen; 756 sendalot = 1; 757 } 758 759 /* 760 * Prevent the last segment from being 761 * fractional unless the send sockbuf can 762 * be emptied. 763 */ 764 if (sendalot && off + len < so->so_snd.sb_cc) { 765 len -= len % (tp->t_maxopd - optlen); 766 sendalot = 1; 767 } 768 769 /* 770 * Send the FIN in a separate segment 771 * after the bulk sending is done. 772 * We don't trust the TSO implementations 773 * to clear the FIN flag on all but the 774 * last segment. 775 */ 776 if (tp->t_flags & TF_NEEDFIN) 777 sendalot = 1; 778 779 } else { 780 len = tp->t_maxopd - optlen - ipoptlen; 781 sendalot = 1; 782 } 783 } else 784 tso = 0; 785 786 KASSERT(len + hdrlen + ipoptlen <= IP_MAXPACKET, 787 ("%s: len > IP_MAXPACKET", __func__)); 788 789 /*#ifdef DIAGNOSTIC*/ 790 #ifdef INET6 791 if (max_linkhdr + hdrlen > MCLBYTES) 792 #else 793 if (max_linkhdr + hdrlen > MHLEN) 794 #endif 795 panic("tcphdr too big"); 796 /*#endif*/ 797 798 /* 799 * This KASSERT is here to catch edge cases at a well defined place. 800 * Before, those had triggered (random) panic conditions further down. 801 */ 802 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 803 804 /* 805 * Grab a header mbuf, attaching a copy of data to 806 * be transmitted, and initialize the header from 807 * the template for sends on this connection. 808 */ 809 if (len) { 810 struct mbuf *mb; 811 u_int moff; 812 813 if ((tp->t_flags & TF_FORCEDATA) && len == 1) 814 TCPSTAT_INC(tcps_sndprobe); 815 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { 816 tp->t_sndrexmitpack++; 817 TCPSTAT_INC(tcps_sndrexmitpack); 818 TCPSTAT_ADD(tcps_sndrexmitbyte, len); 819 } else { 820 TCPSTAT_INC(tcps_sndpack); 821 TCPSTAT_ADD(tcps_sndbyte, len); 822 } 823 #ifdef notyet 824 if ((m = m_copypack(so->so_snd.sb_mb, off, 825 (int)len, max_linkhdr + hdrlen)) == 0) { 826 SOCKBUF_UNLOCK(&so->so_snd); 827 error = ENOBUFS; 828 goto out; 829 } 830 /* 831 * m_copypack left space for our hdr; use it. 832 */ 833 m->m_len += hdrlen; 834 m->m_data -= hdrlen; 835 #else 836 MGETHDR(m, M_DONTWAIT, MT_DATA); 837 if (m == NULL) { 838 SOCKBUF_UNLOCK(&so->so_snd); 839 error = ENOBUFS; 840 goto out; 841 } 842 #ifdef INET6 843 if (MHLEN < hdrlen + max_linkhdr) { 844 MCLGET(m, M_DONTWAIT); 845 if ((m->m_flags & M_EXT) == 0) { 846 SOCKBUF_UNLOCK(&so->so_snd); 847 m_freem(m); 848 error = ENOBUFS; 849 goto out; 850 } 851 } 852 #endif 853 m->m_data += max_linkhdr; 854 m->m_len = hdrlen; 855 856 /* 857 * Start the m_copy functions from the closest mbuf 858 * to the offset in the socket buffer chain. 859 */ 860 mb = sbsndptr(&so->so_snd, off, len, &moff); 861 862 if (len <= MHLEN - hdrlen - max_linkhdr) { 863 m_copydata(mb, moff, (int)len, 864 mtod(m, caddr_t) + hdrlen); 865 m->m_len += len; 866 } else { 867 m->m_next = m_copy(mb, moff, (int)len); 868 if (m->m_next == NULL) { 869 SOCKBUF_UNLOCK(&so->so_snd); 870 (void) m_free(m); 871 error = ENOBUFS; 872 goto out; 873 } 874 } 875 #endif /* notyet */ 876 /* 877 * If we're sending everything we've got, set PUSH. 878 * (This will keep happy those implementations which only 879 * give data to the user when a buffer fills or 880 * a PUSH comes in.) 881 */ 882 if (off + len == so->so_snd.sb_cc) 883 flags |= TH_PUSH; 884 SOCKBUF_UNLOCK(&so->so_snd); 885 } else { 886 SOCKBUF_UNLOCK(&so->so_snd); 887 if (tp->t_flags & TF_ACKNOW) 888 TCPSTAT_INC(tcps_sndacks); 889 else if (flags & (TH_SYN|TH_FIN|TH_RST)) 890 TCPSTAT_INC(tcps_sndctrl); 891 else if (SEQ_GT(tp->snd_up, tp->snd_una)) 892 TCPSTAT_INC(tcps_sndurg); 893 else 894 TCPSTAT_INC(tcps_sndwinup); 895 896 MGETHDR(m, M_DONTWAIT, MT_DATA); 897 if (m == NULL) { 898 error = ENOBUFS; 899 goto out; 900 } 901 #ifdef INET6 902 if (isipv6 && (MHLEN < hdrlen + max_linkhdr) && 903 MHLEN >= hdrlen) { 904 MH_ALIGN(m, hdrlen); 905 } else 906 #endif 907 m->m_data += max_linkhdr; 908 m->m_len = hdrlen; 909 } 910 SOCKBUF_UNLOCK_ASSERT(&so->so_snd); 911 m->m_pkthdr.rcvif = (struct ifnet *)0; 912 #ifdef MAC 913 mac_inpcb_create_mbuf(tp->t_inpcb, m); 914 #endif 915 #ifdef INET6 916 if (isipv6) { 917 ip6 = mtod(m, struct ip6_hdr *); 918 th = (struct tcphdr *)(ip6 + 1); 919 tcpip_fillheaders(tp->t_inpcb, ip6, th); 920 } else 921 #endif /* INET6 */ 922 { 923 ip = mtod(m, struct ip *); 924 ipov = (struct ipovly *)ip; 925 th = (struct tcphdr *)(ip + 1); 926 tcpip_fillheaders(tp->t_inpcb, ip, th); 927 } 928 929 /* 930 * Fill in fields, remembering maximum advertised 931 * window for use in delaying messages about window sizes. 932 * If resending a FIN, be sure not to use a new sequence number. 933 */ 934 if (flags & TH_FIN && tp->t_flags & TF_SENTFIN && 935 tp->snd_nxt == tp->snd_max) 936 tp->snd_nxt--; 937 /* 938 * If we are starting a connection, send ECN setup 939 * SYN packet. If we are on a retransmit, we may 940 * resend those bits a number of times as per 941 * RFC 3168. 942 */ 943 if (tp->t_state == TCPS_SYN_SENT && V_tcp_do_ecn) { 944 if (tp->t_rxtshift >= 1) { 945 if (tp->t_rxtshift <= V_tcp_ecn_maxretries) 946 flags |= TH_ECE|TH_CWR; 947 } else 948 flags |= TH_ECE|TH_CWR; 949 } 950 951 if (tp->t_state == TCPS_ESTABLISHED && 952 (tp->t_flags & TF_ECN_PERMIT)) { 953 /* 954 * If the peer has ECN, mark data packets with 955 * ECN capable transmission (ECT). 956 * Ignore pure ack packets, retransmissions and window probes. 957 */ 958 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) && 959 !((tp->t_flags & TF_FORCEDATA) && len == 1)) { 960 #ifdef INET6 961 if (isipv6) 962 ip6->ip6_flow |= htonl(IPTOS_ECN_ECT0 << 20); 963 else 964 #endif 965 ip->ip_tos |= IPTOS_ECN_ECT0; 966 TCPSTAT_INC(tcps_ecn_ect0); 967 } 968 969 /* 970 * Reply with proper ECN notifications. 971 */ 972 if (tp->t_flags & TF_ECN_SND_CWR) { 973 flags |= TH_CWR; 974 tp->t_flags &= ~TF_ECN_SND_CWR; 975 } 976 if (tp->t_flags & TF_ECN_SND_ECE) 977 flags |= TH_ECE; 978 } 979 980 /* 981 * If we are doing retransmissions, then snd_nxt will 982 * not reflect the first unsent octet. For ACK only 983 * packets, we do not want the sequence number of the 984 * retransmitted packet, we want the sequence number 985 * of the next unsent octet. So, if there is no data 986 * (and no SYN or FIN), use snd_max instead of snd_nxt 987 * when filling in ti_seq. But if we are in persist 988 * state, snd_max might reflect one byte beyond the 989 * right edge of the window, so use snd_nxt in that 990 * case, since we know we aren't doing a retransmission. 991 * (retransmit and persist are mutually exclusive...) 992 */ 993 if (sack_rxmit == 0) { 994 if (len || (flags & (TH_SYN|TH_FIN)) || 995 tcp_timer_active(tp, TT_PERSIST)) 996 th->th_seq = htonl(tp->snd_nxt); 997 else 998 th->th_seq = htonl(tp->snd_max); 999 } else { 1000 th->th_seq = htonl(p->rxmit); 1001 p->rxmit += len; 1002 tp->sackhint.sack_bytes_rexmit += len; 1003 } 1004 th->th_ack = htonl(tp->rcv_nxt); 1005 if (optlen) { 1006 bcopy(opt, th + 1, optlen); 1007 th->th_off = (sizeof (struct tcphdr) + optlen) >> 2; 1008 } 1009 th->th_flags = flags; 1010 /* 1011 * Calculate receive window. Don't shrink window, 1012 * but avoid silly window syndrome. 1013 */ 1014 if (recwin < (long)(so->so_rcv.sb_hiwat / 4) && 1015 recwin < (long)tp->t_maxseg) 1016 recwin = 0; 1017 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt) && 1018 recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) 1019 recwin = (long)(tp->rcv_adv - tp->rcv_nxt); 1020 if (recwin > (long)TCP_MAXWIN << tp->rcv_scale) 1021 recwin = (long)TCP_MAXWIN << tp->rcv_scale; 1022 1023 /* 1024 * According to RFC1323 the window field in a SYN (i.e., a <SYN> 1025 * or <SYN,ACK>) segment itself is never scaled. The <SYN,ACK> 1026 * case is handled in syncache. 1027 */ 1028 if (flags & TH_SYN) 1029 th->th_win = htons((u_short) 1030 (min(sbspace(&so->so_rcv), TCP_MAXWIN))); 1031 else 1032 th->th_win = htons((u_short)(recwin >> tp->rcv_scale)); 1033 1034 /* 1035 * Adjust the RXWIN0SENT flag - indicate that we have advertised 1036 * a 0 window. This may cause the remote transmitter to stall. This 1037 * flag tells soreceive() to disable delayed acknowledgements when 1038 * draining the buffer. This can occur if the receiver is attempting 1039 * to read more data than can be buffered prior to transmitting on 1040 * the connection. 1041 */ 1042 if (th->th_win == 0) { 1043 tp->t_sndzerowin++; 1044 tp->t_flags |= TF_RXWIN0SENT; 1045 } else 1046 tp->t_flags &= ~TF_RXWIN0SENT; 1047 if (SEQ_GT(tp->snd_up, tp->snd_nxt)) { 1048 th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt)); 1049 th->th_flags |= TH_URG; 1050 } else 1051 /* 1052 * If no urgent pointer to send, then we pull 1053 * the urgent pointer to the left edge of the send window 1054 * so that it doesn't drift into the send window on sequence 1055 * number wraparound. 1056 */ 1057 tp->snd_up = tp->snd_una; /* drag it along */ 1058 1059 #ifdef TCP_SIGNATURE 1060 if (tp->t_flags & TF_SIGNATURE) { 1061 int sigoff = to.to_signature - opt; 1062 tcp_signature_compute(m, 0, len, optlen, 1063 (u_char *)(th + 1) + sigoff, IPSEC_DIR_OUTBOUND); 1064 } 1065 #endif 1066 1067 /* 1068 * Put TCP length in extended header, and then 1069 * checksum extended header and data. 1070 */ 1071 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */ 1072 #ifdef INET6 1073 if (isipv6) 1074 /* 1075 * ip6_plen is not need to be filled now, and will be filled 1076 * in ip6_output. 1077 */ 1078 th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr), 1079 sizeof(struct tcphdr) + optlen + len); 1080 else 1081 #endif /* INET6 */ 1082 { 1083 m->m_pkthdr.csum_flags = CSUM_TCP; 1084 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 1085 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, 1086 htons(sizeof(struct tcphdr) + IPPROTO_TCP + len + optlen)); 1087 1088 /* IP version must be set here for ipv4/ipv6 checking later */ 1089 KASSERT(ip->ip_v == IPVERSION, 1090 ("%s: IP version incorrect: %d", __func__, ip->ip_v)); 1091 } 1092 1093 /* 1094 * Enable TSO and specify the size of the segments. 1095 * The TCP pseudo header checksum is always provided. 1096 * XXX: Fixme: This is currently not the case for IPv6. 1097 */ 1098 if (tso) { 1099 KASSERT(len > tp->t_maxopd - optlen, 1100 ("%s: len <= tso_segsz", __func__)); 1101 m->m_pkthdr.csum_flags |= CSUM_TSO; 1102 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen; 1103 } 1104 1105 KASSERT(len + hdrlen + ipoptlen == m_length(m, NULL), 1106 ("%s: mbuf chain shorter than expected", __func__)); 1107 1108 /* 1109 * In transmit state, time the transmission and arrange for 1110 * the retransmit. In persist state, just set snd_max. 1111 */ 1112 if ((tp->t_flags & TF_FORCEDATA) == 0 || 1113 !tcp_timer_active(tp, TT_PERSIST)) { 1114 tcp_seq startseq = tp->snd_nxt; 1115 1116 /* 1117 * Advance snd_nxt over sequence space of this segment. 1118 */ 1119 if (flags & (TH_SYN|TH_FIN)) { 1120 if (flags & TH_SYN) 1121 tp->snd_nxt++; 1122 if (flags & TH_FIN) { 1123 tp->snd_nxt++; 1124 tp->t_flags |= TF_SENTFIN; 1125 } 1126 } 1127 if (sack_rxmit) 1128 goto timer; 1129 tp->snd_nxt += len; 1130 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) { 1131 tp->snd_max = tp->snd_nxt; 1132 /* 1133 * Time this transmission if not a retransmission and 1134 * not currently timing anything. 1135 */ 1136 if (tp->t_rtttime == 0) { 1137 tp->t_rtttime = ticks; 1138 tp->t_rtseq = startseq; 1139 TCPSTAT_INC(tcps_segstimed); 1140 } 1141 } 1142 1143 /* 1144 * Set retransmit timer if not currently set, 1145 * and not doing a pure ack or a keep-alive probe. 1146 * Initial value for retransmit timer is smoothed 1147 * round-trip time + 2 * round-trip time variance. 1148 * Initialize shift counter which is used for backoff 1149 * of retransmit time. 1150 */ 1151 timer: 1152 if (!tcp_timer_active(tp, TT_REXMT) && 1153 ((sack_rxmit && tp->snd_nxt != tp->snd_max) || 1154 (tp->snd_nxt != tp->snd_una))) { 1155 if (tcp_timer_active(tp, TT_PERSIST)) { 1156 tcp_timer_activate(tp, TT_PERSIST, 0); 1157 tp->t_rxtshift = 0; 1158 } 1159 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur); 1160 } 1161 } else { 1162 /* 1163 * Persist case, update snd_max but since we are in 1164 * persist mode (no window) we do not update snd_nxt. 1165 */ 1166 int xlen = len; 1167 if (flags & TH_SYN) 1168 ++xlen; 1169 if (flags & TH_FIN) { 1170 ++xlen; 1171 tp->t_flags |= TF_SENTFIN; 1172 } 1173 if (SEQ_GT(tp->snd_nxt + xlen, tp->snd_max)) 1174 tp->snd_max = tp->snd_nxt + len; 1175 } 1176 1177 /* Run HHOOK_TCP_ESTABLISHED_OUT helper hooks. */ 1178 hhook_run_tcp_est_out(tp, th, &to, len, tso); 1179 1180 #ifdef TCPDEBUG 1181 /* 1182 * Trace. 1183 */ 1184 if (so->so_options & SO_DEBUG) { 1185 u_short save = 0; 1186 #ifdef INET6 1187 if (!isipv6) 1188 #endif 1189 { 1190 save = ipov->ih_len; 1191 ipov->ih_len = htons(m->m_pkthdr.len /* - hdrlen + (th->th_off << 2) */); 1192 } 1193 tcp_trace(TA_OUTPUT, tp->t_state, tp, mtod(m, void *), th, 0); 1194 #ifdef INET6 1195 if (!isipv6) 1196 #endif 1197 ipov->ih_len = save; 1198 } 1199 #endif /* TCPDEBUG */ 1200 1201 /* 1202 * Fill in IP length and desired time to live and 1203 * send to IP level. There should be a better way 1204 * to handle ttl and tos; we could keep them in 1205 * the template, but need a way to checksum without them. 1206 */ 1207 /* 1208 * m->m_pkthdr.len should have been set before cksum calcuration, 1209 * because in6_cksum() need it. 1210 */ 1211 #ifdef INET6 1212 if (isipv6) { 1213 /* 1214 * we separately set hoplimit for every segment, since the 1215 * user might want to change the value via setsockopt. 1216 * Also, desired default hop limit might be changed via 1217 * Neighbor Discovery. 1218 */ 1219 ip6->ip6_hlim = in6_selecthlim(tp->t_inpcb, NULL); 1220 1221 /* TODO: IPv6 IP6TOS_ECT bit on */ 1222 error = ip6_output(m, 1223 tp->t_inpcb->in6p_outputopts, NULL, 1224 ((so->so_options & SO_DONTROUTE) ? 1225 IP_ROUTETOIF : 0), NULL, NULL, tp->t_inpcb); 1226 } 1227 #endif /* INET6 */ 1228 #if defined(INET) && defined(INET6) 1229 else 1230 #endif 1231 #ifdef INET 1232 { 1233 ip->ip_len = m->m_pkthdr.len; 1234 #ifdef INET6 1235 if (tp->t_inpcb->inp_vflag & INP_IPV6PROTO) 1236 ip->ip_ttl = in6_selecthlim(tp->t_inpcb, NULL); 1237 #endif /* INET6 */ 1238 /* 1239 * If we do path MTU discovery, then we set DF on every packet. 1240 * This might not be the best thing to do according to RFC3390 1241 * Section 2. However the tcp hostcache migitates the problem 1242 * so it affects only the first tcp connection with a host. 1243 * 1244 * NB: Don't set DF on small MTU/MSS to have a safe fallback. 1245 */ 1246 if (V_path_mtu_discovery && tp->t_maxopd > V_tcp_minmss) 1247 ip->ip_off |= IP_DF; 1248 1249 error = ip_output(m, tp->t_inpcb->inp_options, NULL, 1250 ((so->so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0), 0, 1251 tp->t_inpcb); 1252 } 1253 #endif /* INET */ 1254 if (error) { 1255 1256 /* 1257 * We know that the packet was lost, so back out the 1258 * sequence number advance, if any. 1259 * 1260 * If the error is EPERM the packet got blocked by the 1261 * local firewall. Normally we should terminate the 1262 * connection but the blocking may have been spurious 1263 * due to a firewall reconfiguration cycle. So we treat 1264 * it like a packet loss and let the retransmit timer and 1265 * timeouts do their work over time. 1266 * XXX: It is a POLA question whether calling tcp_drop right 1267 * away would be the really correct behavior instead. 1268 */ 1269 if (((tp->t_flags & TF_FORCEDATA) == 0 || 1270 !tcp_timer_active(tp, TT_PERSIST)) && 1271 ((flags & TH_SYN) == 0) && 1272 (error != EPERM)) { 1273 if (sack_rxmit) { 1274 p->rxmit -= len; 1275 tp->sackhint.sack_bytes_rexmit -= len; 1276 KASSERT(tp->sackhint.sack_bytes_rexmit >= 0, 1277 ("sackhint bytes rtx >= 0")); 1278 } else 1279 tp->snd_nxt -= len; 1280 } 1281 out: 1282 SOCKBUF_UNLOCK_ASSERT(&so->so_snd); /* Check gotos. */ 1283 switch (error) { 1284 case EPERM: 1285 tp->t_softerror = error; 1286 return (error); 1287 case ENOBUFS: 1288 if (!tcp_timer_active(tp, TT_REXMT) && 1289 !tcp_timer_active(tp, TT_PERSIST)) 1290 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur); 1291 tp->snd_cwnd = tp->t_maxseg; 1292 return (0); 1293 case EMSGSIZE: 1294 /* 1295 * For some reason the interface we used initially 1296 * to send segments changed to another or lowered 1297 * its MTU. 1298 * 1299 * tcp_mtudisc() will find out the new MTU and as 1300 * its last action, initiate retransmission, so it 1301 * is important to not do so here. 1302 * 1303 * If TSO was active we either got an interface 1304 * without TSO capabilits or TSO was turned off. 1305 * Disable it for this connection as too and 1306 * immediatly retry with MSS sized segments generated 1307 * by this function. 1308 */ 1309 if (tso) 1310 tp->t_flags &= ~TF_TSO; 1311 tcp_mtudisc(tp->t_inpcb, 0); 1312 return (0); 1313 case EHOSTDOWN: 1314 case EHOSTUNREACH: 1315 case ENETDOWN: 1316 case ENETUNREACH: 1317 if (TCPS_HAVERCVDSYN(tp->t_state)) { 1318 tp->t_softerror = error; 1319 return (0); 1320 } 1321 /* FALLTHROUGH */ 1322 default: 1323 return (error); 1324 } 1325 } 1326 TCPSTAT_INC(tcps_sndtotal); 1327 1328 /* 1329 * Data sent (as far as we can tell). 1330 * If this advertises a larger window than any other segment, 1331 * then remember the size of the advertised window. 1332 * Any pending ACK has now been sent. 1333 */ 1334 if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) 1335 tp->rcv_adv = tp->rcv_nxt + recwin; 1336 tp->last_ack_sent = tp->rcv_nxt; 1337 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); 1338 if (tcp_timer_active(tp, TT_DELACK)) 1339 tcp_timer_activate(tp, TT_DELACK, 0); 1340 #if 0 1341 /* 1342 * This completely breaks TCP if newreno is turned on. What happens 1343 * is that if delayed-acks are turned on on the receiver, this code 1344 * on the transmitter effectively destroys the TCP window, forcing 1345 * it to four packets (1.5Kx4 = 6K window). 1346 */ 1347 if (sendalot && --maxburst) 1348 goto again; 1349 #endif 1350 if (sendalot) 1351 goto again; 1352 return (0); 1353 } 1354 1355 void 1356 tcp_setpersist(struct tcpcb *tp) 1357 { 1358 int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1; 1359 int tt; 1360 1361 tp->t_flags &= ~TF_PREVVALID; 1362 if (tcp_timer_active(tp, TT_REXMT)) 1363 panic("tcp_setpersist: retransmit pending"); 1364 /* 1365 * Start/restart persistance timer. 1366 */ 1367 TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], 1368 TCPTV_PERSMIN, TCPTV_PERSMAX); 1369 tcp_timer_activate(tp, TT_PERSIST, tt); 1370 if (tp->t_rxtshift < TCP_MAXRXTSHIFT) 1371 tp->t_rxtshift++; 1372 } 1373 1374 /* 1375 * Insert TCP options according to the supplied parameters to the place 1376 * optp in a consistent way. Can handle unaligned destinations. 1377 * 1378 * The order of the option processing is crucial for optimal packing and 1379 * alignment for the scarce option space. 1380 * 1381 * The optimal order for a SYN/SYN-ACK segment is: 1382 * MSS (4) + NOP (1) + Window scale (3) + SACK permitted (2) + 1383 * Timestamp (10) + Signature (18) = 38 bytes out of a maximum of 40. 1384 * 1385 * The SACK options should be last. SACK blocks consume 8*n+2 bytes. 1386 * So a full size SACK blocks option is 34 bytes (with 4 SACK blocks). 1387 * At minimum we need 10 bytes (to generate 1 SACK block). If both 1388 * TCP Timestamps (12 bytes) and TCP Signatures (18 bytes) are present, 1389 * we only have 10 bytes for SACK options (40 - (12 + 18)). 1390 */ 1391 int 1392 tcp_addoptions(struct tcpopt *to, u_char *optp) 1393 { 1394 u_int mask, optlen = 0; 1395 1396 for (mask = 1; mask < TOF_MAXOPT; mask <<= 1) { 1397 if ((to->to_flags & mask) != mask) 1398 continue; 1399 if (optlen == TCP_MAXOLEN) 1400 break; 1401 switch (to->to_flags & mask) { 1402 case TOF_MSS: 1403 while (optlen % 4) { 1404 optlen += TCPOLEN_NOP; 1405 *optp++ = TCPOPT_NOP; 1406 } 1407 if (TCP_MAXOLEN - optlen < TCPOLEN_MAXSEG) 1408 continue; 1409 optlen += TCPOLEN_MAXSEG; 1410 *optp++ = TCPOPT_MAXSEG; 1411 *optp++ = TCPOLEN_MAXSEG; 1412 to->to_mss = htons(to->to_mss); 1413 bcopy((u_char *)&to->to_mss, optp, sizeof(to->to_mss)); 1414 optp += sizeof(to->to_mss); 1415 break; 1416 case TOF_SCALE: 1417 while (!optlen || optlen % 2 != 1) { 1418 optlen += TCPOLEN_NOP; 1419 *optp++ = TCPOPT_NOP; 1420 } 1421 if (TCP_MAXOLEN - optlen < TCPOLEN_WINDOW) 1422 continue; 1423 optlen += TCPOLEN_WINDOW; 1424 *optp++ = TCPOPT_WINDOW; 1425 *optp++ = TCPOLEN_WINDOW; 1426 *optp++ = to->to_wscale; 1427 break; 1428 case TOF_SACKPERM: 1429 while (optlen % 2) { 1430 optlen += TCPOLEN_NOP; 1431 *optp++ = TCPOPT_NOP; 1432 } 1433 if (TCP_MAXOLEN - optlen < TCPOLEN_SACK_PERMITTED) 1434 continue; 1435 optlen += TCPOLEN_SACK_PERMITTED; 1436 *optp++ = TCPOPT_SACK_PERMITTED; 1437 *optp++ = TCPOLEN_SACK_PERMITTED; 1438 break; 1439 case TOF_TS: 1440 while (!optlen || optlen % 4 != 2) { 1441 optlen += TCPOLEN_NOP; 1442 *optp++ = TCPOPT_NOP; 1443 } 1444 if (TCP_MAXOLEN - optlen < TCPOLEN_TIMESTAMP) 1445 continue; 1446 optlen += TCPOLEN_TIMESTAMP; 1447 *optp++ = TCPOPT_TIMESTAMP; 1448 *optp++ = TCPOLEN_TIMESTAMP; 1449 to->to_tsval = htonl(to->to_tsval); 1450 to->to_tsecr = htonl(to->to_tsecr); 1451 bcopy((u_char *)&to->to_tsval, optp, sizeof(to->to_tsval)); 1452 optp += sizeof(to->to_tsval); 1453 bcopy((u_char *)&to->to_tsecr, optp, sizeof(to->to_tsecr)); 1454 optp += sizeof(to->to_tsecr); 1455 break; 1456 case TOF_SIGNATURE: 1457 { 1458 int siglen = TCPOLEN_SIGNATURE - 2; 1459 1460 while (!optlen || optlen % 4 != 2) { 1461 optlen += TCPOLEN_NOP; 1462 *optp++ = TCPOPT_NOP; 1463 } 1464 if (TCP_MAXOLEN - optlen < TCPOLEN_SIGNATURE) 1465 continue; 1466 optlen += TCPOLEN_SIGNATURE; 1467 *optp++ = TCPOPT_SIGNATURE; 1468 *optp++ = TCPOLEN_SIGNATURE; 1469 to->to_signature = optp; 1470 while (siglen--) 1471 *optp++ = 0; 1472 break; 1473 } 1474 case TOF_SACK: 1475 { 1476 int sackblks = 0; 1477 struct sackblk *sack = (struct sackblk *)to->to_sacks; 1478 tcp_seq sack_seq; 1479 1480 while (!optlen || optlen % 4 != 2) { 1481 optlen += TCPOLEN_NOP; 1482 *optp++ = TCPOPT_NOP; 1483 } 1484 if (TCP_MAXOLEN - optlen < TCPOLEN_SACKHDR + TCPOLEN_SACK) 1485 continue; 1486 optlen += TCPOLEN_SACKHDR; 1487 *optp++ = TCPOPT_SACK; 1488 sackblks = min(to->to_nsacks, 1489 (TCP_MAXOLEN - optlen) / TCPOLEN_SACK); 1490 *optp++ = TCPOLEN_SACKHDR + sackblks * TCPOLEN_SACK; 1491 while (sackblks--) { 1492 sack_seq = htonl(sack->start); 1493 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq)); 1494 optp += sizeof(sack_seq); 1495 sack_seq = htonl(sack->end); 1496 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq)); 1497 optp += sizeof(sack_seq); 1498 optlen += TCPOLEN_SACK; 1499 sack++; 1500 } 1501 TCPSTAT_INC(tcps_sack_send_blocks); 1502 break; 1503 } 1504 default: 1505 panic("%s: unknown TCP option type", __func__); 1506 break; 1507 } 1508 } 1509 1510 /* Terminate and pad TCP options to a 4 byte boundary. */ 1511 if (optlen % 4) { 1512 optlen += TCPOLEN_EOL; 1513 *optp++ = TCPOPT_EOL; 1514 } 1515 /* 1516 * According to RFC 793 (STD0007): 1517 * "The content of the header beyond the End-of-Option option 1518 * must be header padding (i.e., zero)." 1519 * and later: "The padding is composed of zeros." 1520 */ 1521 while (optlen % 4) { 1522 optlen += TCPOLEN_PAD; 1523 *optp++ = TCPOPT_PAD; 1524 } 1525 1526 KASSERT(optlen <= TCP_MAXOLEN, ("%s: TCP options too long", __func__)); 1527 return (optlen); 1528 } 1529