The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/netinet/tcp_subr.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
    3  *      The Regents of the University of California.  All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  * 4. Neither the name of the University nor the names of its contributors
   14  *    may be used to endorse or promote products derived from this software
   15  *    without specific prior written permission.
   16  *
   17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27  * SUCH DAMAGE.
   28  *
   29  *      @(#)tcp_subr.c  8.2 (Berkeley) 5/24/95
   30  */
   31 
   32 #include <sys/cdefs.h>
   33 __FBSDID("$FreeBSD: releng/11.2/sys/netinet/tcp_subr.c 331722 2018-03-29 02:50:57Z eadler $");
   34 
   35 #include "opt_compat.h"
   36 #include "opt_inet.h"
   37 #include "opt_inet6.h"
   38 #include "opt_ipsec.h"
   39 #include "opt_tcpdebug.h"
   40 
   41 #include <sys/param.h>
   42 #include <sys/systm.h>
   43 #include <sys/callout.h>
   44 #include <sys/eventhandler.h>
   45 #include <sys/hhook.h>
   46 #include <sys/kernel.h>
   47 #include <sys/khelp.h>
   48 #include <sys/sysctl.h>
   49 #include <sys/jail.h>
   50 #include <sys/malloc.h>
   51 #include <sys/refcount.h>
   52 #include <sys/mbuf.h>
   53 #ifdef INET6
   54 #include <sys/domain.h>
   55 #endif
   56 #include <sys/priv.h>
   57 #include <sys/proc.h>
   58 #include <sys/sdt.h>
   59 #include <sys/socket.h>
   60 #include <sys/socketvar.h>
   61 #include <sys/protosw.h>
   62 #include <sys/random.h>
   63 
   64 #include <vm/uma.h>
   65 
   66 #include <net/route.h>
   67 #include <net/if.h>
   68 #include <net/if_var.h>
   69 #include <net/vnet.h>
   70 
   71 #include <netinet/in.h>
   72 #include <netinet/in_fib.h>
   73 #include <netinet/in_kdtrace.h>
   74 #include <netinet/in_pcb.h>
   75 #include <netinet/in_systm.h>
   76 #include <netinet/in_var.h>
   77 #include <netinet/ip.h>
   78 #include <netinet/ip_icmp.h>
   79 #include <netinet/ip_var.h>
   80 #ifdef INET6
   81 #include <netinet/icmp6.h>
   82 #include <netinet/ip6.h>
   83 #include <netinet6/in6_fib.h>
   84 #include <netinet6/in6_pcb.h>
   85 #include <netinet6/ip6_var.h>
   86 #include <netinet6/scope6_var.h>
   87 #include <netinet6/nd6.h>
   88 #endif
   89 
   90 #ifdef TCP_RFC7413
   91 #include <netinet/tcp_fastopen.h>
   92 #endif
   93 #include <netinet/tcp.h>
   94 #include <netinet/tcp_fsm.h>
   95 #include <netinet/tcp_seq.h>
   96 #include <netinet/tcp_timer.h>
   97 #include <netinet/tcp_var.h>
   98 #include <netinet/tcp_syncache.h>
   99 #include <netinet/cc/cc.h>
  100 #ifdef INET6
  101 #include <netinet6/tcp6_var.h>
  102 #endif
  103 #include <netinet/tcpip.h>
  104 #ifdef TCPPCAP
  105 #include <netinet/tcp_pcap.h>
  106 #endif
  107 #ifdef TCPDEBUG
  108 #include <netinet/tcp_debug.h>
  109 #endif
  110 #ifdef INET6
  111 #include <netinet6/ip6protosw.h>
  112 #endif
  113 #ifdef TCP_OFFLOAD
  114 #include <netinet/tcp_offload.h>
  115 #endif
  116 
  117 #include <netipsec/ipsec_support.h>
  118 
  119 #include <machine/in_cksum.h>
  120 #include <sys/md5.h>
  121 
  122 #include <security/mac/mac_framework.h>
  123 
  124 VNET_DEFINE(int, tcp_mssdflt) = TCP_MSS;
  125 #ifdef INET6
  126 VNET_DEFINE(int, tcp_v6mssdflt) = TCP6_MSS;
  127 #endif
  128 
  129 struct rwlock tcp_function_lock;
  130 
  131 static int
  132 sysctl_net_inet_tcp_mss_check(SYSCTL_HANDLER_ARGS)
  133 {
  134         int error, new;
  135 
  136         new = V_tcp_mssdflt;
  137         error = sysctl_handle_int(oidp, &new, 0, req);
  138         if (error == 0 && req->newptr) {
  139                 if (new < TCP_MINMSS)
  140                         error = EINVAL;
  141                 else
  142                         V_tcp_mssdflt = new;
  143         }
  144         return (error);
  145 }
  146 
  147 SYSCTL_PROC(_net_inet_tcp, TCPCTL_MSSDFLT, mssdflt,
  148     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, &VNET_NAME(tcp_mssdflt), 0,
  149     &sysctl_net_inet_tcp_mss_check, "I",
  150     "Default TCP Maximum Segment Size");
  151 
  152 #ifdef INET6
  153 static int
  154 sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS)
  155 {
  156         int error, new;
  157 
  158         new = V_tcp_v6mssdflt;
  159         error = sysctl_handle_int(oidp, &new, 0, req);
  160         if (error == 0 && req->newptr) {
  161                 if (new < TCP_MINMSS)
  162                         error = EINVAL;
  163                 else
  164                         V_tcp_v6mssdflt = new;
  165         }
  166         return (error);
  167 }
  168 
  169 SYSCTL_PROC(_net_inet_tcp, TCPCTL_V6MSSDFLT, v6mssdflt,
  170     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, &VNET_NAME(tcp_v6mssdflt), 0,
  171     &sysctl_net_inet_tcp_mss_v6_check, "I",
  172    "Default TCP Maximum Segment Size for IPv6");
  173 #endif /* INET6 */
  174 
  175 /*
  176  * Minimum MSS we accept and use. This prevents DoS attacks where
  177  * we are forced to a ridiculous low MSS like 20 and send hundreds
  178  * of packets instead of one. The effect scales with the available
  179  * bandwidth and quickly saturates the CPU and network interface
  180  * with packet generation and sending. Set to zero to disable MINMSS
  181  * checking. This setting prevents us from sending too small packets.
  182  */
  183 VNET_DEFINE(int, tcp_minmss) = TCP_MINMSS;
  184 SYSCTL_INT(_net_inet_tcp, OID_AUTO, minmss, CTLFLAG_VNET | CTLFLAG_RW,
  185      &VNET_NAME(tcp_minmss), 0,
  186     "Minimum TCP Maximum Segment Size");
  187 
  188 VNET_DEFINE(int, tcp_do_rfc1323) = 1;
  189 SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323, CTLFLAG_VNET | CTLFLAG_RW,
  190     &VNET_NAME(tcp_do_rfc1323), 0,
  191     "Enable rfc1323 (high performance TCP) extensions");
  192 
  193 static int      tcp_log_debug = 0;
  194 SYSCTL_INT(_net_inet_tcp, OID_AUTO, log_debug, CTLFLAG_RW,
  195     &tcp_log_debug, 0, "Log errors caused by incoming TCP segments");
  196 
  197 static int      tcp_tcbhashsize;
  198 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcbhashsize, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
  199     &tcp_tcbhashsize, 0, "Size of TCP control-block hashtable");
  200 
  201 static int      do_tcpdrain = 1;
  202 SYSCTL_INT(_net_inet_tcp, OID_AUTO, do_tcpdrain, CTLFLAG_RW, &do_tcpdrain, 0,
  203     "Enable tcp_drain routine for extra help when low on mbufs");
  204 
  205 SYSCTL_UINT(_net_inet_tcp, OID_AUTO, pcbcount, CTLFLAG_VNET | CTLFLAG_RD,
  206     &VNET_NAME(tcbinfo.ipi_count), 0, "Number of active PCBs");
  207 
  208 static VNET_DEFINE(int, icmp_may_rst) = 1;
  209 #define V_icmp_may_rst                  VNET(icmp_may_rst)
  210 SYSCTL_INT(_net_inet_tcp, OID_AUTO, icmp_may_rst, CTLFLAG_VNET | CTLFLAG_RW,
  211     &VNET_NAME(icmp_may_rst), 0,
  212     "Certain ICMP unreachable messages may abort connections in SYN_SENT");
  213 
  214 static VNET_DEFINE(int, tcp_isn_reseed_interval) = 0;
  215 #define V_tcp_isn_reseed_interval       VNET(tcp_isn_reseed_interval)
  216 SYSCTL_INT(_net_inet_tcp, OID_AUTO, isn_reseed_interval, CTLFLAG_VNET | CTLFLAG_RW,
  217     &VNET_NAME(tcp_isn_reseed_interval), 0,
  218     "Seconds between reseeding of ISN secret");
  219 
  220 static int      tcp_soreceive_stream;
  221 SYSCTL_INT(_net_inet_tcp, OID_AUTO, soreceive_stream, CTLFLAG_RDTUN,
  222     &tcp_soreceive_stream, 0, "Using soreceive_stream for TCP sockets");
  223 
  224 VNET_DEFINE(uma_zone_t, sack_hole_zone);
  225 #define V_sack_hole_zone                VNET(sack_hole_zone)
  226 
  227 VNET_DEFINE(struct hhook_head *, tcp_hhh[HHOOK_TCP_LAST+1]);
  228 
  229 static struct inpcb *tcp_notify(struct inpcb *, int);
  230 static struct inpcb *tcp_mtudisc_notify(struct inpcb *, int);
  231 static void tcp_mtudisc(struct inpcb *, int);
  232 static char *   tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th,
  233                     void *ip4hdr, const void *ip6hdr);
  234 
  235 
  236 static struct tcp_function_block tcp_def_funcblk = {
  237         "default",
  238         tcp_output,
  239         tcp_do_segment,
  240         tcp_default_ctloutput,
  241         NULL,
  242         NULL,   
  243         NULL,
  244         NULL,
  245         NULL,
  246         NULL,
  247         0,
  248         0
  249 };
  250 
  251 int t_functions_inited = 0;
  252 struct tcp_funchead t_functions;
  253 static struct tcp_function_block *tcp_func_set_ptr = &tcp_def_funcblk;
  254 
  255 static void
  256 init_tcp_functions(void)
  257 {
  258         if (t_functions_inited == 0) {
  259                 TAILQ_INIT(&t_functions);
  260                 rw_init_flags(&tcp_function_lock, "tcp_func_lock" , 0);
  261                 t_functions_inited = 1;
  262         }
  263 }
  264 
  265 static struct tcp_function_block *
  266 find_tcp_functions_locked(struct tcp_function_set *fs)
  267 {
  268         struct tcp_function *f;
  269         struct tcp_function_block *blk=NULL;
  270 
  271         TAILQ_FOREACH(f, &t_functions, tf_next) {
  272                 if (strcmp(f->tf_fb->tfb_tcp_block_name, fs->function_set_name) == 0) {
  273                         blk = f->tf_fb;
  274                         break;
  275                 }
  276         }
  277         return(blk);
  278 }
  279 
  280 static struct tcp_function_block *
  281 find_tcp_fb_locked(struct tcp_function_block *blk, struct tcp_function **s)
  282 {
  283         struct tcp_function_block *rblk=NULL;
  284         struct tcp_function *f;
  285 
  286         TAILQ_FOREACH(f, &t_functions, tf_next) {
  287                 if (f->tf_fb == blk) {
  288                         rblk = blk;
  289                         if (s) {
  290                                 *s = f;
  291                         }
  292                         break;
  293                 }
  294         }
  295         return (rblk);
  296 }
  297 
  298 struct tcp_function_block *
  299 find_and_ref_tcp_functions(struct tcp_function_set *fs)
  300 {
  301         struct tcp_function_block *blk;
  302         
  303         rw_rlock(&tcp_function_lock);   
  304         blk = find_tcp_functions_locked(fs);
  305         if (blk)
  306                 refcount_acquire(&blk->tfb_refcnt); 
  307         rw_runlock(&tcp_function_lock);
  308         return(blk);
  309 }
  310 
  311 struct tcp_function_block *
  312 find_and_ref_tcp_fb(struct tcp_function_block *blk)
  313 {
  314         struct tcp_function_block *rblk;
  315         
  316         rw_rlock(&tcp_function_lock);   
  317         rblk = find_tcp_fb_locked(blk, NULL);
  318         if (rblk) 
  319                 refcount_acquire(&rblk->tfb_refcnt);
  320         rw_runlock(&tcp_function_lock);
  321         return(rblk);
  322 }
  323 
  324 
  325 static int
  326 sysctl_net_inet_default_tcp_functions(SYSCTL_HANDLER_ARGS)
  327 {
  328         int error=ENOENT;
  329         struct tcp_function_set fs;
  330         struct tcp_function_block *blk;
  331 
  332         memset(&fs, 0, sizeof(fs));
  333         rw_rlock(&tcp_function_lock);
  334         blk = find_tcp_fb_locked(tcp_func_set_ptr, NULL);
  335         if (blk) {
  336                 /* Found him */
  337                 strcpy(fs.function_set_name, blk->tfb_tcp_block_name);
  338                 fs.pcbcnt = blk->tfb_refcnt;
  339         }
  340         rw_runlock(&tcp_function_lock); 
  341         error = sysctl_handle_string(oidp, fs.function_set_name,
  342                                      sizeof(fs.function_set_name), req);
  343 
  344         /* Check for error or no change */
  345         if (error != 0 || req->newptr == NULL)
  346                 return(error);
  347 
  348         rw_wlock(&tcp_function_lock);
  349         blk = find_tcp_functions_locked(&fs);
  350         if ((blk == NULL) ||
  351             (blk->tfb_flags & TCP_FUNC_BEING_REMOVED)) { 
  352                 error = ENOENT; 
  353                 goto done;
  354         }
  355         tcp_func_set_ptr = blk;
  356 done:
  357         rw_wunlock(&tcp_function_lock);
  358         return (error);
  359 }
  360 
  361 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_default,
  362             CTLTYPE_STRING | CTLFLAG_RW,
  363             NULL, 0, sysctl_net_inet_default_tcp_functions, "A",
  364             "Set/get the default TCP functions");
  365 
  366 static int
  367 sysctl_net_inet_list_available(SYSCTL_HANDLER_ARGS)
  368 {
  369         int error, cnt, linesz;
  370         struct tcp_function *f;
  371         char *buffer, *cp;
  372         size_t bufsz, outsz;
  373 
  374         cnt = 0;
  375         rw_rlock(&tcp_function_lock);
  376         TAILQ_FOREACH(f, &t_functions, tf_next) {
  377                 cnt++;
  378         }
  379         rw_runlock(&tcp_function_lock);
  380 
  381         bufsz = (cnt+2) * (TCP_FUNCTION_NAME_LEN_MAX + 12) + 1;
  382         buffer = malloc(bufsz, M_TEMP, M_WAITOK);
  383 
  384         error = 0;
  385         cp = buffer;
  386 
  387         linesz = snprintf(cp, bufsz, "\n%-32s%c %s\n", "Stack", 'D', "PCB count");
  388         cp += linesz;
  389         bufsz -= linesz;
  390         outsz = linesz;
  391 
  392         rw_rlock(&tcp_function_lock);   
  393         TAILQ_FOREACH(f, &t_functions, tf_next) {
  394                 linesz = snprintf(cp, bufsz, "%-32s%c %u\n",
  395                     f->tf_fb->tfb_tcp_block_name,
  396                     (f->tf_fb == tcp_func_set_ptr) ? '*' : ' ',
  397                     f->tf_fb->tfb_refcnt);
  398                 if (linesz >= bufsz) {
  399                         error = EOVERFLOW;
  400                         break;
  401                 }
  402                 cp += linesz;
  403                 bufsz -= linesz;
  404                 outsz += linesz;
  405         }
  406         rw_runlock(&tcp_function_lock);
  407         if (error == 0)
  408                 error = sysctl_handle_string(oidp, buffer, outsz + 1, req);
  409         free(buffer, M_TEMP);
  410         return (error);
  411 }
  412 
  413 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, functions_available,
  414             CTLTYPE_STRING|CTLFLAG_RD,
  415             NULL, 0, sysctl_net_inet_list_available, "A",
  416             "list available TCP Function sets");
  417 
  418 /*
  419  * Target size of TCP PCB hash tables. Must be a power of two.
  420  *
  421  * Note that this can be overridden by the kernel environment
  422  * variable net.inet.tcp.tcbhashsize
  423  */
  424 #ifndef TCBHASHSIZE
  425 #define TCBHASHSIZE     0
  426 #endif
  427 
  428 /*
  429  * XXX
  430  * Callouts should be moved into struct tcp directly.  They are currently
  431  * separate because the tcpcb structure is exported to userland for sysctl
  432  * parsing purposes, which do not know about callouts.
  433  */
  434 struct tcpcb_mem {
  435         struct  tcpcb           tcb;
  436         struct  tcp_timer       tt;
  437         struct  cc_var          ccv;
  438         struct  osd             osd;
  439 };
  440 
  441 static VNET_DEFINE(uma_zone_t, tcpcb_zone);
  442 #define V_tcpcb_zone                    VNET(tcpcb_zone)
  443 
  444 MALLOC_DEFINE(M_TCPLOG, "tcplog", "TCP address and flags print buffers");
  445 MALLOC_DEFINE(M_TCPFUNCTIONS, "tcpfunc", "TCP function set memory");
  446 
  447 static struct mtx isn_mtx;
  448 
  449 #define ISN_LOCK_INIT() mtx_init(&isn_mtx, "isn_mtx", NULL, MTX_DEF)
  450 #define ISN_LOCK()      mtx_lock(&isn_mtx)
  451 #define ISN_UNLOCK()    mtx_unlock(&isn_mtx)
  452 
  453 /*
  454  * TCP initialization.
  455  */
  456 static void
  457 tcp_zone_change(void *tag)
  458 {
  459 
  460         uma_zone_set_max(V_tcbinfo.ipi_zone, maxsockets);
  461         uma_zone_set_max(V_tcpcb_zone, maxsockets);
  462         tcp_tw_zone_change();
  463 }
  464 
  465 static int
  466 tcp_inpcb_init(void *mem, int size, int flags)
  467 {
  468         struct inpcb *inp = mem;
  469 
  470         INP_LOCK_INIT(inp, "inp", "tcpinp");
  471         return (0);
  472 }
  473 
  474 /*
  475  * Take a value and get the next power of 2 that doesn't overflow.
  476  * Used to size the tcp_inpcb hash buckets.
  477  */
  478 static int
  479 maketcp_hashsize(int size)
  480 {
  481         int hashsize;
  482 
  483         /*
  484          * auto tune.
  485          * get the next power of 2 higher than maxsockets.
  486          */
  487         hashsize = 1 << fls(size);
  488         /* catch overflow, and just go one power of 2 smaller */
  489         if (hashsize < size) {
  490                 hashsize = 1 << (fls(size) - 1);
  491         }
  492         return (hashsize);
  493 }
  494 
  495 int
  496 register_tcp_functions(struct tcp_function_block *blk, int wait)
  497 {
  498         struct tcp_function_block *lblk;
  499         struct tcp_function *n;
  500         struct tcp_function_set fs;
  501 
  502         if (t_functions_inited == 0) {
  503                 init_tcp_functions();
  504         }
  505         if ((blk->tfb_tcp_output == NULL) ||
  506             (blk->tfb_tcp_do_segment == NULL) ||
  507             (blk->tfb_tcp_ctloutput == NULL) ||
  508             (strlen(blk->tfb_tcp_block_name) == 0)) {
  509                 /* 
  510                  * These functions are required and you
  511                  * need a name.
  512                  */
  513                 return (EINVAL);
  514         }
  515         if (blk->tfb_tcp_timer_stop_all ||
  516             blk->tfb_tcp_timer_activate ||
  517             blk->tfb_tcp_timer_active ||
  518             blk->tfb_tcp_timer_stop) {
  519                 /*
  520                  * If you define one timer function you 
  521                  * must have them all.
  522                  */
  523                 if ((blk->tfb_tcp_timer_stop_all == NULL) ||
  524                     (blk->tfb_tcp_timer_activate == NULL) ||
  525                     (blk->tfb_tcp_timer_active == NULL) ||
  526                     (blk->tfb_tcp_timer_stop == NULL)) {
  527                         return (EINVAL);                        
  528                 }
  529         }       
  530         n = malloc(sizeof(struct tcp_function), M_TCPFUNCTIONS, wait);
  531         if (n == NULL) {
  532                 return (ENOMEM);
  533         }
  534         n->tf_fb = blk;
  535         strcpy(fs.function_set_name, blk->tfb_tcp_block_name);
  536         rw_wlock(&tcp_function_lock);
  537         lblk = find_tcp_functions_locked(&fs);
  538         if (lblk) {
  539                 /* Duplicate name space not allowed */
  540                 rw_wunlock(&tcp_function_lock);
  541                 free(n, M_TCPFUNCTIONS);
  542                 return (EALREADY);
  543         }
  544         refcount_init(&blk->tfb_refcnt, 0);
  545         blk->tfb_flags = 0;
  546         TAILQ_INSERT_TAIL(&t_functions, n, tf_next);
  547         rw_wunlock(&tcp_function_lock);
  548         return(0);
  549 }       
  550 
  551 int
  552 deregister_tcp_functions(struct tcp_function_block *blk)
  553 {
  554         struct tcp_function_block *lblk;
  555         struct tcp_function *f;
  556         int error=ENOENT;
  557         
  558         if (strcmp(blk->tfb_tcp_block_name, "default") == 0) {
  559                 /* You can't un-register the default */
  560                 return (EPERM);
  561         }
  562         rw_wlock(&tcp_function_lock);
  563         if (blk == tcp_func_set_ptr) {
  564                 /* You can't free the current default */
  565                 rw_wunlock(&tcp_function_lock);
  566                 return (EBUSY);
  567         }
  568         if (blk->tfb_refcnt) {
  569                 /* Still tcb attached, mark it. */
  570                 blk->tfb_flags |= TCP_FUNC_BEING_REMOVED;
  571                 rw_wunlock(&tcp_function_lock);         
  572                 return (EBUSY);
  573         }
  574         lblk = find_tcp_fb_locked(blk, &f);
  575         if (lblk) {
  576                 /* Found */
  577                 TAILQ_REMOVE(&t_functions, f, tf_next);
  578                 f->tf_fb = NULL;
  579                 free(f, M_TCPFUNCTIONS);
  580                 error = 0;
  581         }
  582         rw_wunlock(&tcp_function_lock);
  583         return (error);
  584 }
  585 
  586 void
  587 tcp_init(void)
  588 {
  589         const char *tcbhash_tuneable;
  590         int hashsize;
  591 
  592         tcbhash_tuneable = "net.inet.tcp.tcbhashsize";
  593 
  594         if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN,
  595             &V_tcp_hhh[HHOOK_TCP_EST_IN], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
  596                 printf("%s: WARNING: unable to register helper hook\n", __func__);
  597         if (hhook_head_register(HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT,
  598             &V_tcp_hhh[HHOOK_TCP_EST_OUT], HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
  599                 printf("%s: WARNING: unable to register helper hook\n", __func__);
  600         hashsize = TCBHASHSIZE;
  601         TUNABLE_INT_FETCH(tcbhash_tuneable, &hashsize);
  602         if (hashsize == 0) {
  603                 /*
  604                  * Auto tune the hash size based on maxsockets.
  605                  * A perfect hash would have a 1:1 mapping
  606                  * (hashsize = maxsockets) however it's been
  607                  * suggested that O(2) average is better.
  608                  */
  609                 hashsize = maketcp_hashsize(maxsockets / 4);
  610                 /*
  611                  * Our historical default is 512,
  612                  * do not autotune lower than this.
  613                  */
  614                 if (hashsize < 512)
  615                         hashsize = 512;
  616                 if (bootverbose && IS_DEFAULT_VNET(curvnet))
  617                         printf("%s: %s auto tuned to %d\n", __func__,
  618                             tcbhash_tuneable, hashsize);
  619         }
  620         /*
  621          * We require a hashsize to be a power of two.
  622          * Previously if it was not a power of two we would just reset it
  623          * back to 512, which could be a nasty surprise if you did not notice
  624          * the error message.
  625          * Instead what we do is clip it to the closest power of two lower
  626          * than the specified hash value.
  627          */
  628         if (!powerof2(hashsize)) {
  629                 int oldhashsize = hashsize;
  630 
  631                 hashsize = maketcp_hashsize(hashsize);
  632                 /* prevent absurdly low value */
  633                 if (hashsize < 16)
  634                         hashsize = 16;
  635                 printf("%s: WARNING: TCB hash size not a power of 2, "
  636                     "clipped from %d to %d.\n", __func__, oldhashsize,
  637                     hashsize);
  638         }
  639         in_pcbinfo_init(&V_tcbinfo, "tcp", &V_tcb, hashsize, hashsize,
  640             "tcp_inpcb", tcp_inpcb_init, NULL, 0, IPI_HASHFIELDS_4TUPLE);
  641 
  642         /*
  643          * These have to be type stable for the benefit of the timers.
  644          */
  645         V_tcpcb_zone = uma_zcreate("tcpcb", sizeof(struct tcpcb_mem),
  646             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
  647         uma_zone_set_max(V_tcpcb_zone, maxsockets);
  648         uma_zone_set_warning(V_tcpcb_zone, "kern.ipc.maxsockets limit reached");
  649 
  650         tcp_tw_init();
  651         syncache_init();
  652         tcp_hc_init();
  653 
  654         TUNABLE_INT_FETCH("net.inet.tcp.sack.enable", &V_tcp_do_sack);
  655         V_sack_hole_zone = uma_zcreate("sackhole", sizeof(struct sackhole),
  656             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
  657 
  658         /* Skip initialization of globals for non-default instances. */
  659         if (!IS_DEFAULT_VNET(curvnet))
  660                 return;
  661 
  662         tcp_reass_global_init();
  663 
  664         /* XXX virtualize those bellow? */
  665         tcp_delacktime = TCPTV_DELACK;
  666         tcp_keepinit = TCPTV_KEEP_INIT;
  667         tcp_keepidle = TCPTV_KEEP_IDLE;
  668         tcp_keepintvl = TCPTV_KEEPINTVL;
  669         tcp_maxpersistidle = TCPTV_KEEP_IDLE;
  670         tcp_msl = TCPTV_MSL;
  671         tcp_rexmit_min = TCPTV_MIN;
  672         if (tcp_rexmit_min < 1)
  673                 tcp_rexmit_min = 1;
  674         tcp_persmin = TCPTV_PERSMIN;
  675         tcp_persmax = TCPTV_PERSMAX;
  676         tcp_rexmit_slop = TCPTV_CPU_VAR;
  677         tcp_finwait2_timeout = TCPTV_FINWAIT2_TIMEOUT;
  678         tcp_tcbhashsize = hashsize;
  679         /* Setup the tcp function block list */
  680         init_tcp_functions();
  681         register_tcp_functions(&tcp_def_funcblk, M_WAITOK);
  682 
  683         if (tcp_soreceive_stream) {
  684 #ifdef INET
  685                 tcp_usrreqs.pru_soreceive = soreceive_stream;
  686 #endif
  687 #ifdef INET6
  688                 tcp6_usrreqs.pru_soreceive = soreceive_stream;
  689 #endif /* INET6 */
  690         }
  691 
  692 #ifdef INET6
  693 #define TCP_MINPROTOHDR (sizeof(struct ip6_hdr) + sizeof(struct tcphdr))
  694 #else /* INET6 */
  695 #define TCP_MINPROTOHDR (sizeof(struct tcpiphdr))
  696 #endif /* INET6 */
  697         if (max_protohdr < TCP_MINPROTOHDR)
  698                 max_protohdr = TCP_MINPROTOHDR;
  699         if (max_linkhdr + TCP_MINPROTOHDR > MHLEN)
  700                 panic("tcp_init");
  701 #undef TCP_MINPROTOHDR
  702 
  703         ISN_LOCK_INIT();
  704         EVENTHANDLER_REGISTER(shutdown_pre_sync, tcp_fini, NULL,
  705                 SHUTDOWN_PRI_DEFAULT);
  706         EVENTHANDLER_REGISTER(maxsockets_change, tcp_zone_change, NULL,
  707                 EVENTHANDLER_PRI_ANY);
  708 #ifdef TCPPCAP
  709         tcp_pcap_init();
  710 #endif
  711 
  712 #ifdef TCP_RFC7413
  713         tcp_fastopen_init();
  714 #endif
  715 }
  716 
  717 #ifdef VIMAGE
  718 static void
  719 tcp_destroy(void *unused __unused)
  720 {
  721         int error, n;
  722 
  723         /*
  724          * All our processes are gone, all our sockets should be cleaned
  725          * up, which means, we should be past the tcp_discardcb() calls.
  726          * Sleep to let all tcpcb timers really disappear and cleanup.
  727          */
  728         for (;;) {
  729                 INP_LIST_RLOCK(&V_tcbinfo);
  730                 n = V_tcbinfo.ipi_count;
  731                 INP_LIST_RUNLOCK(&V_tcbinfo);
  732                 if (n == 0)
  733                         break;
  734                 pause("tcpdes", hz / 10);
  735         }
  736         tcp_hc_destroy();
  737         syncache_destroy();
  738         tcp_tw_destroy();
  739         in_pcbinfo_destroy(&V_tcbinfo);
  740         /* tcp_discardcb() clears the sack_holes up. */
  741         uma_zdestroy(V_sack_hole_zone);
  742         uma_zdestroy(V_tcpcb_zone);
  743 
  744 #ifdef TCP_RFC7413
  745         /*
  746          * Cannot free the zone until all tcpcbs are released as we attach
  747          * the allocations to them.
  748          */
  749         tcp_fastopen_destroy();
  750 #endif
  751 
  752         error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_IN]);
  753         if (error != 0) {
  754                 printf("%s: WARNING: unable to deregister helper hook "
  755                     "type=%d, id=%d: error %d returned\n", __func__,
  756                     HHOOK_TYPE_TCP, HHOOK_TCP_EST_IN, error);
  757         }
  758         error = hhook_head_deregister(V_tcp_hhh[HHOOK_TCP_EST_OUT]);
  759         if (error != 0) {
  760                 printf("%s: WARNING: unable to deregister helper hook "
  761                     "type=%d, id=%d: error %d returned\n", __func__,
  762                     HHOOK_TYPE_TCP, HHOOK_TCP_EST_OUT, error);
  763         }
  764 }
  765 VNET_SYSUNINIT(tcp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, tcp_destroy, NULL);
  766 #endif
  767 
  768 void
  769 tcp_fini(void *xtp)
  770 {
  771 
  772 }
  773 
  774 /*
  775  * Fill in the IP and TCP headers for an outgoing packet, given the tcpcb.
  776  * tcp_template used to store this data in mbufs, but we now recopy it out
  777  * of the tcpcb each time to conserve mbufs.
  778  */
  779 void
  780 tcpip_fillheaders(struct inpcb *inp, void *ip_ptr, void *tcp_ptr)
  781 {
  782         struct tcphdr *th = (struct tcphdr *)tcp_ptr;
  783 
  784         INP_WLOCK_ASSERT(inp);
  785 
  786 #ifdef INET6
  787         if ((inp->inp_vflag & INP_IPV6) != 0) {
  788                 struct ip6_hdr *ip6;
  789 
  790                 ip6 = (struct ip6_hdr *)ip_ptr;
  791                 ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) |
  792                         (inp->inp_flow & IPV6_FLOWINFO_MASK);
  793                 ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) |
  794                         (IPV6_VERSION & IPV6_VERSION_MASK);
  795                 ip6->ip6_nxt = IPPROTO_TCP;
  796                 ip6->ip6_plen = htons(sizeof(struct tcphdr));
  797                 ip6->ip6_src = inp->in6p_laddr;
  798                 ip6->ip6_dst = inp->in6p_faddr;
  799         }
  800 #endif /* INET6 */
  801 #if defined(INET6) && defined(INET)
  802         else
  803 #endif
  804 #ifdef INET
  805         {
  806                 struct ip *ip;
  807 
  808                 ip = (struct ip *)ip_ptr;
  809                 ip->ip_v = IPVERSION;
  810                 ip->ip_hl = 5;
  811                 ip->ip_tos = inp->inp_ip_tos;
  812                 ip->ip_len = 0;
  813                 ip->ip_id = 0;
  814                 ip->ip_off = 0;
  815                 ip->ip_ttl = inp->inp_ip_ttl;
  816                 ip->ip_sum = 0;
  817                 ip->ip_p = IPPROTO_TCP;
  818                 ip->ip_src = inp->inp_laddr;
  819                 ip->ip_dst = inp->inp_faddr;
  820         }
  821 #endif /* INET */
  822         th->th_sport = inp->inp_lport;
  823         th->th_dport = inp->inp_fport;
  824         th->th_seq = 0;
  825         th->th_ack = 0;
  826         th->th_x2 = 0;
  827         th->th_off = 5;
  828         th->th_flags = 0;
  829         th->th_win = 0;
  830         th->th_urp = 0;
  831         th->th_sum = 0;         /* in_pseudo() is called later for ipv4 */
  832 }
  833 
  834 /*
  835  * Create template to be used to send tcp packets on a connection.
  836  * Allocates an mbuf and fills in a skeletal tcp/ip header.  The only
  837  * use for this function is in keepalives, which use tcp_respond.
  838  */
  839 struct tcptemp *
  840 tcpip_maketemplate(struct inpcb *inp)
  841 {
  842         struct tcptemp *t;
  843 
  844         t = malloc(sizeof(*t), M_TEMP, M_NOWAIT);
  845         if (t == NULL)
  846                 return (NULL);
  847         tcpip_fillheaders(inp, (void *)&t->tt_ipgen, (void *)&t->tt_t);
  848         return (t);
  849 }
  850 
  851 /*
  852  * Send a single message to the TCP at address specified by
  853  * the given TCP/IP header.  If m == NULL, then we make a copy
  854  * of the tcpiphdr at th and send directly to the addressed host.
  855  * This is used to force keep alive messages out using the TCP
  856  * template for a connection.  If flags are given then we send
  857  * a message back to the TCP which originated the segment th,
  858  * and discard the mbuf containing it and any other attached mbufs.
  859  *
  860  * In any case the ack and sequence number of the transmitted
  861  * segment are as specified by the parameters.
  862  *
  863  * NOTE: If m != NULL, then th must point to *inside* the mbuf.
  864  */
  865 void
  866 tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m,
  867     tcp_seq ack, tcp_seq seq, int flags)
  868 {
  869         struct tcpopt to;
  870         struct inpcb *inp;
  871         struct ip *ip;
  872         struct mbuf *optm;
  873         struct tcphdr *nth;
  874         u_char *optp;
  875 #ifdef INET6
  876         struct ip6_hdr *ip6;
  877         int isipv6;
  878 #endif /* INET6 */
  879         int optlen, tlen, win;
  880         bool incl_opts;
  881 
  882         KASSERT(tp != NULL || m != NULL, ("tcp_respond: tp and m both NULL"));
  883 
  884 #ifdef INET6
  885         isipv6 = ((struct ip *)ipgen)->ip_v == (IPV6_VERSION >> 4);
  886         ip6 = ipgen;
  887 #endif /* INET6 */
  888         ip = ipgen;
  889 
  890         if (tp != NULL) {
  891                 inp = tp->t_inpcb;
  892                 KASSERT(inp != NULL, ("tcp control block w/o inpcb"));
  893                 INP_WLOCK_ASSERT(inp);
  894         } else
  895                 inp = NULL;
  896 
  897         incl_opts = false;
  898         win = 0;
  899         if (tp != NULL) {
  900                 if (!(flags & TH_RST)) {
  901                         win = sbspace(&inp->inp_socket->so_rcv);
  902                         if (win > (long)TCP_MAXWIN << tp->rcv_scale)
  903                                 win = (long)TCP_MAXWIN << tp->rcv_scale;
  904                 }
  905                 if ((tp->t_flags & TF_NOOPT) == 0)
  906                         incl_opts = true;
  907         }
  908         if (m == NULL) {
  909                 m = m_gethdr(M_NOWAIT, MT_DATA);
  910                 if (m == NULL)
  911                         return;
  912                 m->m_data += max_linkhdr;
  913 #ifdef INET6
  914                 if (isipv6) {
  915                         bcopy((caddr_t)ip6, mtod(m, caddr_t),
  916                               sizeof(struct ip6_hdr));
  917                         ip6 = mtod(m, struct ip6_hdr *);
  918                         nth = (struct tcphdr *)(ip6 + 1);
  919                 } else
  920 #endif /* INET6 */
  921                 {
  922                         bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
  923                         ip = mtod(m, struct ip *);
  924                         nth = (struct tcphdr *)(ip + 1);
  925                 }
  926                 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
  927                 flags = TH_ACK;
  928         } else if (!M_WRITABLE(m)) {
  929                 struct mbuf *n;
  930 
  931                 /* Can't reuse 'm', allocate a new mbuf. */
  932                 n = m_gethdr(M_NOWAIT, MT_DATA);
  933                 if (n == NULL) {
  934                         m_freem(m);
  935                         return;
  936                 }
  937 
  938                 if (!m_dup_pkthdr(n, m, M_NOWAIT)) {
  939                         m_freem(m);
  940                         m_freem(n);
  941                         return;
  942                 }
  943 
  944                 n->m_data += max_linkhdr;
  945                 /* m_len is set later */
  946 #define xchg(a,b,type) { type t; t=a; a=b; b=t; }
  947 #ifdef INET6
  948                 if (isipv6) {
  949                         bcopy((caddr_t)ip6, mtod(n, caddr_t),
  950                               sizeof(struct ip6_hdr));
  951                         ip6 = mtod(n, struct ip6_hdr *);
  952                         xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
  953                         nth = (struct tcphdr *)(ip6 + 1);
  954                 } else
  955 #endif /* INET6 */
  956                 {
  957                         bcopy((caddr_t)ip, mtod(n, caddr_t), sizeof(struct ip));
  958                         ip = mtod(n, struct ip *);
  959                         xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
  960                         nth = (struct tcphdr *)(ip + 1);
  961                 }
  962                 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
  963                 xchg(nth->th_dport, nth->th_sport, uint16_t);
  964                 th = nth;
  965                 m_freem(m);
  966                 m = n;
  967         } else {
  968                 /*
  969                  *  reuse the mbuf. 
  970                  * XXX MRT We inherit the FIB, which is lucky.
  971                  */
  972                 m_freem(m->m_next);
  973                 m->m_next = NULL;
  974                 m->m_data = (caddr_t)ipgen;
  975                 /* m_len is set later */
  976 #ifdef INET6
  977                 if (isipv6) {
  978                         xchg(ip6->ip6_dst, ip6->ip6_src, struct in6_addr);
  979                         nth = (struct tcphdr *)(ip6 + 1);
  980                 } else
  981 #endif /* INET6 */
  982                 {
  983                         xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
  984                         nth = (struct tcphdr *)(ip + 1);
  985                 }
  986                 if (th != nth) {
  987                         /*
  988                          * this is usually a case when an extension header
  989                          * exists between the IPv6 header and the
  990                          * TCP header.
  991                          */
  992                         nth->th_sport = th->th_sport;
  993                         nth->th_dport = th->th_dport;
  994                 }
  995                 xchg(nth->th_dport, nth->th_sport, uint16_t);
  996 #undef xchg
  997         }
  998         tlen = 0;
  999 #ifdef INET6
 1000         if (isipv6)
 1001                 tlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
 1002 #endif
 1003 #if defined(INET) && defined(INET6)
 1004         else
 1005 #endif
 1006 #ifdef INET
 1007                 tlen = sizeof (struct tcpiphdr);
 1008 #endif
 1009 #ifdef INVARIANTS
 1010         m->m_len = 0;
 1011         KASSERT(M_TRAILINGSPACE(m) >= tlen,
 1012             ("Not enough trailing space for message (m=%p, need=%d, have=%ld)",
 1013             m, tlen, (long)M_TRAILINGSPACE(m)));
 1014 #endif
 1015         m->m_len = tlen;
 1016         to.to_flags = 0;
 1017         if (incl_opts) {
 1018                 /* Make sure we have room. */
 1019                 if (M_TRAILINGSPACE(m) < TCP_MAXOLEN) {
 1020                         m->m_next = m_get(M_NOWAIT, MT_DATA);
 1021                         if (m->m_next) {
 1022                                 optp = mtod(m->m_next, u_char *);
 1023                                 optm = m->m_next;
 1024                         } else
 1025                                 incl_opts = false;
 1026                 } else {
 1027                         optp = (u_char *) (nth + 1);
 1028                         optm = m;
 1029                 }
 1030         }
 1031         if (incl_opts) {
 1032                 /* Timestamps. */
 1033                 if (tp->t_flags & TF_RCVD_TSTMP) {
 1034                         to.to_tsval = tcp_ts_getticks() + tp->ts_offset;
 1035                         to.to_tsecr = tp->ts_recent;
 1036                         to.to_flags |= TOF_TS;
 1037                 }
 1038 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
 1039                 /* TCP-MD5 (RFC2385). */
 1040                 if (tp->t_flags & TF_SIGNATURE)
 1041                         to.to_flags |= TOF_SIGNATURE;
 1042 #endif
 1043                 /* Add the options. */
 1044                 tlen += optlen = tcp_addoptions(&to, optp);
 1045 
 1046                 /* Update m_len in the correct mbuf. */
 1047                 optm->m_len += optlen;
 1048         } else
 1049                 optlen = 0;
 1050 #ifdef INET6
 1051         if (isipv6) {
 1052                 ip6->ip6_flow = 0;
 1053                 ip6->ip6_vfc = IPV6_VERSION;
 1054                 ip6->ip6_nxt = IPPROTO_TCP;
 1055                 ip6->ip6_plen = htons(tlen - sizeof(*ip6));
 1056         }
 1057 #endif
 1058 #if defined(INET) && defined(INET6)
 1059         else
 1060 #endif
 1061 #ifdef INET
 1062         {
 1063                 ip->ip_len = htons(tlen);
 1064                 ip->ip_ttl = V_ip_defttl;
 1065                 if (V_path_mtu_discovery)
 1066                         ip->ip_off |= htons(IP_DF);
 1067         }
 1068 #endif
 1069         m->m_pkthdr.len = tlen;
 1070         m->m_pkthdr.rcvif = NULL;
 1071 #ifdef MAC
 1072         if (inp != NULL) {
 1073                 /*
 1074                  * Packet is associated with a socket, so allow the
 1075                  * label of the response to reflect the socket label.
 1076                  */
 1077                 INP_WLOCK_ASSERT(inp);
 1078                 mac_inpcb_create_mbuf(inp, m);
 1079         } else {
 1080                 /*
 1081                  * Packet is not associated with a socket, so possibly
 1082                  * update the label in place.
 1083                  */
 1084                 mac_netinet_tcp_reply(m);
 1085         }
 1086 #endif
 1087         nth->th_seq = htonl(seq);
 1088         nth->th_ack = htonl(ack);
 1089         nth->th_x2 = 0;
 1090         nth->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
 1091         nth->th_flags = flags;
 1092         if (tp != NULL)
 1093                 nth->th_win = htons((u_short) (win >> tp->rcv_scale));
 1094         else
 1095                 nth->th_win = htons((u_short)win);
 1096         nth->th_urp = 0;
 1097 
 1098 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
 1099         if (to.to_flags & TOF_SIGNATURE) {
 1100                 if (!TCPMD5_ENABLED() ||
 1101                     TCPMD5_OUTPUT(m, nth, to.to_signature) != 0) {
 1102                         m_freem(m);
 1103                         return;
 1104                 }
 1105         }
 1106 #endif
 1107 
 1108         m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
 1109 #ifdef INET6
 1110         if (isipv6) {
 1111                 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6;
 1112                 nth->th_sum = in6_cksum_pseudo(ip6,
 1113                     tlen - sizeof(struct ip6_hdr), IPPROTO_TCP, 0);
 1114                 ip6->ip6_hlim = in6_selecthlim(tp != NULL ? tp->t_inpcb :
 1115                     NULL, NULL);
 1116         }
 1117 #endif /* INET6 */
 1118 #if defined(INET6) && defined(INET)
 1119         else
 1120 #endif
 1121 #ifdef INET
 1122         {
 1123                 m->m_pkthdr.csum_flags = CSUM_TCP;
 1124                 nth->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
 1125                     htons((u_short)(tlen - sizeof(struct ip) + ip->ip_p)));
 1126         }
 1127 #endif /* INET */
 1128 #ifdef TCPDEBUG
 1129         if (tp == NULL || (inp->inp_socket->so_options & SO_DEBUG))
 1130                 tcp_trace(TA_OUTPUT, 0, tp, mtod(m, void *), th, 0);
 1131 #endif
 1132         TCP_PROBE3(debug__output, tp, th, m);
 1133         if (flags & TH_RST)
 1134                 TCP_PROBE5(accept__refused, NULL, NULL, m, tp, nth);
 1135 
 1136 #ifdef INET6
 1137         if (isipv6) {
 1138                 TCP_PROBE5(send, NULL, tp, ip6, tp, nth);
 1139                 (void)ip6_output(m, NULL, NULL, 0, NULL, NULL, inp);
 1140         }
 1141 #endif /* INET6 */
 1142 #if defined(INET) && defined(INET6)
 1143         else
 1144 #endif
 1145 #ifdef INET
 1146         {
 1147                 TCP_PROBE5(send, NULL, tp, ip, tp, nth);
 1148                 (void)ip_output(m, NULL, NULL, 0, NULL, inp);
 1149         }
 1150 #endif
 1151 }
 1152 
 1153 /*
 1154  * Create a new TCP control block, making an
 1155  * empty reassembly queue and hooking it to the argument
 1156  * protocol control block.  The `inp' parameter must have
 1157  * come from the zone allocator set up in tcp_init().
 1158  */
 1159 struct tcpcb *
 1160 tcp_newtcpcb(struct inpcb *inp)
 1161 {
 1162         struct tcpcb_mem *tm;
 1163         struct tcpcb *tp;
 1164 #ifdef INET6
 1165         int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
 1166 #endif /* INET6 */
 1167 
 1168         tm = uma_zalloc(V_tcpcb_zone, M_NOWAIT | M_ZERO);
 1169         if (tm == NULL)
 1170                 return (NULL);
 1171         tp = &tm->tcb;
 1172 
 1173         /* Initialise cc_var struct for this tcpcb. */
 1174         tp->ccv = &tm->ccv;
 1175         tp->ccv->type = IPPROTO_TCP;
 1176         tp->ccv->ccvc.tcp = tp;
 1177         rw_rlock(&tcp_function_lock);
 1178         tp->t_fb = tcp_func_set_ptr;
 1179         refcount_acquire(&tp->t_fb->tfb_refcnt);
 1180         rw_runlock(&tcp_function_lock);
 1181         if (tp->t_fb->tfb_tcp_fb_init) {
 1182                 (*tp->t_fb->tfb_tcp_fb_init)(tp);
 1183         }
 1184         /*
 1185          * Use the current system default CC algorithm.
 1186          */
 1187         CC_LIST_RLOCK();
 1188         KASSERT(!STAILQ_EMPTY(&cc_list), ("cc_list is empty!"));
 1189         CC_ALGO(tp) = CC_DEFAULT();
 1190         CC_LIST_RUNLOCK();
 1191 
 1192         if (CC_ALGO(tp)->cb_init != NULL)
 1193                 if (CC_ALGO(tp)->cb_init(tp->ccv) > 0) {
 1194                         if (tp->t_fb->tfb_tcp_fb_fini)
 1195                                 (*tp->t_fb->tfb_tcp_fb_fini)(tp);
 1196                         refcount_release(&tp->t_fb->tfb_refcnt);
 1197                         uma_zfree(V_tcpcb_zone, tm);
 1198                         return (NULL);
 1199                 }
 1200 
 1201         tp->osd = &tm->osd;
 1202         if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) {
 1203                 if (tp->t_fb->tfb_tcp_fb_fini)
 1204                         (*tp->t_fb->tfb_tcp_fb_fini)(tp);
 1205                 refcount_release(&tp->t_fb->tfb_refcnt);
 1206                 uma_zfree(V_tcpcb_zone, tm);
 1207                 return (NULL);
 1208         }
 1209 
 1210 #ifdef VIMAGE
 1211         tp->t_vnet = inp->inp_vnet;
 1212 #endif
 1213         tp->t_timers = &tm->tt;
 1214         /*      LIST_INIT(&tp->t_segq); */      /* XXX covered by M_ZERO */
 1215         tp->t_maxseg =
 1216 #ifdef INET6
 1217                 isipv6 ? V_tcp_v6mssdflt :
 1218 #endif /* INET6 */
 1219                 V_tcp_mssdflt;
 1220 
 1221         /* Set up our timeouts. */
 1222         callout_init(&tp->t_timers->tt_rexmt, 1);
 1223         callout_init(&tp->t_timers->tt_persist, 1);
 1224         callout_init(&tp->t_timers->tt_keep, 1);
 1225         callout_init(&tp->t_timers->tt_2msl, 1);
 1226         callout_init(&tp->t_timers->tt_delack, 1);
 1227 
 1228         if (V_tcp_do_rfc1323)
 1229                 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
 1230         if (V_tcp_do_sack)
 1231                 tp->t_flags |= TF_SACK_PERMIT;
 1232         TAILQ_INIT(&tp->snd_holes);
 1233         /*
 1234          * The tcpcb will hold a reference on its inpcb until tcp_discardcb()
 1235          * is called.
 1236          */
 1237         in_pcbref(inp); /* Reference for tcpcb */
 1238         tp->t_inpcb = inp;
 1239 
 1240         /*
 1241          * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
 1242          * rtt estimate.  Set rttvar so that srtt + 4 * rttvar gives
 1243          * reasonable initial retransmit time.
 1244          */
 1245         tp->t_srtt = TCPTV_SRTTBASE;
 1246         tp->t_rttvar = ((TCPTV_RTOBASE - TCPTV_SRTTBASE) << TCP_RTTVAR_SHIFT) / 4;
 1247         tp->t_rttmin = tcp_rexmit_min;
 1248         tp->t_rxtcur = TCPTV_RTOBASE;
 1249         tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
 1250         tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
 1251         tp->t_rcvtime = ticks;
 1252         /*
 1253          * IPv4 TTL initialization is necessary for an IPv6 socket as well,
 1254          * because the socket may be bound to an IPv6 wildcard address,
 1255          * which may match an IPv4-mapped IPv6 address.
 1256          */
 1257         inp->inp_ip_ttl = V_ip_defttl;
 1258         inp->inp_ppcb = tp;
 1259 #ifdef TCPPCAP
 1260         /*
 1261          * Init the TCP PCAP queues.
 1262          */
 1263         tcp_pcap_tcpcb_init(tp);
 1264 #endif
 1265         return (tp);            /* XXX */
 1266 }
 1267 
 1268 /*
 1269  * Switch the congestion control algorithm back to NewReno for any active
 1270  * control blocks using an algorithm which is about to go away.
 1271  * This ensures the CC framework can allow the unload to proceed without leaving
 1272  * any dangling pointers which would trigger a panic.
 1273  * Returning non-zero would inform the CC framework that something went wrong
 1274  * and it would be unsafe to allow the unload to proceed. However, there is no
 1275  * way for this to occur with this implementation so we always return zero.
 1276  */
 1277 int
 1278 tcp_ccalgounload(struct cc_algo *unload_algo)
 1279 {
 1280         struct cc_algo *tmpalgo;
 1281         struct inpcb *inp;
 1282         struct tcpcb *tp;
 1283         VNET_ITERATOR_DECL(vnet_iter);
 1284 
 1285         /*
 1286          * Check all active control blocks across all network stacks and change
 1287          * any that are using "unload_algo" back to NewReno. If "unload_algo"
 1288          * requires cleanup code to be run, call it.
 1289          */
 1290         VNET_LIST_RLOCK();
 1291         VNET_FOREACH(vnet_iter) {
 1292                 CURVNET_SET(vnet_iter);
 1293                 INP_INFO_WLOCK(&V_tcbinfo);
 1294                 /*
 1295                  * New connections already part way through being initialised
 1296                  * with the CC algo we're removing will not race with this code
 1297                  * because the INP_INFO_WLOCK is held during initialisation. We
 1298                  * therefore don't enter the loop below until the connection
 1299                  * list has stabilised.
 1300                  */
 1301                 LIST_FOREACH(inp, &V_tcb, inp_list) {
 1302                         INP_WLOCK(inp);
 1303                         /* Important to skip tcptw structs. */
 1304                         if (!(inp->inp_flags & INP_TIMEWAIT) &&
 1305                             (tp = intotcpcb(inp)) != NULL) {
 1306                                 /*
 1307                                  * By holding INP_WLOCK here, we are assured
 1308                                  * that the connection is not currently
 1309                                  * executing inside the CC module's functions
 1310                                  * i.e. it is safe to make the switch back to
 1311                                  * NewReno.
 1312                                  */
 1313                                 if (CC_ALGO(tp) == unload_algo) {
 1314                                         tmpalgo = CC_ALGO(tp);
 1315                                         /* NewReno does not require any init. */
 1316                                         CC_ALGO(tp) = &newreno_cc_algo;
 1317                                         if (tmpalgo->cb_destroy != NULL)
 1318                                                 tmpalgo->cb_destroy(tp->ccv);
 1319                                 }
 1320                         }
 1321                         INP_WUNLOCK(inp);
 1322                 }
 1323                 INP_INFO_WUNLOCK(&V_tcbinfo);
 1324                 CURVNET_RESTORE();
 1325         }
 1326         VNET_LIST_RUNLOCK();
 1327 
 1328         return (0);
 1329 }
 1330 
 1331 /*
 1332  * Drop a TCP connection, reporting
 1333  * the specified error.  If connection is synchronized,
 1334  * then send a RST to peer.
 1335  */
 1336 struct tcpcb *
 1337 tcp_drop(struct tcpcb *tp, int errno)
 1338 {
 1339         struct socket *so = tp->t_inpcb->inp_socket;
 1340 
 1341         INP_INFO_LOCK_ASSERT(&V_tcbinfo);
 1342         INP_WLOCK_ASSERT(tp->t_inpcb);
 1343 
 1344         if (TCPS_HAVERCVDSYN(tp->t_state)) {
 1345                 tcp_state_change(tp, TCPS_CLOSED);
 1346                 (void) tp->t_fb->tfb_tcp_output(tp);
 1347                 TCPSTAT_INC(tcps_drops);
 1348         } else
 1349                 TCPSTAT_INC(tcps_conndrops);
 1350         if (errno == ETIMEDOUT && tp->t_softerror)
 1351                 errno = tp->t_softerror;
 1352         so->so_error = errno;
 1353         return (tcp_close(tp));
 1354 }
 1355 
 1356 void
 1357 tcp_discardcb(struct tcpcb *tp)
 1358 {
 1359         struct inpcb *inp = tp->t_inpcb;
 1360         struct socket *so = inp->inp_socket;
 1361 #ifdef INET6
 1362         int isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
 1363 #endif /* INET6 */
 1364         int released;
 1365 
 1366         INP_WLOCK_ASSERT(inp);
 1367 
 1368         /*
 1369          * Make sure that all of our timers are stopped before we delete the
 1370          * PCB.
 1371          *
 1372          * If stopping a timer fails, we schedule a discard function in same
 1373          * callout, and the last discard function called will take care of
 1374          * deleting the tcpcb.
 1375          */
 1376         tp->t_timers->tt_draincnt = 0;
 1377         tcp_timer_stop(tp, TT_REXMT);
 1378         tcp_timer_stop(tp, TT_PERSIST);
 1379         tcp_timer_stop(tp, TT_KEEP);
 1380         tcp_timer_stop(tp, TT_2MSL);
 1381         tcp_timer_stop(tp, TT_DELACK);
 1382         if (tp->t_fb->tfb_tcp_timer_stop_all) {
 1383                 /* 
 1384                  * Call the stop-all function of the methods, 
 1385                  * this function should call the tcp_timer_stop()
 1386                  * method with each of the function specific timeouts.
 1387                  * That stop will be called via the tfb_tcp_timer_stop()
 1388                  * which should use the async drain function of the 
 1389                  * callout system (see tcp_var.h).
 1390                  */
 1391                 tp->t_fb->tfb_tcp_timer_stop_all(tp);
 1392         }
 1393 
 1394         /*
 1395          * If we got enough samples through the srtt filter,
 1396          * save the rtt and rttvar in the routing entry.
 1397          * 'Enough' is arbitrarily defined as 4 rtt samples.
 1398          * 4 samples is enough for the srtt filter to converge
 1399          * to within enough % of the correct value; fewer samples
 1400          * and we could save a bogus rtt. The danger is not high
 1401          * as tcp quickly recovers from everything.
 1402          * XXX: Works very well but needs some more statistics!
 1403          */
 1404         if (tp->t_rttupdated >= 4) {
 1405                 struct hc_metrics_lite metrics;
 1406                 u_long ssthresh;
 1407 
 1408                 bzero(&metrics, sizeof(metrics));
 1409                 /*
 1410                  * Update the ssthresh always when the conditions below
 1411                  * are satisfied. This gives us better new start value
 1412                  * for the congestion avoidance for new connections.
 1413                  * ssthresh is only set if packet loss occurred on a session.
 1414                  *
 1415                  * XXXRW: 'so' may be NULL here, and/or socket buffer may be
 1416                  * being torn down.  Ideally this code would not use 'so'.
 1417                  */
 1418                 ssthresh = tp->snd_ssthresh;
 1419                 if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) {
 1420                         /*
 1421                          * convert the limit from user data bytes to
 1422                          * packets then to packet data bytes.
 1423                          */
 1424                         ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg;
 1425                         if (ssthresh < 2)
 1426                                 ssthresh = 2;
 1427                         ssthresh *= (u_long)(tp->t_maxseg +
 1428 #ifdef INET6
 1429                             (isipv6 ? sizeof (struct ip6_hdr) +
 1430                                 sizeof (struct tcphdr) :
 1431 #endif
 1432                                 sizeof (struct tcpiphdr)
 1433 #ifdef INET6
 1434                             )
 1435 #endif
 1436                             );
 1437                 } else
 1438                         ssthresh = 0;
 1439                 metrics.rmx_ssthresh = ssthresh;
 1440 
 1441                 metrics.rmx_rtt = tp->t_srtt;
 1442                 metrics.rmx_rttvar = tp->t_rttvar;
 1443                 metrics.rmx_cwnd = tp->snd_cwnd;
 1444                 metrics.rmx_sendpipe = 0;
 1445                 metrics.rmx_recvpipe = 0;
 1446 
 1447                 tcp_hc_update(&inp->inp_inc, &metrics);
 1448         }
 1449 
 1450         /* free the reassembly queue, if any */
 1451         tcp_reass_flush(tp);
 1452 
 1453 #ifdef TCP_OFFLOAD
 1454         /* Disconnect offload device, if any. */
 1455         if (tp->t_flags & TF_TOE)
 1456                 tcp_offload_detach(tp);
 1457 #endif
 1458                 
 1459         tcp_free_sackholes(tp);
 1460 
 1461 #ifdef TCPPCAP
 1462         /* Free the TCP PCAP queues. */
 1463         tcp_pcap_drain(&(tp->t_inpkts));
 1464         tcp_pcap_drain(&(tp->t_outpkts));
 1465 #endif
 1466 
 1467         /* Allow the CC algorithm to clean up after itself. */
 1468         if (CC_ALGO(tp)->cb_destroy != NULL)
 1469                 CC_ALGO(tp)->cb_destroy(tp->ccv);
 1470 
 1471         khelp_destroy_osd(tp->osd);
 1472 
 1473         CC_ALGO(tp) = NULL;
 1474         inp->inp_ppcb = NULL;
 1475         if (tp->t_timers->tt_draincnt == 0) {
 1476                 /* We own the last reference on tcpcb, let's free it. */
 1477                 TCPSTATES_DEC(tp->t_state);
 1478                 if (tp->t_fb->tfb_tcp_fb_fini)
 1479                         (*tp->t_fb->tfb_tcp_fb_fini)(tp);
 1480                 refcount_release(&tp->t_fb->tfb_refcnt);
 1481                 tp->t_inpcb = NULL;
 1482                 uma_zfree(V_tcpcb_zone, tp);
 1483                 released = in_pcbrele_wlocked(inp);
 1484                 KASSERT(!released, ("%s: inp %p should not have been released "
 1485                         "here", __func__, inp));
 1486         }
 1487 }
 1488 
 1489 void
 1490 tcp_timer_discard(void *ptp)
 1491 {
 1492         struct inpcb *inp;
 1493         struct tcpcb *tp;
 1494         
 1495         tp = (struct tcpcb *)ptp;
 1496         CURVNET_SET(tp->t_vnet);
 1497         INP_INFO_RLOCK(&V_tcbinfo);
 1498         inp = tp->t_inpcb;
 1499         KASSERT(inp != NULL, ("%s: tp %p tp->t_inpcb == NULL",
 1500                 __func__, tp));
 1501         INP_WLOCK(inp);
 1502         KASSERT((tp->t_timers->tt_flags & TT_STOPPED) != 0,
 1503                 ("%s: tcpcb has to be stopped here", __func__));
 1504         tp->t_timers->tt_draincnt--;
 1505         if (tp->t_timers->tt_draincnt == 0) {
 1506                 /* We own the last reference on this tcpcb, let's free it. */
 1507                 TCPSTATES_DEC(tp->t_state);
 1508                 if (tp->t_fb->tfb_tcp_fb_fini)
 1509                         (*tp->t_fb->tfb_tcp_fb_fini)(tp);
 1510                 refcount_release(&tp->t_fb->tfb_refcnt);
 1511                 tp->t_inpcb = NULL;
 1512                 uma_zfree(V_tcpcb_zone, tp);
 1513                 if (in_pcbrele_wlocked(inp)) {
 1514                         INP_INFO_RUNLOCK(&V_tcbinfo);
 1515                         CURVNET_RESTORE();
 1516                         return;
 1517                 }
 1518         }
 1519         INP_WUNLOCK(inp);
 1520         INP_INFO_RUNLOCK(&V_tcbinfo);
 1521         CURVNET_RESTORE();
 1522 }
 1523 
 1524 /*
 1525  * Attempt to close a TCP control block, marking it as dropped, and freeing
 1526  * the socket if we hold the only reference.
 1527  */
 1528 struct tcpcb *
 1529 tcp_close(struct tcpcb *tp)
 1530 {
 1531         struct inpcb *inp = tp->t_inpcb;
 1532         struct socket *so;
 1533 
 1534         INP_INFO_LOCK_ASSERT(&V_tcbinfo);
 1535         INP_WLOCK_ASSERT(inp);
 1536 
 1537 #ifdef TCP_OFFLOAD
 1538         if (tp->t_state == TCPS_LISTEN)
 1539                 tcp_offload_listen_stop(tp);
 1540 #endif
 1541 #ifdef TCP_RFC7413
 1542         /*
 1543          * This releases the TFO pending counter resource for TFO listen
 1544          * sockets as well as passively-created TFO sockets that transition
 1545          * from SYN_RECEIVED to CLOSED.
 1546          */
 1547         if (tp->t_tfo_pending) {
 1548                 tcp_fastopen_decrement_counter(tp->t_tfo_pending);
 1549                 tp->t_tfo_pending = NULL;
 1550         }
 1551 #endif
 1552         in_pcbdrop(inp);
 1553         TCPSTAT_INC(tcps_closed);
 1554         if (tp->t_state != TCPS_CLOSED)
 1555                 tcp_state_change(tp, TCPS_CLOSED);
 1556         KASSERT(inp->inp_socket != NULL, ("tcp_close: inp_socket NULL"));
 1557         so = inp->inp_socket;
 1558         soisdisconnected(so);
 1559         if (inp->inp_flags & INP_SOCKREF) {
 1560                 KASSERT(so->so_state & SS_PROTOREF,
 1561                     ("tcp_close: !SS_PROTOREF"));
 1562                 inp->inp_flags &= ~INP_SOCKREF;
 1563                 INP_WUNLOCK(inp);
 1564                 ACCEPT_LOCK();
 1565                 SOCK_LOCK(so);
 1566                 so->so_state &= ~SS_PROTOREF;
 1567                 sofree(so);
 1568                 return (NULL);
 1569         }
 1570         return (tp);
 1571 }
 1572 
 1573 void
 1574 tcp_drain(void)
 1575 {
 1576         VNET_ITERATOR_DECL(vnet_iter);
 1577 
 1578         if (!do_tcpdrain)
 1579                 return;
 1580 
 1581         VNET_LIST_RLOCK_NOSLEEP();
 1582         VNET_FOREACH(vnet_iter) {
 1583                 CURVNET_SET(vnet_iter);
 1584                 struct inpcb *inpb;
 1585                 struct tcpcb *tcpb;
 1586 
 1587         /*
 1588          * Walk the tcpbs, if existing, and flush the reassembly queue,
 1589          * if there is one...
 1590          * XXX: The "Net/3" implementation doesn't imply that the TCP
 1591          *      reassembly queue should be flushed, but in a situation
 1592          *      where we're really low on mbufs, this is potentially
 1593          *      useful.
 1594          */
 1595                 INP_INFO_WLOCK(&V_tcbinfo);
 1596                 LIST_FOREACH(inpb, V_tcbinfo.ipi_listhead, inp_list) {
 1597                         if (inpb->inp_flags & INP_TIMEWAIT)
 1598                                 continue;
 1599                         INP_WLOCK(inpb);
 1600                         if ((tcpb = intotcpcb(inpb)) != NULL) {
 1601                                 tcp_reass_flush(tcpb);
 1602                                 tcp_clean_sackreport(tcpb);
 1603 #ifdef TCPPCAP
 1604                                 if (tcp_pcap_aggressive_free) {
 1605                                         /* Free the TCP PCAP queues. */
 1606                                         tcp_pcap_drain(&(tcpb->t_inpkts));
 1607                                         tcp_pcap_drain(&(tcpb->t_outpkts));
 1608                                 }
 1609 #endif
 1610                         }
 1611                         INP_WUNLOCK(inpb);
 1612                 }
 1613                 INP_INFO_WUNLOCK(&V_tcbinfo);
 1614                 CURVNET_RESTORE();
 1615         }
 1616         VNET_LIST_RUNLOCK_NOSLEEP();
 1617 }
 1618 
 1619 /*
 1620  * Notify a tcp user of an asynchronous error;
 1621  * store error as soft error, but wake up user
 1622  * (for now, won't do anything until can select for soft error).
 1623  *
 1624  * Do not wake up user since there currently is no mechanism for
 1625  * reporting soft errors (yet - a kqueue filter may be added).
 1626  */
 1627 static struct inpcb *
 1628 tcp_notify(struct inpcb *inp, int error)
 1629 {
 1630         struct tcpcb *tp;
 1631 
 1632         INP_INFO_LOCK_ASSERT(&V_tcbinfo);
 1633         INP_WLOCK_ASSERT(inp);
 1634 
 1635         if ((inp->inp_flags & INP_TIMEWAIT) ||
 1636             (inp->inp_flags & INP_DROPPED))
 1637                 return (inp);
 1638 
 1639         tp = intotcpcb(inp);
 1640         KASSERT(tp != NULL, ("tcp_notify: tp == NULL"));
 1641 
 1642         /*
 1643          * Ignore some errors if we are hooked up.
 1644          * If connection hasn't completed, has retransmitted several times,
 1645          * and receives a second error, give up now.  This is better
 1646          * than waiting a long time to establish a connection that
 1647          * can never complete.
 1648          */
 1649         if (tp->t_state == TCPS_ESTABLISHED &&
 1650             (error == EHOSTUNREACH || error == ENETUNREACH ||
 1651              error == EHOSTDOWN)) {
 1652                 if (inp->inp_route.ro_rt) {
 1653                         RTFREE(inp->inp_route.ro_rt);
 1654                         inp->inp_route.ro_rt = (struct rtentry *)NULL;
 1655                 }
 1656                 return (inp);
 1657         } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
 1658             tp->t_softerror) {
 1659                 tp = tcp_drop(tp, error);
 1660                 if (tp != NULL)
 1661                         return (inp);
 1662                 else
 1663                         return (NULL);
 1664         } else {
 1665                 tp->t_softerror = error;
 1666                 return (inp);
 1667         }
 1668 #if 0
 1669         wakeup( &so->so_timeo);
 1670         sorwakeup(so);
 1671         sowwakeup(so);
 1672 #endif
 1673 }
 1674 
 1675 static int
 1676 tcp_pcblist(SYSCTL_HANDLER_ARGS)
 1677 {
 1678         int error, i, m, n, pcb_count;
 1679         struct inpcb *inp, **inp_list;
 1680         inp_gen_t gencnt;
 1681         struct xinpgen xig;
 1682 
 1683         /*
 1684          * The process of preparing the TCB list is too time-consuming and
 1685          * resource-intensive to repeat twice on every request.
 1686          */
 1687         if (req->oldptr == NULL) {
 1688                 n = V_tcbinfo.ipi_count +
 1689                     counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
 1690                 n += imax(n / 8, 10);
 1691                 req->oldidx = 2 * (sizeof xig) + n * sizeof(struct xtcpcb);
 1692                 return (0);
 1693         }
 1694 
 1695         if (req->newptr != NULL)
 1696                 return (EPERM);
 1697 
 1698         /*
 1699          * OK, now we're committed to doing something.
 1700          */
 1701         INP_LIST_RLOCK(&V_tcbinfo);
 1702         gencnt = V_tcbinfo.ipi_gencnt;
 1703         n = V_tcbinfo.ipi_count;
 1704         INP_LIST_RUNLOCK(&V_tcbinfo);
 1705 
 1706         m = counter_u64_fetch(V_tcps_states[TCPS_SYN_RECEIVED]);
 1707 
 1708         error = sysctl_wire_old_buffer(req, 2 * (sizeof xig)
 1709                 + (n + m) * sizeof(struct xtcpcb));
 1710         if (error != 0)
 1711                 return (error);
 1712 
 1713         xig.xig_len = sizeof xig;
 1714         xig.xig_count = n + m;
 1715         xig.xig_gen = gencnt;
 1716         xig.xig_sogen = so_gencnt;
 1717         error = SYSCTL_OUT(req, &xig, sizeof xig);
 1718         if (error)
 1719                 return (error);
 1720 
 1721         error = syncache_pcblist(req, m, &pcb_count);
 1722         if (error)
 1723                 return (error);
 1724 
 1725         inp_list = malloc(n * sizeof *inp_list, M_TEMP, M_WAITOK);
 1726 
 1727         INP_INFO_WLOCK(&V_tcbinfo);
 1728         for (inp = LIST_FIRST(V_tcbinfo.ipi_listhead), i = 0;
 1729             inp != NULL && i < n; inp = LIST_NEXT(inp, inp_list)) {
 1730                 INP_WLOCK(inp);
 1731                 if (inp->inp_gencnt <= gencnt) {
 1732                         /*
 1733                          * XXX: This use of cr_cansee(), introduced with
 1734                          * TCP state changes, is not quite right, but for
 1735                          * now, better than nothing.
 1736                          */
 1737                         if (inp->inp_flags & INP_TIMEWAIT) {
 1738                                 if (intotw(inp) != NULL)
 1739                                         error = cr_cansee(req->td->td_ucred,
 1740                                             intotw(inp)->tw_cred);
 1741                                 else
 1742                                         error = EINVAL; /* Skip this inp. */
 1743                         } else
 1744                                 error = cr_canseeinpcb(req->td->td_ucred, inp);
 1745                         if (error == 0) {
 1746                                 in_pcbref(inp);
 1747                                 inp_list[i++] = inp;
 1748                         }
 1749                 }
 1750                 INP_WUNLOCK(inp);
 1751         }
 1752         INP_INFO_WUNLOCK(&V_tcbinfo);
 1753         n = i;
 1754 
 1755         error = 0;
 1756         for (i = 0; i < n; i++) {
 1757                 inp = inp_list[i];
 1758                 INP_RLOCK(inp);
 1759                 if (inp->inp_gencnt <= gencnt) {
 1760                         struct xtcpcb xt;
 1761                         void *inp_ppcb;
 1762 
 1763                         bzero(&xt, sizeof(xt));
 1764                         xt.xt_len = sizeof xt;
 1765                         /* XXX should avoid extra copy */
 1766                         bcopy(inp, &xt.xt_inp, sizeof *inp);
 1767                         inp_ppcb = inp->inp_ppcb;
 1768                         if (inp_ppcb == NULL)
 1769                                 bzero((char *) &xt.xt_tp, sizeof xt.xt_tp);
 1770                         else if (inp->inp_flags & INP_TIMEWAIT) {
 1771                                 bzero((char *) &xt.xt_tp, sizeof xt.xt_tp);
 1772                                 xt.xt_tp.t_state = TCPS_TIME_WAIT;
 1773                         } else {
 1774                                 bcopy(inp_ppcb, &xt.xt_tp, sizeof xt.xt_tp);
 1775                                 if (xt.xt_tp.t_timers)
 1776                                         tcp_timer_to_xtimer(&xt.xt_tp, xt.xt_tp.t_timers, &xt.xt_timer);
 1777                         }
 1778                         if (inp->inp_socket != NULL)
 1779                                 sotoxsocket(inp->inp_socket, &xt.xt_socket);
 1780                         else {
 1781                                 bzero(&xt.xt_socket, sizeof xt.xt_socket);
 1782                                 xt.xt_socket.xso_protocol = IPPROTO_TCP;
 1783                         }
 1784                         xt.xt_inp.inp_gencnt = inp->inp_gencnt;
 1785                         INP_RUNLOCK(inp);
 1786                         error = SYSCTL_OUT(req, &xt, sizeof xt);
 1787                 } else
 1788                         INP_RUNLOCK(inp);
 1789         }
 1790         INP_INFO_RLOCK(&V_tcbinfo);
 1791         for (i = 0; i < n; i++) {
 1792                 inp = inp_list[i];
 1793                 INP_RLOCK(inp);
 1794                 if (!in_pcbrele_rlocked(inp))
 1795                         INP_RUNLOCK(inp);
 1796         }
 1797         INP_INFO_RUNLOCK(&V_tcbinfo);
 1798 
 1799         if (!error) {
 1800                 /*
 1801                  * Give the user an updated idea of our state.
 1802                  * If the generation differs from what we told
 1803                  * her before, she knows that something happened
 1804                  * while we were processing this request, and it
 1805                  * might be necessary to retry.
 1806                  */
 1807                 INP_LIST_RLOCK(&V_tcbinfo);
 1808                 xig.xig_gen = V_tcbinfo.ipi_gencnt;
 1809                 xig.xig_sogen = so_gencnt;
 1810                 xig.xig_count = V_tcbinfo.ipi_count + pcb_count;
 1811                 INP_LIST_RUNLOCK(&V_tcbinfo);
 1812                 error = SYSCTL_OUT(req, &xig, sizeof xig);
 1813         }
 1814         free(inp_list, M_TEMP);
 1815         return (error);
 1816 }
 1817 
 1818 SYSCTL_PROC(_net_inet_tcp, TCPCTL_PCBLIST, pcblist,
 1819     CTLTYPE_OPAQUE | CTLFLAG_RD, NULL, 0,
 1820     tcp_pcblist, "S,xtcpcb", "List of active TCP connections");
 1821 
 1822 #ifdef INET
 1823 static int
 1824 tcp_getcred(SYSCTL_HANDLER_ARGS)
 1825 {
 1826         struct xucred xuc;
 1827         struct sockaddr_in addrs[2];
 1828         struct inpcb *inp;
 1829         int error;
 1830 
 1831         error = priv_check(req->td, PRIV_NETINET_GETCRED);
 1832         if (error)
 1833                 return (error);
 1834         error = SYSCTL_IN(req, addrs, sizeof(addrs));
 1835         if (error)
 1836                 return (error);
 1837         inp = in_pcblookup(&V_tcbinfo, addrs[1].sin_addr, addrs[1].sin_port,
 1838             addrs[0].sin_addr, addrs[0].sin_port, INPLOOKUP_RLOCKPCB, NULL);
 1839         if (inp != NULL) {
 1840                 if (inp->inp_socket == NULL)
 1841                         error = ENOENT;
 1842                 if (error == 0)
 1843                         error = cr_canseeinpcb(req->td->td_ucred, inp);
 1844                 if (error == 0)
 1845                         cru2x(inp->inp_cred, &xuc);
 1846                 INP_RUNLOCK(inp);
 1847         } else
 1848                 error = ENOENT;
 1849         if (error == 0)
 1850                 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
 1851         return (error);
 1852 }
 1853 
 1854 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred,
 1855     CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0,
 1856     tcp_getcred, "S,xucred", "Get the xucred of a TCP connection");
 1857 #endif /* INET */
 1858 
 1859 #ifdef INET6
 1860 static int
 1861 tcp6_getcred(SYSCTL_HANDLER_ARGS)
 1862 {
 1863         struct xucred xuc;
 1864         struct sockaddr_in6 addrs[2];
 1865         struct inpcb *inp;
 1866         int error;
 1867 #ifdef INET
 1868         int mapped = 0;
 1869 #endif
 1870 
 1871         error = priv_check(req->td, PRIV_NETINET_GETCRED);
 1872         if (error)
 1873                 return (error);
 1874         error = SYSCTL_IN(req, addrs, sizeof(addrs));
 1875         if (error)
 1876                 return (error);
 1877         if ((error = sa6_embedscope(&addrs[0], V_ip6_use_defzone)) != 0 ||
 1878             (error = sa6_embedscope(&addrs[1], V_ip6_use_defzone)) != 0) {
 1879                 return (error);
 1880         }
 1881         if (IN6_IS_ADDR_V4MAPPED(&addrs[0].sin6_addr)) {
 1882 #ifdef INET
 1883                 if (IN6_IS_ADDR_V4MAPPED(&addrs[1].sin6_addr))
 1884                         mapped = 1;
 1885                 else
 1886 #endif
 1887                         return (EINVAL);
 1888         }
 1889 
 1890 #ifdef INET
 1891         if (mapped == 1)
 1892                 inp = in_pcblookup(&V_tcbinfo,
 1893                         *(struct in_addr *)&addrs[1].sin6_addr.s6_addr[12],
 1894                         addrs[1].sin6_port,
 1895                         *(struct in_addr *)&addrs[0].sin6_addr.s6_addr[12],
 1896                         addrs[0].sin6_port, INPLOOKUP_RLOCKPCB, NULL);
 1897         else
 1898 #endif
 1899                 inp = in6_pcblookup(&V_tcbinfo,
 1900                         &addrs[1].sin6_addr, addrs[1].sin6_port,
 1901                         &addrs[0].sin6_addr, addrs[0].sin6_port,
 1902                         INPLOOKUP_RLOCKPCB, NULL);
 1903         if (inp != NULL) {
 1904                 if (inp->inp_socket == NULL)
 1905                         error = ENOENT;
 1906                 if (error == 0)
 1907                         error = cr_canseeinpcb(req->td->td_ucred, inp);
 1908                 if (error == 0)
 1909                         cru2x(inp->inp_cred, &xuc);
 1910                 INP_RUNLOCK(inp);
 1911         } else
 1912                 error = ENOENT;
 1913         if (error == 0)
 1914                 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
 1915         return (error);
 1916 }
 1917 
 1918 SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred,
 1919     CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0,
 1920     tcp6_getcred, "S,xucred", "Get the xucred of a TCP6 connection");
 1921 #endif /* INET6 */
 1922 
 1923 
 1924 #ifdef INET
 1925 void
 1926 tcp_ctlinput(int cmd, struct sockaddr *sa, void *vip)
 1927 {
 1928         struct ip *ip = vip;
 1929         struct tcphdr *th;
 1930         struct in_addr faddr;
 1931         struct inpcb *inp;
 1932         struct tcpcb *tp;
 1933         struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
 1934         struct icmp *icp;
 1935         struct in_conninfo inc;
 1936         tcp_seq icmp_tcp_seq;
 1937         int mtu;
 1938 
 1939         faddr = ((struct sockaddr_in *)sa)->sin_addr;
 1940         if (sa->sa_family != AF_INET || faddr.s_addr == INADDR_ANY)
 1941                 return;
 1942 
 1943         if (cmd == PRC_MSGSIZE)
 1944                 notify = tcp_mtudisc_notify;
 1945         else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
 1946                 cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL || 
 1947                 cmd == PRC_TIMXCEED_INTRANS) && ip)
 1948                 notify = tcp_drop_syn_sent;
 1949 
 1950         /*
 1951          * Hostdead is ugly because it goes linearly through all PCBs.
 1952          * XXX: We never get this from ICMP, otherwise it makes an
 1953          * excellent DoS attack on machines with many connections.
 1954          */
 1955         else if (cmd == PRC_HOSTDEAD)
 1956                 ip = NULL;
 1957         else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0)
 1958                 return;
 1959 
 1960         if (ip == NULL) {
 1961                 in_pcbnotifyall(&V_tcbinfo, faddr, inetctlerrmap[cmd], notify);
 1962                 return;
 1963         }
 1964 
 1965         icp = (struct icmp *)((caddr_t)ip - offsetof(struct icmp, icmp_ip));
 1966         th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
 1967         INP_INFO_RLOCK(&V_tcbinfo);
 1968         inp = in_pcblookup(&V_tcbinfo, faddr, th->th_dport, ip->ip_src,
 1969             th->th_sport, INPLOOKUP_WLOCKPCB, NULL);
 1970         if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
 1971                 /* signal EHOSTDOWN, as it flushes the cached route */
 1972                 inp = (*notify)(inp, EHOSTDOWN);
 1973                 goto out;
 1974         }
 1975         icmp_tcp_seq = th->th_seq;
 1976         if (inp != NULL)  {
 1977                 if (!(inp->inp_flags & INP_TIMEWAIT) &&
 1978                     !(inp->inp_flags & INP_DROPPED) &&
 1979                     !(inp->inp_socket == NULL)) {
 1980                         tp = intotcpcb(inp);
 1981                         if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
 1982                             SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
 1983                                 if (cmd == PRC_MSGSIZE) {
 1984                                         /*
 1985                                          * MTU discovery:
 1986                                          * If we got a needfrag set the MTU
 1987                                          * in the route to the suggested new
 1988                                          * value (if given) and then notify.
 1989                                          */
 1990                                         mtu = ntohs(icp->icmp_nextmtu);
 1991                                         /*
 1992                                          * If no alternative MTU was
 1993                                          * proposed, try the next smaller
 1994                                          * one.
 1995                                          */
 1996                                         if (!mtu)
 1997                                                 mtu = ip_next_mtu(
 1998                                                     ntohs(ip->ip_len), 1);
 1999                                         if (mtu < V_tcp_minmss +
 2000                                             sizeof(struct tcpiphdr))
 2001                                                 mtu = V_tcp_minmss +
 2002                                                     sizeof(struct tcpiphdr);
 2003                                         /*
 2004                                          * Only process the offered MTU if it
 2005                                          * is smaller than the current one.
 2006                                          */
 2007                                         if (mtu < tp->t_maxseg +
 2008                                             sizeof(struct tcpiphdr)) {
 2009                                                 bzero(&inc, sizeof(inc));
 2010                                                 inc.inc_faddr = faddr;
 2011                                                 inc.inc_fibnum =
 2012                                                     inp->inp_inc.inc_fibnum;
 2013                                                 tcp_hc_updatemtu(&inc, mtu);
 2014                                                 tcp_mtudisc(inp, mtu);
 2015                                         }
 2016                                 } else
 2017                                         inp = (*notify)(inp,
 2018                                             inetctlerrmap[cmd]);
 2019                         }
 2020                 }
 2021         } else {
 2022                 bzero(&inc, sizeof(inc));
 2023                 inc.inc_fport = th->th_dport;
 2024                 inc.inc_lport = th->th_sport;
 2025                 inc.inc_faddr = faddr;
 2026                 inc.inc_laddr = ip->ip_src;
 2027                 syncache_unreach(&inc, icmp_tcp_seq);
 2028         }
 2029 out:
 2030         if (inp != NULL)
 2031                 INP_WUNLOCK(inp);
 2032         INP_INFO_RUNLOCK(&V_tcbinfo);
 2033 }
 2034 #endif /* INET */
 2035 
 2036 #ifdef INET6
 2037 void
 2038 tcp6_ctlinput(int cmd, struct sockaddr *sa, void *d)
 2039 {
 2040         struct in6_addr *dst;
 2041         struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
 2042         struct ip6_hdr *ip6;
 2043         struct mbuf *m;
 2044         struct inpcb *inp;
 2045         struct tcpcb *tp;
 2046         struct icmp6_hdr *icmp6;
 2047         struct ip6ctlparam *ip6cp = NULL;
 2048         const struct sockaddr_in6 *sa6_src = NULL;
 2049         struct in_conninfo inc;
 2050         struct tcp_ports {
 2051                 uint16_t th_sport;
 2052                 uint16_t th_dport;
 2053         } t_ports;
 2054         tcp_seq icmp_tcp_seq;
 2055         unsigned int mtu;
 2056         unsigned int off;
 2057 
 2058         if (sa->sa_family != AF_INET6 ||
 2059             sa->sa_len != sizeof(struct sockaddr_in6))
 2060                 return;
 2061 
 2062         /* if the parameter is from icmp6, decode it. */
 2063         if (d != NULL) {
 2064                 ip6cp = (struct ip6ctlparam *)d;
 2065                 icmp6 = ip6cp->ip6c_icmp6;
 2066                 m = ip6cp->ip6c_m;
 2067                 ip6 = ip6cp->ip6c_ip6;
 2068                 off = ip6cp->ip6c_off;
 2069                 sa6_src = ip6cp->ip6c_src;
 2070                 dst = ip6cp->ip6c_finaldst;
 2071         } else {
 2072                 m = NULL;
 2073                 ip6 = NULL;
 2074                 off = 0;        /* fool gcc */
 2075                 sa6_src = &sa6_any;
 2076                 dst = NULL;
 2077         }
 2078 
 2079         if (cmd == PRC_MSGSIZE)
 2080                 notify = tcp_mtudisc_notify;
 2081         else if (V_icmp_may_rst && (cmd == PRC_UNREACH_ADMIN_PROHIB ||
 2082                 cmd == PRC_UNREACH_PORT || cmd == PRC_UNREACH_PROTOCOL || 
 2083                 cmd == PRC_TIMXCEED_INTRANS) && ip6 != NULL)
 2084                 notify = tcp_drop_syn_sent;
 2085 
 2086         /*
 2087          * Hostdead is ugly because it goes linearly through all PCBs.
 2088          * XXX: We never get this from ICMP, otherwise it makes an
 2089          * excellent DoS attack on machines with many connections.
 2090          */
 2091         else if (cmd == PRC_HOSTDEAD)
 2092                 ip6 = NULL;
 2093         else if ((unsigned)cmd >= PRC_NCMDS || inet6ctlerrmap[cmd] == 0)
 2094                 return;
 2095 
 2096         if (ip6 == NULL) {
 2097                 in6_pcbnotify(&V_tcbinfo, sa, 0,
 2098                               (const struct sockaddr *)sa6_src,
 2099                               0, cmd, NULL, notify);
 2100                 return;
 2101         }
 2102 
 2103         /* Check if we can safely get the ports from the tcp hdr */
 2104         if (m == NULL ||
 2105             (m->m_pkthdr.len <
 2106                 (int32_t) (off + sizeof(struct tcp_ports)))) {
 2107                 return;
 2108         }
 2109         bzero(&t_ports, sizeof(struct tcp_ports));
 2110         m_copydata(m, off, sizeof(struct tcp_ports), (caddr_t)&t_ports);
 2111         INP_INFO_RLOCK(&V_tcbinfo);
 2112         inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_dst, t_ports.th_dport,
 2113             &ip6->ip6_src, t_ports.th_sport, INPLOOKUP_WLOCKPCB, NULL);
 2114         if (inp != NULL && PRC_IS_REDIRECT(cmd)) {
 2115                 /* signal EHOSTDOWN, as it flushes the cached route */
 2116                 inp = (*notify)(inp, EHOSTDOWN);
 2117                 goto out;
 2118         }
 2119         off += sizeof(struct tcp_ports);
 2120         if (m->m_pkthdr.len < (int32_t) (off + sizeof(tcp_seq))) {
 2121                 goto out;
 2122         }
 2123         m_copydata(m, off, sizeof(tcp_seq), (caddr_t)&icmp_tcp_seq);
 2124         if (inp != NULL)  {
 2125                 if (!(inp->inp_flags & INP_TIMEWAIT) &&
 2126                     !(inp->inp_flags & INP_DROPPED) &&
 2127                     !(inp->inp_socket == NULL)) {
 2128                         tp = intotcpcb(inp);
 2129                         if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
 2130                             SEQ_LT(ntohl(icmp_tcp_seq), tp->snd_max)) {
 2131                                 if (cmd == PRC_MSGSIZE) {
 2132                                         /*
 2133                                          * MTU discovery:
 2134                                          * If we got a needfrag set the MTU
 2135                                          * in the route to the suggested new
 2136                                          * value (if given) and then notify.
 2137                                          */
 2138                                         mtu = ntohl(icmp6->icmp6_mtu);
 2139                                         /*
 2140                                          * If no alternative MTU was
 2141                                          * proposed, or the proposed
 2142                                          * MTU was too small, set to
 2143                                          * the min.
 2144                                          */
 2145                                         if (mtu < IPV6_MMTU)
 2146                                                 mtu = IPV6_MMTU - 8;
 2147                                         bzero(&inc, sizeof(inc));
 2148                                         inc.inc_fibnum = M_GETFIB(m);
 2149                                         inc.inc_flags |= INC_ISIPV6;
 2150                                         inc.inc6_faddr = *dst;
 2151                                         if (in6_setscope(&inc.inc6_faddr,
 2152                                                 m->m_pkthdr.rcvif, NULL))
 2153                                                 goto out;
 2154                                         /*
 2155                                          * Only process the offered MTU if it
 2156                                          * is smaller than the current one.
 2157                                          */
 2158                                         if (mtu < tp->t_maxseg +
 2159                                             sizeof (struct tcphdr) +
 2160                                             sizeof (struct ip6_hdr)) {
 2161                                                 tcp_hc_updatemtu(&inc, mtu);
 2162                                                 tcp_mtudisc(inp, mtu);
 2163                                                 ICMP6STAT_INC(icp6s_pmtuchg);
 2164                                         }
 2165                                 } else
 2166                                         inp = (*notify)(inp,
 2167                                             inet6ctlerrmap[cmd]);
 2168                         }
 2169                 }
 2170         } else {
 2171                 bzero(&inc, sizeof(inc));
 2172                 inc.inc_fibnum = M_GETFIB(m);
 2173                 inc.inc_flags |= INC_ISIPV6;
 2174                 inc.inc_fport = t_ports.th_dport;
 2175                 inc.inc_lport = t_ports.th_sport;
 2176                 inc.inc6_faddr = *dst;
 2177                 inc.inc6_laddr = ip6->ip6_src;
 2178                 syncache_unreach(&inc, icmp_tcp_seq);
 2179         }
 2180 out:
 2181         if (inp != NULL)
 2182                 INP_WUNLOCK(inp);
 2183         INP_INFO_RUNLOCK(&V_tcbinfo);
 2184 }
 2185 #endif /* INET6 */
 2186 
 2187 
 2188 /*
 2189  * Following is where TCP initial sequence number generation occurs.
 2190  *
 2191  * There are two places where we must use initial sequence numbers:
 2192  * 1.  In SYN-ACK packets.
 2193  * 2.  In SYN packets.
 2194  *
 2195  * All ISNs for SYN-ACK packets are generated by the syncache.  See
 2196  * tcp_syncache.c for details.
 2197  *
 2198  * The ISNs in SYN packets must be monotonic; TIME_WAIT recycling
 2199  * depends on this property.  In addition, these ISNs should be
 2200  * unguessable so as to prevent connection hijacking.  To satisfy
 2201  * the requirements of this situation, the algorithm outlined in
 2202  * RFC 1948 is used, with only small modifications.
 2203  *
 2204  * Implementation details:
 2205  *
 2206  * Time is based off the system timer, and is corrected so that it
 2207  * increases by one megabyte per second.  This allows for proper
 2208  * recycling on high speed LANs while still leaving over an hour
 2209  * before rollover.
 2210  *
 2211  * As reading the *exact* system time is too expensive to be done
 2212  * whenever setting up a TCP connection, we increment the time
 2213  * offset in two ways.  First, a small random positive increment
 2214  * is added to isn_offset for each connection that is set up.
 2215  * Second, the function tcp_isn_tick fires once per clock tick
 2216  * and increments isn_offset as necessary so that sequence numbers
 2217  * are incremented at approximately ISN_BYTES_PER_SECOND.  The
 2218  * random positive increments serve only to ensure that the same
 2219  * exact sequence number is never sent out twice (as could otherwise
 2220  * happen when a port is recycled in less than the system tick
 2221  * interval.)
 2222  *
 2223  * net.inet.tcp.isn_reseed_interval controls the number of seconds
 2224  * between seeding of isn_secret.  This is normally set to zero,
 2225  * as reseeding should not be necessary.
 2226  *
 2227  * Locking of the global variables isn_secret, isn_last_reseed, isn_offset,
 2228  * isn_offset_old, and isn_ctx is performed using the TCP pcbinfo lock.  In
 2229  * general, this means holding an exclusive (write) lock.
 2230  */
 2231 
 2232 #define ISN_BYTES_PER_SECOND 1048576
 2233 #define ISN_STATIC_INCREMENT 4096
 2234 #define ISN_RANDOM_INCREMENT (4096 - 1)
 2235 
 2236 static VNET_DEFINE(u_char, isn_secret[32]);
 2237 static VNET_DEFINE(int, isn_last);
 2238 static VNET_DEFINE(int, isn_last_reseed);
 2239 static VNET_DEFINE(u_int32_t, isn_offset);
 2240 static VNET_DEFINE(u_int32_t, isn_offset_old);
 2241 
 2242 #define V_isn_secret                    VNET(isn_secret)
 2243 #define V_isn_last                      VNET(isn_last)
 2244 #define V_isn_last_reseed               VNET(isn_last_reseed)
 2245 #define V_isn_offset                    VNET(isn_offset)
 2246 #define V_isn_offset_old                VNET(isn_offset_old)
 2247 
 2248 tcp_seq
 2249 tcp_new_isn(struct tcpcb *tp)
 2250 {
 2251         MD5_CTX isn_ctx;
 2252         u_int32_t md5_buffer[4];
 2253         tcp_seq new_isn;
 2254         u_int32_t projected_offset;
 2255 
 2256         INP_WLOCK_ASSERT(tp->t_inpcb);
 2257 
 2258         ISN_LOCK();
 2259         /* Seed if this is the first use, reseed if requested. */
 2260         if ((V_isn_last_reseed == 0) || ((V_tcp_isn_reseed_interval > 0) &&
 2261              (((u_int)V_isn_last_reseed + (u_int)V_tcp_isn_reseed_interval*hz)
 2262                 < (u_int)ticks))) {
 2263                 read_random(&V_isn_secret, sizeof(V_isn_secret));
 2264                 V_isn_last_reseed = ticks;
 2265         }
 2266 
 2267         /* Compute the md5 hash and return the ISN. */
 2268         MD5Init(&isn_ctx);
 2269         MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->inp_fport, sizeof(u_short));
 2270         MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->inp_lport, sizeof(u_short));
 2271 #ifdef INET6
 2272         if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) {
 2273                 MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->in6p_faddr,
 2274                           sizeof(struct in6_addr));
 2275                 MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->in6p_laddr,
 2276                           sizeof(struct in6_addr));
 2277         } else
 2278 #endif
 2279         {
 2280                 MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->inp_faddr,
 2281                           sizeof(struct in_addr));
 2282                 MD5Update(&isn_ctx, (u_char *) &tp->t_inpcb->inp_laddr,
 2283                           sizeof(struct in_addr));
 2284         }
 2285         MD5Update(&isn_ctx, (u_char *) &V_isn_secret, sizeof(V_isn_secret));
 2286         MD5Final((u_char *) &md5_buffer, &isn_ctx);
 2287         new_isn = (tcp_seq) md5_buffer[0];
 2288         V_isn_offset += ISN_STATIC_INCREMENT +
 2289                 (arc4random() & ISN_RANDOM_INCREMENT);
 2290         if (ticks != V_isn_last) {
 2291                 projected_offset = V_isn_offset_old +
 2292                     ISN_BYTES_PER_SECOND / hz * (ticks - V_isn_last);
 2293                 if (SEQ_GT(projected_offset, V_isn_offset))
 2294                         V_isn_offset = projected_offset;
 2295                 V_isn_offset_old = V_isn_offset;
 2296                 V_isn_last = ticks;
 2297         }
 2298         new_isn += V_isn_offset;
 2299         ISN_UNLOCK();
 2300         return (new_isn);
 2301 }
 2302 
 2303 /*
 2304  * When a specific ICMP unreachable message is received and the
 2305  * connection state is SYN-SENT, drop the connection.  This behavior
 2306  * is controlled by the icmp_may_rst sysctl.
 2307  */
 2308 struct inpcb *
 2309 tcp_drop_syn_sent(struct inpcb *inp, int errno)
 2310 {
 2311         struct tcpcb *tp;
 2312 
 2313         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
 2314         INP_WLOCK_ASSERT(inp);
 2315 
 2316         if ((inp->inp_flags & INP_TIMEWAIT) ||
 2317             (inp->inp_flags & INP_DROPPED))
 2318                 return (inp);
 2319 
 2320         tp = intotcpcb(inp);
 2321         if (tp->t_state != TCPS_SYN_SENT)
 2322                 return (inp);
 2323 
 2324         tp = tcp_drop(tp, errno);
 2325         if (tp != NULL)
 2326                 return (inp);
 2327         else
 2328                 return (NULL);
 2329 }
 2330 
 2331 /*
 2332  * When `need fragmentation' ICMP is received, update our idea of the MSS
 2333  * based on the new value. Also nudge TCP to send something, since we
 2334  * know the packet we just sent was dropped.
 2335  * This duplicates some code in the tcp_mss() function in tcp_input.c.
 2336  */
 2337 static struct inpcb *
 2338 tcp_mtudisc_notify(struct inpcb *inp, int error)
 2339 {
 2340 
 2341         tcp_mtudisc(inp, -1);
 2342         return (inp);
 2343 }
 2344 
 2345 static void
 2346 tcp_mtudisc(struct inpcb *inp, int mtuoffer)
 2347 {
 2348         struct tcpcb *tp;
 2349         struct socket *so;
 2350 
 2351         INP_WLOCK_ASSERT(inp);
 2352         if ((inp->inp_flags & INP_TIMEWAIT) ||
 2353             (inp->inp_flags & INP_DROPPED))
 2354                 return;
 2355 
 2356         tp = intotcpcb(inp);
 2357         KASSERT(tp != NULL, ("tcp_mtudisc: tp == NULL"));
 2358 
 2359         tcp_mss_update(tp, -1, mtuoffer, NULL, NULL);
 2360   
 2361         so = inp->inp_socket;
 2362         SOCKBUF_LOCK(&so->so_snd);
 2363         /* If the mss is larger than the socket buffer, decrease the mss. */
 2364         if (so->so_snd.sb_hiwat < tp->t_maxseg)
 2365                 tp->t_maxseg = so->so_snd.sb_hiwat;
 2366         SOCKBUF_UNLOCK(&so->so_snd);
 2367 
 2368         TCPSTAT_INC(tcps_mturesent);
 2369         tp->t_rtttime = 0;
 2370         tp->snd_nxt = tp->snd_una;
 2371         tcp_free_sackholes(tp);
 2372         tp->snd_recover = tp->snd_max;
 2373         if (tp->t_flags & TF_SACK_PERMIT)
 2374                 EXIT_FASTRECOVERY(tp->t_flags);
 2375         tp->t_fb->tfb_tcp_output(tp);
 2376 }
 2377 
 2378 #ifdef INET
 2379 /*
 2380  * Look-up the routing entry to the peer of this inpcb.  If no route
 2381  * is found and it cannot be allocated, then return 0.  This routine
 2382  * is called by TCP routines that access the rmx structure and by
 2383  * tcp_mss_update to get the peer/interface MTU.
 2384  */
 2385 u_long
 2386 tcp_maxmtu(struct in_conninfo *inc, struct tcp_ifcap *cap)
 2387 {
 2388         struct nhop4_extended nh4;
 2389         struct ifnet *ifp;
 2390         u_long maxmtu = 0;
 2391 
 2392         KASSERT(inc != NULL, ("tcp_maxmtu with NULL in_conninfo pointer"));
 2393 
 2394         if (inc->inc_faddr.s_addr != INADDR_ANY) {
 2395 
 2396                 if (fib4_lookup_nh_ext(inc->inc_fibnum, inc->inc_faddr,
 2397                     NHR_REF, 0, &nh4) != 0)
 2398                         return (0);
 2399 
 2400                 ifp = nh4.nh_ifp;
 2401                 maxmtu = nh4.nh_mtu;
 2402 
 2403                 /* Report additional interface capabilities. */
 2404                 if (cap != NULL) {
 2405                         if (ifp->if_capenable & IFCAP_TSO4 &&
 2406                             ifp->if_hwassist & CSUM_TSO) {
 2407                                 cap->ifcap |= CSUM_TSO;
 2408                                 cap->tsomax = ifp->if_hw_tsomax;
 2409                                 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
 2410                                 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
 2411                         }
 2412                 }
 2413                 fib4_free_nh_ext(inc->inc_fibnum, &nh4);
 2414         }
 2415         return (maxmtu);
 2416 }
 2417 #endif /* INET */
 2418 
 2419 #ifdef INET6
 2420 u_long
 2421 tcp_maxmtu6(struct in_conninfo *inc, struct tcp_ifcap *cap)
 2422 {
 2423         struct nhop6_extended nh6;
 2424         struct in6_addr dst6;
 2425         uint32_t scopeid;
 2426         struct ifnet *ifp;
 2427         u_long maxmtu = 0;
 2428 
 2429         KASSERT(inc != NULL, ("tcp_maxmtu6 with NULL in_conninfo pointer"));
 2430 
 2431         if (!IN6_IS_ADDR_UNSPECIFIED(&inc->inc6_faddr)) {
 2432                 in6_splitscope(&inc->inc6_faddr, &dst6, &scopeid);
 2433                 if (fib6_lookup_nh_ext(inc->inc_fibnum, &dst6, scopeid, 0,
 2434                     0, &nh6) != 0)
 2435                         return (0);
 2436 
 2437                 ifp = nh6.nh_ifp;
 2438                 maxmtu = nh6.nh_mtu;
 2439 
 2440                 /* Report additional interface capabilities. */
 2441                 if (cap != NULL) {
 2442                         if (ifp->if_capenable & IFCAP_TSO6 &&
 2443                             ifp->if_hwassist & CSUM_TSO) {
 2444                                 cap->ifcap |= CSUM_TSO;
 2445                                 cap->tsomax = ifp->if_hw_tsomax;
 2446                                 cap->tsomaxsegcount = ifp->if_hw_tsomaxsegcount;
 2447                                 cap->tsomaxsegsize = ifp->if_hw_tsomaxsegsize;
 2448                         }
 2449                 }
 2450                 fib6_free_nh_ext(inc->inc_fibnum, &nh6);
 2451         }
 2452 
 2453         return (maxmtu);
 2454 }
 2455 #endif /* INET6 */
 2456 
 2457 /*
 2458  * Calculate effective SMSS per RFC5681 definition for a given TCP
 2459  * connection at its current state, taking into account SACK and etc.
 2460  */
 2461 u_int
 2462 tcp_maxseg(const struct tcpcb *tp)
 2463 {
 2464         u_int optlen;
 2465 
 2466         if (tp->t_flags & TF_NOOPT)
 2467                 return (tp->t_maxseg);
 2468 
 2469         /*
 2470          * Here we have a simplified code from tcp_addoptions(),
 2471          * without a proper loop, and having most of paddings hardcoded.
 2472          * We might make mistakes with padding here in some edge cases,
 2473          * but this is harmless, since result of tcp_maxseg() is used
 2474          * only in cwnd and ssthresh estimations.
 2475          */
 2476 #define PAD(len)        ((((len) / 4) + !!((len) % 4)) * 4)
 2477         if (TCPS_HAVEESTABLISHED(tp->t_state)) {
 2478                 if (tp->t_flags & TF_RCVD_TSTMP)
 2479                         optlen = TCPOLEN_TSTAMP_APPA;
 2480                 else
 2481                         optlen = 0;
 2482 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
 2483                 if (tp->t_flags & TF_SIGNATURE)
 2484                         optlen += PAD(TCPOLEN_SIGNATURE);
 2485 #endif
 2486                 if ((tp->t_flags & TF_SACK_PERMIT) && tp->rcv_numsacks > 0) {
 2487                         optlen += TCPOLEN_SACKHDR;
 2488                         optlen += tp->rcv_numsacks * TCPOLEN_SACK;
 2489                         optlen = PAD(optlen);
 2490                 }
 2491         } else {
 2492                 if (tp->t_flags & TF_REQ_TSTMP)
 2493                         optlen = TCPOLEN_TSTAMP_APPA;
 2494                 else
 2495                         optlen = PAD(TCPOLEN_MAXSEG);
 2496                 if (tp->t_flags & TF_REQ_SCALE)
 2497                         optlen += PAD(TCPOLEN_WINDOW);
 2498 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
 2499                 if (tp->t_flags & TF_SIGNATURE)
 2500                         optlen += PAD(TCPOLEN_SIGNATURE);
 2501 #endif
 2502                 if (tp->t_flags & TF_SACK_PERMIT)
 2503                         optlen += PAD(TCPOLEN_SACK_PERMITTED);
 2504         }
 2505 #undef PAD
 2506         optlen = min(optlen, TCP_MAXOLEN);
 2507         return (tp->t_maxseg - optlen);
 2508 }
 2509 
 2510 static int
 2511 sysctl_drop(SYSCTL_HANDLER_ARGS)
 2512 {
 2513         /* addrs[0] is a foreign socket, addrs[1] is a local one. */
 2514         struct sockaddr_storage addrs[2];
 2515         struct inpcb *inp;
 2516         struct tcpcb *tp;
 2517         struct tcptw *tw;
 2518         struct sockaddr_in *fin, *lin;
 2519 #ifdef INET6
 2520         struct sockaddr_in6 *fin6, *lin6;
 2521 #endif
 2522         int error;
 2523 
 2524         inp = NULL;
 2525         fin = lin = NULL;
 2526 #ifdef INET6
 2527         fin6 = lin6 = NULL;
 2528 #endif
 2529         error = 0;
 2530 
 2531         if (req->oldptr != NULL || req->oldlen != 0)
 2532                 return (EINVAL);
 2533         if (req->newptr == NULL)
 2534                 return (EPERM);
 2535         if (req->newlen < sizeof(addrs))
 2536                 return (ENOMEM);
 2537         error = SYSCTL_IN(req, &addrs, sizeof(addrs));
 2538         if (error)
 2539                 return (error);
 2540 
 2541         switch (addrs[0].ss_family) {
 2542 #ifdef INET6
 2543         case AF_INET6:
 2544                 fin6 = (struct sockaddr_in6 *)&addrs[0];
 2545                 lin6 = (struct sockaddr_in6 *)&addrs[1];
 2546                 if (fin6->sin6_len != sizeof(struct sockaddr_in6) ||
 2547                     lin6->sin6_len != sizeof(struct sockaddr_in6))
 2548                         return (EINVAL);
 2549                 if (IN6_IS_ADDR_V4MAPPED(&fin6->sin6_addr)) {
 2550                         if (!IN6_IS_ADDR_V4MAPPED(&lin6->sin6_addr))
 2551                                 return (EINVAL);
 2552                         in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[0]);
 2553                         in6_sin6_2_sin_in_sock((struct sockaddr *)&addrs[1]);
 2554                         fin = (struct sockaddr_in *)&addrs[0];
 2555                         lin = (struct sockaddr_in *)&addrs[1];
 2556                         break;
 2557                 }
 2558                 error = sa6_embedscope(fin6, V_ip6_use_defzone);
 2559                 if (error)
 2560                         return (error);
 2561                 error = sa6_embedscope(lin6, V_ip6_use_defzone);
 2562                 if (error)
 2563                         return (error);
 2564                 break;
 2565 #endif
 2566 #ifdef INET
 2567         case AF_INET:
 2568                 fin = (struct sockaddr_in *)&addrs[0];
 2569                 lin = (struct sockaddr_in *)&addrs[1];
 2570                 if (fin->sin_len != sizeof(struct sockaddr_in) ||
 2571                     lin->sin_len != sizeof(struct sockaddr_in))
 2572                         return (EINVAL);
 2573                 break;
 2574 #endif
 2575         default:
 2576                 return (EINVAL);
 2577         }
 2578         INP_INFO_RLOCK(&V_tcbinfo);
 2579         switch (addrs[0].ss_family) {
 2580 #ifdef INET6
 2581         case AF_INET6:
 2582                 inp = in6_pcblookup(&V_tcbinfo, &fin6->sin6_addr,
 2583                     fin6->sin6_port, &lin6->sin6_addr, lin6->sin6_port,
 2584                     INPLOOKUP_WLOCKPCB, NULL);
 2585                 break;
 2586 #endif
 2587 #ifdef INET
 2588         case AF_INET:
 2589                 inp = in_pcblookup(&V_tcbinfo, fin->sin_addr, fin->sin_port,
 2590                     lin->sin_addr, lin->sin_port, INPLOOKUP_WLOCKPCB, NULL);
 2591                 break;
 2592 #endif
 2593         }
 2594         if (inp != NULL) {
 2595                 if (inp->inp_flags & INP_TIMEWAIT) {
 2596                         /*
 2597                          * XXXRW: There currently exists a state where an
 2598                          * inpcb is present, but its timewait state has been
 2599                          * discarded.  For now, don't allow dropping of this
 2600                          * type of inpcb.
 2601                          */
 2602                         tw = intotw(inp);
 2603                         if (tw != NULL)
 2604                                 tcp_twclose(tw, 0);
 2605                         else
 2606                                 INP_WUNLOCK(inp);
 2607                 } else if (!(inp->inp_flags & INP_DROPPED) &&
 2608                            !(inp->inp_socket->so_options & SO_ACCEPTCONN)) {
 2609                         tp = intotcpcb(inp);
 2610                         tp = tcp_drop(tp, ECONNABORTED);
 2611                         if (tp != NULL)
 2612                                 INP_WUNLOCK(inp);
 2613                 } else
 2614                         INP_WUNLOCK(inp);
 2615         } else
 2616                 error = ESRCH;
 2617         INP_INFO_RUNLOCK(&V_tcbinfo);
 2618         return (error);
 2619 }
 2620 
 2621 SYSCTL_PROC(_net_inet_tcp, TCPCTL_DROP, drop,
 2622     CTLFLAG_VNET | CTLTYPE_STRUCT | CTLFLAG_WR | CTLFLAG_SKIP, NULL,
 2623     0, sysctl_drop, "", "Drop TCP connection");
 2624 
 2625 /*
 2626  * Generate a standardized TCP log line for use throughout the
 2627  * tcp subsystem.  Memory allocation is done with M_NOWAIT to
 2628  * allow use in the interrupt context.
 2629  *
 2630  * NB: The caller MUST free(s, M_TCPLOG) the returned string.
 2631  * NB: The function may return NULL if memory allocation failed.
 2632  *
 2633  * Due to header inclusion and ordering limitations the struct ip
 2634  * and ip6_hdr pointers have to be passed as void pointers.
 2635  */
 2636 char *
 2637 tcp_log_vain(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
 2638     const void *ip6hdr)
 2639 {
 2640 
 2641         /* Is logging enabled? */
 2642         if (tcp_log_in_vain == 0)
 2643                 return (NULL);
 2644 
 2645         return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
 2646 }
 2647 
 2648 char *
 2649 tcp_log_addrs(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
 2650     const void *ip6hdr)
 2651 {
 2652 
 2653         /* Is logging enabled? */
 2654         if (tcp_log_debug == 0)
 2655                 return (NULL);
 2656 
 2657         return (tcp_log_addr(inc, th, ip4hdr, ip6hdr));
 2658 }
 2659 
 2660 static char *
 2661 tcp_log_addr(struct in_conninfo *inc, struct tcphdr *th, void *ip4hdr,
 2662     const void *ip6hdr)
 2663 {
 2664         char *s, *sp;
 2665         size_t size;
 2666         struct ip *ip;
 2667 #ifdef INET6
 2668         const struct ip6_hdr *ip6;
 2669 
 2670         ip6 = (const struct ip6_hdr *)ip6hdr;
 2671 #endif /* INET6 */
 2672         ip = (struct ip *)ip4hdr;
 2673 
 2674         /*
 2675          * The log line looks like this:
 2676          * "TCP: [1.2.3.4]:50332 to [1.2.3.4]:80 tcpflags 0x2<SYN>"
 2677          */
 2678         size = sizeof("TCP: []:12345 to []:12345 tcpflags 0x2<>") +
 2679             sizeof(PRINT_TH_FLAGS) + 1 +
 2680 #ifdef INET6
 2681             2 * INET6_ADDRSTRLEN;
 2682 #else
 2683             2 * INET_ADDRSTRLEN;
 2684 #endif /* INET6 */
 2685 
 2686         s = malloc(size, M_TCPLOG, M_ZERO|M_NOWAIT);
 2687         if (s == NULL)
 2688                 return (NULL);
 2689 
 2690         strcat(s, "TCP: [");
 2691         sp = s + strlen(s);
 2692 
 2693         if (inc && ((inc->inc_flags & INC_ISIPV6) == 0)) {
 2694                 inet_ntoa_r(inc->inc_faddr, sp);
 2695                 sp = s + strlen(s);
 2696                 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
 2697                 sp = s + strlen(s);
 2698                 inet_ntoa_r(inc->inc_laddr, sp);
 2699                 sp = s + strlen(s);
 2700                 sprintf(sp, "]:%i", ntohs(inc->inc_lport));
 2701 #ifdef INET6
 2702         } else if (inc) {
 2703                 ip6_sprintf(sp, &inc->inc6_faddr);
 2704                 sp = s + strlen(s);
 2705                 sprintf(sp, "]:%i to [", ntohs(inc->inc_fport));
 2706                 sp = s + strlen(s);
 2707                 ip6_sprintf(sp, &inc->inc6_laddr);
 2708                 sp = s + strlen(s);
 2709                 sprintf(sp, "]:%i", ntohs(inc->inc_lport));
 2710         } else if (ip6 && th) {
 2711                 ip6_sprintf(sp, &ip6->ip6_src);
 2712                 sp = s + strlen(s);
 2713                 sprintf(sp, "]:%i to [", ntohs(th->th_sport));
 2714                 sp = s + strlen(s);
 2715                 ip6_sprintf(sp, &ip6->ip6_dst);
 2716                 sp = s + strlen(s);
 2717                 sprintf(sp, "]:%i", ntohs(th->th_dport));
 2718 #endif /* INET6 */
 2719 #ifdef INET
 2720         } else if (ip && th) {
 2721                 inet_ntoa_r(ip->ip_src, sp);
 2722                 sp = s + strlen(s);
 2723                 sprintf(sp, "]:%i to [", ntohs(th->th_sport));
 2724                 sp = s + strlen(s);
 2725                 inet_ntoa_r(ip->ip_dst, sp);
 2726                 sp = s + strlen(s);
 2727                 sprintf(sp, "]:%i", ntohs(th->th_dport));
 2728 #endif /* INET */
 2729         } else {
 2730                 free(s, M_TCPLOG);
 2731                 return (NULL);
 2732         }
 2733         sp = s + strlen(s);
 2734         if (th)
 2735                 sprintf(sp, " tcpflags 0x%b", th->th_flags, PRINT_TH_FLAGS);
 2736         if (*(s + size - 1) != '\0')
 2737                 panic("%s: string too long", __func__);
 2738         return (s);
 2739 }
 2740 
 2741 /*
 2742  * A subroutine which makes it easy to track TCP state changes with DTrace.
 2743  * This function shouldn't be called for t_state initializations that don't
 2744  * correspond to actual TCP state transitions.
 2745  */
 2746 void
 2747 tcp_state_change(struct tcpcb *tp, int newstate)
 2748 {
 2749 #if defined(KDTRACE_HOOKS)
 2750         int pstate = tp->t_state;
 2751 #endif
 2752 
 2753         TCPSTATES_DEC(tp->t_state);
 2754         TCPSTATES_INC(newstate);
 2755         tp->t_state = newstate;
 2756         TCP_PROBE6(state__change, NULL, tp, NULL, tp, NULL, pstate);
 2757 }

Cache object: d85a0ad1f6b99ae2de9a9a576f81e291


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.