1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2001 McAfee, Inc. 5 * Copyright (c) 2006,2013 Andre Oppermann, Internet Business Solutions AG 6 * All rights reserved. 7 * 8 * This software was developed for the FreeBSD Project by Jonathan Lemon 9 * and McAfee Research, the Security Research Division of McAfee, Inc. under 10 * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the 11 * DARPA CHATS research program. [2001 McAfee, Inc.] 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 #include "opt_inet.h" 37 #include "opt_inet6.h" 38 #include "opt_ipsec.h" 39 40 #include <sys/param.h> 41 #include <sys/systm.h> 42 #include <sys/hash.h> 43 #include <sys/refcount.h> 44 #include <sys/kernel.h> 45 #include <sys/sysctl.h> 46 #include <sys/limits.h> 47 #include <sys/lock.h> 48 #include <sys/mutex.h> 49 #include <sys/malloc.h> 50 #include <sys/mbuf.h> 51 #include <sys/proc.h> /* for proc0 declaration */ 52 #include <sys/random.h> 53 #include <sys/socket.h> 54 #include <sys/socketvar.h> 55 #include <sys/syslog.h> 56 #include <sys/ucred.h> 57 58 #include <sys/md5.h> 59 #include <crypto/siphash/siphash.h> 60 61 #include <vm/uma.h> 62 63 #include <net/if.h> 64 #include <net/if_var.h> 65 #include <net/route.h> 66 #include <net/vnet.h> 67 68 #include <netinet/in.h> 69 #include <netinet/in_kdtrace.h> 70 #include <netinet/in_systm.h> 71 #include <netinet/ip.h> 72 #include <netinet/in_var.h> 73 #include <netinet/in_pcb.h> 74 #include <netinet/ip_var.h> 75 #include <netinet/ip_options.h> 76 #ifdef INET6 77 #include <netinet/ip6.h> 78 #include <netinet/icmp6.h> 79 #include <netinet6/nd6.h> 80 #include <netinet6/ip6_var.h> 81 #include <netinet6/in6_pcb.h> 82 #endif 83 #include <netinet/tcp.h> 84 #include <netinet/tcp_fastopen.h> 85 #include <netinet/tcp_fsm.h> 86 #include <netinet/tcp_seq.h> 87 #include <netinet/tcp_timer.h> 88 #include <netinet/tcp_var.h> 89 #include <netinet/tcp_syncache.h> 90 #include <netinet/tcp_ecn.h> 91 #ifdef TCP_BLACKBOX 92 #include <netinet/tcp_log_buf.h> 93 #endif 94 #ifdef TCP_OFFLOAD 95 #include <netinet/toecore.h> 96 #endif 97 #include <netinet/udp.h> 98 99 #include <netipsec/ipsec_support.h> 100 101 #include <machine/in_cksum.h> 102 103 #include <security/mac/mac_framework.h> 104 105 VNET_DEFINE_STATIC(int, tcp_syncookies) = 1; 106 #define V_tcp_syncookies VNET(tcp_syncookies) 107 SYSCTL_INT(_net_inet_tcp, OID_AUTO, syncookies, CTLFLAG_VNET | CTLFLAG_RW, 108 &VNET_NAME(tcp_syncookies), 0, 109 "Use TCP SYN cookies if the syncache overflows"); 110 111 VNET_DEFINE_STATIC(int, tcp_syncookiesonly) = 0; 112 #define V_tcp_syncookiesonly VNET(tcp_syncookiesonly) 113 SYSCTL_INT(_net_inet_tcp, OID_AUTO, syncookies_only, CTLFLAG_VNET | CTLFLAG_RW, 114 &VNET_NAME(tcp_syncookiesonly), 0, 115 "Use only TCP SYN cookies"); 116 117 VNET_DEFINE_STATIC(int, functions_inherit_listen_socket_stack) = 1; 118 #define V_functions_inherit_listen_socket_stack \ 119 VNET(functions_inherit_listen_socket_stack) 120 SYSCTL_INT(_net_inet_tcp, OID_AUTO, functions_inherit_listen_socket_stack, 121 CTLFLAG_VNET | CTLFLAG_RW, 122 &VNET_NAME(functions_inherit_listen_socket_stack), 0, 123 "Inherit listen socket's stack"); 124 125 #ifdef TCP_OFFLOAD 126 #define ADDED_BY_TOE(sc) ((sc)->sc_tod != NULL) 127 #endif 128 129 static void syncache_drop(struct syncache *, struct syncache_head *); 130 static void syncache_free(struct syncache *); 131 static void syncache_insert(struct syncache *, struct syncache_head *); 132 static int syncache_respond(struct syncache *, const struct mbuf *, int); 133 static struct socket *syncache_socket(struct syncache *, struct socket *, 134 struct mbuf *m); 135 static void syncache_timeout(struct syncache *sc, struct syncache_head *sch, 136 int docallout); 137 static void syncache_timer(void *); 138 139 static uint32_t syncookie_mac(struct in_conninfo *, tcp_seq, uint8_t, 140 uint8_t *, uintptr_t); 141 static tcp_seq syncookie_generate(struct syncache_head *, struct syncache *); 142 static struct syncache 143 *syncookie_lookup(struct in_conninfo *, struct syncache_head *, 144 struct syncache *, struct tcphdr *, struct tcpopt *, 145 struct socket *, uint16_t); 146 static void syncache_pause(struct in_conninfo *); 147 static void syncache_unpause(void *); 148 static void syncookie_reseed(void *); 149 #ifdef INVARIANTS 150 static int syncookie_cmp(struct in_conninfo *inc, struct syncache_head *sch, 151 struct syncache *sc, struct tcphdr *th, struct tcpopt *to, 152 struct socket *lso, uint16_t port); 153 #endif 154 155 /* 156 * Transmit the SYN,ACK fewer times than TCP_MAXRXTSHIFT specifies. 157 * 3 retransmits corresponds to a timeout with default values of 158 * tcp_rexmit_initial * ( 1 + 159 * tcp_backoff[1] + 160 * tcp_backoff[2] + 161 * tcp_backoff[3]) + 3 * tcp_rexmit_slop, 162 * 1000 ms * (1 + 2 + 4 + 8) + 3 * 200 ms = 15600 ms, 163 * the odds are that the user has given up attempting to connect by then. 164 */ 165 #define SYNCACHE_MAXREXMTS 3 166 167 /* Arbitrary values */ 168 #define TCP_SYNCACHE_HASHSIZE 512 169 #define TCP_SYNCACHE_BUCKETLIMIT 30 170 171 VNET_DEFINE_STATIC(struct tcp_syncache, tcp_syncache); 172 #define V_tcp_syncache VNET(tcp_syncache) 173 174 static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, syncache, 175 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 176 "TCP SYN cache"); 177 178 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, bucketlimit, CTLFLAG_VNET | CTLFLAG_RDTUN, 179 &VNET_NAME(tcp_syncache.bucket_limit), 0, 180 "Per-bucket hash limit for syncache"); 181 182 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, cachelimit, CTLFLAG_VNET | CTLFLAG_RDTUN, 183 &VNET_NAME(tcp_syncache.cache_limit), 0, 184 "Overall entry limit for syncache"); 185 186 SYSCTL_UMA_CUR(_net_inet_tcp_syncache, OID_AUTO, count, CTLFLAG_VNET, 187 &VNET_NAME(tcp_syncache.zone), "Current number of entries in syncache"); 188 189 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, hashsize, CTLFLAG_VNET | CTLFLAG_RDTUN, 190 &VNET_NAME(tcp_syncache.hashsize), 0, 191 "Size of TCP syncache hashtable"); 192 193 SYSCTL_BOOL(_net_inet_tcp_syncache, OID_AUTO, see_other, CTLFLAG_VNET | 194 CTLFLAG_RW, &VNET_NAME(tcp_syncache.see_other), 0, 195 "All syncache(4) entries are visible, ignoring UID/GID, jail(2) " 196 "and mac(4) checks"); 197 198 static int 199 sysctl_net_inet_tcp_syncache_rexmtlimit_check(SYSCTL_HANDLER_ARGS) 200 { 201 int error; 202 u_int new; 203 204 new = V_tcp_syncache.rexmt_limit; 205 error = sysctl_handle_int(oidp, &new, 0, req); 206 if ((error == 0) && (req->newptr != NULL)) { 207 if (new > TCP_MAXRXTSHIFT) 208 error = EINVAL; 209 else 210 V_tcp_syncache.rexmt_limit = new; 211 } 212 return (error); 213 } 214 215 SYSCTL_PROC(_net_inet_tcp_syncache, OID_AUTO, rexmtlimit, 216 CTLFLAG_VNET | CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 217 &VNET_NAME(tcp_syncache.rexmt_limit), 0, 218 sysctl_net_inet_tcp_syncache_rexmtlimit_check, "UI", 219 "Limit on SYN/ACK retransmissions"); 220 221 VNET_DEFINE(int, tcp_sc_rst_sock_fail) = 1; 222 SYSCTL_INT(_net_inet_tcp_syncache, OID_AUTO, rst_on_sock_fail, 223 CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(tcp_sc_rst_sock_fail), 0, 224 "Send reset on socket allocation failure"); 225 226 static MALLOC_DEFINE(M_SYNCACHE, "syncache", "TCP syncache"); 227 228 #define SCH_LOCK(sch) mtx_lock(&(sch)->sch_mtx) 229 #define SCH_UNLOCK(sch) mtx_unlock(&(sch)->sch_mtx) 230 #define SCH_LOCK_ASSERT(sch) mtx_assert(&(sch)->sch_mtx, MA_OWNED) 231 232 /* 233 * Requires the syncache entry to be already removed from the bucket list. 234 */ 235 static void 236 syncache_free(struct syncache *sc) 237 { 238 239 if (sc->sc_ipopts) 240 (void) m_free(sc->sc_ipopts); 241 if (sc->sc_cred) 242 crfree(sc->sc_cred); 243 #ifdef MAC 244 mac_syncache_destroy(&sc->sc_label); 245 #endif 246 247 uma_zfree(V_tcp_syncache.zone, sc); 248 } 249 250 void 251 syncache_init(void) 252 { 253 int i; 254 255 V_tcp_syncache.hashsize = TCP_SYNCACHE_HASHSIZE; 256 V_tcp_syncache.bucket_limit = TCP_SYNCACHE_BUCKETLIMIT; 257 V_tcp_syncache.rexmt_limit = SYNCACHE_MAXREXMTS; 258 V_tcp_syncache.hash_secret = arc4random(); 259 260 TUNABLE_INT_FETCH("net.inet.tcp.syncache.hashsize", 261 &V_tcp_syncache.hashsize); 262 TUNABLE_INT_FETCH("net.inet.tcp.syncache.bucketlimit", 263 &V_tcp_syncache.bucket_limit); 264 if (!powerof2(V_tcp_syncache.hashsize) || 265 V_tcp_syncache.hashsize == 0) { 266 printf("WARNING: syncache hash size is not a power of 2.\n"); 267 V_tcp_syncache.hashsize = TCP_SYNCACHE_HASHSIZE; 268 } 269 V_tcp_syncache.hashmask = V_tcp_syncache.hashsize - 1; 270 271 /* Set limits. */ 272 V_tcp_syncache.cache_limit = 273 V_tcp_syncache.hashsize * V_tcp_syncache.bucket_limit; 274 TUNABLE_INT_FETCH("net.inet.tcp.syncache.cachelimit", 275 &V_tcp_syncache.cache_limit); 276 277 /* Allocate the hash table. */ 278 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize * 279 sizeof(struct syncache_head), M_SYNCACHE, M_WAITOK | M_ZERO); 280 281 #ifdef VIMAGE 282 V_tcp_syncache.vnet = curvnet; 283 #endif 284 285 /* Initialize the hash buckets. */ 286 for (i = 0; i < V_tcp_syncache.hashsize; i++) { 287 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket); 288 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head", 289 NULL, MTX_DEF); 290 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer, 291 &V_tcp_syncache.hashbase[i].sch_mtx, 0); 292 V_tcp_syncache.hashbase[i].sch_length = 0; 293 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache; 294 V_tcp_syncache.hashbase[i].sch_last_overflow = 295 -(SYNCOOKIE_LIFETIME + 1); 296 } 297 298 /* Create the syncache entry zone. */ 299 V_tcp_syncache.zone = uma_zcreate("syncache", sizeof(struct syncache), 300 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 301 V_tcp_syncache.cache_limit = uma_zone_set_max(V_tcp_syncache.zone, 302 V_tcp_syncache.cache_limit); 303 304 /* Start the SYN cookie reseeder callout. */ 305 callout_init(&V_tcp_syncache.secret.reseed, 1); 306 arc4rand(V_tcp_syncache.secret.key[0], SYNCOOKIE_SECRET_SIZE, 0); 307 arc4rand(V_tcp_syncache.secret.key[1], SYNCOOKIE_SECRET_SIZE, 0); 308 callout_reset(&V_tcp_syncache.secret.reseed, SYNCOOKIE_LIFETIME * hz, 309 syncookie_reseed, &V_tcp_syncache); 310 311 /* Initialize the pause machinery. */ 312 mtx_init(&V_tcp_syncache.pause_mtx, "tcp_sc_pause", NULL, MTX_DEF); 313 callout_init_mtx(&V_tcp_syncache.pause_co, &V_tcp_syncache.pause_mtx, 314 0); 315 V_tcp_syncache.pause_until = time_uptime - TCP_SYNCACHE_PAUSE_TIME; 316 V_tcp_syncache.pause_backoff = 0; 317 V_tcp_syncache.paused = false; 318 } 319 320 #ifdef VIMAGE 321 void 322 syncache_destroy(void) 323 { 324 struct syncache_head *sch; 325 struct syncache *sc, *nsc; 326 int i; 327 328 /* 329 * Stop the re-seed timer before freeing resources. No need to 330 * possibly schedule it another time. 331 */ 332 callout_drain(&V_tcp_syncache.secret.reseed); 333 334 /* Stop the SYN cache pause callout. */ 335 mtx_lock(&V_tcp_syncache.pause_mtx); 336 if (callout_stop(&V_tcp_syncache.pause_co) == 0) { 337 mtx_unlock(&V_tcp_syncache.pause_mtx); 338 callout_drain(&V_tcp_syncache.pause_co); 339 } else 340 mtx_unlock(&V_tcp_syncache.pause_mtx); 341 342 /* Cleanup hash buckets: stop timers, free entries, destroy locks. */ 343 for (i = 0; i < V_tcp_syncache.hashsize; i++) { 344 sch = &V_tcp_syncache.hashbase[i]; 345 callout_drain(&sch->sch_timer); 346 347 SCH_LOCK(sch); 348 TAILQ_FOREACH_SAFE(sc, &sch->sch_bucket, sc_hash, nsc) 349 syncache_drop(sc, sch); 350 SCH_UNLOCK(sch); 351 KASSERT(TAILQ_EMPTY(&sch->sch_bucket), 352 ("%s: sch->sch_bucket not empty", __func__)); 353 KASSERT(sch->sch_length == 0, ("%s: sch->sch_length %d not 0", 354 __func__, sch->sch_length)); 355 mtx_destroy(&sch->sch_mtx); 356 } 357 358 KASSERT(uma_zone_get_cur(V_tcp_syncache.zone) == 0, 359 ("%s: cache_count not 0", __func__)); 360 361 /* Free the allocated global resources. */ 362 uma_zdestroy(V_tcp_syncache.zone); 363 free(V_tcp_syncache.hashbase, M_SYNCACHE); 364 mtx_destroy(&V_tcp_syncache.pause_mtx); 365 } 366 #endif 367 368 /* 369 * Inserts a syncache entry into the specified bucket row. 370 * Locks and unlocks the syncache_head autonomously. 371 */ 372 static void 373 syncache_insert(struct syncache *sc, struct syncache_head *sch) 374 { 375 struct syncache *sc2; 376 377 SCH_LOCK(sch); 378 379 /* 380 * Make sure that we don't overflow the per-bucket limit. 381 * If the bucket is full, toss the oldest element. 382 */ 383 if (sch->sch_length >= V_tcp_syncache.bucket_limit) { 384 KASSERT(!TAILQ_EMPTY(&sch->sch_bucket), 385 ("sch->sch_length incorrect")); 386 syncache_pause(&sc->sc_inc); 387 sc2 = TAILQ_LAST(&sch->sch_bucket, sch_head); 388 sch->sch_last_overflow = time_uptime; 389 syncache_drop(sc2, sch); 390 } 391 392 /* Put it into the bucket. */ 393 TAILQ_INSERT_HEAD(&sch->sch_bucket, sc, sc_hash); 394 sch->sch_length++; 395 396 #ifdef TCP_OFFLOAD 397 if (ADDED_BY_TOE(sc)) { 398 struct toedev *tod = sc->sc_tod; 399 400 tod->tod_syncache_added(tod, sc->sc_todctx); 401 } 402 #endif 403 404 /* Reinitialize the bucket row's timer. */ 405 if (sch->sch_length == 1) 406 sch->sch_nextc = ticks + INT_MAX; 407 syncache_timeout(sc, sch, 1); 408 409 SCH_UNLOCK(sch); 410 411 TCPSTATES_INC(TCPS_SYN_RECEIVED); 412 TCPSTAT_INC(tcps_sc_added); 413 } 414 415 /* 416 * Remove and free entry from syncache bucket row. 417 * Expects locked syncache head. 418 */ 419 static void 420 syncache_drop(struct syncache *sc, struct syncache_head *sch) 421 { 422 423 SCH_LOCK_ASSERT(sch); 424 425 TCPSTATES_DEC(TCPS_SYN_RECEIVED); 426 TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash); 427 sch->sch_length--; 428 429 #ifdef TCP_OFFLOAD 430 if (ADDED_BY_TOE(sc)) { 431 struct toedev *tod = sc->sc_tod; 432 433 tod->tod_syncache_removed(tod, sc->sc_todctx); 434 } 435 #endif 436 437 syncache_free(sc); 438 } 439 440 /* 441 * Engage/reengage time on bucket row. 442 */ 443 static void 444 syncache_timeout(struct syncache *sc, struct syncache_head *sch, int docallout) 445 { 446 int rexmt; 447 448 if (sc->sc_rxmits == 0) 449 rexmt = tcp_rexmit_initial; 450 else 451 TCPT_RANGESET(rexmt, 452 tcp_rexmit_initial * tcp_backoff[sc->sc_rxmits], 453 tcp_rexmit_min, TCPTV_REXMTMAX); 454 sc->sc_rxttime = ticks + rexmt; 455 sc->sc_rxmits++; 456 if (TSTMP_LT(sc->sc_rxttime, sch->sch_nextc)) { 457 sch->sch_nextc = sc->sc_rxttime; 458 if (docallout) 459 callout_reset(&sch->sch_timer, sch->sch_nextc - ticks, 460 syncache_timer, (void *)sch); 461 } 462 } 463 464 /* 465 * Walk the timer queues, looking for SYN,ACKs that need to be retransmitted. 466 * If we have retransmitted an entry the maximum number of times, expire it. 467 * One separate timer for each bucket row. 468 */ 469 static void 470 syncache_timer(void *xsch) 471 { 472 struct syncache_head *sch = (struct syncache_head *)xsch; 473 struct syncache *sc, *nsc; 474 struct epoch_tracker et; 475 int tick = ticks; 476 char *s; 477 bool paused; 478 479 CURVNET_SET(sch->sch_sc->vnet); 480 481 /* NB: syncache_head has already been locked by the callout. */ 482 SCH_LOCK_ASSERT(sch); 483 484 /* 485 * In the following cycle we may remove some entries and/or 486 * advance some timeouts, so re-initialize the bucket timer. 487 */ 488 sch->sch_nextc = tick + INT_MAX; 489 490 /* 491 * If we have paused processing, unconditionally remove 492 * all syncache entries. 493 */ 494 mtx_lock(&V_tcp_syncache.pause_mtx); 495 paused = V_tcp_syncache.paused; 496 mtx_unlock(&V_tcp_syncache.pause_mtx); 497 498 TAILQ_FOREACH_SAFE(sc, &sch->sch_bucket, sc_hash, nsc) { 499 if (paused) { 500 syncache_drop(sc, sch); 501 continue; 502 } 503 /* 504 * We do not check if the listen socket still exists 505 * and accept the case where the listen socket may be 506 * gone by the time we resend the SYN/ACK. We do 507 * not expect this to happens often. If it does, 508 * then the RST will be sent by the time the remote 509 * host does the SYN/ACK->ACK. 510 */ 511 if (TSTMP_GT(sc->sc_rxttime, tick)) { 512 if (TSTMP_LT(sc->sc_rxttime, sch->sch_nextc)) 513 sch->sch_nextc = sc->sc_rxttime; 514 continue; 515 } 516 if (sc->sc_rxmits > V_tcp_ecn_maxretries) { 517 sc->sc_flags &= ~SCF_ECN_MASK; 518 } 519 if (sc->sc_rxmits > V_tcp_syncache.rexmt_limit) { 520 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) { 521 log(LOG_DEBUG, "%s; %s: Retransmits exhausted, " 522 "giving up and removing syncache entry\n", 523 s, __func__); 524 free(s, M_TCPLOG); 525 } 526 syncache_drop(sc, sch); 527 TCPSTAT_INC(tcps_sc_stale); 528 continue; 529 } 530 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) { 531 log(LOG_DEBUG, "%s; %s: Response timeout, " 532 "retransmitting (%u) SYN|ACK\n", 533 s, __func__, sc->sc_rxmits); 534 free(s, M_TCPLOG); 535 } 536 537 NET_EPOCH_ENTER(et); 538 syncache_respond(sc, NULL, TH_SYN|TH_ACK); 539 NET_EPOCH_EXIT(et); 540 TCPSTAT_INC(tcps_sc_retransmitted); 541 syncache_timeout(sc, sch, 0); 542 } 543 if (!TAILQ_EMPTY(&(sch)->sch_bucket)) 544 callout_reset(&(sch)->sch_timer, (sch)->sch_nextc - tick, 545 syncache_timer, (void *)(sch)); 546 CURVNET_RESTORE(); 547 } 548 549 /* 550 * Returns true if the system is only using cookies at the moment. 551 * This could be due to a sysadmin decision to only use cookies, or it 552 * could be due to the system detecting an attack. 553 */ 554 static inline bool 555 syncache_cookiesonly(void) 556 { 557 558 return (V_tcp_syncookies && (V_tcp_syncache.paused || 559 V_tcp_syncookiesonly)); 560 } 561 562 /* 563 * Find the hash bucket for the given connection. 564 */ 565 static struct syncache_head * 566 syncache_hashbucket(struct in_conninfo *inc) 567 { 568 uint32_t hash; 569 570 /* 571 * The hash is built on foreign port + local port + foreign address. 572 * We rely on the fact that struct in_conninfo starts with 16 bits 573 * of foreign port, then 16 bits of local port then followed by 128 574 * bits of foreign address. In case of IPv4 address, the first 3 575 * 32-bit words of the address always are zeroes. 576 */ 577 hash = jenkins_hash32((uint32_t *)&inc->inc_ie, 5, 578 V_tcp_syncache.hash_secret) & V_tcp_syncache.hashmask; 579 580 return (&V_tcp_syncache.hashbase[hash]); 581 } 582 583 /* 584 * Find an entry in the syncache. 585 * Returns always with locked syncache_head plus a matching entry or NULL. 586 */ 587 static struct syncache * 588 syncache_lookup(struct in_conninfo *inc, struct syncache_head **schp) 589 { 590 struct syncache *sc; 591 struct syncache_head *sch; 592 593 *schp = sch = syncache_hashbucket(inc); 594 SCH_LOCK(sch); 595 596 /* Circle through bucket row to find matching entry. */ 597 TAILQ_FOREACH(sc, &sch->sch_bucket, sc_hash) 598 if (bcmp(&inc->inc_ie, &sc->sc_inc.inc_ie, 599 sizeof(struct in_endpoints)) == 0) 600 break; 601 602 return (sc); /* Always returns with locked sch. */ 603 } 604 605 /* 606 * This function is called when we get a RST for a 607 * non-existent connection, so that we can see if the 608 * connection is in the syn cache. If it is, zap it. 609 * If required send a challenge ACK. 610 */ 611 void 612 syncache_chkrst(struct in_conninfo *inc, struct tcphdr *th, struct mbuf *m, 613 uint16_t port) 614 { 615 struct syncache *sc; 616 struct syncache_head *sch; 617 char *s = NULL; 618 619 if (syncache_cookiesonly()) 620 return; 621 sc = syncache_lookup(inc, &sch); /* returns locked sch */ 622 SCH_LOCK_ASSERT(sch); 623 624 /* 625 * No corresponding connection was found in syncache. 626 * If syncookies are enabled and possibly exclusively 627 * used, or we are under memory pressure, a valid RST 628 * may not find a syncache entry. In that case we're 629 * done and no SYN|ACK retransmissions will happen. 630 * Otherwise the RST was misdirected or spoofed. 631 */ 632 if (sc == NULL) { 633 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 634 log(LOG_DEBUG, "%s; %s: Spurious RST without matching " 635 "syncache entry (possibly syncookie only), " 636 "segment ignored\n", s, __func__); 637 TCPSTAT_INC(tcps_badrst); 638 goto done; 639 } 640 641 /* The remote UDP encaps port does not match. */ 642 if (sc->sc_port != port) { 643 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 644 log(LOG_DEBUG, "%s; %s: Spurious RST with matching " 645 "syncache entry but non-matching UDP encaps port, " 646 "segment ignored\n", s, __func__); 647 TCPSTAT_INC(tcps_badrst); 648 goto done; 649 } 650 651 /* 652 * If the RST bit is set, check the sequence number to see 653 * if this is a valid reset segment. 654 * 655 * RFC 793 page 37: 656 * In all states except SYN-SENT, all reset (RST) segments 657 * are validated by checking their SEQ-fields. A reset is 658 * valid if its sequence number is in the window. 659 * 660 * RFC 793 page 69: 661 * There are four cases for the acceptability test for an incoming 662 * segment: 663 * 664 * Segment Receive Test 665 * Length Window 666 * ------- ------- ------------------------------------------- 667 * 0 0 SEG.SEQ = RCV.NXT 668 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND 669 * >0 0 not acceptable 670 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND 671 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND 672 * 673 * Note that when receiving a SYN segment in the LISTEN state, 674 * IRS is set to SEG.SEQ and RCV.NXT is set to SEG.SEQ+1, as 675 * described in RFC 793, page 66. 676 */ 677 if ((SEQ_GEQ(th->th_seq, sc->sc_irs + 1) && 678 SEQ_LT(th->th_seq, sc->sc_irs + 1 + sc->sc_wnd)) || 679 (sc->sc_wnd == 0 && th->th_seq == sc->sc_irs + 1)) { 680 if (V_tcp_insecure_rst || 681 th->th_seq == sc->sc_irs + 1) { 682 syncache_drop(sc, sch); 683 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 684 log(LOG_DEBUG, 685 "%s; %s: Our SYN|ACK was rejected, " 686 "connection attempt aborted by remote " 687 "endpoint\n", 688 s, __func__); 689 TCPSTAT_INC(tcps_sc_reset); 690 } else { 691 TCPSTAT_INC(tcps_badrst); 692 /* Send challenge ACK. */ 693 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 694 log(LOG_DEBUG, "%s; %s: RST with invalid " 695 " SEQ %u != NXT %u (+WND %u), " 696 "sending challenge ACK\n", 697 s, __func__, 698 th->th_seq, sc->sc_irs + 1, sc->sc_wnd); 699 syncache_respond(sc, m, TH_ACK); 700 } 701 } else { 702 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 703 log(LOG_DEBUG, "%s; %s: RST with invalid SEQ %u != " 704 "NXT %u (+WND %u), segment ignored\n", 705 s, __func__, 706 th->th_seq, sc->sc_irs + 1, sc->sc_wnd); 707 TCPSTAT_INC(tcps_badrst); 708 } 709 710 done: 711 if (s != NULL) 712 free(s, M_TCPLOG); 713 SCH_UNLOCK(sch); 714 } 715 716 void 717 syncache_badack(struct in_conninfo *inc, uint16_t port) 718 { 719 struct syncache *sc; 720 struct syncache_head *sch; 721 722 if (syncache_cookiesonly()) 723 return; 724 sc = syncache_lookup(inc, &sch); /* returns locked sch */ 725 SCH_LOCK_ASSERT(sch); 726 if ((sc != NULL) && (sc->sc_port == port)) { 727 syncache_drop(sc, sch); 728 TCPSTAT_INC(tcps_sc_badack); 729 } 730 SCH_UNLOCK(sch); 731 } 732 733 void 734 syncache_unreach(struct in_conninfo *inc, tcp_seq th_seq, uint16_t port) 735 { 736 struct syncache *sc; 737 struct syncache_head *sch; 738 739 if (syncache_cookiesonly()) 740 return; 741 sc = syncache_lookup(inc, &sch); /* returns locked sch */ 742 SCH_LOCK_ASSERT(sch); 743 if (sc == NULL) 744 goto done; 745 746 /* If the port != sc_port, then it's a bogus ICMP msg */ 747 if (port != sc->sc_port) 748 goto done; 749 750 /* If the sequence number != sc_iss, then it's a bogus ICMP msg */ 751 if (ntohl(th_seq) != sc->sc_iss) 752 goto done; 753 754 /* 755 * If we've rertransmitted 3 times and this is our second error, 756 * we remove the entry. Otherwise, we allow it to continue on. 757 * This prevents us from incorrectly nuking an entry during a 758 * spurious network outage. 759 * 760 * See tcp_notify(). 761 */ 762 if ((sc->sc_flags & SCF_UNREACH) == 0 || sc->sc_rxmits < 3 + 1) { 763 sc->sc_flags |= SCF_UNREACH; 764 goto done; 765 } 766 syncache_drop(sc, sch); 767 TCPSTAT_INC(tcps_sc_unreach); 768 done: 769 SCH_UNLOCK(sch); 770 } 771 772 /* 773 * Build a new TCP socket structure from a syncache entry. 774 * 775 * On success return the newly created socket with its underlying inp locked. 776 */ 777 static struct socket * 778 syncache_socket(struct syncache *sc, struct socket *lso, struct mbuf *m) 779 { 780 struct tcp_function_block *blk; 781 struct inpcb *inp = NULL; 782 struct socket *so; 783 struct tcpcb *tp; 784 int error; 785 char *s; 786 787 NET_EPOCH_ASSERT(); 788 789 /* 790 * Ok, create the full blown connection, and set things up 791 * as they would have been set up if we had created the 792 * connection when the SYN arrived. 793 */ 794 if ((so = solisten_clone(lso)) == NULL) 795 goto allocfail; 796 #ifdef MAC 797 mac_socketpeer_set_from_mbuf(m, so); 798 #endif 799 error = in_pcballoc(so, &V_tcbinfo); 800 if (error) { 801 sodealloc(so); 802 goto allocfail; 803 } 804 inp = sotoinpcb(so); 805 if ((tp = tcp_newtcpcb(inp)) == NULL) { 806 in_pcbfree(inp); 807 sodealloc(so); 808 goto allocfail; 809 } 810 inp->inp_inc.inc_flags = sc->sc_inc.inc_flags; 811 #ifdef INET6 812 if (sc->sc_inc.inc_flags & INC_ISIPV6) { 813 inp->inp_vflag &= ~INP_IPV4; 814 inp->inp_vflag |= INP_IPV6; 815 inp->in6p_laddr = sc->sc_inc.inc6_laddr; 816 } else { 817 inp->inp_vflag &= ~INP_IPV6; 818 inp->inp_vflag |= INP_IPV4; 819 #endif 820 inp->inp_ip_ttl = sc->sc_ip_ttl; 821 inp->inp_ip_tos = sc->sc_ip_tos; 822 inp->inp_laddr = sc->sc_inc.inc_laddr; 823 #ifdef INET6 824 } 825 #endif 826 827 /* 828 * If there's an mbuf and it has a flowid, then let's initialise the 829 * inp with that particular flowid. 830 */ 831 if (m != NULL && M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) { 832 inp->inp_flowid = m->m_pkthdr.flowid; 833 inp->inp_flowtype = M_HASHTYPE_GET(m); 834 #ifdef NUMA 835 inp->inp_numa_domain = m->m_pkthdr.numa_domain; 836 #endif 837 } 838 839 inp->inp_lport = sc->sc_inc.inc_lport; 840 #ifdef INET6 841 if (inp->inp_vflag & INP_IPV6PROTO) { 842 struct inpcb *oinp = sotoinpcb(lso); 843 844 /* 845 * Inherit socket options from the listening socket. 846 * Note that in6p_inputopts are not (and should not be) 847 * copied, since it stores previously received options and is 848 * used to detect if each new option is different than the 849 * previous one and hence should be passed to a user. 850 * If we copied in6p_inputopts, a user would not be able to 851 * receive options just after calling the accept system call. 852 */ 853 inp->inp_flags |= oinp->inp_flags & INP_CONTROLOPTS; 854 if (oinp->in6p_outputopts) 855 inp->in6p_outputopts = 856 ip6_copypktopts(oinp->in6p_outputopts, M_NOWAIT); 857 inp->in6p_hops = oinp->in6p_hops; 858 } 859 860 if (sc->sc_inc.inc_flags & INC_ISIPV6) { 861 struct sockaddr_in6 sin6; 862 863 sin6.sin6_family = AF_INET6; 864 sin6.sin6_len = sizeof(sin6); 865 sin6.sin6_addr = sc->sc_inc.inc6_faddr; 866 sin6.sin6_port = sc->sc_inc.inc_fport; 867 sin6.sin6_flowinfo = sin6.sin6_scope_id = 0; 868 INP_HASH_WLOCK(&V_tcbinfo); 869 error = in6_pcbconnect(inp, &sin6, thread0.td_ucred, false); 870 INP_HASH_WUNLOCK(&V_tcbinfo); 871 if (error != 0) 872 goto abort; 873 /* Override flowlabel from in6_pcbconnect. */ 874 inp->inp_flow &= ~IPV6_FLOWLABEL_MASK; 875 inp->inp_flow |= sc->sc_flowlabel; 876 } 877 #endif /* INET6 */ 878 #if defined(INET) && defined(INET6) 879 else 880 #endif 881 #ifdef INET 882 { 883 struct sockaddr_in sin; 884 885 inp->inp_options = (m) ? ip_srcroute(m) : NULL; 886 887 if (inp->inp_options == NULL) { 888 inp->inp_options = sc->sc_ipopts; 889 sc->sc_ipopts = NULL; 890 } 891 892 sin.sin_family = AF_INET; 893 sin.sin_len = sizeof(sin); 894 sin.sin_addr = sc->sc_inc.inc_faddr; 895 sin.sin_port = sc->sc_inc.inc_fport; 896 bzero((caddr_t)sin.sin_zero, sizeof(sin.sin_zero)); 897 INP_HASH_WLOCK(&V_tcbinfo); 898 error = in_pcbconnect(inp, &sin, thread0.td_ucred, false); 899 INP_HASH_WUNLOCK(&V_tcbinfo); 900 if (error != 0) 901 goto abort; 902 } 903 #endif /* INET */ 904 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 905 /* Copy old policy into new socket's. */ 906 if (ipsec_copy_pcbpolicy(sotoinpcb(lso), inp) != 0) 907 printf("syncache_socket: could not copy policy\n"); 908 #endif 909 tp->t_state = TCPS_SYN_RECEIVED; 910 tp->iss = sc->sc_iss; 911 tp->irs = sc->sc_irs; 912 tp->t_port = sc->sc_port; 913 tcp_rcvseqinit(tp); 914 tcp_sendseqinit(tp); 915 blk = sototcpcb(lso)->t_fb; 916 if (V_functions_inherit_listen_socket_stack && blk != tp->t_fb) { 917 /* 918 * Our parents t_fb was not the default, 919 * we need to release our ref on tp->t_fb and 920 * pickup one on the new entry. 921 */ 922 struct tcp_function_block *rblk; 923 void *ptr = NULL; 924 925 rblk = find_and_ref_tcp_fb(blk); 926 KASSERT(rblk != NULL, 927 ("cannot find blk %p out of syncache?", blk)); 928 929 if (rblk->tfb_tcp_fb_init == NULL || 930 (*rblk->tfb_tcp_fb_init)(tp, &ptr) == 0) { 931 /* Release the old stack */ 932 if (tp->t_fb->tfb_tcp_fb_fini != NULL) 933 (*tp->t_fb->tfb_tcp_fb_fini)(tp, 0); 934 refcount_release(&tp->t_fb->tfb_refcnt); 935 /* Now set in all the pointers */ 936 tp->t_fb = rblk; 937 tp->t_fb_ptr = ptr; 938 } else { 939 /* 940 * Initialization failed. Release the reference count on 941 * the looked up default stack. 942 */ 943 refcount_release(&rblk->tfb_refcnt); 944 } 945 } 946 tp->snd_wl1 = sc->sc_irs; 947 tp->snd_max = tp->iss + 1; 948 tp->snd_nxt = tp->iss + 1; 949 tp->rcv_up = sc->sc_irs + 1; 950 tp->rcv_wnd = sc->sc_wnd; 951 tp->rcv_adv += tp->rcv_wnd; 952 tp->last_ack_sent = tp->rcv_nxt; 953 954 tp->t_flags = sototcpcb(lso)->t_flags & 955 (TF_LRD|TF_NOPUSH|TF_NODELAY); 956 if (sc->sc_flags & SCF_NOOPT) 957 tp->t_flags |= TF_NOOPT; 958 else { 959 if (sc->sc_flags & SCF_WINSCALE) { 960 tp->t_flags |= TF_REQ_SCALE|TF_RCVD_SCALE; 961 tp->snd_scale = sc->sc_requested_s_scale; 962 tp->request_r_scale = sc->sc_requested_r_scale; 963 } 964 if (sc->sc_flags & SCF_TIMESTAMP) { 965 tp->t_flags |= TF_REQ_TSTMP|TF_RCVD_TSTMP; 966 tp->ts_recent = sc->sc_tsreflect; 967 tp->ts_recent_age = tcp_ts_getticks(); 968 tp->ts_offset = sc->sc_tsoff; 969 } 970 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 971 if (sc->sc_flags & SCF_SIGNATURE) 972 tp->t_flags |= TF_SIGNATURE; 973 #endif 974 if (sc->sc_flags & SCF_SACK) 975 tp->t_flags |= TF_SACK_PERMIT; 976 } 977 978 tcp_ecn_syncache_socket(tp, sc); 979 980 /* 981 * Set up MSS and get cached values from tcp_hostcache. 982 * This might overwrite some of the defaults we just set. 983 */ 984 tcp_mss(tp, sc->sc_peer_mss); 985 986 /* 987 * If the SYN,ACK was retransmitted, indicate that CWND to be 988 * limited to one segment in cc_conn_init(). 989 * NB: sc_rxmits counts all SYN,ACK transmits, not just retransmits. 990 */ 991 if (sc->sc_rxmits > 1) 992 tp->snd_cwnd = 1; 993 994 #ifdef TCP_OFFLOAD 995 /* 996 * Allow a TOE driver to install its hooks. Note that we hold the 997 * pcbinfo lock too and that prevents tcp_usr_accept from accepting a 998 * new connection before the TOE driver has done its thing. 999 */ 1000 if (ADDED_BY_TOE(sc)) { 1001 struct toedev *tod = sc->sc_tod; 1002 1003 tod->tod_offload_socket(tod, sc->sc_todctx, so); 1004 } 1005 #endif 1006 #ifdef TCP_BLACKBOX 1007 /* 1008 * Inherit the log state from the listening socket, if 1009 * - the log state of the listening socket is not off and 1010 * - the listening socket was not auto selected from all sessions and 1011 * - a log id is not set on the listening socket. 1012 * This avoids inheriting a log state which was automatically set. 1013 */ 1014 if ((tcp_get_bblog_state(sototcpcb(lso)) != TCP_LOG_STATE_OFF) && 1015 ((sototcpcb(lso)->t_flags2 & TF2_LOG_AUTO) == 0) && 1016 (sototcpcb(lso)->t_lib == NULL)) { 1017 tcp_log_state_change(tp, tcp_get_bblog_state(sototcpcb(lso))); 1018 } 1019 #endif 1020 /* 1021 * Copy and activate timers. 1022 */ 1023 tp->t_maxunacktime = sototcpcb(lso)->t_maxunacktime; 1024 tp->t_keepinit = sototcpcb(lso)->t_keepinit; 1025 tp->t_keepidle = sototcpcb(lso)->t_keepidle; 1026 tp->t_keepintvl = sototcpcb(lso)->t_keepintvl; 1027 tp->t_keepcnt = sototcpcb(lso)->t_keepcnt; 1028 tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp)); 1029 1030 TCPSTAT_INC(tcps_accepts); 1031 TCP_PROBE6(state__change, NULL, tp, NULL, tp, NULL, TCPS_LISTEN); 1032 1033 if (!solisten_enqueue(so, SS_ISCONNECTED)) 1034 tp->t_flags |= TF_SONOTCONN; 1035 /* Can we inherit anything from the listener? */ 1036 if (tp->t_fb->tfb_inherit != NULL) { 1037 (*tp->t_fb->tfb_inherit)(tp, sotoinpcb(lso)); 1038 } 1039 return (so); 1040 1041 allocfail: 1042 /* 1043 * Drop the connection; we will either send a RST or have the peer 1044 * retransmit its SYN again after its RTO and try again. 1045 */ 1046 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) { 1047 log(LOG_DEBUG, "%s; %s: Socket create failed " 1048 "due to limits or memory shortage\n", 1049 s, __func__); 1050 free(s, M_TCPLOG); 1051 } 1052 TCPSTAT_INC(tcps_listendrop); 1053 return (NULL); 1054 1055 abort: 1056 tcp_discardcb(tp); 1057 in_pcbfree(inp); 1058 sodealloc(so); 1059 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) { 1060 log(LOG_DEBUG, "%s; %s: in%s_pcbconnect failed with error %i\n", 1061 s, __func__, (sc->sc_inc.inc_flags & INC_ISIPV6) ? "6" : "", 1062 error); 1063 free(s, M_TCPLOG); 1064 } 1065 TCPSTAT_INC(tcps_listendrop); 1066 return (NULL); 1067 } 1068 1069 /* 1070 * This function gets called when we receive an ACK for a 1071 * socket in the LISTEN state. We look up the connection 1072 * in the syncache, and if its there, we pull it out of 1073 * the cache and turn it into a full-blown connection in 1074 * the SYN-RECEIVED state. 1075 * 1076 * On syncache_socket() success the newly created socket 1077 * has its underlying inp locked. 1078 */ 1079 int 1080 syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, 1081 struct socket **lsop, struct mbuf *m, uint16_t port) 1082 { 1083 struct syncache *sc; 1084 struct syncache_head *sch; 1085 struct syncache scs; 1086 char *s; 1087 bool locked; 1088 1089 NET_EPOCH_ASSERT(); 1090 KASSERT((tcp_get_flags(th) & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK, 1091 ("%s: can handle only ACK", __func__)); 1092 1093 if (syncache_cookiesonly()) { 1094 sc = NULL; 1095 sch = syncache_hashbucket(inc); 1096 locked = false; 1097 } else { 1098 sc = syncache_lookup(inc, &sch); /* returns locked sch */ 1099 locked = true; 1100 SCH_LOCK_ASSERT(sch); 1101 } 1102 1103 #ifdef INVARIANTS 1104 /* 1105 * Test code for syncookies comparing the syncache stored 1106 * values with the reconstructed values from the cookie. 1107 */ 1108 if (sc != NULL) 1109 syncookie_cmp(inc, sch, sc, th, to, *lsop, port); 1110 #endif 1111 1112 if (sc == NULL) { 1113 /* 1114 * There is no syncache entry, so see if this ACK is 1115 * a returning syncookie. To do this, first: 1116 * A. Check if syncookies are used in case of syncache 1117 * overflows 1118 * B. See if this socket has had a syncache entry dropped in 1119 * the recent past. We don't want to accept a bogus 1120 * syncookie if we've never received a SYN or accept it 1121 * twice. 1122 * C. check that the syncookie is valid. If it is, then 1123 * cobble up a fake syncache entry, and return. 1124 */ 1125 if (locked && !V_tcp_syncookies) { 1126 SCH_UNLOCK(sch); 1127 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 1128 log(LOG_DEBUG, "%s; %s: Spurious ACK, " 1129 "segment rejected (syncookies disabled)\n", 1130 s, __func__); 1131 goto failed; 1132 } 1133 if (locked && !V_tcp_syncookiesonly && 1134 sch->sch_last_overflow < time_uptime - SYNCOOKIE_LIFETIME) { 1135 SCH_UNLOCK(sch); 1136 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 1137 log(LOG_DEBUG, "%s; %s: Spurious ACK, " 1138 "segment rejected (no syncache entry)\n", 1139 s, __func__); 1140 goto failed; 1141 } 1142 bzero(&scs, sizeof(scs)); 1143 sc = syncookie_lookup(inc, sch, &scs, th, to, *lsop, port); 1144 if (locked) 1145 SCH_UNLOCK(sch); 1146 if (sc == NULL) { 1147 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 1148 log(LOG_DEBUG, "%s; %s: Segment failed " 1149 "SYNCOOKIE authentication, segment rejected " 1150 "(probably spoofed)\n", s, __func__); 1151 goto failed; 1152 } 1153 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1154 /* If received ACK has MD5 signature, check it. */ 1155 if ((to->to_flags & TOF_SIGNATURE) != 0 && 1156 (!TCPMD5_ENABLED() || 1157 TCPMD5_INPUT(m, th, to->to_signature) != 0)) { 1158 /* Drop the ACK. */ 1159 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1160 log(LOG_DEBUG, "%s; %s: Segment rejected, " 1161 "MD5 signature doesn't match.\n", 1162 s, __func__); 1163 free(s, M_TCPLOG); 1164 } 1165 TCPSTAT_INC(tcps_sig_err_sigopt); 1166 return (-1); /* Do not send RST */ 1167 } 1168 #endif /* TCP_SIGNATURE */ 1169 TCPSTATES_INC(TCPS_SYN_RECEIVED); 1170 } else { 1171 if (sc->sc_port != port) { 1172 SCH_UNLOCK(sch); 1173 return (0); 1174 } 1175 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1176 /* 1177 * If listening socket requested TCP digests, check that 1178 * received ACK has signature and it is correct. 1179 * If not, drop the ACK and leave sc entry in th cache, 1180 * because SYN was received with correct signature. 1181 */ 1182 if (sc->sc_flags & SCF_SIGNATURE) { 1183 if ((to->to_flags & TOF_SIGNATURE) == 0) { 1184 /* No signature */ 1185 TCPSTAT_INC(tcps_sig_err_nosigopt); 1186 SCH_UNLOCK(sch); 1187 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1188 log(LOG_DEBUG, "%s; %s: Segment " 1189 "rejected, MD5 signature wasn't " 1190 "provided.\n", s, __func__); 1191 free(s, M_TCPLOG); 1192 } 1193 return (-1); /* Do not send RST */ 1194 } 1195 if (!TCPMD5_ENABLED() || 1196 TCPMD5_INPUT(m, th, to->to_signature) != 0) { 1197 /* Doesn't match or no SA */ 1198 SCH_UNLOCK(sch); 1199 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1200 log(LOG_DEBUG, "%s; %s: Segment " 1201 "rejected, MD5 signature doesn't " 1202 "match.\n", s, __func__); 1203 free(s, M_TCPLOG); 1204 } 1205 return (-1); /* Do not send RST */ 1206 } 1207 } 1208 #endif /* TCP_SIGNATURE */ 1209 1210 /* 1211 * RFC 7323 PAWS: If we have a timestamp on this segment and 1212 * it's less than ts_recent, drop it. 1213 * XXXMT: RFC 7323 also requires to send an ACK. 1214 * In tcp_input.c this is only done for TCP segments 1215 * with user data, so be consistent here and just drop 1216 * the segment. 1217 */ 1218 if (sc->sc_flags & SCF_TIMESTAMP && to->to_flags & TOF_TS && 1219 TSTMP_LT(to->to_tsval, sc->sc_tsreflect)) { 1220 SCH_UNLOCK(sch); 1221 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1222 log(LOG_DEBUG, 1223 "%s; %s: SEG.TSval %u < TS.Recent %u, " 1224 "segment dropped\n", s, __func__, 1225 to->to_tsval, sc->sc_tsreflect); 1226 free(s, M_TCPLOG); 1227 } 1228 return (-1); /* Do not send RST */ 1229 } 1230 1231 /* 1232 * If timestamps were not negotiated during SYN/ACK and a 1233 * segment with a timestamp is received, ignore the 1234 * timestamp and process the packet normally. 1235 * See section 3.2 of RFC 7323. 1236 */ 1237 if (!(sc->sc_flags & SCF_TIMESTAMP) && 1238 (to->to_flags & TOF_TS)) { 1239 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1240 log(LOG_DEBUG, "%s; %s: Timestamp not " 1241 "expected, segment processed normally\n", 1242 s, __func__); 1243 free(s, M_TCPLOG); 1244 s = NULL; 1245 } 1246 } 1247 1248 /* 1249 * If timestamps were negotiated during SYN/ACK and a 1250 * segment without a timestamp is received, silently drop 1251 * the segment, unless the missing timestamps are tolerated. 1252 * See section 3.2 of RFC 7323. 1253 */ 1254 if ((sc->sc_flags & SCF_TIMESTAMP) && 1255 !(to->to_flags & TOF_TS)) { 1256 if (V_tcp_tolerate_missing_ts) { 1257 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1258 log(LOG_DEBUG, 1259 "%s; %s: Timestamp missing, " 1260 "segment processed normally\n", 1261 s, __func__); 1262 free(s, M_TCPLOG); 1263 } 1264 } else { 1265 SCH_UNLOCK(sch); 1266 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) { 1267 log(LOG_DEBUG, 1268 "%s; %s: Timestamp missing, " 1269 "segment silently dropped\n", 1270 s, __func__); 1271 free(s, M_TCPLOG); 1272 } 1273 return (-1); /* Do not send RST */ 1274 } 1275 } 1276 TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash); 1277 sch->sch_length--; 1278 #ifdef TCP_OFFLOAD 1279 if (ADDED_BY_TOE(sc)) { 1280 struct toedev *tod = sc->sc_tod; 1281 1282 tod->tod_syncache_removed(tod, sc->sc_todctx); 1283 } 1284 #endif 1285 SCH_UNLOCK(sch); 1286 } 1287 1288 /* 1289 * Segment validation: 1290 * ACK must match our initial sequence number + 1 (the SYN|ACK). 1291 */ 1292 if (th->th_ack != sc->sc_iss + 1) { 1293 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 1294 log(LOG_DEBUG, "%s; %s: ACK %u != ISS+1 %u, segment " 1295 "rejected\n", s, __func__, th->th_ack, sc->sc_iss); 1296 goto failed; 1297 } 1298 1299 /* 1300 * The SEQ must fall in the window starting at the received 1301 * initial receive sequence number + 1 (the SYN). 1302 */ 1303 if (SEQ_LEQ(th->th_seq, sc->sc_irs) || 1304 SEQ_GT(th->th_seq, sc->sc_irs + sc->sc_wnd)) { 1305 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) 1306 log(LOG_DEBUG, "%s; %s: SEQ %u != IRS+1 %u, segment " 1307 "rejected\n", s, __func__, th->th_seq, sc->sc_irs); 1308 goto failed; 1309 } 1310 1311 *lsop = syncache_socket(sc, *lsop, m); 1312 1313 if (__predict_false(*lsop == NULL)) { 1314 TCPSTAT_INC(tcps_sc_aborted); 1315 TCPSTATES_DEC(TCPS_SYN_RECEIVED); 1316 } else 1317 TCPSTAT_INC(tcps_sc_completed); 1318 1319 /* how do we find the inp for the new socket? */ 1320 if (sc != &scs) 1321 syncache_free(sc); 1322 return (1); 1323 failed: 1324 if (sc != NULL) { 1325 TCPSTATES_DEC(TCPS_SYN_RECEIVED); 1326 if (sc != &scs) 1327 syncache_free(sc); 1328 } 1329 if (s != NULL) 1330 free(s, M_TCPLOG); 1331 *lsop = NULL; 1332 return (0); 1333 } 1334 1335 static struct socket * 1336 syncache_tfo_expand(struct syncache *sc, struct socket *lso, struct mbuf *m, 1337 uint64_t response_cookie) 1338 { 1339 struct inpcb *inp; 1340 struct tcpcb *tp; 1341 unsigned int *pending_counter; 1342 struct socket *so; 1343 1344 NET_EPOCH_ASSERT(); 1345 1346 pending_counter = intotcpcb(sotoinpcb(lso))->t_tfo_pending; 1347 so = syncache_socket(sc, lso, m); 1348 if (so == NULL) { 1349 TCPSTAT_INC(tcps_sc_aborted); 1350 atomic_subtract_int(pending_counter, 1); 1351 } else { 1352 soisconnected(so); 1353 inp = sotoinpcb(so); 1354 tp = intotcpcb(inp); 1355 tp->t_flags |= TF_FASTOPEN; 1356 tp->t_tfo_cookie.server = response_cookie; 1357 tp->snd_max = tp->iss; 1358 tp->snd_nxt = tp->iss; 1359 tp->t_tfo_pending = pending_counter; 1360 TCPSTATES_INC(TCPS_SYN_RECEIVED); 1361 TCPSTAT_INC(tcps_sc_completed); 1362 } 1363 1364 return (so); 1365 } 1366 1367 /* 1368 * Given a LISTEN socket and an inbound SYN request, add 1369 * this to the syn cache, and send back a segment: 1370 * <SEQ=ISS><ACK=RCV_NXT><CTL=SYN,ACK> 1371 * to the source. 1372 * 1373 * IMPORTANT NOTE: We do _NOT_ ACK data that might accompany the SYN. 1374 * Doing so would require that we hold onto the data and deliver it 1375 * to the application. However, if we are the target of a SYN-flood 1376 * DoS attack, an attacker could send data which would eventually 1377 * consume all available buffer space if it were ACKed. By not ACKing 1378 * the data, we avoid this DoS scenario. 1379 * 1380 * The exception to the above is when a SYN with a valid TCP Fast Open (TFO) 1381 * cookie is processed and a new socket is created. In this case, any data 1382 * accompanying the SYN will be queued to the socket by tcp_input() and will 1383 * be ACKed either when the application sends response data or the delayed 1384 * ACK timer expires, whichever comes first. 1385 */ 1386 struct socket * 1387 syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, 1388 struct inpcb *inp, struct socket *so, struct mbuf *m, void *tod, 1389 void *todctx, uint8_t iptos, uint16_t port) 1390 { 1391 struct tcpcb *tp; 1392 struct socket *rv = NULL; 1393 struct syncache *sc = NULL; 1394 struct syncache_head *sch; 1395 struct mbuf *ipopts = NULL; 1396 u_int ltflags; 1397 int win, ip_ttl, ip_tos; 1398 char *s; 1399 #ifdef INET6 1400 int autoflowlabel = 0; 1401 #endif 1402 #ifdef MAC 1403 struct label *maclabel; 1404 #endif 1405 struct syncache scs; 1406 struct ucred *cred; 1407 uint64_t tfo_response_cookie; 1408 unsigned int *tfo_pending = NULL; 1409 int tfo_cookie_valid = 0; 1410 int tfo_response_cookie_valid = 0; 1411 bool locked; 1412 1413 INP_RLOCK_ASSERT(inp); /* listen socket */ 1414 KASSERT((tcp_get_flags(th) & (TH_RST|TH_ACK|TH_SYN)) == TH_SYN, 1415 ("%s: unexpected tcp flags", __func__)); 1416 1417 /* 1418 * Combine all so/tp operations very early to drop the INP lock as 1419 * soon as possible. 1420 */ 1421 KASSERT(SOLISTENING(so), ("%s: %p not listening", __func__, so)); 1422 tp = sototcpcb(so); 1423 cred = V_tcp_syncache.see_other ? NULL : crhold(so->so_cred); 1424 1425 #ifdef INET6 1426 if (inc->inc_flags & INC_ISIPV6) { 1427 if (inp->inp_flags & IN6P_AUTOFLOWLABEL) { 1428 autoflowlabel = 1; 1429 } 1430 ip_ttl = in6_selecthlim(inp, NULL); 1431 if ((inp->in6p_outputopts == NULL) || 1432 (inp->in6p_outputopts->ip6po_tclass == -1)) { 1433 ip_tos = 0; 1434 } else { 1435 ip_tos = inp->in6p_outputopts->ip6po_tclass; 1436 } 1437 } 1438 #endif 1439 #if defined(INET6) && defined(INET) 1440 else 1441 #endif 1442 #ifdef INET 1443 { 1444 ip_ttl = inp->inp_ip_ttl; 1445 ip_tos = inp->inp_ip_tos; 1446 } 1447 #endif 1448 win = so->sol_sbrcv_hiwat; 1449 ltflags = (tp->t_flags & (TF_NOOPT | TF_SIGNATURE)); 1450 1451 if (V_tcp_fastopen_server_enable && (tp->t_flags & TF_FASTOPEN) && 1452 (tp->t_tfo_pending != NULL) && 1453 (to->to_flags & TOF_FASTOPEN)) { 1454 /* 1455 * Limit the number of pending TFO connections to 1456 * approximately half of the queue limit. This prevents TFO 1457 * SYN floods from starving the service by filling the 1458 * listen queue with bogus TFO connections. 1459 */ 1460 if (atomic_fetchadd_int(tp->t_tfo_pending, 1) <= 1461 (so->sol_qlimit / 2)) { 1462 int result; 1463 1464 result = tcp_fastopen_check_cookie(inc, 1465 to->to_tfo_cookie, to->to_tfo_len, 1466 &tfo_response_cookie); 1467 tfo_cookie_valid = (result > 0); 1468 tfo_response_cookie_valid = (result >= 0); 1469 } 1470 1471 /* 1472 * Remember the TFO pending counter as it will have to be 1473 * decremented below if we don't make it to syncache_tfo_expand(). 1474 */ 1475 tfo_pending = tp->t_tfo_pending; 1476 } 1477 1478 #ifdef MAC 1479 if (mac_syncache_init(&maclabel) != 0) { 1480 INP_RUNLOCK(inp); 1481 goto done; 1482 } else 1483 mac_syncache_create(maclabel, inp); 1484 #endif 1485 if (!tfo_cookie_valid) 1486 INP_RUNLOCK(inp); 1487 1488 /* 1489 * Remember the IP options, if any. 1490 */ 1491 #ifdef INET6 1492 if (!(inc->inc_flags & INC_ISIPV6)) 1493 #endif 1494 #ifdef INET 1495 ipopts = (m) ? ip_srcroute(m) : NULL; 1496 #else 1497 ipopts = NULL; 1498 #endif 1499 1500 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1501 /* 1502 * When the socket is TCP-MD5 enabled check that, 1503 * - a signed packet is valid 1504 * - a non-signed packet does not have a security association 1505 * 1506 * If a signed packet fails validation or a non-signed packet has a 1507 * security association, the packet will be dropped. 1508 */ 1509 if (ltflags & TF_SIGNATURE) { 1510 if (to->to_flags & TOF_SIGNATURE) { 1511 if (!TCPMD5_ENABLED() || 1512 TCPMD5_INPUT(m, th, to->to_signature) != 0) 1513 goto done; 1514 } else { 1515 if (TCPMD5_ENABLED() && 1516 TCPMD5_INPUT(m, NULL, NULL) != ENOENT) 1517 goto done; 1518 } 1519 } else if (to->to_flags & TOF_SIGNATURE) 1520 goto done; 1521 #endif /* TCP_SIGNATURE */ 1522 /* 1523 * See if we already have an entry for this connection. 1524 * If we do, resend the SYN,ACK, and reset the retransmit timer. 1525 * 1526 * XXX: should the syncache be re-initialized with the contents 1527 * of the new SYN here (which may have different options?) 1528 * 1529 * XXX: We do not check the sequence number to see if this is a 1530 * real retransmit or a new connection attempt. The question is 1531 * how to handle such a case; either ignore it as spoofed, or 1532 * drop the current entry and create a new one? 1533 */ 1534 if (syncache_cookiesonly()) { 1535 sc = NULL; 1536 sch = syncache_hashbucket(inc); 1537 locked = false; 1538 } else { 1539 sc = syncache_lookup(inc, &sch); /* returns locked sch */ 1540 locked = true; 1541 SCH_LOCK_ASSERT(sch); 1542 } 1543 if (sc != NULL) { 1544 if (tfo_cookie_valid) 1545 INP_RUNLOCK(inp); 1546 TCPSTAT_INC(tcps_sc_dupsyn); 1547 if (ipopts) { 1548 /* 1549 * If we were remembering a previous source route, 1550 * forget it and use the new one we've been given. 1551 */ 1552 if (sc->sc_ipopts) 1553 (void) m_free(sc->sc_ipopts); 1554 sc->sc_ipopts = ipopts; 1555 } 1556 /* 1557 * Update timestamp if present. 1558 */ 1559 if ((sc->sc_flags & SCF_TIMESTAMP) && (to->to_flags & TOF_TS)) 1560 sc->sc_tsreflect = to->to_tsval; 1561 else 1562 sc->sc_flags &= ~SCF_TIMESTAMP; 1563 /* 1564 * Adjust ECN response if needed, e.g. different 1565 * IP ECN field, or a fallback by the remote host. 1566 */ 1567 if (sc->sc_flags & SCF_ECN_MASK) { 1568 sc->sc_flags &= ~SCF_ECN_MASK; 1569 sc->sc_flags = tcp_ecn_syncache_add(tcp_get_flags(th), iptos); 1570 } 1571 #ifdef MAC 1572 /* 1573 * Since we have already unconditionally allocated label 1574 * storage, free it up. The syncache entry will already 1575 * have an initialized label we can use. 1576 */ 1577 mac_syncache_destroy(&maclabel); 1578 #endif 1579 TCP_PROBE5(receive, NULL, NULL, m, NULL, th); 1580 /* Retransmit SYN|ACK and reset retransmit count. */ 1581 if ((s = tcp_log_addrs(&sc->sc_inc, th, NULL, NULL))) { 1582 log(LOG_DEBUG, "%s; %s: Received duplicate SYN, " 1583 "resetting timer and retransmitting SYN|ACK\n", 1584 s, __func__); 1585 free(s, M_TCPLOG); 1586 } 1587 if (syncache_respond(sc, m, TH_SYN|TH_ACK) == 0) { 1588 sc->sc_rxmits = 0; 1589 syncache_timeout(sc, sch, 1); 1590 TCPSTAT_INC(tcps_sndacks); 1591 TCPSTAT_INC(tcps_sndtotal); 1592 } 1593 SCH_UNLOCK(sch); 1594 goto donenoprobe; 1595 } 1596 1597 if (tfo_cookie_valid) { 1598 bzero(&scs, sizeof(scs)); 1599 sc = &scs; 1600 goto skip_alloc; 1601 } 1602 1603 /* 1604 * Skip allocating a syncache entry if we are just going to discard 1605 * it later. 1606 */ 1607 if (!locked) { 1608 bzero(&scs, sizeof(scs)); 1609 sc = &scs; 1610 } else 1611 sc = uma_zalloc(V_tcp_syncache.zone, M_NOWAIT | M_ZERO); 1612 if (sc == NULL) { 1613 /* 1614 * The zone allocator couldn't provide more entries. 1615 * Treat this as if the cache was full; drop the oldest 1616 * entry and insert the new one. 1617 */ 1618 TCPSTAT_INC(tcps_sc_zonefail); 1619 if ((sc = TAILQ_LAST(&sch->sch_bucket, sch_head)) != NULL) { 1620 sch->sch_last_overflow = time_uptime; 1621 syncache_drop(sc, sch); 1622 syncache_pause(inc); 1623 } 1624 sc = uma_zalloc(V_tcp_syncache.zone, M_NOWAIT | M_ZERO); 1625 if (sc == NULL) { 1626 if (V_tcp_syncookies) { 1627 bzero(&scs, sizeof(scs)); 1628 sc = &scs; 1629 } else { 1630 KASSERT(locked, 1631 ("%s: bucket unexpectedly unlocked", 1632 __func__)); 1633 SCH_UNLOCK(sch); 1634 if (ipopts) 1635 (void) m_free(ipopts); 1636 goto done; 1637 } 1638 } 1639 } 1640 1641 skip_alloc: 1642 if (!tfo_cookie_valid && tfo_response_cookie_valid) 1643 sc->sc_tfo_cookie = &tfo_response_cookie; 1644 1645 /* 1646 * Fill in the syncache values. 1647 */ 1648 #ifdef MAC 1649 sc->sc_label = maclabel; 1650 #endif 1651 sc->sc_cred = cred; 1652 sc->sc_port = port; 1653 cred = NULL; 1654 sc->sc_ipopts = ipopts; 1655 bcopy(inc, &sc->sc_inc, sizeof(struct in_conninfo)); 1656 sc->sc_ip_tos = ip_tos; 1657 sc->sc_ip_ttl = ip_ttl; 1658 #ifdef TCP_OFFLOAD 1659 sc->sc_tod = tod; 1660 sc->sc_todctx = todctx; 1661 #endif 1662 sc->sc_irs = th->th_seq; 1663 sc->sc_flags = 0; 1664 sc->sc_flowlabel = 0; 1665 1666 /* 1667 * Initial receive window: clip sbspace to [0 .. TCP_MAXWIN]. 1668 * win was derived from socket earlier in the function. 1669 */ 1670 win = imax(win, 0); 1671 win = imin(win, TCP_MAXWIN); 1672 sc->sc_wnd = win; 1673 1674 if (V_tcp_do_rfc1323 && 1675 !(ltflags & TF_NOOPT)) { 1676 /* 1677 * A timestamp received in a SYN makes 1678 * it ok to send timestamp requests and replies. 1679 */ 1680 if ((to->to_flags & TOF_TS) && (V_tcp_do_rfc1323 != 2)) { 1681 sc->sc_tsreflect = to->to_tsval; 1682 sc->sc_flags |= SCF_TIMESTAMP; 1683 sc->sc_tsoff = tcp_new_ts_offset(inc); 1684 } 1685 if ((to->to_flags & TOF_SCALE) && (V_tcp_do_rfc1323 != 3)) { 1686 int wscale = 0; 1687 1688 /* 1689 * Pick the smallest possible scaling factor that 1690 * will still allow us to scale up to sb_max, aka 1691 * kern.ipc.maxsockbuf. 1692 * 1693 * We do this because there are broken firewalls that 1694 * will corrupt the window scale option, leading to 1695 * the other endpoint believing that our advertised 1696 * window is unscaled. At scale factors larger than 1697 * 5 the unscaled window will drop below 1500 bytes, 1698 * leading to serious problems when traversing these 1699 * broken firewalls. 1700 * 1701 * With the default maxsockbuf of 256K, a scale factor 1702 * of 3 will be chosen by this algorithm. Those who 1703 * choose a larger maxsockbuf should watch out 1704 * for the compatibility problems mentioned above. 1705 * 1706 * RFC1323: The Window field in a SYN (i.e., a <SYN> 1707 * or <SYN,ACK>) segment itself is never scaled. 1708 */ 1709 while (wscale < TCP_MAX_WINSHIFT && 1710 (TCP_MAXWIN << wscale) < sb_max) 1711 wscale++; 1712 sc->sc_requested_r_scale = wscale; 1713 sc->sc_requested_s_scale = to->to_wscale; 1714 sc->sc_flags |= SCF_WINSCALE; 1715 } 1716 } 1717 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1718 /* 1719 * If incoming packet has an MD5 signature, flag this in the 1720 * syncache so that syncache_respond() will do the right thing 1721 * with the SYN+ACK. 1722 */ 1723 if (to->to_flags & TOF_SIGNATURE) 1724 sc->sc_flags |= SCF_SIGNATURE; 1725 #endif /* TCP_SIGNATURE */ 1726 if (to->to_flags & TOF_SACKPERM) 1727 sc->sc_flags |= SCF_SACK; 1728 if (to->to_flags & TOF_MSS) 1729 sc->sc_peer_mss = to->to_mss; /* peer mss may be zero */ 1730 if (ltflags & TF_NOOPT) 1731 sc->sc_flags |= SCF_NOOPT; 1732 /* ECN Handshake */ 1733 if (V_tcp_do_ecn && (tp->t_flags2 & TF2_CANNOT_DO_ECN) == 0) 1734 sc->sc_flags |= tcp_ecn_syncache_add(tcp_get_flags(th), iptos); 1735 1736 if (V_tcp_syncookies) 1737 sc->sc_iss = syncookie_generate(sch, sc); 1738 else 1739 sc->sc_iss = arc4random(); 1740 #ifdef INET6 1741 if (autoflowlabel) { 1742 if (V_tcp_syncookies) 1743 sc->sc_flowlabel = sc->sc_iss; 1744 else 1745 sc->sc_flowlabel = ip6_randomflowlabel(); 1746 sc->sc_flowlabel = htonl(sc->sc_flowlabel) & IPV6_FLOWLABEL_MASK; 1747 } 1748 #endif 1749 if (locked) 1750 SCH_UNLOCK(sch); 1751 1752 if (tfo_cookie_valid) { 1753 rv = syncache_tfo_expand(sc, so, m, tfo_response_cookie); 1754 /* INP_RUNLOCK(inp) will be performed by the caller */ 1755 goto tfo_expanded; 1756 } 1757 1758 TCP_PROBE5(receive, NULL, NULL, m, NULL, th); 1759 /* 1760 * Do a standard 3-way handshake. 1761 */ 1762 if (syncache_respond(sc, m, TH_SYN|TH_ACK) == 0) { 1763 if (V_tcp_syncookies && V_tcp_syncookiesonly && sc != &scs) 1764 syncache_free(sc); 1765 else if (sc != &scs) 1766 syncache_insert(sc, sch); /* locks and unlocks sch */ 1767 TCPSTAT_INC(tcps_sndacks); 1768 TCPSTAT_INC(tcps_sndtotal); 1769 } else { 1770 if (sc != &scs) 1771 syncache_free(sc); 1772 TCPSTAT_INC(tcps_sc_dropped); 1773 } 1774 goto donenoprobe; 1775 1776 done: 1777 TCP_PROBE5(receive, NULL, NULL, m, NULL, th); 1778 donenoprobe: 1779 if (m) 1780 m_freem(m); 1781 /* 1782 * If tfo_pending is not NULL here, then a TFO SYN that did not 1783 * result in a new socket was processed and the associated pending 1784 * counter has not yet been decremented. All such TFO processing paths 1785 * transit this point. 1786 */ 1787 if (tfo_pending != NULL) 1788 tcp_fastopen_decrement_counter(tfo_pending); 1789 1790 tfo_expanded: 1791 if (cred != NULL) 1792 crfree(cred); 1793 #ifdef MAC 1794 if (sc == &scs) 1795 mac_syncache_destroy(&maclabel); 1796 #endif 1797 return (rv); 1798 } 1799 1800 /* 1801 * Send SYN|ACK or ACK to the peer. Either in response to a peer's segment, 1802 * i.e. m0 != NULL, or upon 3WHS ACK timeout, i.e. m0 == NULL. 1803 */ 1804 static int 1805 syncache_respond(struct syncache *sc, const struct mbuf *m0, int flags) 1806 { 1807 struct ip *ip = NULL; 1808 struct mbuf *m; 1809 struct tcphdr *th = NULL; 1810 struct udphdr *udp = NULL; 1811 int optlen, error = 0; /* Make compiler happy */ 1812 u_int16_t hlen, tlen, mssopt, ulen; 1813 struct tcpopt to; 1814 #ifdef INET6 1815 struct ip6_hdr *ip6 = NULL; 1816 #endif 1817 1818 NET_EPOCH_ASSERT(); 1819 1820 hlen = 1821 #ifdef INET6 1822 (sc->sc_inc.inc_flags & INC_ISIPV6) ? sizeof(struct ip6_hdr) : 1823 #endif 1824 sizeof(struct ip); 1825 tlen = hlen + sizeof(struct tcphdr); 1826 if (sc->sc_port) { 1827 tlen += sizeof(struct udphdr); 1828 } 1829 /* Determine MSS we advertize to other end of connection. */ 1830 mssopt = tcp_mssopt(&sc->sc_inc); 1831 if (sc->sc_port) 1832 mssopt -= V_tcp_udp_tunneling_overhead; 1833 mssopt = max(mssopt, V_tcp_minmss); 1834 1835 /* XXX: Assume that the entire packet will fit in a header mbuf. */ 1836 KASSERT(max_linkhdr + tlen + TCP_MAXOLEN <= MHLEN, 1837 ("syncache: mbuf too small: hlen %u, sc_port %u, max_linkhdr %d + " 1838 "tlen %d + TCP_MAXOLEN %ju <= MHLEN %d", hlen, sc->sc_port, 1839 max_linkhdr, tlen, (uintmax_t)TCP_MAXOLEN, MHLEN)); 1840 1841 /* Create the IP+TCP header from scratch. */ 1842 m = m_gethdr(M_NOWAIT, MT_DATA); 1843 if (m == NULL) 1844 return (ENOBUFS); 1845 #ifdef MAC 1846 mac_syncache_create_mbuf(sc->sc_label, m); 1847 #endif 1848 m->m_data += max_linkhdr; 1849 m->m_len = tlen; 1850 m->m_pkthdr.len = tlen; 1851 m->m_pkthdr.rcvif = NULL; 1852 1853 #ifdef INET6 1854 if (sc->sc_inc.inc_flags & INC_ISIPV6) { 1855 ip6 = mtod(m, struct ip6_hdr *); 1856 ip6->ip6_vfc = IPV6_VERSION; 1857 ip6->ip6_src = sc->sc_inc.inc6_laddr; 1858 ip6->ip6_dst = sc->sc_inc.inc6_faddr; 1859 ip6->ip6_plen = htons(tlen - hlen); 1860 /* ip6_hlim is set after checksum */ 1861 /* Zero out traffic class and flow label. */ 1862 ip6->ip6_flow &= ~IPV6_FLOWINFO_MASK; 1863 ip6->ip6_flow |= sc->sc_flowlabel; 1864 if (sc->sc_port != 0) { 1865 ip6->ip6_nxt = IPPROTO_UDP; 1866 udp = (struct udphdr *)(ip6 + 1); 1867 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 1868 udp->uh_dport = sc->sc_port; 1869 ulen = (tlen - sizeof(struct ip6_hdr)); 1870 th = (struct tcphdr *)(udp + 1); 1871 } else { 1872 ip6->ip6_nxt = IPPROTO_TCP; 1873 th = (struct tcphdr *)(ip6 + 1); 1874 } 1875 ip6->ip6_flow |= htonl(sc->sc_ip_tos << IPV6_FLOWLABEL_LEN); 1876 } 1877 #endif 1878 #if defined(INET6) && defined(INET) 1879 else 1880 #endif 1881 #ifdef INET 1882 { 1883 ip = mtod(m, struct ip *); 1884 ip->ip_v = IPVERSION; 1885 ip->ip_hl = sizeof(struct ip) >> 2; 1886 ip->ip_len = htons(tlen); 1887 ip->ip_id = 0; 1888 ip->ip_off = 0; 1889 ip->ip_sum = 0; 1890 ip->ip_src = sc->sc_inc.inc_laddr; 1891 ip->ip_dst = sc->sc_inc.inc_faddr; 1892 ip->ip_ttl = sc->sc_ip_ttl; 1893 ip->ip_tos = sc->sc_ip_tos; 1894 1895 /* 1896 * See if we should do MTU discovery. Route lookups are 1897 * expensive, so we will only unset the DF bit if: 1898 * 1899 * 1) path_mtu_discovery is disabled 1900 * 2) the SCF_UNREACH flag has been set 1901 */ 1902 if (V_path_mtu_discovery && ((sc->sc_flags & SCF_UNREACH) == 0)) 1903 ip->ip_off |= htons(IP_DF); 1904 if (sc->sc_port == 0) { 1905 ip->ip_p = IPPROTO_TCP; 1906 th = (struct tcphdr *)(ip + 1); 1907 } else { 1908 ip->ip_p = IPPROTO_UDP; 1909 udp = (struct udphdr *)(ip + 1); 1910 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 1911 udp->uh_dport = sc->sc_port; 1912 ulen = (tlen - sizeof(struct ip)); 1913 th = (struct tcphdr *)(udp + 1); 1914 } 1915 } 1916 #endif /* INET */ 1917 th->th_sport = sc->sc_inc.inc_lport; 1918 th->th_dport = sc->sc_inc.inc_fport; 1919 1920 if (flags & TH_SYN) 1921 th->th_seq = htonl(sc->sc_iss); 1922 else 1923 th->th_seq = htonl(sc->sc_iss + 1); 1924 th->th_ack = htonl(sc->sc_irs + 1); 1925 th->th_off = sizeof(struct tcphdr) >> 2; 1926 th->th_win = htons(sc->sc_wnd); 1927 th->th_urp = 0; 1928 1929 flags = tcp_ecn_syncache_respond(flags, sc); 1930 tcp_set_flags(th, flags); 1931 1932 /* Tack on the TCP options. */ 1933 if ((sc->sc_flags & SCF_NOOPT) == 0) { 1934 to.to_flags = 0; 1935 1936 if (flags & TH_SYN) { 1937 to.to_mss = mssopt; 1938 to.to_flags = TOF_MSS; 1939 if (sc->sc_flags & SCF_WINSCALE) { 1940 to.to_wscale = sc->sc_requested_r_scale; 1941 to.to_flags |= TOF_SCALE; 1942 } 1943 if (sc->sc_flags & SCF_SACK) 1944 to.to_flags |= TOF_SACKPERM; 1945 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1946 if (sc->sc_flags & SCF_SIGNATURE) 1947 to.to_flags |= TOF_SIGNATURE; 1948 #endif 1949 if (sc->sc_tfo_cookie) { 1950 to.to_flags |= TOF_FASTOPEN; 1951 to.to_tfo_len = TCP_FASTOPEN_COOKIE_LEN; 1952 to.to_tfo_cookie = sc->sc_tfo_cookie; 1953 /* don't send cookie again when retransmitting response */ 1954 sc->sc_tfo_cookie = NULL; 1955 } 1956 } 1957 if (sc->sc_flags & SCF_TIMESTAMP) { 1958 to.to_tsval = sc->sc_tsoff + tcp_ts_getticks(); 1959 to.to_tsecr = sc->sc_tsreflect; 1960 to.to_flags |= TOF_TS; 1961 } 1962 optlen = tcp_addoptions(&to, (u_char *)(th + 1)); 1963 1964 /* Adjust headers by option size. */ 1965 th->th_off = (sizeof(struct tcphdr) + optlen) >> 2; 1966 m->m_len += optlen; 1967 m->m_pkthdr.len += optlen; 1968 #ifdef INET6 1969 if (sc->sc_inc.inc_flags & INC_ISIPV6) 1970 ip6->ip6_plen = htons(ntohs(ip6->ip6_plen) + optlen); 1971 else 1972 #endif 1973 ip->ip_len = htons(ntohs(ip->ip_len) + optlen); 1974 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 1975 if (sc->sc_flags & SCF_SIGNATURE) { 1976 KASSERT(to.to_flags & TOF_SIGNATURE, 1977 ("tcp_addoptions() didn't set tcp_signature")); 1978 1979 /* NOTE: to.to_signature is inside of mbuf */ 1980 if (!TCPMD5_ENABLED() || 1981 TCPMD5_OUTPUT(m, th, to.to_signature) != 0) { 1982 m_freem(m); 1983 return (EACCES); 1984 } 1985 } 1986 #endif 1987 } else 1988 optlen = 0; 1989 1990 if (udp) { 1991 ulen += optlen; 1992 udp->uh_ulen = htons(ulen); 1993 } 1994 M_SETFIB(m, sc->sc_inc.inc_fibnum); 1995 /* 1996 * If we have peer's SYN and it has a flowid, then let's assign it to 1997 * our SYN|ACK. ip6_output() and ip_output() will not assign flowid 1998 * to SYN|ACK due to lack of inp here. 1999 */ 2000 if (m0 != NULL && M_HASHTYPE_GET(m0) != M_HASHTYPE_NONE) { 2001 m->m_pkthdr.flowid = m0->m_pkthdr.flowid; 2002 M_HASHTYPE_SET(m, M_HASHTYPE_GET(m0)); 2003 } 2004 #ifdef INET6 2005 if (sc->sc_inc.inc_flags & INC_ISIPV6) { 2006 if (sc->sc_port) { 2007 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 2008 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 2009 udp->uh_sum = in6_cksum_pseudo(ip6, ulen, 2010 IPPROTO_UDP, 0); 2011 th->th_sum = htons(0); 2012 } else { 2013 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 2014 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 2015 th->th_sum = in6_cksum_pseudo(ip6, tlen + optlen - hlen, 2016 IPPROTO_TCP, 0); 2017 } 2018 ip6->ip6_hlim = sc->sc_ip_ttl; 2019 #ifdef TCP_OFFLOAD 2020 if (ADDED_BY_TOE(sc)) { 2021 struct toedev *tod = sc->sc_tod; 2022 2023 error = tod->tod_syncache_respond(tod, sc->sc_todctx, m); 2024 2025 return (error); 2026 } 2027 #endif 2028 TCP_PROBE5(send, NULL, NULL, ip6, NULL, th); 2029 error = ip6_output(m, NULL, NULL, 0, NULL, NULL, NULL); 2030 } 2031 #endif 2032 #if defined(INET6) && defined(INET) 2033 else 2034 #endif 2035 #ifdef INET 2036 { 2037 if (sc->sc_port) { 2038 m->m_pkthdr.csum_flags = CSUM_UDP; 2039 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 2040 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, 2041 ip->ip_dst.s_addr, htons(ulen + IPPROTO_UDP)); 2042 th->th_sum = htons(0); 2043 } else { 2044 m->m_pkthdr.csum_flags = CSUM_TCP; 2045 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 2046 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, 2047 htons(tlen + optlen - hlen + IPPROTO_TCP)); 2048 } 2049 #ifdef TCP_OFFLOAD 2050 if (ADDED_BY_TOE(sc)) { 2051 struct toedev *tod = sc->sc_tod; 2052 2053 error = tod->tod_syncache_respond(tod, sc->sc_todctx, m); 2054 2055 return (error); 2056 } 2057 #endif 2058 TCP_PROBE5(send, NULL, NULL, ip, NULL, th); 2059 error = ip_output(m, sc->sc_ipopts, NULL, 0, NULL, NULL); 2060 } 2061 #endif 2062 return (error); 2063 } 2064 2065 /* 2066 * The purpose of syncookies is to handle spoofed SYN flooding DoS attacks 2067 * that exceed the capacity of the syncache by avoiding the storage of any 2068 * of the SYNs we receive. Syncookies defend against blind SYN flooding 2069 * attacks where the attacker does not have access to our responses. 2070 * 2071 * Syncookies encode and include all necessary information about the 2072 * connection setup within the SYN|ACK that we send back. That way we 2073 * can avoid keeping any local state until the ACK to our SYN|ACK returns 2074 * (if ever). Normally the syncache and syncookies are running in parallel 2075 * with the latter taking over when the former is exhausted. When matching 2076 * syncache entry is found the syncookie is ignored. 2077 * 2078 * The only reliable information persisting the 3WHS is our initial sequence 2079 * number ISS of 32 bits. Syncookies embed a cryptographically sufficient 2080 * strong hash (MAC) value and a few bits of TCP SYN options in the ISS 2081 * of our SYN|ACK. The MAC can be recomputed when the ACK to our SYN|ACK 2082 * returns and signifies a legitimate connection if it matches the ACK. 2083 * 2084 * The available space of 32 bits to store the hash and to encode the SYN 2085 * option information is very tight and we should have at least 24 bits for 2086 * the MAC to keep the number of guesses by blind spoofing reasonably high. 2087 * 2088 * SYN option information we have to encode to fully restore a connection: 2089 * MSS: is imporant to chose an optimal segment size to avoid IP level 2090 * fragmentation along the path. The common MSS values can be encoded 2091 * in a 3-bit table. Uncommon values are captured by the next lower value 2092 * in the table leading to a slight increase in packetization overhead. 2093 * WSCALE: is necessary to allow large windows to be used for high delay- 2094 * bandwidth product links. Not scaling the window when it was initially 2095 * negotiated is bad for performance as lack of scaling further decreases 2096 * the apparent available send window. We only need to encode the WSCALE 2097 * we received from the remote end. Our end can be recalculated at any 2098 * time. The common WSCALE values can be encoded in a 3-bit table. 2099 * Uncommon values are captured by the next lower value in the table 2100 * making us under-estimate the available window size halving our 2101 * theoretically possible maximum throughput for that connection. 2102 * SACK: Greatly assists in packet loss recovery and requires 1 bit. 2103 * TIMESTAMP and SIGNATURE is not encoded because they are permanent options 2104 * that are included in all segments on a connection. We enable them when 2105 * the ACK has them. 2106 * 2107 * Security of syncookies and attack vectors: 2108 * 2109 * The MAC is computed over (faddr||laddr||fport||lport||irs||flags||secmod) 2110 * together with the gloabl secret to make it unique per connection attempt. 2111 * Thus any change of any of those parameters results in a different MAC output 2112 * in an unpredictable way unless a collision is encountered. 24 bits of the 2113 * MAC are embedded into the ISS. 2114 * 2115 * To prevent replay attacks two rotating global secrets are updated with a 2116 * new random value every 15 seconds. The life-time of a syncookie is thus 2117 * 15-30 seconds. 2118 * 2119 * Vector 1: Attacking the secret. This requires finding a weakness in the 2120 * MAC itself or the way it is used here. The attacker can do a chosen plain 2121 * text attack by varying and testing the all parameters under his control. 2122 * The strength depends on the size and randomness of the secret, and the 2123 * cryptographic security of the MAC function. Due to the constant updating 2124 * of the secret the attacker has at most 29.999 seconds to find the secret 2125 * and launch spoofed connections. After that he has to start all over again. 2126 * 2127 * Vector 2: Collision attack on the MAC of a single ACK. With a 24 bit MAC 2128 * size an average of 4,823 attempts are required for a 50% chance of success 2129 * to spoof a single syncookie (birthday collision paradox). However the 2130 * attacker is blind and doesn't know if one of his attempts succeeded unless 2131 * he has a side channel to interfere success from. A single connection setup 2132 * success average of 90% requires 8,790 packets, 99.99% requires 17,578 packets. 2133 * This many attempts are required for each one blind spoofed connection. For 2134 * every additional spoofed connection he has to launch another N attempts. 2135 * Thus for a sustained rate 100 spoofed connections per second approximately 2136 * 1,800,000 packets per second would have to be sent. 2137 * 2138 * NB: The MAC function should be fast so that it doesn't become a CPU 2139 * exhaustion attack vector itself. 2140 * 2141 * References: 2142 * RFC4987 TCP SYN Flooding Attacks and Common Mitigations 2143 * SYN cookies were first proposed by cryptographer Dan J. Bernstein in 1996 2144 * http://cr.yp.to/syncookies.html (overview) 2145 * http://cr.yp.to/syncookies/archive (details) 2146 * 2147 * 2148 * Schematic construction of a syncookie enabled Initial Sequence Number: 2149 * 0 1 2 3 2150 * 12345678901234567890123456789012 2151 * |xxxxxxxxxxxxxxxxxxxxxxxxWWWMMMSP| 2152 * 2153 * x 24 MAC (truncated) 2154 * W 3 Send Window Scale index 2155 * M 3 MSS index 2156 * S 1 SACK permitted 2157 * P 1 Odd/even secret 2158 */ 2159 2160 /* 2161 * Distribution and probability of certain MSS values. Those in between are 2162 * rounded down to the next lower one. 2163 * [An Analysis of TCP Maximum Segment Sizes, S. Alcock and R. Nelson, 2011] 2164 * .2% .3% 5% 7% 7% 20% 15% 45% 2165 */ 2166 static int tcp_sc_msstab[] = { 216, 536, 1200, 1360, 1400, 1440, 1452, 1460 }; 2167 2168 /* 2169 * Distribution and probability of certain WSCALE values. We have to map the 2170 * (send) window scale (shift) option with a range of 0-14 from 4 bits into 3 2171 * bits based on prevalence of certain values. Where we don't have an exact 2172 * match for are rounded down to the next lower one letting us under-estimate 2173 * the true available window. At the moment this would happen only for the 2174 * very uncommon values 3, 5 and those above 8 (more than 16MB socket buffer 2175 * and window size). The absence of the WSCALE option (no scaling in either 2176 * direction) is encoded with index zero. 2177 * [WSCALE values histograms, Allman, 2012] 2178 * X 10 10 35 5 6 14 10% by host 2179 * X 11 4 5 5 18 49 3% by connections 2180 */ 2181 static int tcp_sc_wstab[] = { 0, 0, 1, 2, 4, 6, 7, 8 }; 2182 2183 /* 2184 * Compute the MAC for the SYN cookie. SIPHASH-2-4 is chosen for its speed 2185 * and good cryptographic properties. 2186 */ 2187 static uint32_t 2188 syncookie_mac(struct in_conninfo *inc, tcp_seq irs, uint8_t flags, 2189 uint8_t *secbits, uintptr_t secmod) 2190 { 2191 SIPHASH_CTX ctx; 2192 uint32_t siphash[2]; 2193 2194 SipHash24_Init(&ctx); 2195 SipHash_SetKey(&ctx, secbits); 2196 switch (inc->inc_flags & INC_ISIPV6) { 2197 #ifdef INET 2198 case 0: 2199 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); 2200 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(inc->inc_laddr)); 2201 break; 2202 #endif 2203 #ifdef INET6 2204 case INC_ISIPV6: 2205 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); 2206 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(inc->inc6_laddr)); 2207 break; 2208 #endif 2209 } 2210 SipHash_Update(&ctx, &inc->inc_fport, sizeof(inc->inc_fport)); 2211 SipHash_Update(&ctx, &inc->inc_lport, sizeof(inc->inc_lport)); 2212 SipHash_Update(&ctx, &irs, sizeof(irs)); 2213 SipHash_Update(&ctx, &flags, sizeof(flags)); 2214 SipHash_Update(&ctx, &secmod, sizeof(secmod)); 2215 SipHash_Final((u_int8_t *)&siphash, &ctx); 2216 2217 return (siphash[0] ^ siphash[1]); 2218 } 2219 2220 static tcp_seq 2221 syncookie_generate(struct syncache_head *sch, struct syncache *sc) 2222 { 2223 u_int i, secbit, wscale; 2224 uint32_t iss, hash; 2225 uint8_t *secbits; 2226 union syncookie cookie; 2227 2228 cookie.cookie = 0; 2229 2230 /* Map our computed MSS into the 3-bit index. */ 2231 for (i = nitems(tcp_sc_msstab) - 1; 2232 tcp_sc_msstab[i] > sc->sc_peer_mss && i > 0; 2233 i--) 2234 ; 2235 cookie.flags.mss_idx = i; 2236 2237 /* 2238 * Map the send window scale into the 3-bit index but only if 2239 * the wscale option was received. 2240 */ 2241 if (sc->sc_flags & SCF_WINSCALE) { 2242 wscale = sc->sc_requested_s_scale; 2243 for (i = nitems(tcp_sc_wstab) - 1; 2244 tcp_sc_wstab[i] > wscale && i > 0; 2245 i--) 2246 ; 2247 cookie.flags.wscale_idx = i; 2248 } 2249 2250 /* Can we do SACK? */ 2251 if (sc->sc_flags & SCF_SACK) 2252 cookie.flags.sack_ok = 1; 2253 2254 /* Which of the two secrets to use. */ 2255 secbit = V_tcp_syncache.secret.oddeven & 0x1; 2256 cookie.flags.odd_even = secbit; 2257 2258 secbits = V_tcp_syncache.secret.key[secbit]; 2259 hash = syncookie_mac(&sc->sc_inc, sc->sc_irs, cookie.cookie, secbits, 2260 (uintptr_t)sch); 2261 2262 /* 2263 * Put the flags into the hash and XOR them to get better ISS number 2264 * variance. This doesn't enhance the cryptographic strength and is 2265 * done to prevent the 8 cookie bits from showing up directly on the 2266 * wire. 2267 */ 2268 iss = hash & ~0xff; 2269 iss |= cookie.cookie ^ (hash >> 24); 2270 2271 TCPSTAT_INC(tcps_sc_sendcookie); 2272 return (iss); 2273 } 2274 2275 static struct syncache * 2276 syncookie_lookup(struct in_conninfo *inc, struct syncache_head *sch, 2277 struct syncache *sc, struct tcphdr *th, struct tcpopt *to, 2278 struct socket *lso, uint16_t port) 2279 { 2280 uint32_t hash; 2281 uint8_t *secbits; 2282 tcp_seq ack, seq; 2283 int wnd, wscale = 0; 2284 union syncookie cookie; 2285 2286 /* 2287 * Pull information out of SYN-ACK/ACK and revert sequence number 2288 * advances. 2289 */ 2290 ack = th->th_ack - 1; 2291 seq = th->th_seq - 1; 2292 2293 /* 2294 * Unpack the flags containing enough information to restore the 2295 * connection. 2296 */ 2297 cookie.cookie = (ack & 0xff) ^ (ack >> 24); 2298 2299 /* Which of the two secrets to use. */ 2300 secbits = V_tcp_syncache.secret.key[cookie.flags.odd_even]; 2301 2302 hash = syncookie_mac(inc, seq, cookie.cookie, secbits, (uintptr_t)sch); 2303 2304 /* The recomputed hash matches the ACK if this was a genuine cookie. */ 2305 if ((ack & ~0xff) != (hash & ~0xff)) 2306 return (NULL); 2307 2308 /* Fill in the syncache values. */ 2309 sc->sc_flags = 0; 2310 bcopy(inc, &sc->sc_inc, sizeof(struct in_conninfo)); 2311 sc->sc_ipopts = NULL; 2312 2313 sc->sc_irs = seq; 2314 sc->sc_iss = ack; 2315 2316 switch (inc->inc_flags & INC_ISIPV6) { 2317 #ifdef INET 2318 case 0: 2319 sc->sc_ip_ttl = sotoinpcb(lso)->inp_ip_ttl; 2320 sc->sc_ip_tos = sotoinpcb(lso)->inp_ip_tos; 2321 break; 2322 #endif 2323 #ifdef INET6 2324 case INC_ISIPV6: 2325 if (sotoinpcb(lso)->inp_flags & IN6P_AUTOFLOWLABEL) 2326 sc->sc_flowlabel = 2327 htonl(sc->sc_iss) & IPV6_FLOWLABEL_MASK; 2328 break; 2329 #endif 2330 } 2331 2332 sc->sc_peer_mss = tcp_sc_msstab[cookie.flags.mss_idx]; 2333 2334 /* We can simply recompute receive window scale we sent earlier. */ 2335 while (wscale < TCP_MAX_WINSHIFT && (TCP_MAXWIN << wscale) < sb_max) 2336 wscale++; 2337 2338 /* Only use wscale if it was enabled in the orignal SYN. */ 2339 if (cookie.flags.wscale_idx > 0) { 2340 sc->sc_requested_r_scale = wscale; 2341 sc->sc_requested_s_scale = tcp_sc_wstab[cookie.flags.wscale_idx]; 2342 sc->sc_flags |= SCF_WINSCALE; 2343 } 2344 2345 wnd = lso->sol_sbrcv_hiwat; 2346 wnd = imax(wnd, 0); 2347 wnd = imin(wnd, TCP_MAXWIN); 2348 sc->sc_wnd = wnd; 2349 2350 if (cookie.flags.sack_ok) 2351 sc->sc_flags |= SCF_SACK; 2352 2353 if (to->to_flags & TOF_TS) { 2354 sc->sc_flags |= SCF_TIMESTAMP; 2355 sc->sc_tsreflect = to->to_tsval; 2356 sc->sc_tsoff = tcp_new_ts_offset(inc); 2357 } 2358 2359 if (to->to_flags & TOF_SIGNATURE) 2360 sc->sc_flags |= SCF_SIGNATURE; 2361 2362 sc->sc_rxmits = 0; 2363 2364 sc->sc_port = port; 2365 2366 TCPSTAT_INC(tcps_sc_recvcookie); 2367 return (sc); 2368 } 2369 2370 #ifdef INVARIANTS 2371 static int 2372 syncookie_cmp(struct in_conninfo *inc, struct syncache_head *sch, 2373 struct syncache *sc, struct tcphdr *th, struct tcpopt *to, 2374 struct socket *lso, uint16_t port) 2375 { 2376 struct syncache scs, *scx; 2377 char *s; 2378 2379 bzero(&scs, sizeof(scs)); 2380 scx = syncookie_lookup(inc, sch, &scs, th, to, lso, port); 2381 2382 if ((s = tcp_log_addrs(inc, th, NULL, NULL)) == NULL) 2383 return (0); 2384 2385 if (scx != NULL) { 2386 if (sc->sc_peer_mss != scx->sc_peer_mss) 2387 log(LOG_DEBUG, "%s; %s: mss different %i vs %i\n", 2388 s, __func__, sc->sc_peer_mss, scx->sc_peer_mss); 2389 2390 if (sc->sc_requested_r_scale != scx->sc_requested_r_scale) 2391 log(LOG_DEBUG, "%s; %s: rwscale different %i vs %i\n", 2392 s, __func__, sc->sc_requested_r_scale, 2393 scx->sc_requested_r_scale); 2394 2395 if (sc->sc_requested_s_scale != scx->sc_requested_s_scale) 2396 log(LOG_DEBUG, "%s; %s: swscale different %i vs %i\n", 2397 s, __func__, sc->sc_requested_s_scale, 2398 scx->sc_requested_s_scale); 2399 2400 if ((sc->sc_flags & SCF_SACK) != (scx->sc_flags & SCF_SACK)) 2401 log(LOG_DEBUG, "%s; %s: SACK different\n", s, __func__); 2402 } 2403 2404 if (s != NULL) 2405 free(s, M_TCPLOG); 2406 return (0); 2407 } 2408 #endif /* INVARIANTS */ 2409 2410 static void 2411 syncookie_reseed(void *arg) 2412 { 2413 struct tcp_syncache *sc = arg; 2414 uint8_t *secbits; 2415 int secbit; 2416 2417 /* 2418 * Reseeding the secret doesn't have to be protected by a lock. 2419 * It only must be ensured that the new random values are visible 2420 * to all CPUs in a SMP environment. The atomic with release 2421 * semantics ensures that. 2422 */ 2423 secbit = (sc->secret.oddeven & 0x1) ? 0 : 1; 2424 secbits = sc->secret.key[secbit]; 2425 arc4rand(secbits, SYNCOOKIE_SECRET_SIZE, 0); 2426 atomic_add_rel_int(&sc->secret.oddeven, 1); 2427 2428 /* Reschedule ourself. */ 2429 callout_schedule(&sc->secret.reseed, SYNCOOKIE_LIFETIME * hz); 2430 } 2431 2432 /* 2433 * We have overflowed a bucket. Let's pause dealing with the syncache. 2434 * This function will increment the bucketoverflow statistics appropriately 2435 * (once per pause when pausing is enabled; otherwise, once per overflow). 2436 */ 2437 static void 2438 syncache_pause(struct in_conninfo *inc) 2439 { 2440 time_t delta; 2441 const char *s; 2442 2443 /* XXX: 2444 * 2. Add sysctl read here so we don't get the benefit of this 2445 * change without the new sysctl. 2446 */ 2447 2448 /* 2449 * Try an unlocked read. If we already know that another thread 2450 * has activated the feature, there is no need to proceed. 2451 */ 2452 if (V_tcp_syncache.paused) 2453 return; 2454 2455 /* Are cookied enabled? If not, we can't pause. */ 2456 if (!V_tcp_syncookies) { 2457 TCPSTAT_INC(tcps_sc_bucketoverflow); 2458 return; 2459 } 2460 2461 /* 2462 * We may be the first thread to find an overflow. Get the lock 2463 * and evaluate if we need to take action. 2464 */ 2465 mtx_lock(&V_tcp_syncache.pause_mtx); 2466 if (V_tcp_syncache.paused) { 2467 mtx_unlock(&V_tcp_syncache.pause_mtx); 2468 return; 2469 } 2470 2471 /* Activate protection. */ 2472 V_tcp_syncache.paused = true; 2473 TCPSTAT_INC(tcps_sc_bucketoverflow); 2474 2475 /* 2476 * Determine the last backoff time. If we are seeing a re-newed 2477 * attack within that same time after last reactivating the syncache, 2478 * consider it an extension of the same attack. 2479 */ 2480 delta = TCP_SYNCACHE_PAUSE_TIME << V_tcp_syncache.pause_backoff; 2481 if (V_tcp_syncache.pause_until + delta - time_uptime > 0) { 2482 if (V_tcp_syncache.pause_backoff < TCP_SYNCACHE_MAX_BACKOFF) { 2483 delta <<= 1; 2484 V_tcp_syncache.pause_backoff++; 2485 } 2486 } else { 2487 delta = TCP_SYNCACHE_PAUSE_TIME; 2488 V_tcp_syncache.pause_backoff = 0; 2489 } 2490 2491 /* Log a warning, including IP addresses, if able. */ 2492 if (inc != NULL) 2493 s = tcp_log_addrs(inc, NULL, NULL, NULL); 2494 else 2495 s = (const char *)NULL; 2496 log(LOG_WARNING, "TCP syncache overflow detected; using syncookies for " 2497 "the next %lld seconds%s%s%s\n", (long long)delta, 2498 (s != NULL) ? " (last SYN: " : "", (s != NULL) ? s : "", 2499 (s != NULL) ? ")" : ""); 2500 free(__DECONST(void *, s), M_TCPLOG); 2501 2502 /* Use the calculated delta to set a new pause time. */ 2503 V_tcp_syncache.pause_until = time_uptime + delta; 2504 callout_reset(&V_tcp_syncache.pause_co, delta * hz, syncache_unpause, 2505 &V_tcp_syncache); 2506 mtx_unlock(&V_tcp_syncache.pause_mtx); 2507 } 2508 2509 /* Evaluate whether we need to unpause. */ 2510 static void 2511 syncache_unpause(void *arg) 2512 { 2513 struct tcp_syncache *sc; 2514 time_t delta; 2515 2516 sc = arg; 2517 mtx_assert(&sc->pause_mtx, MA_OWNED | MA_NOTRECURSED); 2518 callout_deactivate(&sc->pause_co); 2519 2520 /* 2521 * Check to make sure we are not running early. If the pause 2522 * time has expired, then deactivate the protection. 2523 */ 2524 if ((delta = sc->pause_until - time_uptime) > 0) 2525 callout_schedule(&sc->pause_co, delta * hz); 2526 else 2527 sc->paused = false; 2528 } 2529 2530 /* 2531 * Exports the syncache entries to userland so that netstat can display 2532 * them alongside the other sockets. This function is intended to be 2533 * called only from tcp_pcblist. 2534 * 2535 * Due to concurrency on an active system, the number of pcbs exported 2536 * may have no relation to max_pcbs. max_pcbs merely indicates the 2537 * amount of space the caller allocated for this function to use. 2538 */ 2539 int 2540 syncache_pcblist(struct sysctl_req *req) 2541 { 2542 struct xtcpcb xt; 2543 struct syncache *sc; 2544 struct syncache_head *sch; 2545 int error, i; 2546 2547 bzero(&xt, sizeof(xt)); 2548 xt.xt_len = sizeof(xt); 2549 xt.t_state = TCPS_SYN_RECEIVED; 2550 xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; 2551 xt.xt_inp.xi_socket.xso_len = sizeof (struct xsocket); 2552 xt.xt_inp.xi_socket.so_type = SOCK_STREAM; 2553 xt.xt_inp.xi_socket.so_state = SS_ISCONNECTING; 2554 2555 for (i = 0; i < V_tcp_syncache.hashsize; i++) { 2556 sch = &V_tcp_syncache.hashbase[i]; 2557 SCH_LOCK(sch); 2558 TAILQ_FOREACH(sc, &sch->sch_bucket, sc_hash) { 2559 if (sc->sc_cred != NULL && 2560 cr_cansee(req->td->td_ucred, sc->sc_cred) != 0) 2561 continue; 2562 if (sc->sc_inc.inc_flags & INC_ISIPV6) 2563 xt.xt_inp.inp_vflag = INP_IPV6; 2564 else 2565 xt.xt_inp.inp_vflag = INP_IPV4; 2566 xt.xt_encaps_port = sc->sc_port; 2567 bcopy(&sc->sc_inc, &xt.xt_inp.inp_inc, 2568 sizeof (struct in_conninfo)); 2569 error = SYSCTL_OUT(req, &xt, sizeof xt); 2570 if (error) { 2571 SCH_UNLOCK(sch); 2572 return (0); 2573 } 2574 } 2575 SCH_UNLOCK(sch); 2576 } 2577 2578 return (0); 2579 } 2580