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_subr.c 8.2 (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/callout.h> 47 #include <sys/eventhandler.h> 48 #ifdef TCP_HHOOK 49 #include <sys/hhook.h> 50 #endif 51 #include <sys/kernel.h> 52 #ifdef TCP_HHOOK 53 #include <sys/khelp.h> 54 #endif 55 #ifdef KERN_TLS 56 #include <sys/ktls.h> 57 #endif 58 #include <sys/qmath.h> 59 #include <sys/stats.h> 60 #include <sys/sysctl.h> 61 #include <sys/jail.h> 62 #include <sys/malloc.h> 63 #include <sys/refcount.h> 64 #include <sys/mbuf.h> 65 #include <sys/priv.h> 66 #include <sys/proc.h> 67 #include <sys/sdt.h> 68 #include <sys/socket.h> 69 #include <sys/socketvar.h> 70 #include <sys/protosw.h> 71 #include <sys/random.h> 72 73 #include <vm/uma.h> 74 75 #include <net/route.h> 76 #include <net/route/nhop.h> 77 #include <net/if.h> 78 #include <net/if_var.h> 79 #include <net/vnet.h> 80 81 #include <netinet/in.h> 82 #include <netinet/in_fib.h> 83 #include <netinet/in_kdtrace.h> 84 #include <netinet/in_pcb.h> 85 #include <netinet/in_systm.h> 86 #include <netinet/in_var.h> 87 #include <netinet/ip.h> 88 #include <netinet/ip_icmp.h> 89 #include <netinet/ip_var.h> 90 #ifdef INET6 91 #include <netinet/icmp6.h> 92 #include <netinet/ip6.h> 93 #include <netinet6/in6_fib.h> 94 #include <netinet6/in6_pcb.h> 95 #include <netinet6/ip6_var.h> 96 #include <netinet6/scope6_var.h> 97 #include <netinet6/nd6.h> 98 #endif 99 100 #include <netinet/tcp.h> 101 #ifdef INVARIANTS 102 #define TCPSTATES 103 #endif 104 #include <netinet/tcp_fsm.h> 105 #include <netinet/tcp_seq.h> 106 #include <netinet/tcp_timer.h> 107 #include <netinet/tcp_var.h> 108 #include <netinet/tcp_ecn.h> 109 #include <netinet/tcp_log_buf.h> 110 #include <netinet/tcp_syncache.h> 111 #include <netinet/tcp_hpts.h> 112 #include <netinet/cc/cc.h> 113 #include <netinet/tcpip.h> 114 #include <netinet/tcp_fastopen.h> 115 #ifdef TCPPCAP 116 #include <netinet/tcp_pcap.h> 117 #endif 118 #ifdef TCPDEBUG 119 #include <netinet/tcp_debug.h> 120 #endif 121 #ifdef TCP_OFFLOAD 122 #include <netinet/tcp_offload.h> 123 #endif 124 #include <netinet/udp.h> 125 #include <netinet/udp_var.h> 126 #ifdef INET6 127 #include <netinet6/tcp6_var.h> 128 #endif 129 130 #include <netipsec/ipsec_support.h> 131 132 #include <machine/in_cksum.h> 133 #include <crypto/siphash/siphash.h> 134 135 #include <security/mac/mac_framework.h> 136 137 #ifdef INET6 138 static ip6proto_ctlinput_t tcp6_ctlinput; 139 static udp_tun_icmp_t tcp6_ctlinput_viaudp; 140 #endif 141 142 VNET_DEFINE(int, tcp_mssdflt) = TCP_MSS; 143 #ifdef INET6 144 VNET_DEFINE(int, tcp_v6mssdflt) = TCP6_MSS; 145 #endif 146 147 #ifdef NETFLIX_EXP_DETECTION 148 /* Sack attack detection thresholds and such */ 149 SYSCTL_NODE(_net_inet_tcp, OID_AUTO, sack_attack, 150 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 151 "Sack Attack detection thresholds"); 152 int32_t tcp_force_detection = 0; 153 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, force_detection, 154 CTLFLAG_RW, 155 &tcp_force_detection, 0, 156 "Do we force detection even if the INP has it off?"); 157 int32_t tcp_sack_to_ack_thresh = 700; /* 70 % */ 158 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sack_to_ack_thresh, 159 CTLFLAG_RW, 160 &tcp_sack_to_ack_thresh, 700, 161 "Percentage of sacks to acks we must see above (10.1 percent is 101)?"); 162 int32_t tcp_sack_to_move_thresh = 600; /* 60 % */ 163 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, move_thresh, 164 CTLFLAG_RW, 165 &tcp_sack_to_move_thresh, 600, 166 "Percentage of sack moves we must see above (10.1 percent is 101)"); 167 int32_t tcp_restoral_thresh = 650; /* 65 % (sack:2:ack -5%) */ 168 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, restore_thresh, 169 CTLFLAG_RW, 170 &tcp_restoral_thresh, 550, 171 "Percentage of sack to ack percentage we must see below to restore(10.1 percent is 101)"); 172 int32_t tcp_sad_decay_val = 800; 173 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, decay_per, 174 CTLFLAG_RW, 175 &tcp_sad_decay_val, 800, 176 "The decay percentage (10.1 percent equals 101 )"); 177 int32_t tcp_map_minimum = 500; 178 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, nummaps, 179 CTLFLAG_RW, 180 &tcp_map_minimum, 500, 181 "Number of Map enteries before we start detection"); 182 int32_t tcp_attack_on_turns_on_logging = 0; 183 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, attacks_logged, 184 CTLFLAG_RW, 185 &tcp_attack_on_turns_on_logging, 0, 186 "When we have a positive hit on attack, do we turn on logging?"); 187 int32_t tcp_sad_pacing_interval = 2000; 188 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sad_pacing_int, 189 CTLFLAG_RW, 190 &tcp_sad_pacing_interval, 2000, 191 "What is the minimum pacing interval for a classified attacker?"); 192 193 int32_t tcp_sad_low_pps = 100; 194 SYSCTL_INT(_net_inet_tcp_sack_attack, OID_AUTO, sad_low_pps, 195 CTLFLAG_RW, 196 &tcp_sad_low_pps, 100, 197 "What is the input pps that below which we do not decay?"); 198 #endif 199 uint32_t tcp_ack_war_time_window = 1000; 200 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, ack_war_timewindow, 201 CTLFLAG_RW, 202 &tcp_ack_war_time_window, 1000, 203 "If the tcp_stack does ack-war prevention how many milliseconds are in its time window?"); 204 uint32_t tcp_ack_war_cnt = 5; 205 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, ack_war_cnt, 206 CTLFLAG_RW, 207 &tcp_ack_war_cnt, 5, 208 "If the tcp_stack does ack-war prevention how many acks can be sent in its time window?"); 209 210 struct rwlock tcp_function_lock; 211 212 static int 213 sysctl_net_inet_tcp_mss_check(SYSCTL_HANDLER_ARGS) 214 { 215 int error, new; 216 217 new = V_tcp_mssdflt; 218 error = sysctl_handle_int(oidp, &new, 0, req); 219 if (error == 0 && req->newptr) { 220 if (new < TCP_MINMSS) 221 error = EINVAL; 222 else 223 V_tcp_mssdflt = new; 224 } 225 return (error); 226 } 227 228 SYSCTL_PROC(_net_inet_tcp, TCPCTL_MSSDFLT, mssdflt, 229 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 230 &VNET_NAME(tcp_mssdflt), 0, &sysctl_net_inet_tcp_mss_check, "I", 231 "Default TCP Maximum Segment Size"); 232 233 #ifdef INET6 234 static int 235 sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS) 236 { 237 int error, new; 238 239 new = V_tcp_v6mssdflt; 240 error = sysctl_handle_int(oidp, &new, 0, req); 241 if (error == 0 && req->newptr) { 242 if (new < TCP_MINMSS) 243 error = EINVAL; 244 else 245 V_tcp_v6mssdflt = new; 246 } 247 return (error); 248 } 249 250 SYSCTL_PROC(_net_inet_tcp, TCPCTL_V6MSSDFLT, v6mssdflt, 251 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 252 &VNET_NAME(tcp_v6mssdflt), 0, &sysctl_net_inet_tcp_mss_v6_check, "I", 253 "Default TCP Maximum Segment Size for IPv6"); 254 #endif /* INET6 */ 255 256 /* 257 * Minimum MSS we accept and use. This prevents DoS attacks where 258 * we are forced to a ridiculous low MSS like 20 and send hundreds 259 * of packets instead of one. The effect scales with the available 260 * bandwidth and quickly saturates the CPU and network interface 261 * with packet generation and sending. Set to zero to disable MINMSS 262 * checking. This setting prevents us from sending too small packets. 263 */ 264 VNET_DEFINE(int, tcp_minmss) = TCP_MINMSS; 265 SYSCTL_INT(_net_inet_tcp, OID_AUTO, minmss, CTLFLAG_VNET | CTLFLAG_RW, 266 &VNET_NAME(tcp_minmss), 0, 267 "Minimum TCP Maximum Segment Size"); 268 269 VNET_DEFINE(int, tcp_do_rfc1323) = 1; 270 SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323, CTLFLAG_VNET | CTLFLAG_RW, 271 &VNET_NAME(tcp_do_rfc1323), 0, 272 "Enable rfc1323 (high performance TCP) extensions"); 273 274 /* 275 * As of June 2021, several TCP stacks violate RFC 7323 from September 2014. 276 * Some stacks negotiate TS, but never send them after connection setup. Some 277 * stacks negotiate TS, but don't send them when sending keep-alive segments. 278 * These include modern widely deployed TCP stacks. 279 * Therefore tolerating violations for now... 280 */ 281 VNET_DEFINE(int, tcp_tolerate_missing_ts) = 1; 282 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tolerate_missing_ts, CTLFLAG_VNET | CTLFLAG_RW, 283 &VNET_NAME(tcp_tolerate_missing_ts), 0, 284 "Tolerate missing TCP timestamps"); 285 286 VNET_DEFINE(int, tcp_ts_offset_per_conn) = 1; 287 SYSCTL_INT(_net_inet_tcp, OID_AUTO, ts_offset_per_conn, CTLFLAG_VNET | CTLFLAG_RW, 288 &VNET_NAME(tcp_ts_offset_per_conn), 0, 289 "Initialize TCP timestamps per connection instead of per host pair"); 290 291 /* How many connections are pacing */ 292 static volatile uint32_t number_of_tcp_connections_pacing = 0; 293 static uint32_t shadow_num_connections = 0; 294 295 static int tcp_pacing_limit = 10000; 296 SYSCTL_INT(_net_inet_tcp, OID_AUTO, pacing_limit, CTLFLAG_RW, 297 &tcp_pacing_limit, 1000, 298 "If the TCP stack does pacing, is there a limit (-1 = no, 0 = no pacing N = number of connections)"); 299 300 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pacing_count, CTLFLAG_RD, 301 &shadow_num_connections, 0, "Number of TCP connections being paced"); 302 303 static int tcp_log_debug = 0; 304 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_debug, CTLFLAG_RW, 305 &tcp_log_debug, 0, "Log errors caused by incoming TCP segments"); 306 307 static int tcp_tcbhashsize; 308 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcbhashsize, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, 309 &tcp_tcbhashsize, 0, "Size of TCP control-block hashtable"); 310 311 static int do_tcpdrain = 1; 312 SYSCTL_INT(_net_inet_tcp, OID_AUTO, do_tcpdrain, CTLFLAG_RW, &do_tcpdrain, 0, 313 "Enable tcp_drain routine for extra help when low on mbufs"); 314 315 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pcbcount, CTLFLAG_VNET | CTLFLAG_RD, 316 &VNET_NAME(tcbinfo.ipi_count), 0, "Number of active PCBs"); 317 318 VNET_DEFINE_STATIC(int, icmp_may_rst) = 1; 319 #define V_icmp_may_rst VNET(icmp_may_rst) 320 SYSCTL_INT(_net_inet_tcp, OID_AUTO, icmp_may_rst, CTLFLAG_VNET | CTLFLAG_RW, 321 &VNET_NAME(icmp_may_rst), 0, 322 "Certain ICMP unreachable messages may abort connections in SYN_SENT"); 323 324 VNET_DEFINE_STATIC(int, tcp_isn_reseed_interval) = 0; 325 #define V_tcp_isn_reseed_interval VNET(tcp_isn_reseed_interval) 326 SYSCTL_INT(_net_inet_tcp, OID_AUTO, isn_reseed_interval, CTLFLAG_VNET | CTLFLAG_RW, 327 &VNET_NAME(tcp_isn_reseed_interval), 0, 328 "Seconds between reseeding of ISN secret"); 329 330 static int tcp_soreceive_stream; 331 SYSCTL_INT(_net_inet_tcp, OID_AUTO, soreceive_stream, CTLFLAG_RDTUN, 332 &tcp_soreceive_stream, 0, "Using soreceive_stream for TCP sockets"); 333 334 VNET_DEFINE(uma_zone_t, sack_hole_zone); 335 #define V_sack_hole_zone VNET(sack_hole_zone) 336 VNET_DEFINE(uint32_t, tcp_map_entries_limit) = 0; /* unlimited */ 337 static int 338 sysctl_net_inet_tcp_map_limit_check(SYSCTL_HANDLER_ARGS) 339 { 340 int error; 341 uint32_t new; 342 343 new = V_tcp_map_entries_limit; 344 error = sysctl_handle_int(oidp, &new, 0, req); 345 if (error == 0 && req->newptr) { 346 /* only allow "0" and value > minimum */ 347 if (new > 0 && new < TCP_MIN_MAP_ENTRIES_LIMIT) 348 error = EINVAL; 349 else 350 V_tcp_map_entries_limit = new; 351 } 352 return (error); 353 } 354 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, map_limit, 355 CTLFLAG_VNET | CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 356 &VNET_NAME(tcp_map_entries_limit), 0, 357 &sysctl_net_inet_tcp_map_limit_check, "IU", 358 "Total sendmap entries limit"); 359 360 VNET_DEFINE(uint32_t, tcp_map_split_limit) = 0; /* unlimited */ 361 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, split_limit, CTLFLAG_VNET | CTLFLAG_RW, 362 &VNET_NAME(tcp_map_split_limit), 0, 363 "Total sendmap split entries limit"); 364 365 #ifdef TCP_HHOOK 366 VNET_DEFINE(struct hhook_head *, tcp_hhh[HHOOK_TCP_LAST+1]); 367 #endif 368 369 #define TS_OFFSET_SECRET_LENGTH SIPHASH_KEY_LENGTH 370 VNET_DEFINE_STATIC(u_char, ts_offset_secret[TS_OFFSET_SECRET_LENGTH]); 371 #define V_ts_offset_secret VNET(ts_offset_secret) 372 373 static int tcp_default_fb_init(struct tcpcb *tp); 374 static void tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged); 375 static int tcp_default_handoff_ok(struct tcpcb *tp); 376 static struct inpcb *tcp_notify(struct inpcb *, int); 377 static struct inpcb *tcp_mtudisc_notify(struct inpcb *, int); 378 static struct inpcb *tcp_mtudisc(struct inpcb *, int); 379 static struct inpcb *tcp_drop_syn_sent(struct inpcb *, int); 380 static char * tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th, 381 const void *ip4hdr, const void *ip6hdr); 382 static ipproto_ctlinput_t tcp_ctlinput; 383 static udp_tun_icmp_t tcp_ctlinput_viaudp; 384 385 static struct tcp_function_block tcp_def_funcblk = { 386 .tfb_tcp_block_name = "freebsd", 387 .tfb_tcp_output = tcp_default_output, 388 .tfb_tcp_do_segment = tcp_do_segment, 389 .tfb_tcp_ctloutput = tcp_default_ctloutput, 390 .tfb_tcp_handoff_ok = tcp_default_handoff_ok, 391 .tfb_tcp_fb_init = tcp_default_fb_init, 392 .tfb_tcp_fb_fini = tcp_default_fb_fini, 393 }; 394 395 static int tcp_fb_cnt = 0; 396 struct tcp_funchead t_functions; 397 static struct tcp_function_block *tcp_func_set_ptr = &tcp_def_funcblk; 398 399 void 400 tcp_record_dsack(struct tcpcb *tp, tcp_seq start, tcp_seq end, int tlp) 401 { 402 TCPSTAT_INC(tcps_dsack_count); 403 tp->t_dsack_pack++; 404 if (tlp == 0) { 405 if (SEQ_GT(end, start)) { 406 tp->t_dsack_bytes += (end - start); 407 TCPSTAT_ADD(tcps_dsack_bytes, (end - start)); 408 } else { 409 tp->t_dsack_tlp_bytes += (start - end); 410 TCPSTAT_ADD(tcps_dsack_bytes, (start - end)); 411 } 412 } else { 413 if (SEQ_GT(end, start)) { 414 tp->t_dsack_bytes += (end - start); 415 TCPSTAT_ADD(tcps_dsack_tlp_bytes, (end - start)); 416 } else { 417 tp->t_dsack_tlp_bytes += (start - end); 418 TCPSTAT_ADD(tcps_dsack_tlp_bytes, (start - end)); 419 } 420 } 421 } 422 423 static struct tcp_function_block * 424 find_tcp_functions_locked(struct tcp_function_set *fs) 425 { 426 struct tcp_function *f; 427 struct tcp_function_block *blk=NULL; 428 429 TAILQ_FOREACH(f, &t_functions, tf_next) { 430 if (strcmp(f->tf_name, fs->function_set_name) == 0) { 431 blk = f->tf_fb; 432 break; 433 } 434 } 435 return(blk); 436 } 437 438 static struct tcp_function_block * 439 find_tcp_fb_locked(struct tcp_function_block *blk, struct tcp_function **s) 440 { 441 struct tcp_function_block *rblk=NULL; 442 struct tcp_function *f; 443 444 TAILQ_FOREACH(f, &t_functions, tf_next) { 445 if (f->tf_fb == blk) { 446 rblk = blk; 447 if (s) { 448 *s = f; 449 } 450 break; 451 } 452 } 453 return (rblk); 454 } 455 456 struct tcp_function_block * 457 find_and_ref_tcp_functions(struct tcp_function_set *fs) 458 { 459 struct tcp_function_block *blk; 460 461 rw_rlock(&tcp_function_lock); 462 blk = find_tcp_functions_locked(fs); 463 if (blk) 464 refcount_acquire(&blk->tfb_refcnt); 465 rw_runlock(&tcp_function_lock); 466 return(blk); 467 } 468 469 struct tcp_function_block * 470 find_and_ref_tcp_fb(struct tcp_function_block *blk) 471 { 472 struct tcp_function_block *rblk; 473 474 rw_rlock(&tcp_function_lock); 475 rblk = find_tcp_fb_locked(blk, NULL); 476 if (rblk) 477 refcount_acquire(&rblk->tfb_refcnt); 478 rw_runlock(&tcp_function_lock); 479 return(rblk); 480 } 481 482 /* Find a matching alias for the given tcp_function_block. */ 483 int 484 find_tcp_function_alias(struct tcp_function_block *blk, 485 struct tcp_function_set *fs) 486 { 487 struct tcp_function *f; 488 int found; 489 490 found = 0; 491 rw_rlock(&tcp_function_lock); 492 TAILQ_FOREACH(f, &t_functions, tf_next) { 493 if ((f->tf_fb == blk) && 494 (strncmp(f->tf_name, blk->tfb_tcp_block_name, 495 TCP_FUNCTION_NAME_LEN_MAX) != 0)) { 496 /* Matching function block with different name. */ 497 strncpy(fs->function_set_name, f->tf_name, 498 TCP_FUNCTION_NAME_LEN_MAX); 499 found = 1; 500 break; 501 } 502 } 503 /* Null terminate the string appropriately. */ 504 if (found) { 505 fs->function_set_name[TCP_FUNCTION_NAME_LEN_MAX - 1] = '\0'; 506 } else { 507 fs->function_set_name[0] = '\0'; 508 } 509 rw_runlock(&tcp_function_lock); 510 return (found); 511 } 512 513 static struct tcp_function_block * 514 find_and_ref_tcp_default_fb(void) 515 { 516 struct tcp_function_block *rblk; 517 518 rw_rlock(&tcp_function_lock); 519 rblk = tcp_func_set_ptr; 520 refcount_acquire(&rblk->tfb_refcnt); 521 rw_runlock(&tcp_function_lock); 522 return (rblk); 523 } 524 525 void 526 tcp_switch_back_to_default(struct tcpcb *tp) 527 { 528 struct tcp_function_block *tfb; 529 530 KASSERT(tp->t_fb != &tcp_def_funcblk, 531 ("%s: called by the built-in default stack", __func__)); 532 533 /* 534 * Release the old stack. This function will either find a new one 535 * or panic. 536 */ 537 if (tp->t_fb->tfb_tcp_fb_fini != NULL) 538 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 0); 539 refcount_release(&tp->t_fb->tfb_refcnt); 540 541 /* 542 * Now, we'll find a new function block to use. 543 * Start by trying the current user-selected 544 * default, unless this stack is the user-selected 545 * default. 546 */ 547 tfb = find_and_ref_tcp_default_fb(); 548 if (tfb == tp->t_fb) { 549 refcount_release(&tfb->tfb_refcnt); 550 tfb = NULL; 551 } 552 /* Does the stack accept this connection? */ 553 if (tfb != NULL && tfb->tfb_tcp_handoff_ok != NULL && 554 (*tfb->tfb_tcp_handoff_ok)(tp)) { 555 refcount_release(&tfb->tfb_refcnt); 556 tfb = NULL; 557 } 558 /* Try to use that stack. */ 559 if (tfb != NULL) { 560 /* Initialize the new stack. If it succeeds, we are done. */ 561 tp->t_fb = tfb; 562 if (tp->t_fb->tfb_tcp_fb_init == NULL || 563 (*tp->t_fb->tfb_tcp_fb_init)(tp) == 0) 564 return; 565 566 /* 567 * Initialization failed. Release the reference count on 568 * the stack. 569 */ 570 refcount_release(&tfb->tfb_refcnt); 571 } 572 573 /* 574 * If that wasn't feasible, use the built-in default 575 * stack which is not allowed to reject anyone. 576 */ 577 tfb = find_and_ref_tcp_fb(&tcp_def_funcblk); 578 if (tfb == NULL) { 579 /* there always should be a default */ 580 panic("Can't refer to tcp_def_funcblk"); 581 } 582 if (tfb->tfb_tcp_handoff_ok != NULL) { 583 if ((*tfb->tfb_tcp_handoff_ok) (tp)) { 584 /* The default stack cannot say no */ 585 panic("Default stack rejects a new session?"); 586 } 587 } 588 tp->t_fb = tfb; 589 if (tp->t_fb->tfb_tcp_fb_init != NULL && 590 (*tp->t_fb->tfb_tcp_fb_init)(tp)) { 591 /* The default stack cannot fail */ 592 panic("Default stack initialization failed"); 593 } 594 } 595 596 static bool 597 tcp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *inp, 598 const struct sockaddr *sa, void *ctx) 599 { 600 struct ip *iph; 601 #ifdef INET6 602 struct ip6_hdr *ip6; 603 #endif 604 struct udphdr *uh; 605 struct tcphdr *th; 606 int thlen; 607 uint16_t port; 608 609 TCPSTAT_INC(tcps_tunneled_pkts); 610 if ((m->m_flags & M_PKTHDR) == 0) { 611 /* Can't handle one that is not a pkt hdr */ 612 TCPSTAT_INC(tcps_tunneled_errs); 613 goto out; 614 } 615 thlen = sizeof(struct tcphdr); 616 if (m->m_len < off + sizeof(struct udphdr) + thlen && 617 (m = m_pullup(m, off + sizeof(struct udphdr) + thlen)) == NULL) { 618 TCPSTAT_INC(tcps_tunneled_errs); 619 goto out; 620 } 621 iph = mtod(m, struct ip *); 622 uh = (struct udphdr *)((caddr_t)iph + off); 623 th = (struct tcphdr *)(uh + 1); 624 thlen = th->th_off << 2; 625 if (m->m_len < off + sizeof(struct udphdr) + thlen) { 626 m = m_pullup(m, off + sizeof(struct udphdr) + thlen); 627 if (m == NULL) { 628 TCPSTAT_INC(tcps_tunneled_errs); 629 goto out; 630 } else { 631 iph = mtod(m, struct ip *); 632 uh = (struct udphdr *)((caddr_t)iph + off); 633 th = (struct tcphdr *)(uh + 1); 634 } 635 } 636 m->m_pkthdr.tcp_tun_port = port = uh->uh_sport; 637 bcopy(th, uh, m->m_len - off); 638 m->m_len -= sizeof(struct udphdr); 639 m->m_pkthdr.len -= sizeof(struct udphdr); 640 /* 641 * We use the same algorithm for 642 * both UDP and TCP for c-sum. So 643 * the code in tcp_input will skip 644 * the checksum. So we do nothing 645 * with the flag (m->m_pkthdr.csum_flags). 646 */ 647 switch (iph->ip_v) { 648 #ifdef INET 649 case IPVERSION: 650 iph->ip_len = htons(ntohs(iph->ip_len) - sizeof(struct udphdr)); 651 tcp_input_with_port(&m, &off, IPPROTO_TCP, port); 652 break; 653 #endif 654 #ifdef INET6 655 case IPV6_VERSION >> 4: 656 ip6 = mtod(m, struct ip6_hdr *); 657 ip6->ip6_plen = htons(ntohs(ip6->ip6_plen) - sizeof(struct udphdr)); 658 tcp6_input_with_port(&m, &off, IPPROTO_TCP, port); 659 break; 660 #endif 661 default: 662 goto out; 663 break; 664 } 665 return (true); 666 out: 667 m_freem(m); 668 669 return (true); 670 } 671 672 static int 673 sysctl_net_inet_default_tcp_functions(SYSCTL_HANDLER_ARGS) 674 { 675 int error=ENOENT; 676 struct tcp_function_set fs; 677 struct tcp_function_block *blk; 678 679 memset(&fs, 0, sizeof(fs)); 680 rw_rlock(&tcp_function_lock); 681 blk = find_tcp_fb_locked(tcp_func_set_ptr, NULL); 682 if (blk) { 683 /* Found him */ 684 strcpy(fs.function_set_name, blk->tfb_tcp_block_name); 685 fs.pcbcnt = blk->tfb_refcnt; 686 } 687 rw_runlock(&tcp_function_lock); 688 error = sysctl_handle_string(oidp, fs.function_set_name, 689 sizeof(fs.function_set_name), req); 690 691 /* Check for error or no change */ 692 if (error != 0 || req->newptr == NULL) 693 return(error); 694 695 rw_wlock(&tcp_function_lock); 696 blk = find_tcp_functions_locked(&fs); 697 if ((blk == NULL) || 698 (blk->tfb_flags & TCP_FUNC_BEING_REMOVED)) { 699 error = ENOENT; 700 goto done; 701 } 702 tcp_func_set_ptr = blk; 703 done: 704 rw_wunlock(&tcp_function_lock); 705 return (error); 706 } 707 708 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_default, 709 CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 710 NULL, 0, sysctl_net_inet_default_tcp_functions, "A", 711 "Set/get the default TCP functions"); 712 713 static int 714 sysctl_net_inet_list_available(SYSCTL_HANDLER_ARGS) 715 { 716 int error, cnt, linesz; 717 struct tcp_function *f; 718 char *buffer, *cp; 719 size_t bufsz, outsz; 720 bool alias; 721 722 cnt = 0; 723 rw_rlock(&tcp_function_lock); 724 TAILQ_FOREACH(f, &t_functions, tf_next) { 725 cnt++; 726 } 727 rw_runlock(&tcp_function_lock); 728 729 bufsz = (cnt+2) * ((TCP_FUNCTION_NAME_LEN_MAX * 2) + 13) + 1; 730 buffer = malloc(bufsz, M_TEMP, M_WAITOK); 731 732 error = 0; 733 cp = buffer; 734 735 linesz = snprintf(cp, bufsz, "\n%-32s%c %-32s %s\n", "Stack", 'D', 736 "Alias", "PCB count"); 737 cp += linesz; 738 bufsz -= linesz; 739 outsz = linesz; 740 741 rw_rlock(&tcp_function_lock); 742 TAILQ_FOREACH(f, &t_functions, tf_next) { 743 alias = (f->tf_name != f->tf_fb->tfb_tcp_block_name); 744 linesz = snprintf(cp, bufsz, "%-32s%c %-32s %u\n", 745 f->tf_fb->tfb_tcp_block_name, 746 (f->tf_fb == tcp_func_set_ptr) ? '*' : ' ', 747 alias ? f->tf_name : "-", 748 f->tf_fb->tfb_refcnt); 749 if (linesz >= bufsz) { 750 error = EOVERFLOW; 751 break; 752 } 753 cp += linesz; 754 bufsz -= linesz; 755 outsz += linesz; 756 } 757 rw_runlock(&tcp_function_lock); 758 if (error == 0) 759 error = sysctl_handle_string(oidp, buffer, outsz + 1, req); 760 free(buffer, M_TEMP); 761 return (error); 762 } 763 764 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_available, 765 CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NEEDGIANT, 766 NULL, 0, sysctl_net_inet_list_available, "A", 767 "list available TCP Function sets"); 768 769 VNET_DEFINE(int, tcp_udp_tunneling_port) = TCP_TUNNELING_PORT_DEFAULT; 770 771 #ifdef INET 772 VNET_DEFINE(struct socket *, udp4_tun_socket) = NULL; 773 #define V_udp4_tun_socket VNET(udp4_tun_socket) 774 #endif 775 #ifdef INET6 776 VNET_DEFINE(struct socket *, udp6_tun_socket) = NULL; 777 #define V_udp6_tun_socket VNET(udp6_tun_socket) 778 #endif 779 780 static void 781 tcp_over_udp_stop(void) 782 { 783 /* 784 * This function assumes sysctl caller holds inp_rinfo_lock() 785 * for writing! 786 */ 787 #ifdef INET 788 if (V_udp4_tun_socket != NULL) { 789 soclose(V_udp4_tun_socket); 790 V_udp4_tun_socket = NULL; 791 } 792 #endif 793 #ifdef INET6 794 if (V_udp6_tun_socket != NULL) { 795 soclose(V_udp6_tun_socket); 796 V_udp6_tun_socket = NULL; 797 } 798 #endif 799 } 800 801 static int 802 tcp_over_udp_start(void) 803 { 804 uint16_t port; 805 int ret; 806 #ifdef INET 807 struct sockaddr_in sin; 808 #endif 809 #ifdef INET6 810 struct sockaddr_in6 sin6; 811 #endif 812 /* 813 * This function assumes sysctl caller holds inp_info_rlock() 814 * for writing! 815 */ 816 port = V_tcp_udp_tunneling_port; 817 if (ntohs(port) == 0) { 818 /* Must have a port set */ 819 return (EINVAL); 820 } 821 #ifdef INET 822 if (V_udp4_tun_socket != NULL) { 823 /* Already running -- must stop first */ 824 return (EALREADY); 825 } 826 #endif 827 #ifdef INET6 828 if (V_udp6_tun_socket != NULL) { 829 /* Already running -- must stop first */ 830 return (EALREADY); 831 } 832 #endif 833 #ifdef INET 834 if ((ret = socreate(PF_INET, &V_udp4_tun_socket, 835 SOCK_DGRAM, IPPROTO_UDP, 836 curthread->td_ucred, curthread))) { 837 tcp_over_udp_stop(); 838 return (ret); 839 } 840 /* Call the special UDP hook. */ 841 if ((ret = udp_set_kernel_tunneling(V_udp4_tun_socket, 842 tcp_recv_udp_tunneled_packet, 843 tcp_ctlinput_viaudp, 844 NULL))) { 845 tcp_over_udp_stop(); 846 return (ret); 847 } 848 /* Ok, we have a socket, bind it to the port. */ 849 memset(&sin, 0, sizeof(struct sockaddr_in)); 850 sin.sin_len = sizeof(struct sockaddr_in); 851 sin.sin_family = AF_INET; 852 sin.sin_port = htons(port); 853 if ((ret = sobind(V_udp4_tun_socket, 854 (struct sockaddr *)&sin, curthread))) { 855 tcp_over_udp_stop(); 856 return (ret); 857 } 858 #endif 859 #ifdef INET6 860 if ((ret = socreate(PF_INET6, &V_udp6_tun_socket, 861 SOCK_DGRAM, IPPROTO_UDP, 862 curthread->td_ucred, curthread))) { 863 tcp_over_udp_stop(); 864 return (ret); 865 } 866 /* Call the special UDP hook. */ 867 if ((ret = udp_set_kernel_tunneling(V_udp6_tun_socket, 868 tcp_recv_udp_tunneled_packet, 869 tcp6_ctlinput_viaudp, 870 NULL))) { 871 tcp_over_udp_stop(); 872 return (ret); 873 } 874 /* Ok, we have a socket, bind it to the port. */ 875 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 876 sin6.sin6_len = sizeof(struct sockaddr_in6); 877 sin6.sin6_family = AF_INET6; 878 sin6.sin6_port = htons(port); 879 if ((ret = sobind(V_udp6_tun_socket, 880 (struct sockaddr *)&sin6, curthread))) { 881 tcp_over_udp_stop(); 882 return (ret); 883 } 884 #endif 885 return (0); 886 } 887 888 static int 889 sysctl_net_inet_tcp_udp_tunneling_port_check(SYSCTL_HANDLER_ARGS) 890 { 891 int error; 892 uint32_t old, new; 893 894 old = V_tcp_udp_tunneling_port; 895 new = old; 896 error = sysctl_handle_int(oidp, &new, 0, req); 897 if ((error == 0) && 898 (req->newptr != NULL)) { 899 if ((new < TCP_TUNNELING_PORT_MIN) || 900 (new > TCP_TUNNELING_PORT_MAX)) { 901 error = EINVAL; 902 } else { 903 V_tcp_udp_tunneling_port = new; 904 if (old != 0) { 905 tcp_over_udp_stop(); 906 } 907 if (new != 0) { 908 error = tcp_over_udp_start(); 909 } 910 } 911 } 912 return (error); 913 } 914 915 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, udp_tunneling_port, 916 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, 917 &VNET_NAME(tcp_udp_tunneling_port), 918 0, &sysctl_net_inet_tcp_udp_tunneling_port_check, "IU", 919 "Tunneling port for tcp over udp"); 920 921 VNET_DEFINE(int, tcp_udp_tunneling_overhead) = TCP_TUNNELING_OVERHEAD_DEFAULT; 922 923 static int 924 sysctl_net_inet_tcp_udp_tunneling_overhead_check(SYSCTL_HANDLER_ARGS) 925 { 926 int error, new; 927 928 new = V_tcp_udp_tunneling_overhead; 929 error = sysctl_handle_int(oidp, &new, 0, req); 930 if (error == 0 && req->newptr) { 931 if ((new < TCP_TUNNELING_OVERHEAD_MIN) || 932 (new > TCP_TUNNELING_OVERHEAD_MAX)) 933 error = EINVAL; 934 else 935 V_tcp_udp_tunneling_overhead = new; 936 } 937 return (error); 938 } 939 940 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, udp_tunneling_overhead, 941 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, 942 &VNET_NAME(tcp_udp_tunneling_overhead), 943 0, &sysctl_net_inet_tcp_udp_tunneling_overhead_check, "IU", 944 "MSS reduction when using tcp over udp"); 945 946 /* 947 * Exports one (struct tcp_function_info) for each alias/name. 948 */ 949 static int 950 sysctl_net_inet_list_func_info(SYSCTL_HANDLER_ARGS) 951 { 952 int cnt, error; 953 struct tcp_function *f; 954 struct tcp_function_info tfi; 955 956 /* 957 * We don't allow writes. 958 */ 959 if (req->newptr != NULL) 960 return (EINVAL); 961 962 /* 963 * Wire the old buffer so we can directly copy the functions to 964 * user space without dropping the lock. 965 */ 966 if (req->oldptr != NULL) { 967 error = sysctl_wire_old_buffer(req, 0); 968 if (error) 969 return (error); 970 } 971 972 /* 973 * Walk the list and copy out matching entries. If INVARIANTS 974 * is compiled in, also walk the list to verify the length of 975 * the list matches what we have recorded. 976 */ 977 rw_rlock(&tcp_function_lock); 978 979 cnt = 0; 980 #ifndef INVARIANTS 981 if (req->oldptr == NULL) { 982 cnt = tcp_fb_cnt; 983 goto skip_loop; 984 } 985 #endif 986 TAILQ_FOREACH(f, &t_functions, tf_next) { 987 #ifdef INVARIANTS 988 cnt++; 989 #endif 990 if (req->oldptr != NULL) { 991 bzero(&tfi, sizeof(tfi)); 992 tfi.tfi_refcnt = f->tf_fb->tfb_refcnt; 993 tfi.tfi_id = f->tf_fb->tfb_id; 994 (void)strlcpy(tfi.tfi_alias, f->tf_name, 995 sizeof(tfi.tfi_alias)); 996 (void)strlcpy(tfi.tfi_name, 997 f->tf_fb->tfb_tcp_block_name, sizeof(tfi.tfi_name)); 998 error = SYSCTL_OUT(req, &tfi, sizeof(tfi)); 999 /* 1000 * Don't stop on error, as that is the 1001 * mechanism we use to accumulate length 1002 * information if the buffer was too short. 1003 */ 1004 } 1005 } 1006 KASSERT(cnt == tcp_fb_cnt, 1007 ("%s: cnt (%d) != tcp_fb_cnt (%d)", __func__, cnt, tcp_fb_cnt)); 1008 #ifndef INVARIANTS 1009 skip_loop: 1010 #endif 1011 rw_runlock(&tcp_function_lock); 1012 if (req->oldptr == NULL) 1013 error = SYSCTL_OUT(req, NULL, 1014 (cnt + 1) * sizeof(struct tcp_function_info)); 1015 1016 return (error); 1017 } 1018 1019 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, function_info, 1020 CTLTYPE_OPAQUE | CTLFLAG_SKIP | CTLFLAG_RD | CTLFLAG_MPSAFE, 1021 NULL, 0, sysctl_net_inet_list_func_info, "S,tcp_function_info", 1022 "List TCP function block name-to-ID mappings"); 1023 1024 /* 1025 * tfb_tcp_handoff_ok() function for the default stack. 1026 * Note that we'll basically try to take all comers. 1027 */ 1028 static int 1029 tcp_default_handoff_ok(struct tcpcb *tp) 1030 { 1031 1032 return (0); 1033 } 1034 1035 /* 1036 * tfb_tcp_fb_init() function for the default stack. 1037 * 1038 * This handles making sure we have appropriate timers set if you are 1039 * transitioning a socket that has some amount of setup done. 1040 * 1041 * The init() fuction from the default can *never* return non-zero i.e. 1042 * it is required to always succeed since it is the stack of last resort! 1043 */ 1044 static int 1045 tcp_default_fb_init(struct tcpcb *tp) 1046 { 1047 1048 struct socket *so; 1049 1050 INP_WLOCK_ASSERT(tp->t_inpcb); 1051 1052 KASSERT(tp->t_state >= 0 && tp->t_state < TCPS_TIME_WAIT, 1053 ("%s: connection %p in unexpected state %d", __func__, tp, 1054 tp->t_state)); 1055 1056 /* 1057 * Nothing to do for ESTABLISHED or LISTEN states. And, we don't 1058 * know what to do for unexpected states (which includes TIME_WAIT). 1059 */ 1060 if (tp->t_state <= TCPS_LISTEN || tp->t_state >= TCPS_TIME_WAIT) 1061 return (0); 1062 1063 /* 1064 * Make sure some kind of transmission timer is set if there is 1065 * outstanding data. 1066 */ 1067 so = tp->t_inpcb->inp_socket; 1068 if ((!TCPS_HAVEESTABLISHED(tp->t_state) || sbavail(&so->so_snd) || 1069 tp->snd_una != tp->snd_max) && !(tcp_timer_active(tp, TT_REXMT) || 1070 tcp_timer_active(tp, TT_PERSIST))) { 1071 /* 1072 * If the session has established and it looks like it should 1073 * be in the persist state, set the persist timer. Otherwise, 1074 * set the retransmit timer. 1075 */ 1076 if (TCPS_HAVEESTABLISHED(tp->t_state) && tp->snd_wnd == 0 && 1077 (int32_t)(tp->snd_nxt - tp->snd_una) < 1078 (int32_t)sbavail(&so->so_snd)) 1079 tcp_setpersist(tp); 1080 else 1081 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur); 1082 } 1083 1084 /* All non-embryonic sessions get a keepalive timer. */ 1085 if (!tcp_timer_active(tp, TT_KEEP)) 1086 tcp_timer_activate(tp, TT_KEEP, 1087 TCPS_HAVEESTABLISHED(tp->t_state) ? TP_KEEPIDLE(tp) : 1088 TP_KEEPINIT(tp)); 1089 1090 /* 1091 * Make sure critical variables are initialized 1092 * if transitioning while in Recovery. 1093 */ 1094 if IN_FASTRECOVERY(tp->t_flags) { 1095 if (tp->sackhint.recover_fs == 0) 1096 tp->sackhint.recover_fs = max(1, 1097 tp->snd_nxt - tp->snd_una); 1098 } 1099 1100 return (0); 1101 } 1102 1103 /* 1104 * tfb_tcp_fb_fini() function for the default stack. 1105 * 1106 * This changes state as necessary (or prudent) to prepare for another stack 1107 * to assume responsibility for the connection. 1108 */ 1109 static void 1110 tcp_default_fb_fini(struct tcpcb *tp, int tcb_is_purged) 1111 { 1112 1113 INP_WLOCK_ASSERT(tp->t_inpcb); 1114 return; 1115 } 1116 1117 /* 1118 * Target size of TCP PCB hash tables. Must be a power of two. 1119 * 1120 * Note that this can be overridden by the kernel environment 1121 * variable net.inet.tcp.tcbhashsize 1122 */ 1123 #ifndef TCBHASHSIZE 1124 #define TCBHASHSIZE 0 1125 #endif 1126 1127 /* 1128 * XXX 1129 * Callouts should be moved into struct tcp directly. They are currently 1130 * separate because the tcpcb structure is exported to userland for sysctl 1131 * parsing purposes, which do not know about callouts. 1132 */ 1133 struct tcpcb_mem { 1134 struct tcpcb tcb; 1135 struct tcp_timer tt; 1136 struct cc_var ccv; 1137 #ifdef TCP_HHOOK 1138 struct osd osd; 1139 #endif 1140 }; 1141 1142 VNET_DEFINE_STATIC(uma_zone_t, tcpcb_zone); 1143 #define V_tcpcb_zone VNET(tcpcb_zone) 1144 1145 MALLOC_DEFINE(M_TCPLOG, "tcplog", "TCP address and flags print buffers"); 1146 MALLOC_DEFINE(M_TCPFUNCTIONS, "tcpfunc", "TCP function set memory"); 1147 1148 static struct mtx isn_mtx; 1149 1150 #define ISN_LOCK_INIT() mtx_init(&isn_mtx, "isn_mtx", NULL, MTX_DEF) 1151 #define ISN_LOCK() mtx_lock(&isn_mtx) 1152 #define ISN_UNLOCK() mtx_unlock(&isn_mtx) 1153 1154 INPCBSTORAGE_DEFINE(tcpcbstor, "tcpinp", "tcp_inpcb", "tcp", "tcphash"); 1155 1156 /* 1157 * Take a value and get the next power of 2 that doesn't overflow. 1158 * Used to size the tcp_inpcb hash buckets. 1159 */ 1160 static int 1161 maketcp_hashsize(int size) 1162 { 1163 int hashsize; 1164 1165 /* 1166 * auto tune. 1167 * get the next power of 2 higher than maxsockets. 1168 */ 1169 hashsize = 1 << fls(size); 1170 /* catch overflow, and just go one power of 2 smaller */ 1171 if (hashsize < size) { 1172 hashsize = 1 << (fls(size) - 1); 1173 } 1174 return (hashsize); 1175 } 1176 1177 static volatile int next_tcp_stack_id = 1; 1178 1179 /* 1180 * Register a TCP function block with the name provided in the names 1181 * array. (Note that this function does NOT automatically register 1182 * blk->tfb_tcp_block_name as a stack name. Therefore, you should 1183 * explicitly include blk->tfb_tcp_block_name in the list of names if 1184 * you wish to register the stack with that name.) 1185 * 1186 * Either all name registrations will succeed or all will fail. If 1187 * a name registration fails, the function will update the num_names 1188 * argument to point to the array index of the name that encountered 1189 * the failure. 1190 * 1191 * Returns 0 on success, or an error code on failure. 1192 */ 1193 int 1194 register_tcp_functions_as_names(struct tcp_function_block *blk, int wait, 1195 const char *names[], int *num_names) 1196 { 1197 struct tcp_function *n; 1198 struct tcp_function_set fs; 1199 int error, i; 1200 1201 KASSERT(names != NULL && *num_names > 0, 1202 ("%s: Called with 0-length name list", __func__)); 1203 KASSERT(names != NULL, ("%s: Called with NULL name list", __func__)); 1204 KASSERT(rw_initialized(&tcp_function_lock), 1205 ("%s: called too early", __func__)); 1206 1207 if ((blk->tfb_tcp_output == NULL) || 1208 (blk->tfb_tcp_do_segment == NULL) || 1209 (blk->tfb_tcp_ctloutput == NULL) || 1210 (strlen(blk->tfb_tcp_block_name) == 0)) { 1211 /* 1212 * These functions are required and you 1213 * need a name. 1214 */ 1215 *num_names = 0; 1216 return (EINVAL); 1217 } 1218 if (blk->tfb_tcp_timer_stop_all || 1219 blk->tfb_tcp_timer_activate || 1220 blk->tfb_tcp_timer_active || 1221 blk->tfb_tcp_timer_stop) { 1222 /* 1223 * If you define one timer function you 1224 * must have them all. 1225 */ 1226 if ((blk->tfb_tcp_timer_stop_all == NULL) || 1227 (blk->tfb_tcp_timer_activate == NULL) || 1228 (blk->tfb_tcp_timer_active == NULL) || 1229 (blk->tfb_tcp_timer_stop == NULL)) { 1230 *num_names = 0; 1231 return (EINVAL); 1232 } 1233 } 1234 1235 if (blk->tfb_flags & TCP_FUNC_BEING_REMOVED) { 1236 *num_names = 0; 1237 return (EINVAL); 1238 } 1239 1240 refcount_init(&blk->tfb_refcnt, 0); 1241 blk->tfb_id = atomic_fetchadd_int(&next_tcp_stack_id, 1); 1242 for (i = 0; i < *num_names; i++) { 1243 n = malloc(sizeof(struct tcp_function), M_TCPFUNCTIONS, wait); 1244 if (n == NULL) { 1245 error = ENOMEM; 1246 goto cleanup; 1247 } 1248 n->tf_fb = blk; 1249 1250 (void)strlcpy(fs.function_set_name, names[i], 1251 sizeof(fs.function_set_name)); 1252 rw_wlock(&tcp_function_lock); 1253 if (find_tcp_functions_locked(&fs) != NULL) { 1254 /* Duplicate name space not allowed */ 1255 rw_wunlock(&tcp_function_lock); 1256 free(n, M_TCPFUNCTIONS); 1257 error = EALREADY; 1258 goto cleanup; 1259 } 1260 (void)strlcpy(n->tf_name, names[i], sizeof(n->tf_name)); 1261 TAILQ_INSERT_TAIL(&t_functions, n, tf_next); 1262 tcp_fb_cnt++; 1263 rw_wunlock(&tcp_function_lock); 1264 } 1265 return(0); 1266 1267 cleanup: 1268 /* 1269 * Deregister the names we just added. Because registration failed 1270 * for names[i], we don't need to deregister that name. 1271 */ 1272 *num_names = i; 1273 rw_wlock(&tcp_function_lock); 1274 while (--i >= 0) { 1275 TAILQ_FOREACH(n, &t_functions, tf_next) { 1276 if (!strncmp(n->tf_name, names[i], 1277 TCP_FUNCTION_NAME_LEN_MAX)) { 1278 TAILQ_REMOVE(&t_functions, n, tf_next); 1279 tcp_fb_cnt--; 1280 n->tf_fb = NULL; 1281 free(n, M_TCPFUNCTIONS); 1282 break; 1283 } 1284 } 1285 } 1286 rw_wunlock(&tcp_function_lock); 1287 return (error); 1288 } 1289 1290 /* 1291 * Register a TCP function block using the name provided in the name 1292 * argument. 1293 * 1294 * Returns 0 on success, or an error code on failure. 1295 */ 1296 int 1297 register_tcp_functions_as_name(struct tcp_function_block *blk, const char *name, 1298 int wait) 1299 { 1300 const char *name_list[1]; 1301 int num_names, rv; 1302 1303 num_names = 1; 1304 if (name != NULL) 1305 name_list[0] = name; 1306 else 1307 name_list[0] = blk->tfb_tcp_block_name; 1308 rv = register_tcp_functions_as_names(blk, wait, name_list, &num_names); 1309 return (rv); 1310 } 1311 1312 /* 1313 * Register a TCP function block using the name defined in 1314 * blk->tfb_tcp_block_name. 1315 * 1316 * Returns 0 on success, or an error code on failure. 1317 */ 1318 int 1319 register_tcp_functions(struct tcp_function_block *blk, int wait) 1320 { 1321 1322 return (register_tcp_functions_as_name(blk, NULL, wait)); 1323 } 1324 1325 /* 1326 * Deregister all names associated with a function block. This 1327 * functionally removes the function block from use within the system. 1328 * 1329 * When called with a true quiesce argument, mark the function block 1330 * as being removed so no more stacks will use it and determine 1331 * whether the removal would succeed. 1332 * 1333 * When called with a false quiesce argument, actually attempt the 1334 * removal. 1335 * 1336 * When called with a force argument, attempt to switch all TCBs to 1337 * use the default stack instead of returning EBUSY. 1338 * 1339 * Returns 0 on success (or if the removal would succeed, or an error 1340 * code on failure. 1341 */ 1342 int 1343 deregister_tcp_functions(struct tcp_function_block *blk, bool quiesce, 1344 bool force) 1345 { 1346 struct tcp_function *f; 1347 1348 if (blk == &tcp_def_funcblk) { 1349 /* You can't un-register the default */ 1350 return (EPERM); 1351 } 1352 rw_wlock(&tcp_function_lock); 1353 if (blk == tcp_func_set_ptr) { 1354 /* You can't free the current default */ 1355 rw_wunlock(&tcp_function_lock); 1356 return (EBUSY); 1357 } 1358 /* Mark the block so no more stacks can use it. */ 1359 blk->tfb_flags |= TCP_FUNC_BEING_REMOVED; 1360 /* 1361 * If TCBs are still attached to the stack, attempt to switch them 1362 * to the default stack. 1363 */ 1364 if (force && blk->tfb_refcnt) { 1365 struct inpcb_iterator inpi = INP_ALL_ITERATOR(&V_tcbinfo, 1366 INPLOOKUP_WLOCKPCB); 1367 struct inpcb *inp; 1368 struct tcpcb *tp; 1369 VNET_ITERATOR_DECL(vnet_iter); 1370 1371 rw_wunlock(&tcp_function_lock); 1372 1373 VNET_LIST_RLOCK(); 1374 VNET_FOREACH(vnet_iter) { 1375 CURVNET_SET(vnet_iter); 1376 while ((inp = inp_next(&inpi)) != NULL) { 1377 tp = intotcpcb(inp); 1378 if (tp == NULL || tp->t_fb != blk) 1379 continue; 1380 tcp_switch_back_to_default(tp); 1381 } 1382 CURVNET_RESTORE(); 1383 } 1384 VNET_LIST_RUNLOCK(); 1385 1386 rw_wlock(&tcp_function_lock); 1387 } 1388 if (blk->tfb_refcnt) { 1389 /* TCBs still attached. */ 1390 rw_wunlock(&tcp_function_lock); 1391 return (EBUSY); 1392 } 1393 if (quiesce) { 1394 /* Skip removal. */ 1395 rw_wunlock(&tcp_function_lock); 1396 return (0); 1397 } 1398 /* Remove any function names that map to this function block. */ 1399 while (find_tcp_fb_locked(blk, &f) != NULL) { 1400 TAILQ_REMOVE(&t_functions, f, tf_next); 1401 tcp_fb_cnt--; 1402 f->tf_fb = NULL; 1403 free(f, M_TCPFUNCTIONS); 1404 } 1405 rw_wunlock(&tcp_function_lock); 1406 return (0); 1407 } 1408 1409 static void 1410 tcp_drain(void) 1411 { 1412 struct epoch_tracker et; 1413 VNET_ITERATOR_DECL(vnet_iter); 1414 1415 if (!do_tcpdrain) 1416 return; 1417 1418 NET_EPOCH_ENTER(et); 1419 VNET_LIST_RLOCK_NOSLEEP(); 1420 VNET_FOREACH(vnet_iter) { 1421 CURVNET_SET(vnet_iter); 1422 struct inpcb_iterator inpi = INP_ALL_ITERATOR(&V_tcbinfo, 1423 INPLOOKUP_WLOCKPCB); 1424 struct inpcb *inpb; 1425 struct tcpcb *tcpb; 1426 1427 /* 1428 * Walk the tcpbs, if existing, and flush the reassembly queue, 1429 * if there is one... 1430 * XXX: The "Net/3" implementation doesn't imply that the TCP 1431 * reassembly queue should be flushed, but in a situation 1432 * where we're really low on mbufs, this is potentially 1433 * useful. 1434 */ 1435 while ((inpb = inp_next(&inpi)) != NULL) { 1436 if ((tcpb = intotcpcb(inpb)) != NULL) { 1437 tcp_reass_flush(tcpb); 1438 tcp_clean_sackreport(tcpb); 1439 #ifdef TCP_BLACKBOX 1440 tcp_log_drain(tcpb); 1441 #endif 1442 #ifdef TCPPCAP 1443 if (tcp_pcap_aggressive_free) { 1444 /* Free the TCP PCAP queues. */ 1445 tcp_pcap_drain(&(tcpb->t_inpkts)); 1446 tcp_pcap_drain(&(tcpb->t_outpkts)); 1447 } 1448 #endif 1449 } 1450 } 1451 CURVNET_RESTORE(); 1452 } 1453 VNET_LIST_RUNLOCK_NOSLEEP(); 1454 NET_EPOCH_EXIT(et); 1455 } 1456 1457 static void 1458 tcp_vnet_init(void *arg __unused) 1459 { 1460 1461 #ifdef TCP_HHOOK 1462 if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN, 1463 &V_tcp_hhh[HHOOK_TCP_EST_IN], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0) 1464 printf("%s: WARNING: unable to register helper hook\n", __func__); 1465 if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT, 1466 &V_tcp_hhh[HHOOK_TCP_EST_OUT], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0) 1467 printf("%s: WARNING: unable to register helper hook\n", __func__); 1468 #endif 1469 #ifdef STATS 1470 if (tcp_stats_init()) 1471 printf("%s: WARNING: unable to initialise TCP stats\n", 1472 __func__); 1473 #endif 1474 in_pcbinfo_init(&V_tcbinfo, &tcpcbstor, tcp_tcbhashsize, 1475 tcp_tcbhashsize); 1476 1477 /* 1478 * These have to be type stable for the benefit of the timers. 1479 */ 1480 V_tcpcb_zone = uma_zcreate("tcpcb", sizeof(struct tcpcb_mem), 1481 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 1482 uma_zone_set_max(V_tcpcb_zone, maxsockets); 1483 uma_zone_set_warning(V_tcpcb_zone, "kern.ipc.maxsockets limit reached"); 1484 1485 syncache_init(); 1486 tcp_hc_init(); 1487 1488 TUNABLE_INT_FETCH("net.inet.tcp.sack.enable", &V_tcp_do_sack); 1489 V_sack_hole_zone = uma_zcreate("sackhole", sizeof(struct sackhole), 1490 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 1491 1492 tcp_fastopen_init(); 1493 1494 COUNTER_ARRAY_ALLOC(V_tcps_states, TCP_NSTATES, M_WAITOK); 1495 VNET_PCPUSTAT_ALLOC(tcpstat, M_WAITOK); 1496 1497 V_tcp_msl = TCPTV_MSL; 1498 } 1499 VNET_SYSINIT(tcp_vnet_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, 1500 tcp_vnet_init, NULL); 1501 1502 static void 1503 tcp_init(void *arg __unused) 1504 { 1505 const char *tcbhash_tuneable; 1506 int hashsize; 1507 1508 tcp_reass_global_init(); 1509 1510 /* XXX virtualize those below? */ 1511 tcp_delacktime = TCPTV_DELACK; 1512 tcp_keepinit = TCPTV_KEEP_INIT; 1513 tcp_keepidle = TCPTV_KEEP_IDLE; 1514 tcp_keepintvl = TCPTV_KEEPINTVL; 1515 tcp_maxpersistidle = TCPTV_KEEP_IDLE; 1516 tcp_rexmit_initial = TCPTV_RTOBASE; 1517 if (tcp_rexmit_initial < 1) 1518 tcp_rexmit_initial = 1; 1519 tcp_rexmit_min = TCPTV_MIN; 1520 if (tcp_rexmit_min < 1) 1521 tcp_rexmit_min = 1; 1522 tcp_persmin = TCPTV_PERSMIN; 1523 tcp_persmax = TCPTV_PERSMAX; 1524 tcp_rexmit_slop = TCPTV_CPU_VAR; 1525 tcp_finwait2_timeout = TCPTV_FINWAIT2_TIMEOUT; 1526 1527 /* Setup the tcp function block list */ 1528 TAILQ_INIT(&t_functions); 1529 rw_init(&tcp_function_lock, "tcp_func_lock"); 1530 register_tcp_functions(&tcp_def_funcblk, M_WAITOK); 1531 #ifdef TCP_BLACKBOX 1532 /* Initialize the TCP logging data. */ 1533 tcp_log_init(); 1534 #endif 1535 arc4rand(&V_ts_offset_secret, sizeof(V_ts_offset_secret), 0); 1536 1537 if (tcp_soreceive_stream) { 1538 #ifdef INET 1539 tcp_protosw.pr_soreceive = soreceive_stream; 1540 #endif 1541 #ifdef INET6 1542 tcp6_protosw.pr_soreceive = soreceive_stream; 1543 #endif /* INET6 */ 1544 } 1545 1546 #ifdef INET6 1547 max_protohdr_grow(sizeof(struct ip6_hdr) + sizeof(struct tcphdr)); 1548 #else /* INET6 */ 1549 max_protohdr_grow(sizeof(struct tcpiphdr)); 1550 #endif /* INET6 */ 1551 1552 ISN_LOCK_INIT(); 1553 EVENTHANDLER_REGISTER(shutdown_pre_sync, tcp_fini, NULL, 1554 SHUTDOWN_PRI_DEFAULT); 1555 EVENTHANDLER_REGISTER(vm_lowmem, tcp_drain, NULL, LOWMEM_PRI_DEFAULT); 1556 EVENTHANDLER_REGISTER(mbuf_lowmem, tcp_drain, NULL, LOWMEM_PRI_DEFAULT); 1557 1558 tcp_inp_lro_direct_queue = counter_u64_alloc(M_WAITOK); 1559 tcp_inp_lro_wokeup_queue = counter_u64_alloc(M_WAITOK); 1560 tcp_inp_lro_compressed = counter_u64_alloc(M_WAITOK); 1561 tcp_inp_lro_locks_taken = counter_u64_alloc(M_WAITOK); 1562 tcp_extra_mbuf = counter_u64_alloc(M_WAITOK); 1563 tcp_would_have_but = counter_u64_alloc(M_WAITOK); 1564 tcp_comp_total = counter_u64_alloc(M_WAITOK); 1565 tcp_uncomp_total = counter_u64_alloc(M_WAITOK); 1566 tcp_bad_csums = counter_u64_alloc(M_WAITOK); 1567 #ifdef TCPPCAP 1568 tcp_pcap_init(); 1569 #endif 1570 1571 hashsize = TCBHASHSIZE; 1572 tcbhash_tuneable = "net.inet.tcp.tcbhashsize"; 1573 TUNABLE_INT_FETCH(tcbhash_tuneable, &hashsize); 1574 if (hashsize == 0) { 1575 /* 1576 * Auto tune the hash size based on maxsockets. 1577 * A perfect hash would have a 1:1 mapping 1578 * (hashsize = maxsockets) however it's been 1579 * suggested that O(2) average is better. 1580 */ 1581 hashsize = maketcp_hashsize(maxsockets / 4); 1582 /* 1583 * Our historical default is 512, 1584 * do not autotune lower than this. 1585 */ 1586 if (hashsize < 512) 1587 hashsize = 512; 1588 if (bootverbose) 1589 printf("%s: %s auto tuned to %d\n", __func__, 1590 tcbhash_tuneable, hashsize); 1591 } 1592 /* 1593 * We require a hashsize to be a power of two. 1594 * Previously if it was not a power of two we would just reset it 1595 * back to 512, which could be a nasty surprise if you did not notice 1596 * the error message. 1597 * Instead what we do is clip it to the closest power of two lower 1598 * than the specified hash value. 1599 */ 1600 if (!powerof2(hashsize)) { 1601 int oldhashsize = hashsize; 1602 1603 hashsize = maketcp_hashsize(hashsize); 1604 /* prevent absurdly low value */ 1605 if (hashsize < 16) 1606 hashsize = 16; 1607 printf("%s: WARNING: TCB hash size not a power of 2, " 1608 "clipped from %d to %d.\n", __func__, oldhashsize, 1609 hashsize); 1610 } 1611 tcp_tcbhashsize = hashsize; 1612 1613 #ifdef INET 1614 IPPROTO_REGISTER(IPPROTO_TCP, tcp_input, tcp_ctlinput); 1615 #endif 1616 #ifdef INET6 1617 IP6PROTO_REGISTER(IPPROTO_TCP, tcp6_input, tcp6_ctlinput); 1618 #endif 1619 } 1620 SYSINIT(tcp_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, tcp_init, NULL); 1621 1622 #ifdef VIMAGE 1623 static void 1624 tcp_destroy(void *unused __unused) 1625 { 1626 int n; 1627 #ifdef TCP_HHOOK 1628 int error; 1629 #endif 1630 1631 /* 1632 * All our processes are gone, all our sockets should be cleaned 1633 * up, which means, we should be past the tcp_discardcb() calls. 1634 * Sleep to let all tcpcb timers really disappear and cleanup. 1635 */ 1636 for (;;) { 1637 INP_INFO_WLOCK(&V_tcbinfo); 1638 n = V_tcbinfo.ipi_count; 1639 INP_INFO_WUNLOCK(&V_tcbinfo); 1640 if (n == 0) 1641 break; 1642 pause("tcpdes", hz / 10); 1643 } 1644 tcp_hc_destroy(); 1645 syncache_destroy(); 1646 in_pcbinfo_destroy(&V_tcbinfo); 1647 /* tcp_discardcb() clears the sack_holes up. */ 1648 uma_zdestroy(V_sack_hole_zone); 1649 uma_zdestroy(V_tcpcb_zone); 1650 1651 /* 1652 * Cannot free the zone until all tcpcbs are released as we attach 1653 * the allocations to them. 1654 */ 1655 tcp_fastopen_destroy(); 1656 1657 COUNTER_ARRAY_FREE(V_tcps_states, TCP_NSTATES); 1658 VNET_PCPUSTAT_FREE(tcpstat); 1659 1660 #ifdef TCP_HHOOK 1661 error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_IN]); 1662 if (error != 0) { 1663 printf("%s: WARNING: unable to deregister helper hook " 1664 "type=%d, id=%d: error %d returned\n", __func__, 1665 HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN, error); 1666 } 1667 error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_OUT]); 1668 if (error != 0) { 1669 printf("%s: WARNING: unable to deregister helper hook " 1670 "type=%d, id=%d: error %d returned\n", __func__, 1671 HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT, error); 1672 } 1673 #endif 1674 } 1675 VNET_SYSUNINIT(tcp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, tcp_destroy, NULL); 1676 #endif 1677 1678 void 1679 tcp_fini(void *xtp) 1680 { 1681 1682 } 1683 1684 /* 1685 * Fill in the IP and TCP headers for an outgoing packet, given the tcpcb. 1686 * tcp_template used to store this data in mbufs, but we now recopy it out 1687 * of the tcpcb each time to conserve mbufs. 1688 */ 1689 void 1690 tcpip_fillheaders(struct inpcb *inp, uint16_t port, void *ip_ptr, void *tcp_ptr) 1691 { 1692 struct tcphdr *th = (struct tcphdr *)tcp_ptr; 1693 1694 INP_WLOCK_ASSERT(inp); 1695 1696 #ifdef INET6 1697 if ((inp->inp_vflag & INP_IPV6) != 0) { 1698 struct ip6_hdr *ip6; 1699 1700 ip6 = (struct ip6_hdr *)ip_ptr; 1701 ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) | 1702 (inp->inp_flow & IPV6_FLOWINFO_MASK); 1703 ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) | 1704 (IPV6_VERSION & IPV6_VERSION_MASK); 1705 if (port == 0) 1706 ip6->ip6_nxt = IPPROTO_TCP; 1707 else 1708 ip6->ip6_nxt = IPPROTO_UDP; 1709 ip6->ip6_plen = htons(sizeof(struct tcphdr)); 1710 ip6->ip6_src = inp->in6p_laddr; 1711 ip6->ip6_dst = inp->in6p_faddr; 1712 } 1713 #endif /* INET6 */ 1714 #if defined(INET6) && defined(INET) 1715 else 1716 #endif 1717 #ifdef INET 1718 { 1719 struct ip *ip; 1720 1721 ip = (struct ip *)ip_ptr; 1722 ip->ip_v = IPVERSION; 1723 ip->ip_hl = 5; 1724 ip->ip_tos = inp->inp_ip_tos; 1725 ip->ip_len = 0; 1726 ip->ip_id = 0; 1727 ip->ip_off = 0; 1728 ip->ip_ttl = inp->inp_ip_ttl; 1729 ip->ip_sum = 0; 1730 if (port == 0) 1731 ip->ip_p = IPPROTO_TCP; 1732 else 1733 ip->ip_p = IPPROTO_UDP; 1734 ip->ip_src = inp->inp_laddr; 1735 ip->ip_dst = inp->inp_faddr; 1736 } 1737 #endif /* INET */ 1738 th->th_sport = inp->inp_lport; 1739 th->th_dport = inp->inp_fport; 1740 th->th_seq = 0; 1741 th->th_ack = 0; 1742 th->th_off = 5; 1743 tcp_set_flags(th, 0); 1744 th->th_win = 0; 1745 th->th_urp = 0; 1746 th->th_sum = 0; /* in_pseudo() is called later for ipv4 */ 1747 } 1748 1749 /* 1750 * Create template to be used to send tcp packets on a connection. 1751 * Allocates an mbuf and fills in a skeletal tcp/ip header. The only 1752 * use for this function is in keepalives, which use tcp_respond. 1753 */ 1754 struct tcptemp * 1755 tcpip_maketemplate(struct inpcb *inp) 1756 { 1757 struct tcptemp *t; 1758 1759 t = malloc(sizeof(*t), M_TEMP, M_NOWAIT); 1760 if (t == NULL) 1761 return (NULL); 1762 tcpip_fillheaders(inp, 0, (void *)&t->tt_ipgen, (void *)&t->tt_t); 1763 return (t); 1764 } 1765 1766 /* 1767 * Send a single message to the TCP at address specified by 1768 * the given TCP/IP header. If m == NULL, then we make a copy 1769 * of the tcpiphdr at th and send directly to the addressed host. 1770 * This is used to force keep alive messages out using the TCP 1771 * template for a connection. If flags are given then we send 1772 * a message back to the TCP which originated the segment th, 1773 * and discard the mbuf containing it and any other attached mbufs. 1774 * 1775 * In any case the ack and sequence number of the transmitted 1776 * segment are as specified by the parameters. 1777 * 1778 * NOTE: If m != NULL, then th must point to *inside* the mbuf. 1779 */ 1780 void 1781 tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m, 1782 tcp_seq ack, tcp_seq seq, uint16_t flags) 1783 { 1784 struct tcpopt to; 1785 struct inpcb *inp; 1786 struct ip *ip; 1787 struct mbuf *optm; 1788 struct udphdr *uh = NULL; 1789 struct tcphdr *nth; 1790 struct tcp_log_buffer *lgb; 1791 u_char *optp; 1792 #ifdef INET6 1793 struct ip6_hdr *ip6; 1794 int isipv6; 1795 #endif /* INET6 */ 1796 int optlen, tlen, win, ulen; 1797 int ect = 0; 1798 bool incl_opts; 1799 uint16_t port; 1800 int output_ret; 1801 #ifdef INVARIANTS 1802 int thflags = tcp_get_flags(th); 1803 #endif 1804 1805 KASSERT(tp != NULL || m != NULL, ("tcp_respond: tp and m both NULL")); 1806 NET_EPOCH_ASSERT(); 1807 1808 #ifdef INET6 1809 isipv6 = ((struct ip *)ipgen)->ip_v == (IPV6_VERSION >> 4); 1810 ip6 = ipgen; 1811 #endif /* INET6 */ 1812 ip = ipgen; 1813 1814 if (tp != NULL) { 1815 inp = tp->t_inpcb; 1816 KASSERT(inp != NULL, ("tcp control block w/o inpcb")); 1817 INP_LOCK_ASSERT(inp); 1818 } else 1819 inp = NULL; 1820 1821 if (m != NULL) { 1822 #ifdef INET6 1823 if (isipv6 && ip6 && (ip6->ip6_nxt == IPPROTO_UDP)) 1824 port = m->m_pkthdr.tcp_tun_port; 1825 else 1826 #endif 1827 if (ip && (ip->ip_p == IPPROTO_UDP)) 1828 port = m->m_pkthdr.tcp_tun_port; 1829 else 1830 port = 0; 1831 } else 1832 port = tp->t_port; 1833 1834 incl_opts = false; 1835 win = 0; 1836 if (tp != NULL) { 1837 if (!(flags & TH_RST)) { 1838 win = sbspace(&inp->inp_socket->so_rcv); 1839 if (win > TCP_MAXWIN << tp->rcv_scale) 1840 win = TCP_MAXWIN << tp->rcv_scale; 1841 } 1842 if ((tp->t_flags & TF_NOOPT) == 0) 1843 incl_opts = true; 1844 } 1845 if (m == NULL) { 1846 m = m_gethdr(M_NOWAIT, MT_DATA); 1847 if (m == NULL) 1848 return; 1849 m->m_data += max_linkhdr; 1850 #ifdef INET6 1851 if (isipv6) { 1852 bcopy((caddr_t)ip6, mtod(m, caddr_t), 1853 sizeof(struct ip6_hdr)); 1854 ip6 = mtod(m, struct ip6_hdr *); 1855 nth = (struct tcphdr *)(ip6 + 1); 1856 if (port) { 1857 /* Insert a UDP header */ 1858 uh = (struct udphdr *)nth; 1859 uh->uh_sport = htons(V_tcp_udp_tunneling_port); 1860 uh->uh_dport = port; 1861 nth = (struct tcphdr *)(uh + 1); 1862 } 1863 } else 1864 #endif /* INET6 */ 1865 { 1866 bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip)); 1867 ip = mtod(m, struct ip *); 1868 nth = (struct tcphdr *)(ip + 1); 1869 if (port) { 1870 /* Insert a UDP header */ 1871 uh = (struct udphdr *)nth; 1872 uh->uh_sport = htons(V_tcp_udp_tunneling_port); 1873 uh->uh_dport = port; 1874 nth = (struct tcphdr *)(uh + 1); 1875 } 1876 } 1877 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr)); 1878 flags = TH_ACK; 1879 } else if ((!M_WRITABLE(m)) || (port != 0)) { 1880 struct mbuf *n; 1881 1882 /* Can't reuse 'm', allocate a new mbuf. */ 1883 n = m_gethdr(M_NOWAIT, MT_DATA); 1884 if (n == NULL) { 1885 m_freem(m); 1886 return; 1887 } 1888 1889 if (!m_dup_pkthdr(n, m, M_NOWAIT)) { 1890 m_freem(m); 1891 m_freem(n); 1892 return; 1893 } 1894 1895 n->m_data += max_linkhdr; 1896 /* m_len is set later */ 1897 #define xchg(a,b,type) { type t; t=a; a=b; b=t; } 1898 #ifdef INET6 1899 if (isipv6) { 1900 bcopy((caddr_t)ip6, mtod(n, caddr_t), 1901 sizeof(struct ip6_hdr)); 1902 ip6 = mtod(n, struct ip6_hdr *); 1903 xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr); 1904 nth = (struct tcphdr *)(ip6 + 1); 1905 if (port) { 1906 /* Insert a UDP header */ 1907 uh = (struct udphdr *)nth; 1908 uh->uh_sport = htons(V_tcp_udp_tunneling_port); 1909 uh->uh_dport = port; 1910 nth = (struct tcphdr *)(uh + 1); 1911 } 1912 } else 1913 #endif /* INET6 */ 1914 { 1915 bcopy((caddr_t)ip, mtod(n, caddr_t), sizeof(struct ip)); 1916 ip = mtod(n, struct ip *); 1917 xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t); 1918 nth = (struct tcphdr *)(ip + 1); 1919 if (port) { 1920 /* Insert a UDP header */ 1921 uh = (struct udphdr *)nth; 1922 uh->uh_sport = htons(V_tcp_udp_tunneling_port); 1923 uh->uh_dport = port; 1924 nth = (struct tcphdr *)(uh + 1); 1925 } 1926 } 1927 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr)); 1928 xchg(nth->th_dport, nth->th_sport, uint16_t); 1929 th = nth; 1930 m_freem(m); 1931 m = n; 1932 } else { 1933 /* 1934 * reuse the mbuf. 1935 * XXX MRT We inherit the FIB, which is lucky. 1936 */ 1937 m_freem(m->m_next); 1938 m->m_next = NULL; 1939 m->m_data = (caddr_t)ipgen; 1940 /* m_len is set later */ 1941 #ifdef INET6 1942 if (isipv6) { 1943 xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr); 1944 nth = (struct tcphdr *)(ip6 + 1); 1945 } else 1946 #endif /* INET6 */ 1947 { 1948 xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t); 1949 nth = (struct tcphdr *)(ip + 1); 1950 } 1951 if (th != nth) { 1952 /* 1953 * this is usually a case when an extension header 1954 * exists between the IPv6 header and the 1955 * TCP header. 1956 */ 1957 nth->th_sport = th->th_sport; 1958 nth->th_dport = th->th_dport; 1959 } 1960 xchg(nth->th_dport, nth->th_sport, uint16_t); 1961 #undef xchg 1962 } 1963 tlen = 0; 1964 #ifdef INET6 1965 if (isipv6) 1966 tlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr); 1967 #endif 1968 #if defined(INET) && defined(INET6) 1969 else 1970 #endif 1971 #ifdef INET 1972 tlen = sizeof (struct tcpiphdr); 1973 #endif 1974 if (port) 1975 tlen += sizeof (struct udphdr); 1976 #ifdef INVARIANTS 1977 m->m_len = 0; 1978 KASSERT(M_TRAILINGSPACE(m) >= tlen, 1979 ("Not enough trailing space for message (m=%p, need=%d, have=%ld)", 1980 m, tlen, (long)M_TRAILINGSPACE(m))); 1981 #endif 1982 m->m_len = tlen; 1983 to.to_flags = 0; 1984 if (incl_opts) { 1985 ect = tcp_ecn_output_established(tp, &flags, 0, false); 1986 /* Make sure we have room. */ 1987 if (M_TRAILINGSPACE(m) < TCP_MAXOLEN) { 1988 m->m_next = m_get(M_NOWAIT, MT_DATA); 1989 if (m->m_next) { 1990 optp = mtod(m->m_next, u_char *); 1991 optm = m->m_next; 1992 } else 1993 incl_opts = false; 1994 } else { 1995 optp = (u_char *) (nth + 1); 1996 optm = m; 1997 } 1998 } 1999 if (incl_opts) { 2000 /* Timestamps. */ 2001 if (tp->t_flags & TF_RCVD_TSTMP) { 2002 to.to_tsval = tcp_ts_getticks() + tp->ts_offset; 2003 to.to_tsecr = tp->ts_recent; 2004 to.to_flags |= TOF_TS; 2005 } 2006 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 2007 /* TCP-MD5 (RFC2385). */ 2008 if (tp->t_flags & TF_SIGNATURE) 2009 to.to_flags |= TOF_SIGNATURE; 2010 #endif 2011 /* Add the options. */ 2012 tlen += optlen = tcp_addoptions(&to, optp); 2013 2014 /* Update m_len in the correct mbuf. */ 2015 optm->m_len += optlen; 2016 } else 2017 optlen = 0; 2018 #ifdef INET6 2019 if (isipv6) { 2020 if (uh) { 2021 ulen = tlen - sizeof(struct ip6_hdr); 2022 uh->uh_ulen = htons(ulen); 2023 } 2024 ip6->ip6_flow = htonl(ect << 20); 2025 ip6->ip6_vfc = IPV6_VERSION; 2026 if (port) 2027 ip6->ip6_nxt = IPPROTO_UDP; 2028 else 2029 ip6->ip6_nxt = IPPROTO_TCP; 2030 ip6->ip6_plen = htons(tlen - sizeof(*ip6)); 2031 } 2032 #endif 2033 #if defined(INET) && defined(INET6) 2034 else 2035 #endif 2036 #ifdef INET 2037 { 2038 if (uh) { 2039 ulen = tlen - sizeof(struct ip); 2040 uh->uh_ulen = htons(ulen); 2041 } 2042 ip->ip_tos = ect; 2043 ip->ip_len = htons(tlen); 2044 ip->ip_ttl = V_ip_defttl; 2045 if (port) { 2046 ip->ip_p = IPPROTO_UDP; 2047 } else { 2048 ip->ip_p = IPPROTO_TCP; 2049 } 2050 if (V_path_mtu_discovery) 2051 ip->ip_off |= htons(IP_DF); 2052 } 2053 #endif 2054 m->m_pkthdr.len = tlen; 2055 m->m_pkthdr.rcvif = NULL; 2056 #ifdef MAC 2057 if (inp != NULL) { 2058 /* 2059 * Packet is associated with a socket, so allow the 2060 * label of the response to reflect the socket label. 2061 */ 2062 INP_LOCK_ASSERT(inp); 2063 mac_inpcb_create_mbuf(inp, m); 2064 } else { 2065 /* 2066 * Packet is not associated with a socket, so possibly 2067 * update the label in place. 2068 */ 2069 mac_netinet_tcp_reply(m); 2070 } 2071 #endif 2072 nth->th_seq = htonl(seq); 2073 nth->th_ack = htonl(ack); 2074 nth->th_off = (sizeof (struct tcphdr) + optlen) >> 2; 2075 tcp_set_flags(nth, flags); 2076 if (tp != NULL) 2077 nth->th_win = htons((u_short) (win >> tp->rcv_scale)); 2078 else 2079 nth->th_win = htons((u_short)win); 2080 nth->th_urp = 0; 2081 2082 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 2083 if (to.to_flags & TOF_SIGNATURE) { 2084 if (!TCPMD5_ENABLED() || 2085 TCPMD5_OUTPUT(m, nth, to.to_signature) != 0) { 2086 m_freem(m); 2087 return; 2088 } 2089 } 2090 #endif 2091 2092 #ifdef INET6 2093 if (isipv6) { 2094 if (port) { 2095 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 2096 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 2097 uh->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0); 2098 nth->th_sum = 0; 2099 } else { 2100 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 2101 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 2102 nth->th_sum = in6_cksum_pseudo(ip6, 2103 tlen - sizeof(struct ip6_hdr), IPPROTO_TCP, 0); 2104 } 2105 ip6->ip6_hlim = in6_selecthlim(tp != NULL ? tp->t_inpcb : 2106 NULL, NULL); 2107 } 2108 #endif /* INET6 */ 2109 #if defined(INET6) && defined(INET) 2110 else 2111 #endif 2112 #ifdef INET 2113 { 2114 if (port) { 2115 uh->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, 2116 htons(ulen + IPPROTO_UDP)); 2117 m->m_pkthdr.csum_flags = CSUM_UDP; 2118 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 2119 nth->th_sum = 0; 2120 } else { 2121 m->m_pkthdr.csum_flags = CSUM_TCP; 2122 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 2123 nth->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, 2124 htons((u_short)(tlen - sizeof(struct ip) + ip->ip_p))); 2125 } 2126 } 2127 #endif /* INET */ 2128 #ifdef TCPDEBUG 2129 if (tp == NULL || (inp->inp_socket->so_options & SO_DEBUG)) 2130 tcp_trace(TA_OUTPUT, 0, tp, mtod(m, void *), th, 0); 2131 #endif 2132 TCP_PROBE3(debug__output, tp, th, m); 2133 if (flags & TH_RST) 2134 TCP_PROBE5(accept__refused, NULL, NULL, m, tp, nth); 2135 lgb = NULL; 2136 if ((tp != NULL) && (tp->t_logstate != TCP_LOG_STATE_OFF)) { 2137 if (INP_WLOCKED(inp)) { 2138 union tcp_log_stackspecific log; 2139 struct timeval tv; 2140 2141 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2142 log.u_bbr.inhpts = tp->t_inpcb->inp_in_hpts; 2143 log.u_bbr.flex8 = 4; 2144 log.u_bbr.pkts_out = tp->t_maxseg; 2145 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2146 log.u_bbr.delivered = 0; 2147 lgb = tcp_log_event_(tp, nth, NULL, NULL, TCP_LOG_OUT, 2148 ERRNO_UNK, 0, &log, false, NULL, NULL, 0, &tv); 2149 } else { 2150 /* 2151 * We can not log the packet, since we only own the 2152 * read lock, but a write lock is needed. The read lock 2153 * is not upgraded to a write lock, since only getting 2154 * the read lock was done intentionally to improve the 2155 * handling of SYN flooding attacks. 2156 * This happens only for pure SYN segments received in 2157 * the initial CLOSED state, or received in a more 2158 * advanced state than listen and the UDP encapsulation 2159 * port is unexpected. 2160 * The incoming SYN segments do not really belong to 2161 * the TCP connection and the handling does not change 2162 * the state of the TCP connection. Therefore, the 2163 * sending of the RST segments is not logged. Please 2164 * note that also the incoming SYN segments are not 2165 * logged. 2166 * 2167 * The following code ensures that the above description 2168 * is and stays correct. 2169 */ 2170 KASSERT((thflags & (TH_ACK|TH_SYN)) == TH_SYN && 2171 (tp->t_state == TCPS_CLOSED || 2172 (tp->t_state > TCPS_LISTEN && tp->t_port != port)), 2173 ("%s: Logging of TCP segment with flags 0x%b and " 2174 "UDP encapsulation port %u skipped in state %s", 2175 __func__, thflags, PRINT_TH_FLAGS, 2176 ntohs(port), tcpstates[tp->t_state])); 2177 } 2178 } 2179 2180 if (flags & TH_ACK) 2181 TCPSTAT_INC(tcps_sndacks); 2182 else if (flags & (TH_SYN|TH_FIN|TH_RST)) 2183 TCPSTAT_INC(tcps_sndctrl); 2184 TCPSTAT_INC(tcps_sndtotal); 2185 2186 #ifdef INET6 2187 if (isipv6) { 2188 TCP_PROBE5(send, NULL, tp, ip6, tp, nth); 2189 output_ret = ip6_output(m, NULL, NULL, 0, NULL, NULL, inp); 2190 } 2191 #endif /* INET6 */ 2192 #if defined(INET) && defined(INET6) 2193 else 2194 #endif 2195 #ifdef INET 2196 { 2197 TCP_PROBE5(send, NULL, tp, ip, tp, nth); 2198 output_ret = ip_output(m, NULL, NULL, 0, NULL, inp); 2199 } 2200 #endif 2201 if (lgb != NULL) 2202 lgb->tlb_errno = output_ret; 2203 } 2204 2205 /* 2206 * Create a new TCP control block, making an 2207 * empty reassembly queue and hooking it to the argument 2208 * protocol control block. The `inp' parameter must have 2209 * come from the zone allocator set up in tcp_init(). 2210 */ 2211 struct tcpcb * 2212 tcp_newtcpcb(struct inpcb *inp) 2213 { 2214 struct tcpcb_mem *tm; 2215 struct tcpcb *tp; 2216 #ifdef INET6 2217 int isipv6 = (inp->inp_vflag & INP_IPV6) != 0; 2218 #endif /* INET6 */ 2219 2220 tm = uma_zalloc(V_tcpcb_zone, M_NOWAIT | M_ZERO); 2221 if (tm == NULL) 2222 return (NULL); 2223 tp = &tm->tcb; 2224 2225 /* Initialise cc_var struct for this tcpcb. */ 2226 tp->ccv = &tm->ccv; 2227 tp->ccv->type = IPPROTO_TCP; 2228 tp->ccv->ccvc.tcp = tp; 2229 rw_rlock(&tcp_function_lock); 2230 tp->t_fb = tcp_func_set_ptr; 2231 refcount_acquire(&tp->t_fb->tfb_refcnt); 2232 rw_runlock(&tcp_function_lock); 2233 /* 2234 * Use the current system default CC algorithm. 2235 */ 2236 cc_attach(tp, CC_DEFAULT_ALGO()); 2237 2238 /* 2239 * The tcpcb will hold a reference on its inpcb until tcp_discardcb() 2240 * is called. 2241 */ 2242 in_pcbref(inp); /* Reference for tcpcb */ 2243 tp->t_inpcb = inp; 2244 2245 if (CC_ALGO(tp)->cb_init != NULL) 2246 if (CC_ALGO(tp)->cb_init(tp->ccv, NULL) > 0) { 2247 cc_detach(tp); 2248 if (tp->t_fb->tfb_tcp_fb_fini) 2249 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1); 2250 in_pcbrele_wlocked(inp); 2251 refcount_release(&tp->t_fb->tfb_refcnt); 2252 uma_zfree(V_tcpcb_zone, tm); 2253 return (NULL); 2254 } 2255 2256 #ifdef TCP_HHOOK 2257 tp->osd = &tm->osd; 2258 if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) { 2259 if (tp->t_fb->tfb_tcp_fb_fini) 2260 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1); 2261 in_pcbrele_wlocked(inp); 2262 refcount_release(&tp->t_fb->tfb_refcnt); 2263 uma_zfree(V_tcpcb_zone, tm); 2264 return (NULL); 2265 } 2266 #endif 2267 2268 #ifdef VIMAGE 2269 tp->t_vnet = inp->inp_vnet; 2270 #endif 2271 tp->t_timers = &tm->tt; 2272 TAILQ_INIT(&tp->t_segq); 2273 tp->t_maxseg = 2274 #ifdef INET6 2275 isipv6 ? V_tcp_v6mssdflt : 2276 #endif /* INET6 */ 2277 V_tcp_mssdflt; 2278 2279 /* Set up our timeouts. */ 2280 callout_init(&tp->t_timers->tt_rexmt, 1); 2281 callout_init(&tp->t_timers->tt_persist, 1); 2282 callout_init(&tp->t_timers->tt_keep, 1); 2283 callout_init(&tp->t_timers->tt_2msl, 1); 2284 callout_init(&tp->t_timers->tt_delack, 1); 2285 2286 switch (V_tcp_do_rfc1323) { 2287 case 0: 2288 break; 2289 default: 2290 case 1: 2291 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP); 2292 break; 2293 case 2: 2294 tp->t_flags = TF_REQ_SCALE; 2295 break; 2296 case 3: 2297 tp->t_flags = TF_REQ_TSTMP; 2298 break; 2299 } 2300 if (V_tcp_do_sack) 2301 tp->t_flags |= TF_SACK_PERMIT; 2302 TAILQ_INIT(&tp->snd_holes); 2303 2304 /* 2305 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no 2306 * rtt estimate. Set rttvar so that srtt + 4 * rttvar gives 2307 * reasonable initial retransmit time. 2308 */ 2309 tp->t_srtt = TCPTV_SRTTBASE; 2310 tp->t_rttvar = ((tcp_rexmit_initial - TCPTV_SRTTBASE) << TCP_RTTVAR_SHIFT) / 4; 2311 tp->t_rttmin = tcp_rexmit_min; 2312 tp->t_rxtcur = tcp_rexmit_initial; 2313 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT; 2314 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT; 2315 tp->t_rcvtime = ticks; 2316 /* 2317 * IPv4 TTL initialization is necessary for an IPv6 socket as well, 2318 * because the socket may be bound to an IPv6 wildcard address, 2319 * which may match an IPv4-mapped IPv6 address. 2320 */ 2321 inp->inp_ip_ttl = V_ip_defttl; 2322 inp->inp_ppcb = tp; 2323 #ifdef TCPPCAP 2324 /* 2325 * Init the TCP PCAP queues. 2326 */ 2327 tcp_pcap_tcpcb_init(tp); 2328 #endif 2329 #ifdef TCP_BLACKBOX 2330 /* Initialize the per-TCPCB log data. */ 2331 tcp_log_tcpcbinit(tp); 2332 #endif 2333 tp->t_pacing_rate = -1; 2334 if (tp->t_fb->tfb_tcp_fb_init) { 2335 if ((*tp->t_fb->tfb_tcp_fb_init)(tp)) { 2336 refcount_release(&tp->t_fb->tfb_refcnt); 2337 in_pcbrele_wlocked(inp); 2338 uma_zfree(V_tcpcb_zone, tm); 2339 return (NULL); 2340 } 2341 } 2342 #ifdef STATS 2343 if (V_tcp_perconn_stats_enable == 1) 2344 tp->t_stats = stats_blob_alloc(V_tcp_perconn_stats_dflt_tpl, 0); 2345 #endif 2346 if (V_tcp_do_lrd) 2347 tp->t_flags |= TF_LRD; 2348 return (tp); /* XXX */ 2349 } 2350 2351 /* 2352 * Drop a TCP connection, reporting 2353 * the specified error. If connection is synchronized, 2354 * then send a RST to peer. 2355 */ 2356 struct tcpcb * 2357 tcp_drop(struct tcpcb *tp, int errno) 2358 { 2359 struct socket *so = tp->t_inpcb->inp_socket; 2360 2361 NET_EPOCH_ASSERT(); 2362 INP_WLOCK_ASSERT(tp->t_inpcb); 2363 2364 if (TCPS_HAVERCVDSYN(tp->t_state)) { 2365 tcp_state_change(tp, TCPS_CLOSED); 2366 /* Don't use tcp_output() here due to possible recursion. */ 2367 (void)tcp_output_nodrop(tp); 2368 TCPSTAT_INC(tcps_drops); 2369 } else 2370 TCPSTAT_INC(tcps_conndrops); 2371 if (errno == ETIMEDOUT && tp->t_softerror) 2372 errno = tp->t_softerror; 2373 so->so_error = errno; 2374 return (tcp_close(tp)); 2375 } 2376 2377 void 2378 tcp_discardcb(struct tcpcb *tp) 2379 { 2380 struct inpcb *inp = tp->t_inpcb; 2381 2382 INP_WLOCK_ASSERT(inp); 2383 2384 /* 2385 * Make sure that all of our timers are stopped before we delete the 2386 * PCB. 2387 * 2388 * If stopping a timer fails, we schedule a discard function in same 2389 * callout, and the last discard function called will take care of 2390 * deleting the tcpcb. 2391 */ 2392 tp->t_timers->tt_draincnt = 0; 2393 tcp_timer_stop(tp, TT_REXMT); 2394 tcp_timer_stop(tp, TT_PERSIST); 2395 tcp_timer_stop(tp, TT_KEEP); 2396 tcp_timer_stop(tp, TT_2MSL); 2397 tcp_timer_stop(tp, TT_DELACK); 2398 if (tp->t_fb->tfb_tcp_timer_stop_all) { 2399 /* 2400 * Call the stop-all function of the methods, 2401 * this function should call the tcp_timer_stop() 2402 * method with each of the function specific timeouts. 2403 * That stop will be called via the tfb_tcp_timer_stop() 2404 * which should use the async drain function of the 2405 * callout system (see tcp_var.h). 2406 */ 2407 tp->t_fb->tfb_tcp_timer_stop_all(tp); 2408 } 2409 2410 /* free the reassembly queue, if any */ 2411 tcp_reass_flush(tp); 2412 2413 #ifdef TCP_OFFLOAD 2414 /* Disconnect offload device, if any. */ 2415 if (tp->t_flags & TF_TOE) 2416 tcp_offload_detach(tp); 2417 #endif 2418 2419 tcp_free_sackholes(tp); 2420 2421 #ifdef TCPPCAP 2422 /* Free the TCP PCAP queues. */ 2423 tcp_pcap_drain(&(tp->t_inpkts)); 2424 tcp_pcap_drain(&(tp->t_outpkts)); 2425 #endif 2426 2427 /* Allow the CC algorithm to clean up after itself. */ 2428 if (CC_ALGO(tp)->cb_destroy != NULL) 2429 CC_ALGO(tp)->cb_destroy(tp->ccv); 2430 CC_DATA(tp) = NULL; 2431 /* Detach from the CC algorithm */ 2432 cc_detach(tp); 2433 2434 #ifdef TCP_HHOOK 2435 khelp_destroy_osd(tp->osd); 2436 #endif 2437 #ifdef STATS 2438 stats_blob_destroy(tp->t_stats); 2439 #endif 2440 2441 CC_ALGO(tp) = NULL; 2442 inp->inp_ppcb = NULL; 2443 if (tp->t_timers->tt_draincnt == 0) { 2444 bool released __diagused; 2445 2446 released = tcp_freecb(tp); 2447 KASSERT(!released, ("%s: inp %p should not have been released " 2448 "here", __func__, inp)); 2449 } 2450 } 2451 2452 bool 2453 tcp_freecb(struct tcpcb *tp) 2454 { 2455 struct inpcb *inp = tp->t_inpcb; 2456 struct socket *so = inp->inp_socket; 2457 #ifdef INET6 2458 bool isipv6 = (inp->inp_vflag & INP_IPV6) != 0; 2459 #endif 2460 2461 INP_WLOCK_ASSERT(inp); 2462 MPASS(tp->t_timers->tt_draincnt == 0); 2463 2464 /* We own the last reference on tcpcb, let's free it. */ 2465 #ifdef TCP_BLACKBOX 2466 tcp_log_tcpcbfini(tp); 2467 #endif 2468 TCPSTATES_DEC(tp->t_state); 2469 if (tp->t_fb->tfb_tcp_fb_fini) 2470 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 1); 2471 2472 /* 2473 * If we got enough samples through the srtt filter, 2474 * save the rtt and rttvar in the routing entry. 2475 * 'Enough' is arbitrarily defined as 4 rtt samples. 2476 * 4 samples is enough for the srtt filter to converge 2477 * to within enough % of the correct value; fewer samples 2478 * and we could save a bogus rtt. The danger is not high 2479 * as tcp quickly recovers from everything. 2480 * XXX: Works very well but needs some more statistics! 2481 * 2482 * XXXRRS: Updating must be after the stack fini() since 2483 * that may be converting some internal representation of 2484 * say srtt etc into the general one used by other stacks. 2485 * Lets also at least protect against the so being NULL 2486 * as RW stated below. 2487 */ 2488 if ((tp->t_rttupdated >= 4) && (so != NULL)) { 2489 struct hc_metrics_lite metrics; 2490 uint32_t ssthresh; 2491 2492 bzero(&metrics, sizeof(metrics)); 2493 /* 2494 * Update the ssthresh always when the conditions below 2495 * are satisfied. This gives us better new start value 2496 * for the congestion avoidance for new connections. 2497 * ssthresh is only set if packet loss occurred on a session. 2498 * 2499 * XXXRW: 'so' may be NULL here, and/or socket buffer may be 2500 * being torn down. Ideally this code would not use 'so'. 2501 */ 2502 ssthresh = tp->snd_ssthresh; 2503 if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) { 2504 /* 2505 * convert the limit from user data bytes to 2506 * packets then to packet data bytes. 2507 */ 2508 ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg; 2509 if (ssthresh < 2) 2510 ssthresh = 2; 2511 ssthresh *= (tp->t_maxseg + 2512 #ifdef INET6 2513 (isipv6 ? sizeof (struct ip6_hdr) + 2514 sizeof (struct tcphdr) : 2515 #endif 2516 sizeof (struct tcpiphdr) 2517 #ifdef INET6 2518 ) 2519 #endif 2520 ); 2521 } else 2522 ssthresh = 0; 2523 metrics.rmx_ssthresh = ssthresh; 2524 2525 metrics.rmx_rtt = tp->t_srtt; 2526 metrics.rmx_rttvar = tp->t_rttvar; 2527 metrics.rmx_cwnd = tp->snd_cwnd; 2528 metrics.rmx_sendpipe = 0; 2529 metrics.rmx_recvpipe = 0; 2530 2531 tcp_hc_update(&inp->inp_inc, &metrics); 2532 } 2533 2534 refcount_release(&tp->t_fb->tfb_refcnt); 2535 uma_zfree(V_tcpcb_zone, tp); 2536 2537 return (in_pcbrele_wlocked(inp)); 2538 } 2539 2540 /* 2541 * Attempt to close a TCP control block, marking it as dropped, and freeing 2542 * the socket if we hold the only reference. 2543 */ 2544 struct tcpcb * 2545 tcp_close(struct tcpcb *tp) 2546 { 2547 struct inpcb *inp = tp->t_inpcb; 2548 struct socket *so; 2549 2550 INP_WLOCK_ASSERT(inp); 2551 2552 #ifdef TCP_OFFLOAD 2553 if (tp->t_state == TCPS_LISTEN) 2554 tcp_offload_listen_stop(tp); 2555 #endif 2556 /* 2557 * This releases the TFO pending counter resource for TFO listen 2558 * sockets as well as passively-created TFO sockets that transition 2559 * from SYN_RECEIVED to CLOSED. 2560 */ 2561 if (tp->t_tfo_pending) { 2562 tcp_fastopen_decrement_counter(tp->t_tfo_pending); 2563 tp->t_tfo_pending = NULL; 2564 } 2565 #ifdef TCPHPTS 2566 tcp_hpts_remove(inp); 2567 #endif 2568 in_pcbdrop(inp); 2569 TCPSTAT_INC(tcps_closed); 2570 if (tp->t_state != TCPS_CLOSED) 2571 tcp_state_change(tp, TCPS_CLOSED); 2572 KASSERT(inp->inp_socket != NULL, ("tcp_close: inp_socket NULL")); 2573 so = inp->inp_socket; 2574 soisdisconnected(so); 2575 if (inp->inp_flags & INP_SOCKREF) { 2576 inp->inp_flags &= ~INP_SOCKREF; 2577 INP_WUNLOCK(inp); 2578 sorele(so); 2579 return (NULL); 2580 } 2581 return (tp); 2582 } 2583 2584 /* 2585 * Notify a tcp user of an asynchronous error; 2586 * store error as soft error, but wake up user 2587 * (for now, won't do anything until can select for soft error). 2588 * 2589 * Do not wake up user since there currently is no mechanism for 2590 * reporting soft errors (yet - a kqueue filter may be added). 2591 */ 2592 static struct inpcb * 2593 tcp_notify(struct inpcb *inp, int error) 2594 { 2595 struct tcpcb *tp; 2596 2597 INP_WLOCK_ASSERT(inp); 2598 2599 if (inp->inp_flags & INP_DROPPED) 2600 return (inp); 2601 2602 tp = intotcpcb(inp); 2603 KASSERT(tp != NULL, ("tcp_notify: tp == NULL")); 2604 2605 /* 2606 * Ignore some errors if we are hooked up. 2607 * If connection hasn't completed, has retransmitted several times, 2608 * and receives a second error, give up now. This is better 2609 * than waiting a long time to establish a connection that 2610 * can never complete. 2611 */ 2612 if (tp->t_state == TCPS_ESTABLISHED && 2613 (error == EHOSTUNREACH || error == ENETUNREACH || 2614 error == EHOSTDOWN)) { 2615 if (inp->inp_route.ro_nh) { 2616 NH_FREE(inp->inp_route.ro_nh); 2617 inp->inp_route.ro_nh = (struct nhop_object *)NULL; 2618 } 2619 return (inp); 2620 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 && 2621 tp->t_softerror) { 2622 tp = tcp_drop(tp, error); 2623 if (tp != NULL) 2624 return (inp); 2625 else 2626 return (NULL); 2627 } else { 2628 tp->t_softerror = error; 2629 return (inp); 2630 } 2631 #if 0 2632 wakeup( &so->so_timeo); 2633 sorwakeup(so); 2634 sowwakeup(so); 2635 #endif 2636 } 2637 2638 static int 2639 tcp_pcblist(SYSCTL_HANDLER_ARGS) 2640 { 2641 struct inpcb_iterator inpi = INP_ALL_ITERATOR(&V_tcbinfo, 2642 INPLOOKUP_RLOCKPCB); 2643 struct xinpgen xig; 2644 struct inpcb *inp; 2645 int error; 2646 2647 if (req->newptr != NULL) 2648 return (EPERM); 2649 2650 if (req->oldptr == NULL) { 2651 int n; 2652 2653 n = V_tcbinfo.ipi_count + 2654 counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]); 2655 n += imax(n / 8, 10); 2656 req->oldidx = 2 * (sizeof xig) + n * sizeof(struct xtcpcb); 2657 return (0); 2658 } 2659 2660 if ((error = sysctl_wire_old_buffer(req, 0)) != 0) 2661 return (error); 2662 2663 bzero(&xig, sizeof(xig)); 2664 xig.xig_len = sizeof xig; 2665 xig.xig_count = V_tcbinfo.ipi_count + 2666 counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]); 2667 xig.xig_gen = V_tcbinfo.ipi_gencnt; 2668 xig.xig_sogen = so_gencnt; 2669 error = SYSCTL_OUT(req, &xig, sizeof xig); 2670 if (error) 2671 return (error); 2672 2673 error = syncache_pcblist(req); 2674 if (error) 2675 return (error); 2676 2677 while ((inp = inp_next(&inpi)) != NULL) { 2678 if (inp->inp_gencnt <= xig.xig_gen && 2679 cr_canseeinpcb(req->td->td_ucred, inp) == 0) { 2680 struct xtcpcb xt; 2681 2682 tcp_inptoxtp(inp, &xt); 2683 error = SYSCTL_OUT(req, &xt, sizeof xt); 2684 if (error) { 2685 INP_RUNLOCK(inp); 2686 break; 2687 } else 2688 continue; 2689 } 2690 } 2691 2692 if (!error) { 2693 /* 2694 * Give the user an updated idea of our state. 2695 * If the generation differs from what we told 2696 * her before, she knows that something happened 2697 * while we were processing this request, and it 2698 * might be necessary to retry. 2699 */ 2700 xig.xig_gen = V_tcbinfo.ipi_gencnt; 2701 xig.xig_sogen = so_gencnt; 2702 xig.xig_count = V_tcbinfo.ipi_count + 2703 counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]); 2704 error = SYSCTL_OUT(req, &xig, sizeof xig); 2705 } 2706 2707 return (error); 2708 } 2709 2710 SYSCTL_PROC(_net_inet_tcp, TCPCTL_PCBLIST, pcblist, 2711 CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_NEEDGIANT, 2712 NULL, 0, tcp_pcblist, "S,xtcpcb", 2713 "List of active TCP connections"); 2714 2715 #ifdef INET 2716 static int 2717 tcp_getcred(SYSCTL_HANDLER_ARGS) 2718 { 2719 struct xucred xuc; 2720 struct sockaddr_in addrs[2]; 2721 struct epoch_tracker et; 2722 struct inpcb *inp; 2723 int error; 2724 2725 error = priv_check(req->td, PRIV_NETINET_GETCRED); 2726 if (error) 2727 return (error); 2728 error = SYSCTL_IN(req, addrs, sizeof(addrs)); 2729 if (error) 2730 return (error); 2731 NET_EPOCH_ENTER(et); 2732 inp = in_pcblookup(&V_tcbinfo, addrs[1].sin_addr, addrs[1].sin_port, 2733 addrs[0].sin_addr, addrs[0].sin_port, INPLOOKUP_RLOCKPCB, NULL); 2734 NET_EPOCH_EXIT(et); 2735 if (inp != NULL) { 2736 if (inp->inp_socket == NULL) 2737 error = ENOENT; 2738 if (error == 0) 2739 error = cr_canseeinpcb(req->td->td_ucred, inp); 2740 if (error == 0) 2741 cru2x(inp->inp_cred, &xuc); 2742 INP_RUNLOCK(inp); 2743 } else 2744 error = ENOENT; 2745 if (error == 0) 2746 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred)); 2747 return (error); 2748 } 2749 2750 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred, 2751 CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_NEEDGIANT, 2752 0, 0, tcp_getcred, "S,xucred", 2753 "Get the xucred of a TCP connection"); 2754 #endif /* INET */ 2755 2756 #ifdef INET6 2757 static int 2758 tcp6_getcred(SYSCTL_HANDLER_ARGS) 2759 { 2760 struct epoch_tracker et; 2761 struct xucred xuc; 2762 struct sockaddr_in6 addrs[2]; 2763 struct inpcb *inp; 2764 int error; 2765 #ifdef INET 2766 int mapped = 0; 2767 #endif 2768 2769 error = priv_check(req->td, PRIV_NETINET_GETCRED); 2770 if (error) 2771 return (error); 2772 error = SYSCTL_IN(req, addrs, sizeof(addrs)); 2773 if (error) 2774 return (error); 2775 if ((error = sa6_embedscope(&addrs[0], V_ip6_use_defzone)) != 0 || 2776 (error = sa6_embedscope(&addrs[1], V_ip6_use_defzone)) != 0) { 2777 return (error); 2778 } 2779 if (IN6_IS_ADDR_V4MAPPED(&addrs[0].sin6_addr)) { 2780 #ifdef INET 2781 if (IN6_IS_ADDR_V4MAPPED(&addrs[1].sin6_addr)) 2782 mapped = 1; 2783 else 2784 #endif 2785 return (EINVAL); 2786 } 2787 2788 NET_EPOCH_ENTER(et); 2789 #ifdef INET 2790 if (mapped == 1) 2791 inp = in_pcblookup(&V_tcbinfo, 2792 *(struct in_addr *)&addrs[1].sin6_addr.s6_addr[12], 2793 addrs[1].sin6_port, 2794 *(struct in_addr *)&addrs[0].sin6_addr.s6_addr[12], 2795 addrs[0].sin6_port, INPLOOKUP_RLOCKPCB, NULL); 2796 else 2797 #endif 2798 inp = in6_pcblookup(&V_tcbinfo, 2799 &addrs[1].sin6_addr, addrs[1].sin6_port, 2800 &addrs[0].sin6_addr, addrs[0].sin6_port, 2801 INPLOOKUP_RLOCKPCB, NULL); 2802 NET_EPOCH_EXIT(et); 2803 if (inp != NULL) { 2804 if (inp->inp_socket == NULL) 2805 error = ENOENT; 2806 if (error == 0) 2807 error = cr_canseeinpcb(req->td->td_ucred, inp); 2808 if (error == 0) 2809 cru2x(inp->inp_cred, &xuc); 2810 INP_RUNLOCK(inp); 2811 } else 2812 error = ENOENT; 2813 if (error == 0) 2814 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred)); 2815 return (error); 2816 } 2817 2818 SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred, 2819 CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_NEEDGIANT, 2820 0, 0, tcp6_getcred, "S,xucred", 2821 "Get the xucred of a TCP6 connection"); 2822 #endif /* INET6 */ 2823 2824 #ifdef INET 2825 /* Path MTU to try next when a fragmentation-needed message is received. */ 2826 static inline int 2827 tcp_next_pmtu(const struct icmp *icp, const struct ip *ip) 2828 { 2829 int mtu = ntohs(icp->icmp_nextmtu); 2830 2831 /* If no alternative MTU was proposed, try the next smaller one. */ 2832 if (!mtu) 2833 mtu = ip_next_mtu(ntohs(ip->ip_len), 1); 2834 if (mtu < V_tcp_minmss + sizeof(struct tcpiphdr)) 2835 mtu = V_tcp_minmss + sizeof(struct tcpiphdr); 2836 2837 return (mtu); 2838 } 2839 2840 static void 2841 tcp_ctlinput_with_port(struct icmp *icp, uint16_t port) 2842 { 2843 struct ip *ip; 2844 struct tcphdr *th; 2845 struct inpcb *inp; 2846 struct tcpcb *tp; 2847 struct inpcb *(*notify)(struct inpcb *, int); 2848 struct in_conninfo inc; 2849 tcp_seq icmp_tcp_seq; 2850 int errno, mtu; 2851 2852 errno = icmp_errmap(icp); 2853 switch (errno) { 2854 case 0: 2855 return; 2856 case EMSGSIZE: 2857 notify = tcp_mtudisc_notify; 2858 break; 2859 case ECONNREFUSED: 2860 if (V_icmp_may_rst) 2861 notify = tcp_drop_syn_sent; 2862 else 2863 notify = tcp_notify; 2864 break; 2865 case EHOSTUNREACH: 2866 if (V_icmp_may_rst && icp->icmp_type == ICMP_TIMXCEED) 2867 notify = tcp_drop_syn_sent; 2868 else 2869 notify = tcp_notify; 2870 break; 2871 default: 2872 notify = tcp_notify; 2873 } 2874 2875 ip = &icp->icmp_ip; 2876 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2)); 2877 icmp_tcp_seq = th->th_seq; 2878 inp = in_pcblookup(&V_tcbinfo, ip->ip_dst, th->th_dport, ip->ip_src, 2879 th->th_sport, INPLOOKUP_WLOCKPCB, NULL); 2880 if (inp != NULL) { 2881 if (!(inp->inp_flags & INP_DROPPED) && 2882 !(inp->inp_socket == NULL)) { 2883 tp = intotcpcb(inp); 2884 #ifdef TCP_OFFLOAD 2885 if (tp->t_flags & TF_TOE && errno == EMSGSIZE) { 2886 /* 2887 * MTU discovery for offloaded connections. Let 2888 * the TOE driver verify seq# and process it. 2889 */ 2890 mtu = tcp_next_pmtu(icp, ip); 2891 tcp_offload_pmtu_update(tp, icmp_tcp_seq, mtu); 2892 goto out; 2893 } 2894 #endif 2895 if (tp->t_port != port) { 2896 goto out; 2897 } 2898 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) && 2899 SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) { 2900 if (errno == EMSGSIZE) { 2901 /* 2902 * MTU discovery: we got a needfrag and 2903 * will potentially try a lower MTU. 2904 */ 2905 mtu = tcp_next_pmtu(icp, ip); 2906 2907 /* 2908 * Only process the offered MTU if it 2909 * is smaller than the current one. 2910 */ 2911 if (mtu < tp->t_maxseg + 2912 sizeof(struct tcpiphdr)) { 2913 bzero(&inc, sizeof(inc)); 2914 inc.inc_faddr = ip->ip_dst; 2915 inc.inc_fibnum = 2916 inp->inp_inc.inc_fibnum; 2917 tcp_hc_updatemtu(&inc, mtu); 2918 inp = tcp_mtudisc(inp, mtu); 2919 } 2920 } else 2921 inp = (*notify)(inp, errno); 2922 } 2923 } 2924 } else { 2925 bzero(&inc, sizeof(inc)); 2926 inc.inc_fport = th->th_dport; 2927 inc.inc_lport = th->th_sport; 2928 inc.inc_faddr = ip->ip_dst; 2929 inc.inc_laddr = ip->ip_src; 2930 syncache_unreach(&inc, icmp_tcp_seq, port); 2931 } 2932 out: 2933 if (inp != NULL) 2934 INP_WUNLOCK(inp); 2935 } 2936 2937 static void 2938 tcp_ctlinput(struct icmp *icmp) 2939 { 2940 tcp_ctlinput_with_port(icmp, htons(0)); 2941 } 2942 2943 static void 2944 tcp_ctlinput_viaudp(udp_tun_icmp_param_t param) 2945 { 2946 /* Its a tunneled TCP over UDP icmp */ 2947 struct icmp *icmp = param.icmp; 2948 struct ip *outer_ip, *inner_ip; 2949 struct udphdr *udp; 2950 struct tcphdr *th, ttemp; 2951 int i_hlen, o_len; 2952 uint16_t port; 2953 2954 outer_ip = (struct ip *)((caddr_t)icmp - sizeof(struct ip)); 2955 inner_ip = &icmp->icmp_ip; 2956 i_hlen = inner_ip->ip_hl << 2; 2957 o_len = ntohs(outer_ip->ip_len); 2958 if (o_len < 2959 (sizeof(struct ip) + 8 + i_hlen + sizeof(struct udphdr) + offsetof(struct tcphdr, th_ack))) { 2960 /* Not enough data present */ 2961 return; 2962 } 2963 /* Ok lets strip out the inner udphdr header by copying up on top of it the tcp hdr */ 2964 udp = (struct udphdr *)(((caddr_t)inner_ip) + i_hlen); 2965 if (ntohs(udp->uh_sport) != V_tcp_udp_tunneling_port) { 2966 return; 2967 } 2968 port = udp->uh_dport; 2969 th = (struct tcphdr *)(udp + 1); 2970 memcpy(&ttemp, th, sizeof(struct tcphdr)); 2971 memcpy(udp, &ttemp, sizeof(struct tcphdr)); 2972 /* Now adjust down the size of the outer IP header */ 2973 o_len -= sizeof(struct udphdr); 2974 outer_ip->ip_len = htons(o_len); 2975 /* Now call in to the normal handling code */ 2976 tcp_ctlinput_with_port(icmp, port); 2977 } 2978 #endif /* INET */ 2979 2980 #ifdef INET6 2981 static inline int 2982 tcp6_next_pmtu(const struct icmp6_hdr *icmp6) 2983 { 2984 int mtu = ntohl(icmp6->icmp6_mtu); 2985 2986 /* 2987 * If no alternative MTU was proposed, or the proposed MTU was too 2988 * small, set to the min. 2989 */ 2990 if (mtu < IPV6_MMTU) 2991 mtu = IPV6_MMTU - 8; /* XXXNP: what is the adjustment for? */ 2992 return (mtu); 2993 } 2994 2995 static void 2996 tcp6_ctlinput_with_port(struct ip6ctlparam *ip6cp, uint16_t port) 2997 { 2998 struct in6_addr *dst; 2999 struct inpcb *(*notify)(struct inpcb *, int); 3000 struct ip6_hdr *ip6; 3001 struct mbuf *m; 3002 struct inpcb *inp; 3003 struct tcpcb *tp; 3004 struct icmp6_hdr *icmp6; 3005 struct in_conninfo inc; 3006 struct tcp_ports { 3007 uint16_t th_sport; 3008 uint16_t th_dport; 3009 } t_ports; 3010 tcp_seq icmp_tcp_seq; 3011 unsigned int mtu; 3012 unsigned int off; 3013 int errno; 3014 3015 icmp6 = ip6cp->ip6c_icmp6; 3016 m = ip6cp->ip6c_m; 3017 ip6 = ip6cp->ip6c_ip6; 3018 off = ip6cp->ip6c_off; 3019 dst = &ip6cp->ip6c_finaldst->sin6_addr; 3020 3021 errno = icmp6_errmap(icmp6); 3022 switch (errno) { 3023 case 0: 3024 return; 3025 case EMSGSIZE: 3026 notify = tcp_mtudisc_notify; 3027 break; 3028 case ECONNREFUSED: 3029 if (V_icmp_may_rst) 3030 notify = tcp_drop_syn_sent; 3031 else 3032 notify = tcp_notify; 3033 break; 3034 case EHOSTUNREACH: 3035 /* 3036 * There are only four ICMPs that may reset connection: 3037 * - administratively prohibited 3038 * - port unreachable 3039 * - time exceeded in transit 3040 * - unknown next header 3041 */ 3042 if (V_icmp_may_rst && 3043 ((icmp6->icmp6_type == ICMP6_DST_UNREACH && 3044 (icmp6->icmp6_code == ICMP6_DST_UNREACH_ADMIN || 3045 icmp6->icmp6_code == ICMP6_DST_UNREACH_NOPORT)) || 3046 (icmp6->icmp6_type == ICMP6_TIME_EXCEEDED && 3047 icmp6->icmp6_code == ICMP6_TIME_EXCEED_TRANSIT) || 3048 (icmp6->icmp6_type == ICMP6_PARAM_PROB && 3049 icmp6->icmp6_code == ICMP6_PARAMPROB_NEXTHEADER))) 3050 notify = tcp_drop_syn_sent; 3051 else 3052 notify = tcp_notify; 3053 break; 3054 default: 3055 notify = tcp_notify; 3056 } 3057 3058 /* Check if we can safely get the ports from the tcp hdr */ 3059 if (m == NULL || 3060 (m->m_pkthdr.len < 3061 (int32_t) (off + sizeof(struct tcp_ports)))) { 3062 return; 3063 } 3064 bzero(&t_ports, sizeof(struct tcp_ports)); 3065 m_copydata(m, off, sizeof(struct tcp_ports), (caddr_t)&t_ports); 3066 inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_dst, t_ports.th_dport, 3067 &ip6->ip6_src, t_ports.th_sport, INPLOOKUP_WLOCKPCB, NULL); 3068 off += sizeof(struct tcp_ports); 3069 if (m->m_pkthdr.len < (int32_t) (off + sizeof(tcp_seq))) { 3070 goto out; 3071 } 3072 m_copydata(m, off, sizeof(tcp_seq), (caddr_t)&icmp_tcp_seq); 3073 if (inp != NULL) { 3074 if (!(inp->inp_flags & INP_DROPPED) && 3075 !(inp->inp_socket == NULL)) { 3076 tp = intotcpcb(inp); 3077 #ifdef TCP_OFFLOAD 3078 if (tp->t_flags & TF_TOE && errno == EMSGSIZE) { 3079 /* MTU discovery for offloaded connections. */ 3080 mtu = tcp6_next_pmtu(icmp6); 3081 tcp_offload_pmtu_update(tp, icmp_tcp_seq, mtu); 3082 goto out; 3083 } 3084 #endif 3085 if (tp->t_port != port) { 3086 goto out; 3087 } 3088 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) && 3089 SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) { 3090 if (errno == EMSGSIZE) { 3091 /* 3092 * MTU discovery: 3093 * If we got a needfrag set the MTU 3094 * in the route to the suggested new 3095 * value (if given) and then notify. 3096 */ 3097 mtu = tcp6_next_pmtu(icmp6); 3098 3099 bzero(&inc, sizeof(inc)); 3100 inc.inc_fibnum = M_GETFIB(m); 3101 inc.inc_flags |= INC_ISIPV6; 3102 inc.inc6_faddr = *dst; 3103 if (in6_setscope(&inc.inc6_faddr, 3104 m->m_pkthdr.rcvif, NULL)) 3105 goto out; 3106 /* 3107 * Only process the offered MTU if it 3108 * is smaller than the current one. 3109 */ 3110 if (mtu < tp->t_maxseg + 3111 sizeof (struct tcphdr) + 3112 sizeof (struct ip6_hdr)) { 3113 tcp_hc_updatemtu(&inc, mtu); 3114 tcp_mtudisc(inp, mtu); 3115 ICMP6STAT_INC(icp6s_pmtuchg); 3116 } 3117 } else 3118 inp = (*notify)(inp, errno); 3119 } 3120 } 3121 } else { 3122 bzero(&inc, sizeof(inc)); 3123 inc.inc_fibnum = M_GETFIB(m); 3124 inc.inc_flags |= INC_ISIPV6; 3125 inc.inc_fport = t_ports.th_dport; 3126 inc.inc_lport = t_ports.th_sport; 3127 inc.inc6_faddr = *dst; 3128 inc.inc6_laddr = ip6->ip6_src; 3129 syncache_unreach(&inc, icmp_tcp_seq, port); 3130 } 3131 out: 3132 if (inp != NULL) 3133 INP_WUNLOCK(inp); 3134 } 3135 3136 static void 3137 tcp6_ctlinput(struct ip6ctlparam *ctl) 3138 { 3139 tcp6_ctlinput_with_port(ctl, htons(0)); 3140 } 3141 3142 static void 3143 tcp6_ctlinput_viaudp(udp_tun_icmp_param_t param) 3144 { 3145 struct ip6ctlparam *ip6cp = param.ip6cp; 3146 struct mbuf *m; 3147 struct udphdr *udp; 3148 uint16_t port; 3149 3150 m = m_pulldown(ip6cp->ip6c_m, ip6cp->ip6c_off, sizeof(struct udphdr), NULL); 3151 if (m == NULL) { 3152 return; 3153 } 3154 udp = mtod(m, struct udphdr *); 3155 if (ntohs(udp->uh_sport) != V_tcp_udp_tunneling_port) { 3156 return; 3157 } 3158 port = udp->uh_dport; 3159 m_adj(m, sizeof(struct udphdr)); 3160 if ((m->m_flags & M_PKTHDR) == 0) { 3161 ip6cp->ip6c_m->m_pkthdr.len -= sizeof(struct udphdr); 3162 } 3163 /* Now call in to the normal handling code */ 3164 tcp6_ctlinput_with_port(ip6cp, port); 3165 } 3166 3167 #endif /* INET6 */ 3168 3169 static uint32_t 3170 tcp_keyed_hash(struct in_conninfo *inc, u_char *key, u_int len) 3171 { 3172 SIPHASH_CTX ctx; 3173 uint32_t hash[2]; 3174 3175 KASSERT(len >= SIPHASH_KEY_LENGTH, 3176 ("%s: keylen %u too short ", __func__, len)); 3177 SipHash24_Init(&ctx); 3178 SipHash_SetKey(&ctx, (uint8_t *)key); 3179 SipHash_Update(&ctx, &inc->inc_fport, sizeof(uint16_t)); 3180 SipHash_Update(&ctx, &inc->inc_lport, sizeof(uint16_t)); 3181 switch (inc->inc_flags & INC_ISIPV6) { 3182 #ifdef INET 3183 case 0: 3184 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr)); 3185 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr)); 3186 break; 3187 #endif 3188 #ifdef INET6 3189 case INC_ISIPV6: 3190 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr)); 3191 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr)); 3192 break; 3193 #endif 3194 } 3195 SipHash_Final((uint8_t *)hash, &ctx); 3196 3197 return (hash[0] ^ hash[1]); 3198 } 3199 3200 uint32_t 3201 tcp_new_ts_offset(struct in_conninfo *inc) 3202 { 3203 struct in_conninfo inc_store, *local_inc; 3204 3205 if (!V_tcp_ts_offset_per_conn) { 3206 memcpy(&inc_store, inc, sizeof(struct in_conninfo)); 3207 inc_store.inc_lport = 0; 3208 inc_store.inc_fport = 0; 3209 local_inc = &inc_store; 3210 } else { 3211 local_inc = inc; 3212 } 3213 return (tcp_keyed_hash(local_inc, V_ts_offset_secret, 3214 sizeof(V_ts_offset_secret))); 3215 } 3216 3217 /* 3218 * Following is where TCP initial sequence number generation occurs. 3219 * 3220 * There are two places where we must use initial sequence numbers: 3221 * 1. In SYN-ACK packets. 3222 * 2. In SYN packets. 3223 * 3224 * All ISNs for SYN-ACK packets are generated by the syncache. See 3225 * tcp_syncache.c for details. 3226 * 3227 * The ISNs in SYN packets must be monotonic; TIME_WAIT recycling 3228 * depends on this property. In addition, these ISNs should be 3229 * unguessable so as to prevent connection hijacking. To satisfy 3230 * the requirements of this situation, the algorithm outlined in 3231 * RFC 1948 is used, with only small modifications. 3232 * 3233 * Implementation details: 3234 * 3235 * Time is based off the system timer, and is corrected so that it 3236 * increases by one megabyte per second. This allows for proper 3237 * recycling on high speed LANs while still leaving over an hour 3238 * before rollover. 3239 * 3240 * As reading the *exact* system time is too expensive to be done 3241 * whenever setting up a TCP connection, we increment the time 3242 * offset in two ways. First, a small random positive increment 3243 * is added to isn_offset for each connection that is set up. 3244 * Second, the function tcp_isn_tick fires once per clock tick 3245 * and increments isn_offset as necessary so that sequence numbers 3246 * are incremented at approximately ISN_BYTES_PER_SECOND. The 3247 * random positive increments serve only to ensure that the same 3248 * exact sequence number is never sent out twice (as could otherwise 3249 * happen when a port is recycled in less than the system tick 3250 * interval.) 3251 * 3252 * net.inet.tcp.isn_reseed_interval controls the number of seconds 3253 * between seeding of isn_secret. This is normally set to zero, 3254 * as reseeding should not be necessary. 3255 * 3256 * Locking of the global variables isn_secret, isn_last_reseed, isn_offset, 3257 * isn_offset_old, and isn_ctx is performed using the ISN lock. In 3258 * general, this means holding an exclusive (write) lock. 3259 */ 3260 3261 #define ISN_BYTES_PER_SECOND 1048576 3262 #define ISN_STATIC_INCREMENT 4096 3263 #define ISN_RANDOM_INCREMENT (4096 - 1) 3264 #define ISN_SECRET_LENGTH SIPHASH_KEY_LENGTH 3265 3266 VNET_DEFINE_STATIC(u_char, isn_secret[ISN_SECRET_LENGTH]); 3267 VNET_DEFINE_STATIC(int, isn_last); 3268 VNET_DEFINE_STATIC(int, isn_last_reseed); 3269 VNET_DEFINE_STATIC(u_int32_t, isn_offset); 3270 VNET_DEFINE_STATIC(u_int32_t, isn_offset_old); 3271 3272 #define V_isn_secret VNET(isn_secret) 3273 #define V_isn_last VNET(isn_last) 3274 #define V_isn_last_reseed VNET(isn_last_reseed) 3275 #define V_isn_offset VNET(isn_offset) 3276 #define V_isn_offset_old VNET(isn_offset_old) 3277 3278 tcp_seq 3279 tcp_new_isn(struct in_conninfo *inc) 3280 { 3281 tcp_seq new_isn; 3282 u_int32_t projected_offset; 3283 3284 ISN_LOCK(); 3285 /* Seed if this is the first use, reseed if requested. */ 3286 if ((V_isn_last_reseed == 0) || ((V_tcp_isn_reseed_interval > 0) && 3287 (((u_int)V_isn_last_reseed + (u_int)V_tcp_isn_reseed_interval*hz) 3288 < (u_int)ticks))) { 3289 arc4rand(&V_isn_secret, sizeof(V_isn_secret), 0); 3290 V_isn_last_reseed = ticks; 3291 } 3292 3293 /* Compute the hash and return the ISN. */ 3294 new_isn = (tcp_seq)tcp_keyed_hash(inc, V_isn_secret, 3295 sizeof(V_isn_secret)); 3296 V_isn_offset += ISN_STATIC_INCREMENT + 3297 (arc4random() & ISN_RANDOM_INCREMENT); 3298 if (ticks != V_isn_last) { 3299 projected_offset = V_isn_offset_old + 3300 ISN_BYTES_PER_SECOND / hz * (ticks - V_isn_last); 3301 if (SEQ_GT(projected_offset, V_isn_offset)) 3302 V_isn_offset = projected_offset; 3303 V_isn_offset_old = V_isn_offset; 3304 V_isn_last = ticks; 3305 } 3306 new_isn += V_isn_offset; 3307 ISN_UNLOCK(); 3308 return (new_isn); 3309 } 3310 3311 /* 3312 * When a specific ICMP unreachable message is received and the 3313 * connection state is SYN-SENT, drop the connection. This behavior 3314 * is controlled by the icmp_may_rst sysctl. 3315 */ 3316 static struct inpcb * 3317 tcp_drop_syn_sent(struct inpcb *inp, int errno) 3318 { 3319 struct tcpcb *tp; 3320 3321 NET_EPOCH_ASSERT(); 3322 INP_WLOCK_ASSERT(inp); 3323 3324 if (inp->inp_flags & INP_DROPPED) 3325 return (inp); 3326 3327 tp = intotcpcb(inp); 3328 if (tp->t_state != TCPS_SYN_SENT) 3329 return (inp); 3330 3331 if (IS_FASTOPEN(tp->t_flags)) 3332 tcp_fastopen_disable_path(tp); 3333 3334 tp = tcp_drop(tp, errno); 3335 if (tp != NULL) 3336 return (inp); 3337 else 3338 return (NULL); 3339 } 3340 3341 /* 3342 * When `need fragmentation' ICMP is received, update our idea of the MSS 3343 * based on the new value. Also nudge TCP to send something, since we 3344 * know the packet we just sent was dropped. 3345 * This duplicates some code in the tcp_mss() function in tcp_input.c. 3346 */ 3347 static struct inpcb * 3348 tcp_mtudisc_notify(struct inpcb *inp, int error) 3349 { 3350 3351 return (tcp_mtudisc(inp, -1)); 3352 } 3353 3354 static struct inpcb * 3355 tcp_mtudisc(struct inpcb *inp, int mtuoffer) 3356 { 3357 struct tcpcb *tp; 3358 struct socket *so; 3359 3360 INP_WLOCK_ASSERT(inp); 3361 if (inp->inp_flags & INP_DROPPED) 3362 return (inp); 3363 3364 tp = intotcpcb(inp); 3365 KASSERT(tp != NULL, ("tcp_mtudisc: tp == NULL")); 3366 3367 tcp_mss_update(tp, -1, mtuoffer, NULL, NULL); 3368 3369 so = inp->inp_socket; 3370 SOCKBUF_LOCK(&so->so_snd); 3371 /* If the mss is larger than the socket buffer, decrease the mss. */ 3372 if (so->so_snd.sb_hiwat < tp->t_maxseg) 3373 tp->t_maxseg = so->so_snd.sb_hiwat; 3374 SOCKBUF_UNLOCK(&so->so_snd); 3375 3376 TCPSTAT_INC(tcps_mturesent); 3377 tp->t_rtttime = 0; 3378 tp->snd_nxt = tp->snd_una; 3379 tcp_free_sackholes(tp); 3380 tp->snd_recover = tp->snd_max; 3381 if (tp->t_flags & TF_SACK_PERMIT) 3382 EXIT_FASTRECOVERY(tp->t_flags); 3383 if (tp->t_fb->tfb_tcp_mtu_chg != NULL) { 3384 /* 3385 * Conceptually the snd_nxt setting 3386 * and freeing sack holes should 3387 * be done by the default stacks 3388 * own tfb_tcp_mtu_chg(). 3389 */ 3390 tp->t_fb->tfb_tcp_mtu_chg(tp); 3391 } 3392 if (tcp_output(tp) < 0) 3393 return (NULL); 3394 else 3395 return (inp); 3396 } 3397 3398 #ifdef INET 3399 /* 3400 * Look-up the routing entry to the peer of this inpcb. If no route 3401 * is found and it cannot be allocated, then return 0. This routine 3402 * is called by TCP routines that access the rmx structure and by 3403 * tcp_mss_update to get the peer/interface MTU. 3404 */ 3405 uint32_t 3406 tcp_maxmtu(struct in_conninfo *inc, struct tcp_ifcap *cap) 3407 { 3408 struct nhop_object *nh; 3409 struct ifnet *ifp; 3410 uint32_t maxmtu = 0; 3411 3412 KASSERT(inc != NULL, ("tcp_maxmtu with NULL in_conninfo pointer")); 3413 3414 if (inc->inc_faddr.s_addr != INADDR_ANY) { 3415 nh = fib4_lookup(inc->inc_fibnum, inc->inc_faddr, 0, NHR_NONE, 0); 3416 if (nh == NULL) 3417 return (0); 3418 3419 ifp = nh->nh_ifp; 3420 maxmtu = nh->nh_mtu; 3421 3422 /* Report additional interface capabilities. */ 3423 if (cap != NULL) { 3424 if (ifp->if_capenable & IFCAP_TSO4 && 3425 ifp->if_hwassist & CSUM_TSO) { 3426 cap->ifcap |= CSUM_TSO; 3427 cap->tsomax = ifp->if_hw_tsomax; 3428 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount; 3429 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize; 3430 } 3431 } 3432 } 3433 return (maxmtu); 3434 } 3435 #endif /* INET */ 3436 3437 #ifdef INET6 3438 uint32_t 3439 tcp_maxmtu6(struct in_conninfo *inc, struct tcp_ifcap *cap) 3440 { 3441 struct nhop_object *nh; 3442 struct in6_addr dst6; 3443 uint32_t scopeid; 3444 struct ifnet *ifp; 3445 uint32_t maxmtu = 0; 3446 3447 KASSERT(inc != NULL, ("tcp_maxmtu6 with NULL in_conninfo pointer")); 3448 3449 if (inc->inc_flags & INC_IPV6MINMTU) 3450 return (IPV6_MMTU); 3451 3452 if (!IN6_IS_ADDR_UNSPECIFIED(&inc->inc6_faddr)) { 3453 in6_splitscope(&inc->inc6_faddr, &dst6, &scopeid); 3454 nh = fib6_lookup(inc->inc_fibnum, &dst6, scopeid, NHR_NONE, 0); 3455 if (nh == NULL) 3456 return (0); 3457 3458 ifp = nh->nh_ifp; 3459 maxmtu = nh->nh_mtu; 3460 3461 /* Report additional interface capabilities. */ 3462 if (cap != NULL) { 3463 if (ifp->if_capenable & IFCAP_TSO6 && 3464 ifp->if_hwassist & CSUM_TSO) { 3465 cap->ifcap |= CSUM_TSO; 3466 cap->tsomax = ifp->if_hw_tsomax; 3467 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount; 3468 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize; 3469 } 3470 } 3471 } 3472 3473 return (maxmtu); 3474 } 3475 3476 /* 3477 * Handle setsockopt(IPV6_USE_MIN_MTU) by a TCP stack. 3478 * 3479 * XXXGL: we are updating inpcb here with INC_IPV6MINMTU flag. 3480 * The right place to do that is ip6_setpktopt() that has just been 3481 * executed. By the way it just filled ip6po_minmtu for us. 3482 */ 3483 void 3484 tcp6_use_min_mtu(struct tcpcb *tp) 3485 { 3486 struct inpcb *inp = tp->t_inpcb; 3487 3488 INP_WLOCK_ASSERT(inp); 3489 /* 3490 * In case of the IPV6_USE_MIN_MTU socket 3491 * option, the INC_IPV6MINMTU flag to announce 3492 * a corresponding MSS during the initial 3493 * handshake. If the TCP connection is not in 3494 * the front states, just reduce the MSS being 3495 * used. This avoids the sending of TCP 3496 * segments which will be fragmented at the 3497 * IPv6 layer. 3498 */ 3499 inp->inp_inc.inc_flags |= INC_IPV6MINMTU; 3500 if ((tp->t_state >= TCPS_SYN_SENT) && 3501 (inp->inp_inc.inc_flags & INC_ISIPV6)) { 3502 struct ip6_pktopts *opt; 3503 3504 opt = inp->in6p_outputopts; 3505 if (opt != NULL && opt->ip6po_minmtu == IP6PO_MINMTU_ALL && 3506 tp->t_maxseg > TCP6_MSS) 3507 tp->t_maxseg = TCP6_MSS; 3508 } 3509 } 3510 #endif /* INET6 */ 3511 3512 /* 3513 * Calculate effective SMSS per RFC5681 definition for a given TCP 3514 * connection at its current state, taking into account SACK and etc. 3515 */ 3516 u_int 3517 tcp_maxseg(const struct tcpcb *tp) 3518 { 3519 u_int optlen; 3520 3521 if (tp->t_flags & TF_NOOPT) 3522 return (tp->t_maxseg); 3523 3524 /* 3525 * Here we have a simplified code from tcp_addoptions(), 3526 * without a proper loop, and having most of paddings hardcoded. 3527 * We might make mistakes with padding here in some edge cases, 3528 * but this is harmless, since result of tcp_maxseg() is used 3529 * only in cwnd and ssthresh estimations. 3530 */ 3531 if (TCPS_HAVEESTABLISHED(tp->t_state)) { 3532 if (tp->t_flags & TF_RCVD_TSTMP) 3533 optlen = TCPOLEN_TSTAMP_APPA; 3534 else 3535 optlen = 0; 3536 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 3537 if (tp->t_flags & TF_SIGNATURE) 3538 optlen += PADTCPOLEN(TCPOLEN_SIGNATURE); 3539 #endif 3540 if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks > 0) { 3541 optlen += TCPOLEN_SACKHDR; 3542 optlen += tp->rcv_numsacks * TCPOLEN_SACK; 3543 optlen = PADTCPOLEN(optlen); 3544 } 3545 } else { 3546 if (tp->t_flags & TF_REQ_TSTMP) 3547 optlen = TCPOLEN_TSTAMP_APPA; 3548 else 3549 optlen = PADTCPOLEN(TCPOLEN_MAXSEG); 3550 if (tp->t_flags & TF_REQ_SCALE) 3551 optlen += PADTCPOLEN(TCPOLEN_WINDOW); 3552 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 3553 if (tp->t_flags & TF_SIGNATURE) 3554 optlen += PADTCPOLEN(TCPOLEN_SIGNATURE); 3555 #endif 3556 if (tp->t_flags & TF_SACK_PERMIT) 3557 optlen += PADTCPOLEN(TCPOLEN_SACK_PERMITTED); 3558 } 3559 #undef PAD 3560 optlen = min(optlen, TCP_MAXOLEN); 3561 return (tp->t_maxseg - optlen); 3562 } 3563 3564 3565 u_int 3566 tcp_fixed_maxseg(const struct tcpcb *tp) 3567 { 3568 int optlen; 3569 3570 if (tp->t_flags & TF_NOOPT) 3571 return (tp->t_maxseg); 3572 3573 /* 3574 * Here we have a simplified code from tcp_addoptions(), 3575 * without a proper loop, and having most of paddings hardcoded. 3576 * We only consider fixed options that we would send every 3577 * time I.e. SACK is not considered. This is important 3578 * for cc modules to figure out what the modulo of the 3579 * cwnd should be. 3580 */ 3581 #define PAD(len) ((((len) / 4) + !!((len) % 4)) * 4) 3582 if (TCPS_HAVEESTABLISHED(tp->t_state)) { 3583 if (tp->t_flags & TF_RCVD_TSTMP) 3584 optlen = TCPOLEN_TSTAMP_APPA; 3585 else 3586 optlen = 0; 3587 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 3588 if (tp->t_flags & TF_SIGNATURE) 3589 optlen += PAD(TCPOLEN_SIGNATURE); 3590 #endif 3591 } else { 3592 if (tp->t_flags & TF_REQ_TSTMP) 3593 optlen = TCPOLEN_TSTAMP_APPA; 3594 else 3595 optlen = PAD(TCPOLEN_MAXSEG); 3596 if (tp->t_flags & TF_REQ_SCALE) 3597 optlen += PAD(TCPOLEN_WINDOW); 3598 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 3599 if (tp->t_flags & TF_SIGNATURE) 3600 optlen += PAD(TCPOLEN_SIGNATURE); 3601 #endif 3602 if (tp->t_flags & TF_SACK_PERMIT) 3603 optlen += PAD(TCPOLEN_SACK_PERMITTED); 3604 } 3605 #undef PAD 3606 optlen = min(optlen, TCP_MAXOLEN); 3607 return (tp->t_maxseg - optlen); 3608 } 3609 3610 3611 3612 static int 3613 sysctl_drop(SYSCTL_HANDLER_ARGS) 3614 { 3615 /* addrs[0] is a foreign socket, addrs[1] is a local one. */ 3616 struct sockaddr_storage addrs[2]; 3617 struct inpcb *inp; 3618 struct tcpcb *tp; 3619 #ifdef INET 3620 struct sockaddr_in *fin = NULL, *lin = NULL; 3621 #endif 3622 struct epoch_tracker et; 3623 #ifdef INET6 3624 struct sockaddr_in6 *fin6, *lin6; 3625 #endif 3626 int error; 3627 3628 inp = NULL; 3629 #ifdef INET6 3630 fin6 = lin6 = NULL; 3631 #endif 3632 error = 0; 3633 3634 if (req->oldptr != NULL || req->oldlen != 0) 3635 return (EINVAL); 3636 if (req->newptr == NULL) 3637 return (EPERM); 3638 if (req->newlen < sizeof(addrs)) 3639 return (ENOMEM); 3640 error = SYSCTL_IN(req, &addrs, sizeof(addrs)); 3641 if (error) 3642 return (error); 3643 3644 switch (addrs[0].ss_family) { 3645 #ifdef INET6 3646 case AF_INET6: 3647 fin6 = (struct sockaddr_in6 *)&addrs[0]; 3648 lin6 = (struct sockaddr_in6 *)&addrs[1]; 3649 if (fin6->sin6_len != sizeof(struct sockaddr_in6) || 3650 lin6->sin6_len != sizeof(struct sockaddr_in6)) 3651 return (EINVAL); 3652 if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) { 3653 if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr)) 3654 return (EINVAL); 3655 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]); 3656 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]); 3657 #ifdef INET 3658 fin = (struct sockaddr_in *)&addrs[0]; 3659 lin = (struct sockaddr_in *)&addrs[1]; 3660 #endif 3661 break; 3662 } 3663 error = sa6_embedscope(fin6, V_ip6_use_defzone); 3664 if (error) 3665 return (error); 3666 error = sa6_embedscope(lin6, V_ip6_use_defzone); 3667 if (error) 3668 return (error); 3669 break; 3670 #endif 3671 #ifdef INET 3672 case AF_INET: 3673 fin = (struct sockaddr_in *)&addrs[0]; 3674 lin = (struct sockaddr_in *)&addrs[1]; 3675 if (fin->sin_len != sizeof(struct sockaddr_in) || 3676 lin->sin_len != sizeof(struct sockaddr_in)) 3677 return (EINVAL); 3678 break; 3679 #endif 3680 default: 3681 return (EINVAL); 3682 } 3683 NET_EPOCH_ENTER(et); 3684 switch (addrs[0].ss_family) { 3685 #ifdef INET6 3686 case AF_INET6: 3687 inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr, 3688 fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port, 3689 INPLOOKUP_WLOCKPCB, NULL); 3690 break; 3691 #endif 3692 #ifdef INET 3693 case AF_INET: 3694 inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port, 3695 lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL); 3696 break; 3697 #endif 3698 } 3699 if (inp != NULL) { 3700 if ((inp->inp_flags & INP_DROPPED) == 0 && 3701 !SOLISTENING(inp->inp_socket)) { 3702 tp = intotcpcb(inp); 3703 tp = tcp_drop(tp, ECONNABORTED); 3704 if (tp != NULL) 3705 INP_WUNLOCK(inp); 3706 } else 3707 INP_WUNLOCK(inp); 3708 } else 3709 error = ESRCH; 3710 NET_EPOCH_EXIT(et); 3711 return (error); 3712 } 3713 3714 SYSCTL_PROC(_net_inet_tcp, TCPCTL_DROP, drop, 3715 CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP | 3716 CTLFLAG_NEEDGIANT, NULL, 0, sysctl_drop, "", 3717 "Drop TCP connection"); 3718 3719 static int 3720 tcp_sysctl_setsockopt(SYSCTL_HANDLER_ARGS) 3721 { 3722 return (sysctl_setsockopt(oidp, arg1, arg2, req, &V_tcbinfo, 3723 &tcp_ctloutput_set)); 3724 } 3725 3726 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, setsockopt, 3727 CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP | 3728 CTLFLAG_MPSAFE, NULL, 0, tcp_sysctl_setsockopt, "", 3729 "Set socket option for TCP endpoint"); 3730 3731 #ifdef KERN_TLS 3732 static int 3733 sysctl_switch_tls(SYSCTL_HANDLER_ARGS) 3734 { 3735 /* addrs[0] is a foreign socket, addrs[1] is a local one. */ 3736 struct sockaddr_storage addrs[2]; 3737 struct inpcb *inp; 3738 #ifdef INET 3739 struct sockaddr_in *fin = NULL, *lin = NULL; 3740 #endif 3741 struct epoch_tracker et; 3742 #ifdef INET6 3743 struct sockaddr_in6 *fin6, *lin6; 3744 #endif 3745 int error; 3746 3747 inp = NULL; 3748 #ifdef INET6 3749 fin6 = lin6 = NULL; 3750 #endif 3751 error = 0; 3752 3753 if (req->oldptr != NULL || req->oldlen != 0) 3754 return (EINVAL); 3755 if (req->newptr == NULL) 3756 return (EPERM); 3757 if (req->newlen < sizeof(addrs)) 3758 return (ENOMEM); 3759 error = SYSCTL_IN(req, &addrs, sizeof(addrs)); 3760 if (error) 3761 return (error); 3762 3763 switch (addrs[0].ss_family) { 3764 #ifdef INET6 3765 case AF_INET6: 3766 fin6 = (struct sockaddr_in6 *)&addrs[0]; 3767 lin6 = (struct sockaddr_in6 *)&addrs[1]; 3768 if (fin6->sin6_len != sizeof(struct sockaddr_in6) || 3769 lin6->sin6_len != sizeof(struct sockaddr_in6)) 3770 return (EINVAL); 3771 if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) { 3772 if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr)) 3773 return (EINVAL); 3774 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]); 3775 in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]); 3776 #ifdef INET 3777 fin = (struct sockaddr_in *)&addrs[0]; 3778 lin = (struct sockaddr_in *)&addrs[1]; 3779 #endif 3780 break; 3781 } 3782 error = sa6_embedscope(fin6, V_ip6_use_defzone); 3783 if (error) 3784 return (error); 3785 error = sa6_embedscope(lin6, V_ip6_use_defzone); 3786 if (error) 3787 return (error); 3788 break; 3789 #endif 3790 #ifdef INET 3791 case AF_INET: 3792 fin = (struct sockaddr_in *)&addrs[0]; 3793 lin = (struct sockaddr_in *)&addrs[1]; 3794 if (fin->sin_len != sizeof(struct sockaddr_in) || 3795 lin->sin_len != sizeof(struct sockaddr_in)) 3796 return (EINVAL); 3797 break; 3798 #endif 3799 default: 3800 return (EINVAL); 3801 } 3802 NET_EPOCH_ENTER(et); 3803 switch (addrs[0].ss_family) { 3804 #ifdef INET6 3805 case AF_INET6: 3806 inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr, 3807 fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port, 3808 INPLOOKUP_WLOCKPCB, NULL); 3809 break; 3810 #endif 3811 #ifdef INET 3812 case AF_INET: 3813 inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port, 3814 lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL); 3815 break; 3816 #endif 3817 } 3818 NET_EPOCH_EXIT(et); 3819 if (inp != NULL) { 3820 if ((inp->inp_flags & INP_DROPPED) != 0 || 3821 inp->inp_socket == NULL) { 3822 error = ECONNRESET; 3823 INP_WUNLOCK(inp); 3824 } else { 3825 struct socket *so; 3826 3827 so = inp->inp_socket; 3828 soref(so); 3829 error = ktls_set_tx_mode(so, 3830 arg2 == 0 ? TCP_TLS_MODE_SW : TCP_TLS_MODE_IFNET); 3831 INP_WUNLOCK(inp); 3832 sorele(so); 3833 } 3834 } else 3835 error = ESRCH; 3836 return (error); 3837 } 3838 3839 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, switch_to_sw_tls, 3840 CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP | 3841 CTLFLAG_NEEDGIANT, NULL, 0, sysctl_switch_tls, "", 3842 "Switch TCP connection to SW TLS"); 3843 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, switch_to_ifnet_tls, 3844 CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP | 3845 CTLFLAG_NEEDGIANT, NULL, 1, sysctl_switch_tls, "", 3846 "Switch TCP connection to ifnet TLS"); 3847 #endif 3848 3849 /* 3850 * Generate a standardized TCP log line for use throughout the 3851 * tcp subsystem. Memory allocation is done with M_NOWAIT to 3852 * allow use in the interrupt context. 3853 * 3854 * NB: The caller MUST free(s, M_TCPLOG) the returned string. 3855 * NB: The function may return NULL if memory allocation failed. 3856 * 3857 * Due to header inclusion and ordering limitations the struct ip 3858 * and ip6_hdr pointers have to be passed as void pointers. 3859 */ 3860 char * 3861 tcp_log_vain(struct in_conninfo *inc, struct tcphdr *th, const void *ip4hdr, 3862 const void *ip6hdr) 3863 { 3864 3865 /* Is logging enabled? */ 3866 if (V_tcp_log_in_vain == 0) 3867 return (NULL); 3868 3869 return (tcp_log_addr(inc, th, ip4hdr, ip6hdr)); 3870 } 3871 3872 char * 3873 tcp_log_addrs(struct in_conninfo *inc, struct tcphdr *th, const void *ip4hdr, 3874 const void *ip6hdr) 3875 { 3876 3877 /* Is logging enabled? */ 3878 if (tcp_log_debug == 0) 3879 return (NULL); 3880 3881 return (tcp_log_addr(inc, th, ip4hdr, ip6hdr)); 3882 } 3883 3884 static char * 3885 tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th, const void *ip4hdr, 3886 const void *ip6hdr) 3887 { 3888 char *s, *sp; 3889 size_t size; 3890 #ifdef INET 3891 const struct ip *ip = (const struct ip *)ip4hdr; 3892 #endif 3893 #ifdef INET6 3894 const struct ip6_hdr *ip6 = (const struct ip6_hdr *)ip6hdr; 3895 #endif /* INET6 */ 3896 3897 /* 3898 * The log line looks like this: 3899 * "TCP: [1.2.3.4]:50332 to [1.2.3.4]:80 tcpflags 0x2<SYN>" 3900 */ 3901 size = sizeof("TCP: []:12345 to []:12345 tcpflags 0x2<>") + 3902 sizeof(PRINT_TH_FLAGS) + 1 + 3903 #ifdef INET6 3904 2 * INET6_ADDRSTRLEN; 3905 #else 3906 2 * INET_ADDRSTRLEN; 3907 #endif /* INET6 */ 3908 3909 s = malloc(size, M_TCPLOG, M_ZERO|M_NOWAIT); 3910 if (s == NULL) 3911 return (NULL); 3912 3913 strcat(s, "TCP: ["); 3914 sp = s + strlen(s); 3915 3916 if (inc && ((inc->inc_flags & INC_ISIPV6) == 0)) { 3917 inet_ntoa_r(inc->inc_faddr, sp); 3918 sp = s + strlen(s); 3919 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport)); 3920 sp = s + strlen(s); 3921 inet_ntoa_r(inc->inc_laddr, sp); 3922 sp = s + strlen(s); 3923 sprintf(sp, "]:%i", ntohs(inc->inc_lport)); 3924 #ifdef INET6 3925 } else if (inc) { 3926 ip6_sprintf(sp, &inc->inc6_faddr); 3927 sp = s + strlen(s); 3928 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport)); 3929 sp = s + strlen(s); 3930 ip6_sprintf(sp, &inc->inc6_laddr); 3931 sp = s + strlen(s); 3932 sprintf(sp, "]:%i", ntohs(inc->inc_lport)); 3933 } else if (ip6 && th) { 3934 ip6_sprintf(sp, &ip6->ip6_src); 3935 sp = s + strlen(s); 3936 sprintf(sp, "]:%i to [", ntohs(th->th_sport)); 3937 sp = s + strlen(s); 3938 ip6_sprintf(sp, &ip6->ip6_dst); 3939 sp = s + strlen(s); 3940 sprintf(sp, "]:%i", ntohs(th->th_dport)); 3941 #endif /* INET6 */ 3942 #ifdef INET 3943 } else if (ip && th) { 3944 inet_ntoa_r(ip->ip_src, sp); 3945 sp = s + strlen(s); 3946 sprintf(sp, "]:%i to [", ntohs(th->th_sport)); 3947 sp = s + strlen(s); 3948 inet_ntoa_r(ip->ip_dst, sp); 3949 sp = s + strlen(s); 3950 sprintf(sp, "]:%i", ntohs(th->th_dport)); 3951 #endif /* INET */ 3952 } else { 3953 free(s, M_TCPLOG); 3954 return (NULL); 3955 } 3956 sp = s + strlen(s); 3957 if (th) 3958 sprintf(sp, " tcpflags 0x%b", tcp_get_flags(th), PRINT_TH_FLAGS); 3959 if (*(s + size - 1) != '\0') 3960 panic("%s: string too long", __func__); 3961 return (s); 3962 } 3963 3964 /* 3965 * A subroutine which makes it easy to track TCP state changes with DTrace. 3966 * This function shouldn't be called for t_state initializations that don't 3967 * correspond to actual TCP state transitions. 3968 */ 3969 void 3970 tcp_state_change(struct tcpcb *tp, int newstate) 3971 { 3972 #if defined(KDTRACE_HOOKS) 3973 int pstate = tp->t_state; 3974 #endif 3975 3976 TCPSTATES_DEC(tp->t_state); 3977 TCPSTATES_INC(newstate); 3978 tp->t_state = newstate; 3979 TCP_PROBE6(state__change, NULL, tp, NULL, tp, NULL, pstate); 3980 } 3981 3982 /* 3983 * Create an external-format (``xtcpcb'') structure using the information in 3984 * the kernel-format tcpcb structure pointed to by tp. This is done to 3985 * reduce the spew of irrelevant information over this interface, to isolate 3986 * user code from changes in the kernel structure, and potentially to provide 3987 * information-hiding if we decide that some of this information should be 3988 * hidden from users. 3989 */ 3990 void 3991 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt) 3992 { 3993 struct tcpcb *tp = intotcpcb(inp); 3994 sbintime_t now; 3995 3996 bzero(xt, sizeof(*xt)); 3997 xt->t_state = tp->t_state; 3998 xt->t_logstate = tp->t_logstate; 3999 xt->t_flags = tp->t_flags; 4000 xt->t_sndzerowin = tp->t_sndzerowin; 4001 xt->t_sndrexmitpack = tp->t_sndrexmitpack; 4002 xt->t_rcvoopack = tp->t_rcvoopack; 4003 xt->t_rcv_wnd = tp->rcv_wnd; 4004 xt->t_snd_wnd = tp->snd_wnd; 4005 xt->t_snd_cwnd = tp->snd_cwnd; 4006 xt->t_snd_ssthresh = tp->snd_ssthresh; 4007 xt->t_dsack_bytes = tp->t_dsack_bytes; 4008 xt->t_dsack_tlp_bytes = tp->t_dsack_tlp_bytes; 4009 xt->t_dsack_pack = tp->t_dsack_pack; 4010 xt->t_maxseg = tp->t_maxseg; 4011 xt->xt_ecn = (tp->t_flags2 & TF2_ECN_PERMIT) ? 1 : 0 + 4012 (tp->t_flags2 & TF2_ACE_PERMIT) ? 2 : 0; 4013 4014 now = getsbinuptime(); 4015 #define COPYTIMER(ttt) do { \ 4016 if (callout_active(&tp->t_timers->ttt)) \ 4017 xt->ttt = (tp->t_timers->ttt.c_time - now) / \ 4018 SBT_1MS; \ 4019 else \ 4020 xt->ttt = 0; \ 4021 } while (0) 4022 COPYTIMER(tt_delack); 4023 COPYTIMER(tt_rexmt); 4024 COPYTIMER(tt_persist); 4025 COPYTIMER(tt_keep); 4026 COPYTIMER(tt_2msl); 4027 #undef COPYTIMER 4028 xt->t_rcvtime = 1000 * (ticks - tp->t_rcvtime) / hz; 4029 4030 xt->xt_encaps_port = tp->t_port; 4031 bcopy(tp->t_fb->tfb_tcp_block_name, xt->xt_stack, 4032 TCP_FUNCTION_NAME_LEN_MAX); 4033 bcopy(CC_ALGO(tp)->name, xt->xt_cc, TCP_CA_NAME_MAX); 4034 #ifdef TCP_BLACKBOX 4035 (void)tcp_log_get_id(tp, xt->xt_logid); 4036 #endif 4037 4038 xt->xt_len = sizeof(struct xtcpcb); 4039 in_pcbtoxinpcb(inp, &xt->xt_inp); 4040 if (inp->inp_socket == NULL) 4041 xt->xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; 4042 } 4043 4044 void 4045 tcp_log_end_status(struct tcpcb *tp, uint8_t status) 4046 { 4047 uint32_t bit, i; 4048 4049 if ((tp == NULL) || 4050 (status > TCP_EI_STATUS_MAX_VALUE) || 4051 (status == 0)) { 4052 /* Invalid */ 4053 return; 4054 } 4055 if (status > (sizeof(uint32_t) * 8)) { 4056 /* Should this be a KASSERT? */ 4057 return; 4058 } 4059 bit = 1U << (status - 1); 4060 if (bit & tp->t_end_info_status) { 4061 /* already logged */ 4062 return; 4063 } 4064 for (i = 0; i < TCP_END_BYTE_INFO; i++) { 4065 if (tp->t_end_info_bytes[i] == TCP_EI_EMPTY_SLOT) { 4066 tp->t_end_info_bytes[i] = status; 4067 tp->t_end_info_status |= bit; 4068 break; 4069 } 4070 } 4071 } 4072 4073 int 4074 tcp_can_enable_pacing(void) 4075 { 4076 4077 if ((tcp_pacing_limit == -1) || 4078 (tcp_pacing_limit > number_of_tcp_connections_pacing)) { 4079 atomic_fetchadd_int(&number_of_tcp_connections_pacing, 1); 4080 shadow_num_connections = number_of_tcp_connections_pacing; 4081 return (1); 4082 } else { 4083 return (0); 4084 } 4085 } 4086 4087 static uint8_t tcp_pacing_warning = 0; 4088 4089 void 4090 tcp_decrement_paced_conn(void) 4091 { 4092 uint32_t ret; 4093 4094 ret = atomic_fetchadd_int(&number_of_tcp_connections_pacing, -1); 4095 shadow_num_connections = number_of_tcp_connections_pacing; 4096 KASSERT(ret != 0, ("tcp_paced_connection_exits -1 would cause wrap?")); 4097 if (ret == 0) { 4098 if (tcp_pacing_limit != -1) { 4099 printf("Warning all pacing is now disabled, count decrements invalidly!\n"); 4100 tcp_pacing_limit = 0; 4101 } else if (tcp_pacing_warning == 0) { 4102 printf("Warning pacing count is invalid, invalid decrement\n"); 4103 tcp_pacing_warning = 1; 4104 } 4105 } 4106 } 4107