1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. Neither the name of the University nor the names of its contributors 16 * may be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * @(#)tcp_output.c 8.4 (Berkeley) 5/24/95 32 */ 33 34 #include <sys/cdefs.h> 35 __FBSDID("$FreeBSD$"); 36 37 #include "opt_inet.h" 38 #include "opt_inet6.h" 39 #include "opt_ipsec.h" 40 #include "opt_kern_tls.h" 41 #include "opt_tcpdebug.h" 42 43 #include <sys/param.h> 44 #include <sys/systm.h> 45 #include <sys/arb.h> 46 #include <sys/domain.h> 47 #ifdef TCP_HHOOK 48 #include <sys/hhook.h> 49 #endif 50 #include <sys/kernel.h> 51 #ifdef KERN_TLS 52 #include <sys/ktls.h> 53 #endif 54 #include <sys/lock.h> 55 #include <sys/mbuf.h> 56 #include <sys/mutex.h> 57 #include <sys/protosw.h> 58 #include <sys/qmath.h> 59 #include <sys/sdt.h> 60 #include <sys/socket.h> 61 #include <sys/socketvar.h> 62 #include <sys/sysctl.h> 63 #include <sys/stats.h> 64 65 #include <net/if.h> 66 #include <net/route.h> 67 #include <net/route/nhop.h> 68 #include <net/vnet.h> 69 70 #include <netinet/in.h> 71 #include <netinet/in_kdtrace.h> 72 #include <netinet/in_systm.h> 73 #include <netinet/ip.h> 74 #include <netinet/in_pcb.h> 75 #include <netinet/ip_var.h> 76 #include <netinet/ip_options.h> 77 #ifdef INET6 78 #include <netinet6/in6_pcb.h> 79 #include <netinet/ip6.h> 80 #include <netinet6/ip6_var.h> 81 #endif 82 #include <netinet/tcp.h> 83 #define TCPOUTFLAGS 84 #include <netinet/tcp_fsm.h> 85 #include <netinet/tcp_log_buf.h> 86 #include <netinet/tcp_seq.h> 87 #include <netinet/tcp_var.h> 88 #include <netinet/tcp_syncache.h> 89 #include <netinet/tcp_timer.h> 90 #include <netinet/tcpip.h> 91 #include <netinet/cc/cc.h> 92 #include <netinet/tcp_fastopen.h> 93 #ifdef TCPPCAP 94 #include <netinet/tcp_pcap.h> 95 #endif 96 #ifdef TCPDEBUG 97 #include <netinet/tcp_debug.h> 98 #endif 99 #ifdef TCP_OFFLOAD 100 #include <netinet/tcp_offload.h> 101 #endif 102 #include <netinet/tcp_ecn.h> 103 104 #include <netipsec/ipsec_support.h> 105 106 #include <netinet/udp.h> 107 #include <netinet/udp_var.h> 108 #include <machine/in_cksum.h> 109 110 #include <security/mac/mac_framework.h> 111 112 VNET_DEFINE(int, path_mtu_discovery) = 1; 113 SYSCTL_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_VNET | CTLFLAG_RW, 114 &VNET_NAME(path_mtu_discovery), 1, 115 "Enable Path MTU Discovery"); 116 117 VNET_DEFINE(int, tcp_do_tso) = 1; 118 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_VNET | CTLFLAG_RW, 119 &VNET_NAME(tcp_do_tso), 0, 120 "Enable TCP Segmentation Offload"); 121 122 VNET_DEFINE(int, tcp_sendspace) = 1024*32; 123 #define V_tcp_sendspace VNET(tcp_sendspace) 124 SYSCTL_INT(_net_inet_tcp, TCPCTL_SENDSPACE, sendspace, CTLFLAG_VNET | CTLFLAG_RW, 125 &VNET_NAME(tcp_sendspace), 0, "Initial send socket buffer size"); 126 127 VNET_DEFINE(int, tcp_do_autosndbuf) = 1; 128 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto, CTLFLAG_VNET | CTLFLAG_RW, 129 &VNET_NAME(tcp_do_autosndbuf), 0, 130 "Enable automatic send buffer sizing"); 131 132 VNET_DEFINE(int, tcp_autosndbuf_inc) = 8*1024; 133 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_inc, CTLFLAG_VNET | CTLFLAG_RW, 134 &VNET_NAME(tcp_autosndbuf_inc), 0, 135 "Incrementor step size of automatic send buffer"); 136 137 VNET_DEFINE(int, tcp_autosndbuf_max) = 2*1024*1024; 138 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_max, CTLFLAG_VNET | CTLFLAG_RW, 139 &VNET_NAME(tcp_autosndbuf_max), 0, 140 "Max size of automatic send buffer"); 141 142 VNET_DEFINE(int, tcp_sendbuf_auto_lowat) = 0; 143 #define V_tcp_sendbuf_auto_lowat VNET(tcp_sendbuf_auto_lowat) 144 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto_lowat, CTLFLAG_VNET | CTLFLAG_RW, 145 &VNET_NAME(tcp_sendbuf_auto_lowat), 0, 146 "Modify threshold for auto send buffer growth to account for SO_SNDLOWAT"); 147 148 /* 149 * Make sure that either retransmit or persist timer is set for SYN, FIN and 150 * non-ACK. 151 */ 152 #define TCP_XMIT_TIMER_ASSERT(tp, len, th_flags) \ 153 KASSERT(((len) == 0 && ((th_flags) & (TH_SYN | TH_FIN)) == 0) ||\ 154 tcp_timer_active((tp), TT_REXMT) || \ 155 tcp_timer_active((tp), TT_PERSIST), \ 156 ("neither rexmt nor persist timer is set")) 157 158 #ifdef TCP_HHOOK 159 /* 160 * Wrapper for the TCP established output helper hook. 161 */ 162 void 163 hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, 164 struct tcpopt *to, uint32_t len, int tso) 165 { 166 struct tcp_hhook_data hhook_data; 167 168 if (V_tcp_hhh[HHOOK_TCP_EST_OUT]->hhh_nhooks > 0) { 169 hhook_data.tp = tp; 170 hhook_data.th = th; 171 hhook_data.to = to; 172 hhook_data.len = len; 173 hhook_data.tso = tso; 174 175 hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_OUT], &hhook_data, 176 tp->osd); 177 } 178 } 179 #endif 180 181 /* 182 * CC wrapper hook functions 183 */ 184 void 185 cc_after_idle(struct tcpcb *tp) 186 { 187 INP_WLOCK_ASSERT(tp->t_inpcb); 188 189 if (CC_ALGO(tp)->after_idle != NULL) 190 CC_ALGO(tp)->after_idle(tp->ccv); 191 } 192 193 /* 194 * Tcp output routine: figure out what should be sent and send it. 195 */ 196 int 197 tcp_default_output(struct tcpcb *tp) 198 { 199 struct socket *so = tp->t_inpcb->inp_socket; 200 int32_t len; 201 uint32_t recwin, sendwin; 202 uint16_t flags; 203 int off, error = 0; /* Keep compiler happy */ 204 u_int if_hw_tsomaxsegcount = 0; 205 u_int if_hw_tsomaxsegsize = 0; 206 struct mbuf *m; 207 struct ip *ip = NULL; 208 #ifdef TCPDEBUG 209 struct ipovly *ipov = NULL; 210 #endif 211 struct tcphdr *th; 212 u_char opt[TCP_MAXOLEN]; 213 unsigned ipoptlen, optlen, hdrlen, ulen; 214 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 215 unsigned ipsec_optlen = 0; 216 #endif 217 int idle, sendalot, curticks; 218 int sack_rxmit, sack_bytes_rxmt; 219 struct sackhole *p; 220 int tso, mtu; 221 struct tcpopt to; 222 struct udphdr *udp = NULL; 223 struct tcp_log_buffer *lgb; 224 unsigned int wanted_cookie = 0; 225 unsigned int dont_sendalot = 0; 226 #if 0 227 int maxburst = TCP_MAXBURST; 228 #endif 229 #ifdef INET6 230 struct ip6_hdr *ip6 = NULL; 231 int isipv6; 232 233 isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0; 234 #endif 235 #ifdef KERN_TLS 236 const bool hw_tls = (so->so_snd.sb_flags & SB_TLS_IFNET) != 0; 237 #else 238 const bool hw_tls = false; 239 #endif 240 241 NET_EPOCH_ASSERT(); 242 INP_WLOCK_ASSERT(tp->t_inpcb); 243 244 #ifdef TCP_OFFLOAD 245 if (tp->t_flags & TF_TOE) 246 return (tcp_offload_output(tp)); 247 #endif 248 249 /* 250 * For TFO connections in SYN_SENT or SYN_RECEIVED, 251 * only allow the initial SYN or SYN|ACK and those sent 252 * by the retransmit timer. 253 */ 254 if (IS_FASTOPEN(tp->t_flags) && 255 ((tp->t_state == TCPS_SYN_SENT) || 256 (tp->t_state == TCPS_SYN_RECEIVED)) && 257 SEQ_GT(tp->snd_max, tp->snd_una) && /* initial SYN or SYN|ACK sent */ 258 (tp->snd_nxt != tp->snd_una)) /* not a retransmit */ 259 return (0); 260 261 /* 262 * Determine length of data that should be transmitted, 263 * and flags that will be used. 264 * If there is some data or critical controls (SYN, RST) 265 * to send, then transmit; otherwise, investigate further. 266 */ 267 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); 268 if (idle && (((ticks - tp->t_rcvtime) >= tp->t_rxtcur) || 269 (tp->t_sndtime && ((ticks - tp->t_sndtime) >= tp->t_rxtcur)))) 270 cc_after_idle(tp); 271 tp->t_flags &= ~TF_LASTIDLE; 272 if (idle) { 273 if (tp->t_flags & TF_MORETOCOME) { 274 tp->t_flags |= TF_LASTIDLE; 275 idle = 0; 276 } 277 } 278 again: 279 /* 280 * If we've recently taken a timeout, snd_max will be greater than 281 * snd_nxt. There may be SACK information that allows us to avoid 282 * resending already delivered data. Adjust snd_nxt accordingly. 283 */ 284 if ((tp->t_flags & TF_SACK_PERMIT) && 285 SEQ_LT(tp->snd_nxt, tp->snd_max)) 286 tcp_sack_adjust(tp); 287 sendalot = 0; 288 tso = 0; 289 mtu = 0; 290 off = tp->snd_nxt - tp->snd_una; 291 sendwin = min(tp->snd_wnd, tp->snd_cwnd); 292 293 flags = tcp_outflags[tp->t_state]; 294 /* 295 * Send any SACK-generated retransmissions. If we're explicitly trying 296 * to send out new data (when sendalot is 1), bypass this function. 297 * If we retransmit in fast recovery mode, decrement snd_cwnd, since 298 * we're replacing a (future) new transmission with a retransmission 299 * now, and we previously incremented snd_cwnd in tcp_input(). 300 */ 301 /* 302 * Still in sack recovery , reset rxmit flag to zero. 303 */ 304 sack_rxmit = 0; 305 sack_bytes_rxmt = 0; 306 len = 0; 307 p = NULL; 308 if ((tp->t_flags & TF_SACK_PERMIT) && IN_FASTRECOVERY(tp->t_flags) && 309 (p = tcp_sack_output(tp, &sack_bytes_rxmt))) { 310 uint32_t cwin; 311 312 cwin = 313 imax(min(tp->snd_wnd, tp->snd_cwnd) - sack_bytes_rxmt, 0); 314 /* Do not retransmit SACK segments beyond snd_recover */ 315 if (SEQ_GT(p->end, tp->snd_recover)) { 316 /* 317 * (At least) part of sack hole extends beyond 318 * snd_recover. Check to see if we can rexmit data 319 * for this hole. 320 */ 321 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { 322 /* 323 * Can't rexmit any more data for this hole. 324 * That data will be rexmitted in the next 325 * sack recovery episode, when snd_recover 326 * moves past p->rxmit. 327 */ 328 p = NULL; 329 goto after_sack_rexmit; 330 } else { 331 /* Can rexmit part of the current hole */ 332 len = ((int32_t)ulmin(cwin, 333 SEQ_SUB(tp->snd_recover, p->rxmit))); 334 } 335 } else { 336 len = ((int32_t)ulmin(cwin, 337 SEQ_SUB(p->end, p->rxmit))); 338 } 339 if (len > 0) { 340 off = SEQ_SUB(p->rxmit, tp->snd_una); 341 KASSERT(off >= 0,("%s: sack block to the left of una : %d", 342 __func__, off)); 343 sack_rxmit = 1; 344 sendalot = 1; 345 TCPSTAT_INC(tcps_sack_rexmits); 346 TCPSTAT_ADD(tcps_sack_rexmit_bytes, 347 min(len, tcp_maxseg(tp))); 348 } 349 } 350 after_sack_rexmit: 351 /* 352 * Get standard flags, and add SYN or FIN if requested by 'hidden' 353 * state flags. 354 */ 355 if (tp->t_flags & TF_NEEDFIN) 356 flags |= TH_FIN; 357 if (tp->t_flags & TF_NEEDSYN) 358 flags |= TH_SYN; 359 360 SOCKBUF_LOCK(&so->so_snd); 361 /* 362 * If in persist timeout with window of 0, send 1 byte. 363 * Otherwise, if window is small but nonzero 364 * and timer expired, we will send what we can 365 * and go to transmit state. 366 */ 367 if (tp->t_flags & TF_FORCEDATA) { 368 if (sendwin == 0) { 369 /* 370 * If we still have some data to send, then 371 * clear the FIN bit. Usually this would 372 * happen below when it realizes that we 373 * aren't sending all the data. However, 374 * if we have exactly 1 byte of unsent data, 375 * then it won't clear the FIN bit below, 376 * and if we are in persist state, we wind 377 * up sending the packet without recording 378 * that we sent the FIN bit. 379 * 380 * We can't just blindly clear the FIN bit, 381 * because if we don't have any more data 382 * to send then the probe will be the FIN 383 * itself. 384 */ 385 if (off < sbused(&so->so_snd)) 386 flags &= ~TH_FIN; 387 sendwin = 1; 388 } else { 389 tcp_timer_activate(tp, TT_PERSIST, 0); 390 tp->t_rxtshift = 0; 391 } 392 } 393 394 /* 395 * If snd_nxt == snd_max and we have transmitted a FIN, the 396 * offset will be > 0 even if so_snd.sb_cc is 0, resulting in 397 * a negative length. This can also occur when TCP opens up 398 * its congestion window while receiving additional duplicate 399 * acks after fast-retransmit because TCP will reset snd_nxt 400 * to snd_max after the fast-retransmit. 401 * 402 * In the normal retransmit-FIN-only case, however, snd_nxt will 403 * be set to snd_una, the offset will be 0, and the length may 404 * wind up 0. 405 * 406 * If sack_rxmit is true we are retransmitting from the scoreboard 407 * in which case len is already set. 408 */ 409 if (sack_rxmit == 0) { 410 if (sack_bytes_rxmt == 0) 411 len = ((int32_t)min(sbavail(&so->so_snd), sendwin) - 412 off); 413 else { 414 int32_t cwin; 415 416 /* 417 * We are inside of a SACK recovery episode and are 418 * sending new data, having retransmitted all the 419 * data possible in the scoreboard. 420 */ 421 len = ((int32_t)min(sbavail(&so->so_snd), tp->snd_wnd) - 422 off); 423 /* 424 * Don't remove this (len > 0) check ! 425 * We explicitly check for len > 0 here (although it 426 * isn't really necessary), to work around a gcc 427 * optimization issue - to force gcc to compute 428 * len above. Without this check, the computation 429 * of len is bungled by the optimizer. 430 */ 431 if (len > 0) { 432 cwin = tp->snd_cwnd - imax(0, (int32_t) 433 (tp->snd_nxt - tp->snd_recover)) - 434 sack_bytes_rxmt; 435 if (cwin < 0) 436 cwin = 0; 437 len = imin(len, cwin); 438 } 439 } 440 } 441 442 /* 443 * Lop off SYN bit if it has already been sent. However, if this 444 * is SYN-SENT state and if segment contains data and if we don't 445 * know that foreign host supports TAO, suppress sending segment. 446 */ 447 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) { 448 if (tp->t_state != TCPS_SYN_RECEIVED) 449 flags &= ~TH_SYN; 450 /* 451 * When sending additional segments following a TFO SYN|ACK, 452 * do not include the SYN bit. 453 */ 454 if (IS_FASTOPEN(tp->t_flags) && 455 (tp->t_state == TCPS_SYN_RECEIVED)) 456 flags &= ~TH_SYN; 457 off--, len++; 458 } 459 460 /* 461 * Be careful not to send data and/or FIN on SYN segments. 462 * This measure is needed to prevent interoperability problems 463 * with not fully conformant TCP implementations. 464 */ 465 if ((flags & TH_SYN) && (tp->t_flags & TF_NOOPT)) { 466 len = 0; 467 flags &= ~TH_FIN; 468 } 469 470 /* 471 * On TFO sockets, ensure no data is sent in the following cases: 472 * 473 * - When retransmitting SYN|ACK on a passively-created socket 474 * 475 * - When retransmitting SYN on an actively created socket 476 * 477 * - When sending a zero-length cookie (cookie request) on an 478 * actively created socket 479 * 480 * - When the socket is in the CLOSED state (RST is being sent) 481 */ 482 if (IS_FASTOPEN(tp->t_flags) && 483 (((flags & TH_SYN) && (tp->t_rxtshift > 0)) || 484 ((tp->t_state == TCPS_SYN_SENT) && 485 (tp->t_tfo_client_cookie_len == 0)) || 486 (flags & TH_RST))) 487 len = 0; 488 if (len <= 0) { 489 /* 490 * If FIN has been sent but not acked, 491 * but we haven't been called to retransmit, 492 * len will be < 0. Otherwise, window shrank 493 * after we sent into it. If window shrank to 0, 494 * cancel pending retransmit, pull snd_nxt back 495 * to (closed) window, and set the persist timer 496 * if it isn't already going. If the window didn't 497 * close completely, just wait for an ACK. 498 * 499 * We also do a general check here to ensure that 500 * we will set the persist timer when we have data 501 * to send, but a 0-byte window. This makes sure 502 * the persist timer is set even if the packet 503 * hits one of the "goto send" lines below. 504 */ 505 len = 0; 506 if ((sendwin == 0) && (TCPS_HAVEESTABLISHED(tp->t_state)) && 507 (off < (int) sbavail(&so->so_snd)) && 508 !tcp_timer_active(tp, TT_PERSIST)) { 509 tcp_timer_activate(tp, TT_REXMT, 0); 510 tp->t_rxtshift = 0; 511 tp->snd_nxt = tp->snd_una; 512 if (!tcp_timer_active(tp, TT_PERSIST)) 513 tcp_setpersist(tp); 514 } 515 } 516 517 /* len will be >= 0 after this point. */ 518 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 519 520 tcp_sndbuf_autoscale(tp, so, sendwin); 521 522 /* 523 * Decide if we can use TCP Segmentation Offloading (if supported by 524 * hardware). 525 * 526 * TSO may only be used if we are in a pure bulk sending state. The 527 * presence of TCP-MD5, SACK retransmits, SACK advertizements and 528 * IP options prevent using TSO. With TSO the TCP header is the same 529 * (except for the sequence number) for all generated packets. This 530 * makes it impossible to transmit any options which vary per generated 531 * segment or packet. 532 * 533 * IPv4 handling has a clear separation of ip options and ip header 534 * flags while IPv6 combines both in in6p_outputopts. ip6_optlen() does 535 * the right thing below to provide length of just ip options and thus 536 * checking for ipoptlen is enough to decide if ip options are present. 537 */ 538 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 539 /* 540 * Pre-calculate here as we save another lookup into the darknesses 541 * of IPsec that way and can actually decide if TSO is ok. 542 */ 543 #ifdef INET6 544 if (isipv6 && IPSEC_ENABLED(ipv6)) 545 ipsec_optlen = IPSEC_HDRSIZE(ipv6, tp->t_inpcb); 546 #ifdef INET 547 else 548 #endif 549 #endif /* INET6 */ 550 #ifdef INET 551 if (IPSEC_ENABLED(ipv4)) 552 ipsec_optlen = IPSEC_HDRSIZE(ipv4, tp->t_inpcb); 553 #endif /* INET */ 554 #endif /* IPSEC */ 555 #ifdef INET6 556 if (isipv6) 557 ipoptlen = ip6_optlen(tp->t_inpcb); 558 else 559 #endif 560 if (tp->t_inpcb->inp_options) 561 ipoptlen = tp->t_inpcb->inp_options->m_len - 562 offsetof(struct ipoption, ipopt_list); 563 else 564 ipoptlen = 0; 565 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 566 ipoptlen += ipsec_optlen; 567 #endif 568 569 if ((tp->t_flags & TF_TSO) && V_tcp_do_tso && len > tp->t_maxseg && 570 (tp->t_port == 0) && 571 ((tp->t_flags & TF_SIGNATURE) == 0) && 572 tp->rcv_numsacks == 0 && sack_rxmit == 0 && 573 ipoptlen == 0 && !(flags & TH_SYN)) 574 tso = 1; 575 576 if (sack_rxmit) { 577 if (SEQ_LT(p->rxmit + len, tp->snd_una + sbused(&so->so_snd))) 578 flags &= ~TH_FIN; 579 } else { 580 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + 581 sbused(&so->so_snd))) 582 flags &= ~TH_FIN; 583 } 584 585 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), 586 (long)TCP_MAXWIN << tp->rcv_scale); 587 588 /* 589 * Sender silly window avoidance. We transmit under the following 590 * conditions when len is non-zero: 591 * 592 * - We have a full segment (or more with TSO) 593 * - This is the last buffer in a write()/send() and we are 594 * either idle or running NODELAY 595 * - we've timed out (e.g. persist timer) 596 * - we have more then 1/2 the maximum send window's worth of 597 * data (receiver may be limited the window size) 598 * - we need to retransmit 599 */ 600 if (len) { 601 if (len >= tp->t_maxseg) 602 goto send; 603 /* 604 * As the TCP header options are now 605 * considered when setting up the initial 606 * window, we would not send the last segment 607 * if we skip considering the option length here. 608 * Note: this may not work when tcp headers change 609 * very dynamically in the future. 610 */ 611 if ((((tp->t_flags & TF_SIGNATURE) ? 612 PADTCPOLEN(TCPOLEN_SIGNATURE) : 0) + 613 ((tp->t_flags & TF_RCVD_TSTMP) ? 614 PADTCPOLEN(TCPOLEN_TIMESTAMP) : 0) + 615 len) >= tp->t_maxseg) 616 goto send; 617 /* 618 * NOTE! on localhost connections an 'ack' from the remote 619 * end may occur synchronously with the output and cause 620 * us to flush a buffer queued with moretocome. XXX 621 * 622 * note: the len + off check is almost certainly unnecessary. 623 */ 624 if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ 625 (idle || (tp->t_flags & TF_NODELAY)) && 626 (uint32_t)len + (uint32_t)off >= sbavail(&so->so_snd) && 627 (tp->t_flags & TF_NOPUSH) == 0) { 628 goto send; 629 } 630 if (tp->t_flags & TF_FORCEDATA) /* typ. timeout case */ 631 goto send; 632 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0) 633 goto send; 634 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ 635 goto send; 636 if (sack_rxmit) 637 goto send; 638 } 639 640 /* 641 * Sending of standalone window updates. 642 * 643 * Window updates are important when we close our window due to a 644 * full socket buffer and are opening it again after the application 645 * reads data from it. Once the window has opened again and the 646 * remote end starts to send again the ACK clock takes over and 647 * provides the most current window information. 648 * 649 * We must avoid the silly window syndrome whereas every read 650 * from the receive buffer, no matter how small, causes a window 651 * update to be sent. We also should avoid sending a flurry of 652 * window updates when the socket buffer had queued a lot of data 653 * and the application is doing small reads. 654 * 655 * Prevent a flurry of pointless window updates by only sending 656 * an update when we can increase the advertized window by more 657 * than 1/4th of the socket buffer capacity. When the buffer is 658 * getting full or is very small be more aggressive and send an 659 * update whenever we can increase by two mss sized segments. 660 * In all other situations the ACK's to new incoming data will 661 * carry further window increases. 662 * 663 * Don't send an independent window update if a delayed 664 * ACK is pending (it will get piggy-backed on it) or the 665 * remote side already has done a half-close and won't send 666 * more data. Skip this if the connection is in T/TCP 667 * half-open state. 668 */ 669 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && 670 !(tp->t_flags & TF_DELACK) && 671 !TCPS_HAVERCVDFIN(tp->t_state)) { 672 /* 673 * "adv" is the amount we could increase the window, 674 * taking into account that we are limited by 675 * TCP_MAXWIN << tp->rcv_scale. 676 */ 677 int32_t adv; 678 int oldwin; 679 680 adv = recwin; 681 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt)) { 682 oldwin = (tp->rcv_adv - tp->rcv_nxt); 683 if (adv > oldwin) 684 adv -= oldwin; 685 else 686 adv = 0; 687 } else 688 oldwin = 0; 689 690 /* 691 * If the new window size ends up being the same as or less 692 * than the old size when it is scaled, then don't force 693 * a window update. 694 */ 695 if (oldwin >> tp->rcv_scale >= (adv + oldwin) >> tp->rcv_scale) 696 goto dontupdate; 697 698 if (adv >= (int32_t)(2 * tp->t_maxseg) && 699 (adv >= (int32_t)(so->so_rcv.sb_hiwat / 4) || 700 recwin <= (so->so_rcv.sb_hiwat / 8) || 701 so->so_rcv.sb_hiwat <= 8 * tp->t_maxseg || 702 adv >= TCP_MAXWIN << tp->rcv_scale)) 703 goto send; 704 if (2 * adv >= (int32_t)so->so_rcv.sb_hiwat) 705 goto send; 706 } 707 dontupdate: 708 709 /* 710 * Send if we owe the peer an ACK, RST, SYN, or urgent data. ACKNOW 711 * is also a catch-all for the retransmit timer timeout case. 712 */ 713 if (tp->t_flags & TF_ACKNOW) 714 goto send; 715 if ((flags & TH_RST) || 716 ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0)) 717 goto send; 718 if (SEQ_GT(tp->snd_up, tp->snd_una)) 719 goto send; 720 /* 721 * If our state indicates that FIN should be sent 722 * and we have not yet done so, then we need to send. 723 */ 724 if (flags & TH_FIN && 725 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una)) 726 goto send; 727 /* 728 * In SACK, it is possible for tcp_output to fail to send a segment 729 * after the retransmission timer has been turned off. Make sure 730 * that the retransmission timer is set. 731 */ 732 if ((tp->t_flags & TF_SACK_PERMIT) && 733 SEQ_GT(tp->snd_max, tp->snd_una) && 734 !tcp_timer_active(tp, TT_REXMT) && 735 !tcp_timer_active(tp, TT_PERSIST)) { 736 tcp_timer_activate(tp, TT_REXMT, TP_RXTCUR(tp)); 737 goto just_return; 738 } 739 /* 740 * TCP window updates are not reliable, rather a polling protocol 741 * using ``persist'' packets is used to insure receipt of window 742 * updates. The three ``states'' for the output side are: 743 * idle not doing retransmits or persists 744 * persisting to move a small or zero window 745 * (re)transmitting and thereby not persisting 746 * 747 * tcp_timer_active(tp, TT_PERSIST) 748 * is true when we are in persist state. 749 * (tp->t_flags & TF_FORCEDATA) 750 * is set when we are called to send a persist packet. 751 * tcp_timer_active(tp, TT_REXMT) 752 * is set when we are retransmitting 753 * The output side is idle when both timers are zero. 754 * 755 * If send window is too small, there is data to transmit, and no 756 * retransmit or persist is pending, then go to persist state. 757 * If nothing happens soon, send when timer expires: 758 * if window is nonzero, transmit what we can, 759 * otherwise force out a byte. 760 */ 761 if (sbavail(&so->so_snd) && !tcp_timer_active(tp, TT_REXMT) && 762 !tcp_timer_active(tp, TT_PERSIST)) { 763 tp->t_rxtshift = 0; 764 tcp_setpersist(tp); 765 } 766 767 /* 768 * No reason to send a segment, just return. 769 */ 770 just_return: 771 SOCKBUF_UNLOCK(&so->so_snd); 772 return (0); 773 774 send: 775 SOCKBUF_LOCK_ASSERT(&so->so_snd); 776 if (len > 0) { 777 if (len >= tp->t_maxseg) 778 tp->t_flags2 |= TF2_PLPMTU_MAXSEGSNT; 779 else 780 tp->t_flags2 &= ~TF2_PLPMTU_MAXSEGSNT; 781 } 782 /* 783 * Before ESTABLISHED, force sending of initial options 784 * unless TCP set not to do any options. 785 * NOTE: we assume that the IP/TCP header plus TCP options 786 * always fit in a single mbuf, leaving room for a maximum 787 * link header, i.e. 788 * max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MCLBYTES 789 */ 790 optlen = 0; 791 #ifdef INET6 792 if (isipv6) 793 hdrlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr); 794 else 795 #endif 796 hdrlen = sizeof (struct tcpiphdr); 797 798 if (flags & TH_SYN) { 799 tp->snd_nxt = tp->iss; 800 } 801 802 /* 803 * Compute options for segment. 804 * We only have to care about SYN and established connection 805 * segments. Options for SYN-ACK segments are handled in TCP 806 * syncache. 807 */ 808 to.to_flags = 0; 809 if ((tp->t_flags & TF_NOOPT) == 0) { 810 /* Maximum segment size. */ 811 if (flags & TH_SYN) { 812 to.to_mss = tcp_mssopt(&tp->t_inpcb->inp_inc); 813 if (tp->t_port) 814 to.to_mss -= V_tcp_udp_tunneling_overhead; 815 to.to_flags |= TOF_MSS; 816 817 /* 818 * On SYN or SYN|ACK transmits on TFO connections, 819 * only include the TFO option if it is not a 820 * retransmit, as the presence of the TFO option may 821 * have caused the original SYN or SYN|ACK to have 822 * been dropped by a middlebox. 823 */ 824 if (IS_FASTOPEN(tp->t_flags) && 825 (tp->t_rxtshift == 0)) { 826 if (tp->t_state == TCPS_SYN_RECEIVED) { 827 to.to_tfo_len = TCP_FASTOPEN_COOKIE_LEN; 828 to.to_tfo_cookie = 829 (u_int8_t *)&tp->t_tfo_cookie.server; 830 to.to_flags |= TOF_FASTOPEN; 831 wanted_cookie = 1; 832 } else if (tp->t_state == TCPS_SYN_SENT) { 833 to.to_tfo_len = 834 tp->t_tfo_client_cookie_len; 835 to.to_tfo_cookie = 836 tp->t_tfo_cookie.client; 837 to.to_flags |= TOF_FASTOPEN; 838 wanted_cookie = 1; 839 /* 840 * If we wind up having more data to 841 * send with the SYN than can fit in 842 * one segment, don't send any more 843 * until the SYN|ACK comes back from 844 * the other end. 845 */ 846 dont_sendalot = 1; 847 } 848 } 849 } 850 /* Window scaling. */ 851 if ((flags & TH_SYN) && (tp->t_flags & TF_REQ_SCALE)) { 852 to.to_wscale = tp->request_r_scale; 853 to.to_flags |= TOF_SCALE; 854 } 855 /* Timestamps. */ 856 if ((tp->t_flags & TF_RCVD_TSTMP) || 857 ((flags & TH_SYN) && (tp->t_flags & TF_REQ_TSTMP))) { 858 curticks = tcp_ts_getticks(); 859 to.to_tsval = curticks + tp->ts_offset; 860 to.to_tsecr = tp->ts_recent; 861 to.to_flags |= TOF_TS; 862 if (tp->t_rxtshift == 1) 863 tp->t_badrxtwin = curticks; 864 } 865 866 /* Set receive buffer autosizing timestamp. */ 867 if (tp->rfbuf_ts == 0 && 868 (so->so_rcv.sb_flags & SB_AUTOSIZE)) 869 tp->rfbuf_ts = tcp_ts_getticks(); 870 871 /* Selective ACK's. */ 872 if (tp->t_flags & TF_SACK_PERMIT) { 873 if (flags & TH_SYN) 874 to.to_flags |= TOF_SACKPERM; 875 else if (TCPS_HAVEESTABLISHED(tp->t_state) && 876 tp->rcv_numsacks > 0) { 877 to.to_flags |= TOF_SACK; 878 to.to_nsacks = tp->rcv_numsacks; 879 to.to_sacks = (u_char *)tp->sackblks; 880 } 881 } 882 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 883 /* TCP-MD5 (RFC2385). */ 884 /* 885 * Check that TCP_MD5SIG is enabled in tcpcb to 886 * account the size needed to set this TCP option. 887 */ 888 if (tp->t_flags & TF_SIGNATURE) 889 to.to_flags |= TOF_SIGNATURE; 890 #endif /* TCP_SIGNATURE */ 891 892 /* Processing the options. */ 893 hdrlen += optlen = tcp_addoptions(&to, opt); 894 /* 895 * If we wanted a TFO option to be added, but it was unable 896 * to fit, ensure no data is sent. 897 */ 898 if (IS_FASTOPEN(tp->t_flags) && wanted_cookie && 899 !(to.to_flags & TOF_FASTOPEN)) 900 len = 0; 901 } 902 if (tp->t_port) { 903 if (V_tcp_udp_tunneling_port == 0) { 904 /* The port was removed?? */ 905 SOCKBUF_UNLOCK(&so->so_snd); 906 return (EHOSTUNREACH); 907 } 908 hdrlen += sizeof(struct udphdr); 909 } 910 /* 911 * Adjust data length if insertion of options will 912 * bump the packet length beyond the t_maxseg length. 913 * Clear the FIN bit because we cut off the tail of 914 * the segment. 915 */ 916 if (len + optlen + ipoptlen > tp->t_maxseg) { 917 flags &= ~TH_FIN; 918 919 if (tso) { 920 u_int if_hw_tsomax; 921 u_int moff; 922 int max_len; 923 924 /* extract TSO information */ 925 if_hw_tsomax = tp->t_tsomax; 926 if_hw_tsomaxsegcount = tp->t_tsomaxsegcount; 927 if_hw_tsomaxsegsize = tp->t_tsomaxsegsize; 928 929 /* 930 * Limit a TSO burst to prevent it from 931 * overflowing or exceeding the maximum length 932 * allowed by the network interface: 933 */ 934 KASSERT(ipoptlen == 0, 935 ("%s: TSO can't do IP options", __func__)); 936 937 /* 938 * Check if we should limit by maximum payload 939 * length: 940 */ 941 if (if_hw_tsomax != 0) { 942 /* compute maximum TSO length */ 943 max_len = (if_hw_tsomax - hdrlen - 944 max_linkhdr); 945 if (max_len <= 0) { 946 len = 0; 947 } else if (len > max_len) { 948 sendalot = 1; 949 len = max_len; 950 } 951 } 952 953 /* 954 * Prevent the last segment from being 955 * fractional unless the send sockbuf can be 956 * emptied: 957 */ 958 max_len = (tp->t_maxseg - optlen); 959 if (((uint32_t)off + (uint32_t)len) < 960 sbavail(&so->so_snd)) { 961 moff = len % max_len; 962 if (moff != 0) { 963 len -= moff; 964 sendalot = 1; 965 } 966 } 967 968 /* 969 * In case there are too many small fragments 970 * don't use TSO: 971 */ 972 if (len <= max_len) { 973 len = max_len; 974 sendalot = 1; 975 tso = 0; 976 } 977 978 /* 979 * Send the FIN in a separate segment 980 * after the bulk sending is done. 981 * We don't trust the TSO implementations 982 * to clear the FIN flag on all but the 983 * last segment. 984 */ 985 if (tp->t_flags & TF_NEEDFIN) 986 sendalot = 1; 987 } else { 988 if (optlen + ipoptlen >= tp->t_maxseg) { 989 /* 990 * Since we don't have enough space to put 991 * the IP header chain and the TCP header in 992 * one packet as required by RFC 7112, don't 993 * send it. Also ensure that at least one 994 * byte of the payload can be put into the 995 * TCP segment. 996 */ 997 SOCKBUF_UNLOCK(&so->so_snd); 998 error = EMSGSIZE; 999 sack_rxmit = 0; 1000 goto out; 1001 } 1002 len = tp->t_maxseg - optlen - ipoptlen; 1003 sendalot = 1; 1004 if (dont_sendalot) 1005 sendalot = 0; 1006 } 1007 } else 1008 tso = 0; 1009 1010 KASSERT(len + hdrlen + ipoptlen <= IP_MAXPACKET, 1011 ("%s: len > IP_MAXPACKET", __func__)); 1012 1013 /*#ifdef DIAGNOSTIC*/ 1014 #ifdef INET6 1015 if (max_linkhdr + hdrlen > MCLBYTES) 1016 #else 1017 if (max_linkhdr + hdrlen > MHLEN) 1018 #endif 1019 panic("tcphdr too big"); 1020 /*#endif*/ 1021 1022 /* 1023 * This KASSERT is here to catch edge cases at a well defined place. 1024 * Before, those had triggered (random) panic conditions further down. 1025 */ 1026 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 1027 1028 /* 1029 * Grab a header mbuf, attaching a copy of data to 1030 * be transmitted, and initialize the header from 1031 * the template for sends on this connection. 1032 */ 1033 if (len) { 1034 struct mbuf *mb; 1035 struct sockbuf *msb; 1036 u_int moff; 1037 1038 if ((tp->t_flags & TF_FORCEDATA) && len == 1) { 1039 TCPSTAT_INC(tcps_sndprobe); 1040 #ifdef STATS 1041 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) 1042 stats_voi_update_abs_u32(tp->t_stats, 1043 VOI_TCP_RETXPB, len); 1044 else 1045 stats_voi_update_abs_u64(tp->t_stats, 1046 VOI_TCP_TXPB, len); 1047 #endif /* STATS */ 1048 } else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { 1049 tp->t_sndrexmitpack++; 1050 TCPSTAT_INC(tcps_sndrexmitpack); 1051 TCPSTAT_ADD(tcps_sndrexmitbyte, len); 1052 #ifdef STATS 1053 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RETXPB, 1054 len); 1055 #endif /* STATS */ 1056 } else { 1057 TCPSTAT_INC(tcps_sndpack); 1058 TCPSTAT_ADD(tcps_sndbyte, len); 1059 #ifdef STATS 1060 stats_voi_update_abs_u64(tp->t_stats, VOI_TCP_TXPB, 1061 len); 1062 #endif /* STATS */ 1063 } 1064 #ifdef INET6 1065 if (MHLEN < hdrlen + max_linkhdr) 1066 m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 1067 else 1068 #endif 1069 m = m_gethdr(M_NOWAIT, MT_DATA); 1070 1071 if (m == NULL) { 1072 SOCKBUF_UNLOCK(&so->so_snd); 1073 error = ENOBUFS; 1074 sack_rxmit = 0; 1075 goto out; 1076 } 1077 1078 m->m_data += max_linkhdr; 1079 m->m_len = hdrlen; 1080 1081 /* 1082 * Start the m_copy functions from the closest mbuf 1083 * to the offset in the socket buffer chain. 1084 */ 1085 mb = sbsndptr_noadv(&so->so_snd, off, &moff); 1086 if (len <= MHLEN - hdrlen - max_linkhdr && !hw_tls) { 1087 m_copydata(mb, moff, len, 1088 mtod(m, caddr_t) + hdrlen); 1089 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) 1090 sbsndptr_adv(&so->so_snd, mb, len); 1091 m->m_len += len; 1092 } else { 1093 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) 1094 msb = NULL; 1095 else 1096 msb = &so->so_snd; 1097 m->m_next = tcp_m_copym(mb, moff, 1098 &len, if_hw_tsomaxsegcount, 1099 if_hw_tsomaxsegsize, msb, hw_tls); 1100 if (len <= (tp->t_maxseg - optlen)) { 1101 /* 1102 * Must have ran out of mbufs for the copy 1103 * shorten it to no longer need tso. Lets 1104 * not put on sendalot since we are low on 1105 * mbufs. 1106 */ 1107 tso = 0; 1108 } 1109 if (m->m_next == NULL) { 1110 SOCKBUF_UNLOCK(&so->so_snd); 1111 (void) m_free(m); 1112 error = ENOBUFS; 1113 sack_rxmit = 0; 1114 goto out; 1115 } 1116 } 1117 1118 /* 1119 * If we're sending everything we've got, set PUSH. 1120 * (This will keep happy those implementations which only 1121 * give data to the user when a buffer fills or 1122 * a PUSH comes in.) 1123 */ 1124 if (((uint32_t)off + (uint32_t)len == sbused(&so->so_snd)) && 1125 !(flags & TH_SYN)) 1126 flags |= TH_PUSH; 1127 SOCKBUF_UNLOCK(&so->so_snd); 1128 } else { 1129 SOCKBUF_UNLOCK(&so->so_snd); 1130 if (tp->t_flags & TF_ACKNOW) 1131 TCPSTAT_INC(tcps_sndacks); 1132 else if (flags & (TH_SYN|TH_FIN|TH_RST)) 1133 TCPSTAT_INC(tcps_sndctrl); 1134 else if (SEQ_GT(tp->snd_up, tp->snd_una)) 1135 TCPSTAT_INC(tcps_sndurg); 1136 else 1137 TCPSTAT_INC(tcps_sndwinup); 1138 1139 m = m_gethdr(M_NOWAIT, MT_DATA); 1140 if (m == NULL) { 1141 error = ENOBUFS; 1142 sack_rxmit = 0; 1143 goto out; 1144 } 1145 #ifdef INET6 1146 if (isipv6 && (MHLEN < hdrlen + max_linkhdr) && 1147 MHLEN >= hdrlen) { 1148 M_ALIGN(m, hdrlen); 1149 } else 1150 #endif 1151 m->m_data += max_linkhdr; 1152 m->m_len = hdrlen; 1153 } 1154 SOCKBUF_UNLOCK_ASSERT(&so->so_snd); 1155 m->m_pkthdr.rcvif = (struct ifnet *)0; 1156 #ifdef MAC 1157 mac_inpcb_create_mbuf(tp->t_inpcb, m); 1158 #endif 1159 #ifdef INET6 1160 if (isipv6) { 1161 ip6 = mtod(m, struct ip6_hdr *); 1162 if (tp->t_port) { 1163 udp = (struct udphdr *)((caddr_t)ip6 + sizeof(struct ip6_hdr)); 1164 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 1165 udp->uh_dport = tp->t_port; 1166 ulen = hdrlen + len - sizeof(struct ip6_hdr); 1167 udp->uh_ulen = htons(ulen); 1168 th = (struct tcphdr *)(udp + 1); 1169 } else { 1170 th = (struct tcphdr *)(ip6 + 1); 1171 } 1172 tcpip_fillheaders(tp->t_inpcb, tp->t_port, ip6, th); 1173 } else 1174 #endif /* INET6 */ 1175 { 1176 ip = mtod(m, struct ip *); 1177 #ifdef TCPDEBUG 1178 ipov = (struct ipovly *)ip; 1179 #endif 1180 if (tp->t_port) { 1181 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 1182 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 1183 udp->uh_dport = tp->t_port; 1184 ulen = hdrlen + len - sizeof(struct ip); 1185 udp->uh_ulen = htons(ulen); 1186 th = (struct tcphdr *)(udp + 1); 1187 } else 1188 th = (struct tcphdr *)(ip + 1); 1189 tcpip_fillheaders(tp->t_inpcb, tp->t_port, ip, th); 1190 } 1191 1192 /* 1193 * Fill in fields, remembering maximum advertised 1194 * window for use in delaying messages about window sizes. 1195 * If resending a FIN, be sure not to use a new sequence number. 1196 */ 1197 if (flags & TH_FIN && tp->t_flags & TF_SENTFIN && 1198 tp->snd_nxt == tp->snd_max) 1199 tp->snd_nxt--; 1200 /* 1201 * If we are starting a connection, send ECN setup 1202 * SYN packet. If we are on a retransmit, we may 1203 * resend those bits a number of times as per 1204 * RFC 3168. 1205 */ 1206 if (tp->t_state == TCPS_SYN_SENT && V_tcp_do_ecn) { 1207 flags |= tcp_ecn_output_syn_sent(tp); 1208 } 1209 /* Also handle parallel SYN for ECN */ 1210 if ((TCPS_HAVERCVDSYN(tp->t_state)) && 1211 (tp->t_flags2 & (TF2_ECN_PERMIT | TF2_ACE_PERMIT))) { 1212 int ect = tcp_ecn_output_established(tp, &flags, len, sack_rxmit); 1213 if ((tp->t_state == TCPS_SYN_RECEIVED) && 1214 (tp->t_flags2 & TF2_ECN_SND_ECE)) 1215 tp->t_flags2 &= ~TF2_ECN_SND_ECE; 1216 #ifdef INET6 1217 if (isipv6) { 1218 ip6->ip6_flow &= ~htonl(IPTOS_ECN_MASK << 20); 1219 ip6->ip6_flow |= htonl(ect << 20); 1220 } 1221 else 1222 #endif 1223 { 1224 ip->ip_tos &= ~IPTOS_ECN_MASK; 1225 ip->ip_tos |= ect; 1226 } 1227 } 1228 1229 /* 1230 * If we are doing retransmissions, then snd_nxt will 1231 * not reflect the first unsent octet. For ACK only 1232 * packets, we do not want the sequence number of the 1233 * retransmitted packet, we want the sequence number 1234 * of the next unsent octet. So, if there is no data 1235 * (and no SYN or FIN), use snd_max instead of snd_nxt 1236 * when filling in ti_seq. But if we are in persist 1237 * state, snd_max might reflect one byte beyond the 1238 * right edge of the window, so use snd_nxt in that 1239 * case, since we know we aren't doing a retransmission. 1240 * (retransmit and persist are mutually exclusive...) 1241 */ 1242 if (sack_rxmit == 0) { 1243 if (len || (flags & (TH_SYN|TH_FIN)) || 1244 tcp_timer_active(tp, TT_PERSIST)) 1245 th->th_seq = htonl(tp->snd_nxt); 1246 else 1247 th->th_seq = htonl(tp->snd_max); 1248 } else { 1249 th->th_seq = htonl(p->rxmit); 1250 p->rxmit += len; 1251 /* 1252 * Lost Retransmission Detection 1253 * trigger resending of a (then 1254 * still existing) hole, when 1255 * fack acks recoverypoint. 1256 */ 1257 if ((tp->t_flags & TF_LRD) && SEQ_GEQ(p->rxmit, p->end)) 1258 p->rxmit = tp->snd_recover; 1259 tp->sackhint.sack_bytes_rexmit += len; 1260 } 1261 if (IN_RECOVERY(tp->t_flags)) { 1262 /* 1263 * Account all bytes transmitted while 1264 * IN_RECOVERY, simplifying PRR and 1265 * Lost Retransmit Detection 1266 */ 1267 tp->sackhint.prr_out += len; 1268 } 1269 th->th_ack = htonl(tp->rcv_nxt); 1270 if (optlen) { 1271 bcopy(opt, th + 1, optlen); 1272 th->th_off = (sizeof (struct tcphdr) + optlen) >> 2; 1273 } 1274 tcp_set_flags(th, flags); 1275 /* 1276 * Calculate receive window. Don't shrink window, 1277 * but avoid silly window syndrome. 1278 * If a RST segment is sent, advertise a window of zero. 1279 */ 1280 if (flags & TH_RST) { 1281 recwin = 0; 1282 } else { 1283 if (recwin < (so->so_rcv.sb_hiwat / 4) && 1284 recwin < tp->t_maxseg) 1285 recwin = 0; 1286 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt) && 1287 recwin < (tp->rcv_adv - tp->rcv_nxt)) 1288 recwin = (tp->rcv_adv - tp->rcv_nxt); 1289 } 1290 /* 1291 * According to RFC1323 the window field in a SYN (i.e., a <SYN> 1292 * or <SYN,ACK>) segment itself is never scaled. The <SYN,ACK> 1293 * case is handled in syncache. 1294 */ 1295 if (flags & TH_SYN) 1296 th->th_win = htons((u_short) 1297 (min(sbspace(&so->so_rcv), TCP_MAXWIN))); 1298 else { 1299 /* Avoid shrinking window with window scaling. */ 1300 recwin = roundup2(recwin, 1 << tp->rcv_scale); 1301 th->th_win = htons((u_short)(recwin >> tp->rcv_scale)); 1302 } 1303 1304 /* 1305 * Adjust the RXWIN0SENT flag - indicate that we have advertised 1306 * a 0 window. This may cause the remote transmitter to stall. This 1307 * flag tells soreceive() to disable delayed acknowledgements when 1308 * draining the buffer. This can occur if the receiver is attempting 1309 * to read more data than can be buffered prior to transmitting on 1310 * the connection. 1311 */ 1312 if (th->th_win == 0) { 1313 tp->t_sndzerowin++; 1314 tp->t_flags |= TF_RXWIN0SENT; 1315 } else 1316 tp->t_flags &= ~TF_RXWIN0SENT; 1317 if (SEQ_GT(tp->snd_up, tp->snd_nxt)) { 1318 th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt)); 1319 th->th_flags |= TH_URG; 1320 } else 1321 /* 1322 * If no urgent pointer to send, then we pull 1323 * the urgent pointer to the left edge of the send window 1324 * so that it doesn't drift into the send window on sequence 1325 * number wraparound. 1326 */ 1327 tp->snd_up = tp->snd_una; /* drag it along */ 1328 1329 /* 1330 * Put TCP length in extended header, and then 1331 * checksum extended header and data. 1332 */ 1333 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */ 1334 1335 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1336 if (to.to_flags & TOF_SIGNATURE) { 1337 /* 1338 * Calculate MD5 signature and put it into the place 1339 * determined before. 1340 * NOTE: since TCP options buffer doesn't point into 1341 * mbuf's data, calculate offset and use it. 1342 */ 1343 if (!TCPMD5_ENABLED() || (error = TCPMD5_OUTPUT(m, th, 1344 (u_char *)(th + 1) + (to.to_signature - opt))) != 0) { 1345 /* 1346 * Do not send segment if the calculation of MD5 1347 * digest has failed. 1348 */ 1349 m_freem(m); 1350 goto out; 1351 } 1352 } 1353 #endif 1354 #ifdef INET6 1355 if (isipv6) { 1356 /* 1357 * There is no need to fill in ip6_plen right now. 1358 * It will be filled later by ip6_output. 1359 */ 1360 if (tp->t_port) { 1361 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 1362 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 1363 udp->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0); 1364 th->th_sum = htons(0); 1365 UDPSTAT_INC(udps_opackets); 1366 } else { 1367 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 1368 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 1369 th->th_sum = in6_cksum_pseudo(ip6, 1370 sizeof(struct tcphdr) + optlen + len, IPPROTO_TCP, 1371 0); 1372 } 1373 } 1374 #endif 1375 #if defined(INET6) && defined(INET) 1376 else 1377 #endif 1378 #ifdef INET 1379 { 1380 if (tp->t_port) { 1381 m->m_pkthdr.csum_flags = CSUM_UDP; 1382 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 1383 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, 1384 ip->ip_dst.s_addr, htons(ulen + IPPROTO_UDP)); 1385 th->th_sum = htons(0); 1386 UDPSTAT_INC(udps_opackets); 1387 } else { 1388 m->m_pkthdr.csum_flags = CSUM_TCP; 1389 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 1390 th->th_sum = in_pseudo(ip->ip_src.s_addr, 1391 ip->ip_dst.s_addr, htons(sizeof(struct tcphdr) + 1392 IPPROTO_TCP + len + optlen)); 1393 } 1394 1395 /* IP version must be set here for ipv4/ipv6 checking later */ 1396 KASSERT(ip->ip_v == IPVERSION, 1397 ("%s: IP version incorrect: %d", __func__, ip->ip_v)); 1398 } 1399 #endif 1400 1401 /* 1402 * Enable TSO and specify the size of the segments. 1403 * The TCP pseudo header checksum is always provided. 1404 */ 1405 if (tso) { 1406 KASSERT(len > tp->t_maxseg - optlen, 1407 ("%s: len <= tso_segsz", __func__)); 1408 m->m_pkthdr.csum_flags |= CSUM_TSO; 1409 m->m_pkthdr.tso_segsz = tp->t_maxseg - optlen; 1410 } 1411 1412 KASSERT(len + hdrlen == m_length(m, NULL), 1413 ("%s: mbuf chain shorter than expected: %d + %u != %u", 1414 __func__, len, hdrlen, m_length(m, NULL))); 1415 1416 #ifdef TCP_HHOOK 1417 /* Run HHOOK_TCP_ESTABLISHED_OUT helper hooks. */ 1418 hhook_run_tcp_est_out(tp, th, &to, len, tso); 1419 #endif 1420 1421 #ifdef TCPDEBUG 1422 /* 1423 * Trace. 1424 */ 1425 if (so->so_options & SO_DEBUG) { 1426 u_short save = 0; 1427 #ifdef INET6 1428 if (!isipv6) 1429 #endif 1430 { 1431 save = ipov->ih_len; 1432 ipov->ih_len = htons(m->m_pkthdr.len /* - hdrlen + (th->th_off << 2) */); 1433 } 1434 tcp_trace(TA_OUTPUT, tp->t_state, tp, mtod(m, void *), th, 0); 1435 #ifdef INET6 1436 if (!isipv6) 1437 #endif 1438 ipov->ih_len = save; 1439 } 1440 #endif /* TCPDEBUG */ 1441 TCP_PROBE3(debug__output, tp, th, m); 1442 1443 /* We're getting ready to send; log now. */ 1444 /* XXXMT: We are not honoring verbose logging. */ 1445 if (tp->t_logstate != TCP_LOG_STATE_OFF) 1446 lgb = tcp_log_event_(tp, th, &so->so_rcv, &so->so_snd, 1447 TCP_LOG_OUT, ERRNO_UNK, len, NULL, false, NULL, NULL, 0, 1448 NULL); 1449 else 1450 lgb = NULL; 1451 1452 /* 1453 * Fill in IP length and desired time to live and 1454 * send to IP level. There should be a better way 1455 * to handle ttl and tos; we could keep them in 1456 * the template, but need a way to checksum without them. 1457 */ 1458 /* 1459 * m->m_pkthdr.len should have been set before checksum calculation, 1460 * because in6_cksum() need it. 1461 */ 1462 #ifdef INET6 1463 if (isipv6) { 1464 /* 1465 * we separately set hoplimit for every segment, since the 1466 * user might want to change the value via setsockopt. 1467 * Also, desired default hop limit might be changed via 1468 * Neighbor Discovery. 1469 */ 1470 ip6->ip6_hlim = in6_selecthlim(tp->t_inpcb, NULL); 1471 1472 /* 1473 * Set the packet size here for the benefit of DTrace probes. 1474 * ip6_output() will set it properly; it's supposed to include 1475 * the option header lengths as well. 1476 */ 1477 ip6->ip6_plen = htons(m->m_pkthdr.len - sizeof(*ip6)); 1478 1479 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) 1480 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 1481 else 1482 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 1483 1484 if (tp->t_state == TCPS_SYN_SENT) 1485 TCP_PROBE5(connect__request, NULL, tp, ip6, tp, th); 1486 1487 TCP_PROBE5(send, NULL, tp, ip6, tp, th); 1488 1489 #ifdef TCPPCAP 1490 /* Save packet, if requested. */ 1491 tcp_pcap_add(th, m, &(tp->t_outpkts)); 1492 #endif 1493 1494 /* TODO: IPv6 IP6TOS_ECT bit on */ 1495 error = ip6_output(m, tp->t_inpcb->in6p_outputopts, 1496 &tp->t_inpcb->inp_route6, 1497 ((so->so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0), 1498 NULL, NULL, tp->t_inpcb); 1499 1500 if (error == EMSGSIZE && tp->t_inpcb->inp_route6.ro_nh != NULL) 1501 mtu = tp->t_inpcb->inp_route6.ro_nh->nh_mtu; 1502 } 1503 #endif /* INET6 */ 1504 #if defined(INET) && defined(INET6) 1505 else 1506 #endif 1507 #ifdef INET 1508 { 1509 ip->ip_len = htons(m->m_pkthdr.len); 1510 #ifdef INET6 1511 if (tp->t_inpcb->inp_vflag & INP_IPV6PROTO) 1512 ip->ip_ttl = in6_selecthlim(tp->t_inpcb, NULL); 1513 #endif /* INET6 */ 1514 /* 1515 * If we do path MTU discovery, then we set DF on every packet. 1516 * This might not be the best thing to do according to RFC3390 1517 * Section 2. However the tcp hostcache migitates the problem 1518 * so it affects only the first tcp connection with a host. 1519 * 1520 * NB: Don't set DF on small MTU/MSS to have a safe fallback. 1521 */ 1522 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) { 1523 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 1524 if (tp->t_port == 0 || len < V_tcp_minmss) { 1525 ip->ip_off |= htons(IP_DF); 1526 } 1527 } else { 1528 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 1529 } 1530 1531 if (tp->t_state == TCPS_SYN_SENT) 1532 TCP_PROBE5(connect__request, NULL, tp, ip, tp, th); 1533 1534 TCP_PROBE5(send, NULL, tp, ip, tp, th); 1535 1536 #ifdef TCPPCAP 1537 /* Save packet, if requested. */ 1538 tcp_pcap_add(th, m, &(tp->t_outpkts)); 1539 #endif 1540 1541 error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route, 1542 ((so->so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0), 0, 1543 tp->t_inpcb); 1544 1545 if (error == EMSGSIZE && tp->t_inpcb->inp_route.ro_nh != NULL) 1546 mtu = tp->t_inpcb->inp_route.ro_nh->nh_mtu; 1547 } 1548 #endif /* INET */ 1549 1550 if (lgb != NULL) { 1551 lgb->tlb_errno = error; 1552 lgb = NULL; 1553 } 1554 out: 1555 if (error == 0) 1556 tcp_account_for_send(tp, len, (tp->snd_nxt != tp->snd_max), 0, hw_tls); 1557 /* 1558 * In transmit state, time the transmission and arrange for 1559 * the retransmit. In persist state, just set snd_max. 1560 */ 1561 if ((tp->t_flags & TF_FORCEDATA) == 0 || 1562 !tcp_timer_active(tp, TT_PERSIST)) { 1563 tcp_seq startseq = tp->snd_nxt; 1564 1565 /* 1566 * Advance snd_nxt over sequence space of this segment. 1567 */ 1568 if (flags & (TH_SYN|TH_FIN)) { 1569 if (flags & TH_SYN) 1570 tp->snd_nxt++; 1571 if (flags & TH_FIN) { 1572 tp->snd_nxt++; 1573 tp->t_flags |= TF_SENTFIN; 1574 } 1575 } 1576 if (sack_rxmit) 1577 goto timer; 1578 tp->snd_nxt += len; 1579 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) { 1580 /* 1581 * Update "made progress" indication if we just 1582 * added new data to an empty socket buffer. 1583 */ 1584 if (tp->snd_una == tp->snd_max) 1585 tp->t_acktime = ticks; 1586 tp->snd_max = tp->snd_nxt; 1587 /* 1588 * Time this transmission if not a retransmission and 1589 * not currently timing anything. 1590 */ 1591 tp->t_sndtime = ticks; 1592 if (tp->t_rtttime == 0) { 1593 tp->t_rtttime = ticks; 1594 tp->t_rtseq = startseq; 1595 TCPSTAT_INC(tcps_segstimed); 1596 } 1597 #ifdef STATS 1598 if (!(tp->t_flags & TF_GPUTINPROG) && len) { 1599 tp->t_flags |= TF_GPUTINPROG; 1600 tp->gput_seq = startseq; 1601 tp->gput_ack = startseq + 1602 ulmin(sbavail(&so->so_snd) - off, sendwin); 1603 tp->gput_ts = tcp_ts_getticks(); 1604 } 1605 #endif /* STATS */ 1606 } 1607 1608 /* 1609 * Set retransmit timer if not currently set, 1610 * and not doing a pure ack or a keep-alive probe. 1611 * Initial value for retransmit timer is smoothed 1612 * round-trip time + 2 * round-trip time variance. 1613 * Initialize shift counter which is used for backoff 1614 * of retransmit time. 1615 */ 1616 timer: 1617 if (!tcp_timer_active(tp, TT_REXMT) && 1618 ((sack_rxmit && tp->snd_nxt != tp->snd_max) || 1619 (tp->snd_nxt != tp->snd_una))) { 1620 if (tcp_timer_active(tp, TT_PERSIST)) { 1621 tcp_timer_activate(tp, TT_PERSIST, 0); 1622 tp->t_rxtshift = 0; 1623 } 1624 tcp_timer_activate(tp, TT_REXMT, TP_RXTCUR(tp)); 1625 } else if (len == 0 && sbavail(&so->so_snd) && 1626 !tcp_timer_active(tp, TT_REXMT) && 1627 !tcp_timer_active(tp, TT_PERSIST)) { 1628 /* 1629 * Avoid a situation where we do not set persist timer 1630 * after a zero window condition. For example: 1631 * 1) A -> B: packet with enough data to fill the window 1632 * 2) B -> A: ACK for #1 + new data (0 window 1633 * advertisement) 1634 * 3) A -> B: ACK for #2, 0 len packet 1635 * 1636 * In this case, A will not activate the persist timer, 1637 * because it chose to send a packet. Unless tcp_output 1638 * is called for some other reason (delayed ack timer, 1639 * another input packet from B, socket syscall), A will 1640 * not send zero window probes. 1641 * 1642 * So, if you send a 0-length packet, but there is data 1643 * in the socket buffer, and neither the rexmt or 1644 * persist timer is already set, then activate the 1645 * persist timer. 1646 */ 1647 tp->t_rxtshift = 0; 1648 tcp_setpersist(tp); 1649 } 1650 } else { 1651 /* 1652 * Persist case, update snd_max but since we are in 1653 * persist mode (no window) we do not update snd_nxt. 1654 */ 1655 int xlen = len; 1656 if (flags & TH_SYN) 1657 ++xlen; 1658 if (flags & TH_FIN) { 1659 ++xlen; 1660 tp->t_flags |= TF_SENTFIN; 1661 } 1662 if (SEQ_GT(tp->snd_nxt + xlen, tp->snd_max)) 1663 tp->snd_max = tp->snd_nxt + xlen; 1664 } 1665 if ((error == 0) && 1666 (TCPS_HAVEESTABLISHED(tp->t_state) && 1667 (tp->t_flags & TF_SACK_PERMIT) && 1668 tp->rcv_numsacks > 0)) { 1669 /* Clean up any DSACK's sent */ 1670 tcp_clean_dsack_blocks(tp); 1671 } 1672 if (error) { 1673 /* 1674 * We know that the packet was lost, so back out the 1675 * sequence number advance, if any. 1676 * 1677 * If the error is EPERM the packet got blocked by the 1678 * local firewall. Normally we should terminate the 1679 * connection but the blocking may have been spurious 1680 * due to a firewall reconfiguration cycle. So we treat 1681 * it like a packet loss and let the retransmit timer and 1682 * timeouts do their work over time. 1683 * XXX: It is a POLA question whether calling tcp_drop right 1684 * away would be the really correct behavior instead. 1685 */ 1686 if (((tp->t_flags & TF_FORCEDATA) == 0 || 1687 !tcp_timer_active(tp, TT_PERSIST)) && 1688 ((flags & TH_SYN) == 0) && 1689 (error != EPERM)) { 1690 if (sack_rxmit) { 1691 p->rxmit -= len; 1692 tp->sackhint.sack_bytes_rexmit -= len; 1693 KASSERT(tp->sackhint.sack_bytes_rexmit >= 0, 1694 ("sackhint bytes rtx >= 0")); 1695 KASSERT((flags & TH_FIN) == 0, 1696 ("error while FIN with SACK rxmit")); 1697 } else { 1698 tp->snd_nxt -= len; 1699 if (flags & TH_FIN) 1700 tp->snd_nxt--; 1701 } 1702 } 1703 SOCKBUF_UNLOCK_ASSERT(&so->so_snd); /* Check gotos. */ 1704 switch (error) { 1705 case EACCES: 1706 case EPERM: 1707 tp->t_softerror = error; 1708 return (error); 1709 case ENOBUFS: 1710 TCP_XMIT_TIMER_ASSERT(tp, len, flags); 1711 tp->snd_cwnd = tp->t_maxseg; 1712 return (0); 1713 case EMSGSIZE: 1714 /* 1715 * For some reason the interface we used initially 1716 * to send segments changed to another or lowered 1717 * its MTU. 1718 * If TSO was active we either got an interface 1719 * without TSO capabilits or TSO was turned off. 1720 * If we obtained mtu from ip_output() then update 1721 * it and try again. 1722 */ 1723 if (tso) 1724 tp->t_flags &= ~TF_TSO; 1725 if (mtu != 0) { 1726 tcp_mss_update(tp, -1, mtu, NULL, NULL); 1727 goto again; 1728 } 1729 return (error); 1730 case EHOSTDOWN: 1731 case EHOSTUNREACH: 1732 case ENETDOWN: 1733 case ENETUNREACH: 1734 if (TCPS_HAVERCVDSYN(tp->t_state)) { 1735 tp->t_softerror = error; 1736 return (0); 1737 } 1738 /* FALLTHROUGH */ 1739 default: 1740 return (error); 1741 } 1742 } 1743 TCPSTAT_INC(tcps_sndtotal); 1744 1745 /* 1746 * Data sent (as far as we can tell). 1747 * If this advertises a larger window than any other segment, 1748 * then remember the size of the advertised window. 1749 * Any pending ACK has now been sent. 1750 */ 1751 if (SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) 1752 tp->rcv_adv = tp->rcv_nxt + recwin; 1753 tp->last_ack_sent = tp->rcv_nxt; 1754 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); 1755 if (tcp_timer_active(tp, TT_DELACK)) 1756 tcp_timer_activate(tp, TT_DELACK, 0); 1757 #if 0 1758 /* 1759 * This completely breaks TCP if newreno is turned on. What happens 1760 * is that if delayed-acks are turned on on the receiver, this code 1761 * on the transmitter effectively destroys the TCP window, forcing 1762 * it to four packets (1.5Kx4 = 6K window). 1763 */ 1764 if (sendalot && --maxburst) 1765 goto again; 1766 #endif 1767 if (sendalot) 1768 goto again; 1769 return (0); 1770 } 1771 1772 void 1773 tcp_setpersist(struct tcpcb *tp) 1774 { 1775 int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1; 1776 int tt; 1777 int maxunacktime; 1778 1779 tp->t_flags &= ~TF_PREVVALID; 1780 if (tcp_timer_active(tp, TT_REXMT)) 1781 panic("tcp_setpersist: retransmit pending"); 1782 /* 1783 * If the state is already closed, don't bother. 1784 */ 1785 if (tp->t_state == TCPS_CLOSED) 1786 return; 1787 1788 /* 1789 * Start/restart persistence timer. 1790 */ 1791 TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], 1792 tcp_persmin, tcp_persmax); 1793 if (TP_MAXUNACKTIME(tp) && tp->t_acktime) { 1794 maxunacktime = tp->t_acktime + TP_MAXUNACKTIME(tp) - ticks; 1795 if (maxunacktime < 1) 1796 maxunacktime = 1; 1797 if (maxunacktime < tt) 1798 tt = maxunacktime; 1799 } 1800 tcp_timer_activate(tp, TT_PERSIST, tt); 1801 if (tp->t_rxtshift < TCP_MAXRXTSHIFT) 1802 tp->t_rxtshift++; 1803 } 1804 1805 /* 1806 * Insert TCP options according to the supplied parameters to the place 1807 * optp in a consistent way. Can handle unaligned destinations. 1808 * 1809 * The order of the option processing is crucial for optimal packing and 1810 * alignment for the scarce option space. 1811 * 1812 * The optimal order for a SYN/SYN-ACK segment is: 1813 * MSS (4) + NOP (1) + Window scale (3) + SACK permitted (2) + 1814 * Timestamp (10) + Signature (18) = 38 bytes out of a maximum of 40. 1815 * 1816 * The SACK options should be last. SACK blocks consume 8*n+2 bytes. 1817 * So a full size SACK blocks option is 34 bytes (with 4 SACK blocks). 1818 * At minimum we need 10 bytes (to generate 1 SACK block). If both 1819 * TCP Timestamps (12 bytes) and TCP Signatures (18 bytes) are present, 1820 * we only have 10 bytes for SACK options (40 - (12 + 18)). 1821 */ 1822 int 1823 tcp_addoptions(struct tcpopt *to, u_char *optp) 1824 { 1825 u_int32_t mask, optlen = 0; 1826 1827 for (mask = 1; mask < TOF_MAXOPT; mask <<= 1) { 1828 if ((to->to_flags & mask) != mask) 1829 continue; 1830 if (optlen == TCP_MAXOLEN) 1831 break; 1832 switch (to->to_flags & mask) { 1833 case TOF_MSS: 1834 while (optlen % 4) { 1835 optlen += TCPOLEN_NOP; 1836 *optp++ = TCPOPT_NOP; 1837 } 1838 if (TCP_MAXOLEN - optlen < TCPOLEN_MAXSEG) 1839 continue; 1840 optlen += TCPOLEN_MAXSEG; 1841 *optp++ = TCPOPT_MAXSEG; 1842 *optp++ = TCPOLEN_MAXSEG; 1843 to->to_mss = htons(to->to_mss); 1844 bcopy((u_char *)&to->to_mss, optp, sizeof(to->to_mss)); 1845 optp += sizeof(to->to_mss); 1846 break; 1847 case TOF_SCALE: 1848 while (!optlen || optlen % 2 != 1) { 1849 optlen += TCPOLEN_NOP; 1850 *optp++ = TCPOPT_NOP; 1851 } 1852 if (TCP_MAXOLEN - optlen < TCPOLEN_WINDOW) 1853 continue; 1854 optlen += TCPOLEN_WINDOW; 1855 *optp++ = TCPOPT_WINDOW; 1856 *optp++ = TCPOLEN_WINDOW; 1857 *optp++ = to->to_wscale; 1858 break; 1859 case TOF_SACKPERM: 1860 while (optlen % 2) { 1861 optlen += TCPOLEN_NOP; 1862 *optp++ = TCPOPT_NOP; 1863 } 1864 if (TCP_MAXOLEN - optlen < TCPOLEN_SACK_PERMITTED) 1865 continue; 1866 optlen += TCPOLEN_SACK_PERMITTED; 1867 *optp++ = TCPOPT_SACK_PERMITTED; 1868 *optp++ = TCPOLEN_SACK_PERMITTED; 1869 break; 1870 case TOF_TS: 1871 while (!optlen || optlen % 4 != 2) { 1872 optlen += TCPOLEN_NOP; 1873 *optp++ = TCPOPT_NOP; 1874 } 1875 if (TCP_MAXOLEN - optlen < TCPOLEN_TIMESTAMP) 1876 continue; 1877 optlen += TCPOLEN_TIMESTAMP; 1878 *optp++ = TCPOPT_TIMESTAMP; 1879 *optp++ = TCPOLEN_TIMESTAMP; 1880 to->to_tsval = htonl(to->to_tsval); 1881 to->to_tsecr = htonl(to->to_tsecr); 1882 bcopy((u_char *)&to->to_tsval, optp, sizeof(to->to_tsval)); 1883 optp += sizeof(to->to_tsval); 1884 bcopy((u_char *)&to->to_tsecr, optp, sizeof(to->to_tsecr)); 1885 optp += sizeof(to->to_tsecr); 1886 break; 1887 case TOF_SIGNATURE: 1888 { 1889 int siglen = TCPOLEN_SIGNATURE - 2; 1890 1891 while (!optlen || optlen % 4 != 2) { 1892 optlen += TCPOLEN_NOP; 1893 *optp++ = TCPOPT_NOP; 1894 } 1895 if (TCP_MAXOLEN - optlen < TCPOLEN_SIGNATURE) { 1896 to->to_flags &= ~TOF_SIGNATURE; 1897 continue; 1898 } 1899 optlen += TCPOLEN_SIGNATURE; 1900 *optp++ = TCPOPT_SIGNATURE; 1901 *optp++ = TCPOLEN_SIGNATURE; 1902 to->to_signature = optp; 1903 while (siglen--) 1904 *optp++ = 0; 1905 break; 1906 } 1907 case TOF_SACK: 1908 { 1909 int sackblks = 0; 1910 struct sackblk *sack = (struct sackblk *)to->to_sacks; 1911 tcp_seq sack_seq; 1912 1913 while (!optlen || optlen % 4 != 2) { 1914 optlen += TCPOLEN_NOP; 1915 *optp++ = TCPOPT_NOP; 1916 } 1917 if (TCP_MAXOLEN - optlen < TCPOLEN_SACKHDR + TCPOLEN_SACK) 1918 continue; 1919 optlen += TCPOLEN_SACKHDR; 1920 *optp++ = TCPOPT_SACK; 1921 sackblks = min(to->to_nsacks, 1922 (TCP_MAXOLEN - optlen) / TCPOLEN_SACK); 1923 *optp++ = TCPOLEN_SACKHDR + sackblks * TCPOLEN_SACK; 1924 while (sackblks--) { 1925 sack_seq = htonl(sack->start); 1926 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq)); 1927 optp += sizeof(sack_seq); 1928 sack_seq = htonl(sack->end); 1929 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq)); 1930 optp += sizeof(sack_seq); 1931 optlen += TCPOLEN_SACK; 1932 sack++; 1933 } 1934 TCPSTAT_INC(tcps_sack_send_blocks); 1935 break; 1936 } 1937 case TOF_FASTOPEN: 1938 { 1939 int total_len; 1940 1941 /* XXX is there any point to aligning this option? */ 1942 total_len = TCPOLEN_FAST_OPEN_EMPTY + to->to_tfo_len; 1943 if (TCP_MAXOLEN - optlen < total_len) { 1944 to->to_flags &= ~TOF_FASTOPEN; 1945 continue; 1946 } 1947 *optp++ = TCPOPT_FAST_OPEN; 1948 *optp++ = total_len; 1949 if (to->to_tfo_len > 0) { 1950 bcopy(to->to_tfo_cookie, optp, to->to_tfo_len); 1951 optp += to->to_tfo_len; 1952 } 1953 optlen += total_len; 1954 break; 1955 } 1956 default: 1957 panic("%s: unknown TCP option type", __func__); 1958 break; 1959 } 1960 } 1961 1962 /* Terminate and pad TCP options to a 4 byte boundary. */ 1963 if (optlen % 4) { 1964 optlen += TCPOLEN_EOL; 1965 *optp++ = TCPOPT_EOL; 1966 } 1967 /* 1968 * According to RFC 793 (STD0007): 1969 * "The content of the header beyond the End-of-Option option 1970 * must be header padding (i.e., zero)." 1971 * and later: "The padding is composed of zeros." 1972 */ 1973 while (optlen % 4) { 1974 optlen += TCPOLEN_PAD; 1975 *optp++ = TCPOPT_PAD; 1976 } 1977 1978 KASSERT(optlen <= TCP_MAXOLEN, ("%s: TCP options too long", __func__)); 1979 return (optlen); 1980 } 1981 1982 /* 1983 * This is a copy of m_copym(), taking the TSO segment size/limit 1984 * constraints into account, and advancing the sndptr as it goes. 1985 */ 1986 struct mbuf * 1987 tcp_m_copym(struct mbuf *m, int32_t off0, int32_t *plen, 1988 int32_t seglimit, int32_t segsize, struct sockbuf *sb, bool hw_tls) 1989 { 1990 #ifdef KERN_TLS 1991 struct ktls_session *tls, *ntls; 1992 struct mbuf *start __diagused; 1993 #endif 1994 struct mbuf *n, **np; 1995 struct mbuf *top; 1996 int32_t off = off0; 1997 int32_t len = *plen; 1998 int32_t fragsize; 1999 int32_t len_cp = 0; 2000 int32_t *pkthdrlen; 2001 uint32_t mlen, frags; 2002 bool copyhdr; 2003 2004 KASSERT(off >= 0, ("tcp_m_copym, negative off %d", off)); 2005 KASSERT(len >= 0, ("tcp_m_copym, negative len %d", len)); 2006 if (off == 0 && m->m_flags & M_PKTHDR) 2007 copyhdr = true; 2008 else 2009 copyhdr = false; 2010 while (off > 0) { 2011 KASSERT(m != NULL, ("tcp_m_copym, offset > size of mbuf chain")); 2012 if (off < m->m_len) 2013 break; 2014 off -= m->m_len; 2015 if ((sb) && (m == sb->sb_sndptr)) { 2016 sb->sb_sndptroff += m->m_len; 2017 sb->sb_sndptr = m->m_next; 2018 } 2019 m = m->m_next; 2020 } 2021 np = ⊤ 2022 top = NULL; 2023 pkthdrlen = NULL; 2024 #ifdef KERN_TLS 2025 if (hw_tls && (m->m_flags & M_EXTPG)) 2026 tls = m->m_epg_tls; 2027 else 2028 tls = NULL; 2029 start = m; 2030 #endif 2031 while (len > 0) { 2032 if (m == NULL) { 2033 KASSERT(len == M_COPYALL, 2034 ("tcp_m_copym, length > size of mbuf chain")); 2035 *plen = len_cp; 2036 if (pkthdrlen != NULL) 2037 *pkthdrlen = len_cp; 2038 break; 2039 } 2040 #ifdef KERN_TLS 2041 if (hw_tls) { 2042 if (m->m_flags & M_EXTPG) 2043 ntls = m->m_epg_tls; 2044 else 2045 ntls = NULL; 2046 2047 /* 2048 * Avoid mixing TLS records with handshake 2049 * data or TLS records from different 2050 * sessions. 2051 */ 2052 if (tls != ntls) { 2053 MPASS(m != start); 2054 *plen = len_cp; 2055 if (pkthdrlen != NULL) 2056 *pkthdrlen = len_cp; 2057 break; 2058 } 2059 } 2060 #endif 2061 mlen = min(len, m->m_len - off); 2062 if (seglimit) { 2063 /* 2064 * For M_EXTPG mbufs, add 3 segments 2065 * + 1 in case we are crossing page boundaries 2066 * + 2 in case the TLS hdr/trailer are used 2067 * It is cheaper to just add the segments 2068 * than it is to take the cache miss to look 2069 * at the mbuf ext_pgs state in detail. 2070 */ 2071 if (m->m_flags & M_EXTPG) { 2072 fragsize = min(segsize, PAGE_SIZE); 2073 frags = 3; 2074 } else { 2075 fragsize = segsize; 2076 frags = 0; 2077 } 2078 2079 /* Break if we really can't fit anymore. */ 2080 if ((frags + 1) >= seglimit) { 2081 *plen = len_cp; 2082 if (pkthdrlen != NULL) 2083 *pkthdrlen = len_cp; 2084 break; 2085 } 2086 2087 /* 2088 * Reduce size if you can't copy the whole 2089 * mbuf. If we can't copy the whole mbuf, also 2090 * adjust len so the loop will end after this 2091 * mbuf. 2092 */ 2093 if ((frags + howmany(mlen, fragsize)) >= seglimit) { 2094 mlen = (seglimit - frags - 1) * fragsize; 2095 len = mlen; 2096 *plen = len_cp + len; 2097 if (pkthdrlen != NULL) 2098 *pkthdrlen = *plen; 2099 } 2100 frags += howmany(mlen, fragsize); 2101 if (frags == 0) 2102 frags++; 2103 seglimit -= frags; 2104 KASSERT(seglimit > 0, 2105 ("%s: seglimit went too low", __func__)); 2106 } 2107 if (copyhdr) 2108 n = m_gethdr(M_NOWAIT, m->m_type); 2109 else 2110 n = m_get(M_NOWAIT, m->m_type); 2111 *np = n; 2112 if (n == NULL) 2113 goto nospace; 2114 if (copyhdr) { 2115 if (!m_dup_pkthdr(n, m, M_NOWAIT)) 2116 goto nospace; 2117 if (len == M_COPYALL) 2118 n->m_pkthdr.len -= off0; 2119 else 2120 n->m_pkthdr.len = len; 2121 pkthdrlen = &n->m_pkthdr.len; 2122 copyhdr = false; 2123 } 2124 n->m_len = mlen; 2125 len_cp += n->m_len; 2126 if (m->m_flags & (M_EXT|M_EXTPG)) { 2127 n->m_data = m->m_data + off; 2128 mb_dupcl(n, m); 2129 } else 2130 bcopy(mtod(m, caddr_t)+off, mtod(n, caddr_t), 2131 (u_int)n->m_len); 2132 2133 if (sb && (sb->sb_sndptr == m) && 2134 ((n->m_len + off) >= m->m_len) && m->m_next) { 2135 sb->sb_sndptroff += m->m_len; 2136 sb->sb_sndptr = m->m_next; 2137 } 2138 off = 0; 2139 if (len != M_COPYALL) { 2140 len -= n->m_len; 2141 } 2142 m = m->m_next; 2143 np = &n->m_next; 2144 } 2145 return (top); 2146 nospace: 2147 m_freem(top); 2148 return (NULL); 2149 } 2150 2151 void 2152 tcp_sndbuf_autoscale(struct tcpcb *tp, struct socket *so, uint32_t sendwin) 2153 { 2154 2155 /* 2156 * Automatic sizing of send socket buffer. Often the send buffer 2157 * size is not optimally adjusted to the actual network conditions 2158 * at hand (delay bandwidth product). Setting the buffer size too 2159 * small limits throughput on links with high bandwidth and high 2160 * delay (eg. trans-continental/oceanic links). Setting the 2161 * buffer size too big consumes too much real kernel memory, 2162 * especially with many connections on busy servers. 2163 * 2164 * The criteria to step up the send buffer one notch are: 2165 * 1. receive window of remote host is larger than send buffer 2166 * (with a fudge factor of 5/4th); 2167 * 2. send buffer is filled to 7/8th with data (so we actually 2168 * have data to make use of it); 2169 * 3. send buffer fill has not hit maximal automatic size; 2170 * 4. our send window (slow start and cogestion controlled) is 2171 * larger than sent but unacknowledged data in send buffer. 2172 * 2173 * The remote host receive window scaling factor may limit the 2174 * growing of the send buffer before it reaches its allowed 2175 * maximum. 2176 * 2177 * It scales directly with slow start or congestion window 2178 * and does at most one step per received ACK. This fast 2179 * scaling has the drawback of growing the send buffer beyond 2180 * what is strictly necessary to make full use of a given 2181 * delay*bandwidth product. However testing has shown this not 2182 * to be much of an problem. At worst we are trading wasting 2183 * of available bandwidth (the non-use of it) for wasting some 2184 * socket buffer memory. 2185 * 2186 * TODO: Shrink send buffer during idle periods together 2187 * with congestion window. Requires another timer. Has to 2188 * wait for upcoming tcp timer rewrite. 2189 * 2190 * XXXGL: should there be used sbused() or sbavail()? 2191 */ 2192 if (V_tcp_do_autosndbuf && so->so_snd.sb_flags & SB_AUTOSIZE) { 2193 int lowat; 2194 2195 lowat = V_tcp_sendbuf_auto_lowat ? so->so_snd.sb_lowat : 0; 2196 if ((tp->snd_wnd / 4 * 5) >= so->so_snd.sb_hiwat - lowat && 2197 sbused(&so->so_snd) >= 2198 (so->so_snd.sb_hiwat / 8 * 7) - lowat && 2199 sbused(&so->so_snd) < V_tcp_autosndbuf_max && 2200 sendwin >= (sbused(&so->so_snd) - 2201 (tp->snd_nxt - tp->snd_una))) { 2202 if (!sbreserve_locked(so, SO_SND, 2203 min(so->so_snd.sb_hiwat + V_tcp_autosndbuf_inc, 2204 V_tcp_autosndbuf_max), curthread)) 2205 so->so_snd.sb_flags &= ~SB_AUTOSIZE; 2206 } 2207 } 2208 } 2209