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_timewait.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/8.3/sys/netinet/tcp_timewait.c 230087 2012-01-13 20:35:43Z jhb $");
   34 
   35 #include "opt_inet.h"
   36 #include "opt_inet6.h"
   37 #include "opt_tcpdebug.h"
   38 
   39 #include <sys/param.h>
   40 #include <sys/systm.h>
   41 #include <sys/callout.h>
   42 #include <sys/kernel.h>
   43 #include <sys/sysctl.h>
   44 #include <sys/malloc.h>
   45 #include <sys/mbuf.h>
   46 #include <sys/priv.h>
   47 #include <sys/proc.h>
   48 #include <sys/socket.h>
   49 #include <sys/socketvar.h>
   50 #include <sys/protosw.h>
   51 #include <sys/random.h>
   52 
   53 #include <vm/uma.h>
   54 
   55 #include <net/route.h>
   56 #include <net/if.h>
   57 #include <net/vnet.h>
   58 
   59 #include <netinet/in.h>
   60 #include <netinet/in_systm.h>
   61 #include <netinet/ip.h>
   62 #ifdef INET6
   63 #include <netinet/ip6.h>
   64 #endif
   65 #include <netinet/in_pcb.h>
   66 #ifdef INET6
   67 #include <netinet6/in6_pcb.h>
   68 #endif
   69 #include <netinet/in_var.h>
   70 #include <netinet/ip_var.h>
   71 #ifdef INET6
   72 #include <netinet6/ip6_var.h>
   73 #include <netinet6/scope6_var.h>
   74 #include <netinet6/nd6.h>
   75 #endif
   76 #include <netinet/ip_icmp.h>
   77 #include <netinet/tcp.h>
   78 #include <netinet/tcp_fsm.h>
   79 #include <netinet/tcp_seq.h>
   80 #include <netinet/tcp_timer.h>
   81 #include <netinet/tcp_var.h>
   82 #ifdef INET6
   83 #include <netinet6/tcp6_var.h>
   84 #endif
   85 #include <netinet/tcpip.h>
   86 #ifdef TCPDEBUG
   87 #include <netinet/tcp_debug.h>
   88 #endif
   89 #include <netinet6/ip6protosw.h>
   90 
   91 #include <machine/in_cksum.h>
   92 
   93 #include <security/mac/mac_framework.h>
   94 
   95 static VNET_DEFINE(uma_zone_t, tcptw_zone);
   96 #define V_tcptw_zone                    VNET(tcptw_zone)
   97 static int      maxtcptw;
   98 
   99 /*
  100  * The timed wait queue contains references to each of the TCP sessions
  101  * currently in the TIME_WAIT state.  The queue pointers, including the
  102  * queue pointers in each tcptw structure, are protected using the global
  103  * tcbinfo lock, which must be held over queue iteration and modification.
  104  */
  105 static VNET_DEFINE(TAILQ_HEAD(, tcptw), twq_2msl);
  106 #define V_twq_2msl                      VNET(twq_2msl)
  107 
  108 static void     tcp_tw_2msl_reset(struct tcptw *, int);
  109 static void     tcp_tw_2msl_stop(struct tcptw *);
  110 
  111 static int
  112 tcptw_auto_size(void)
  113 {
  114         int halfrange;
  115 
  116         /*
  117          * Max out at half the ephemeral port range so that TIME_WAIT
  118          * sockets don't tie up too many ephemeral ports.
  119          */
  120         if (V_ipport_lastauto > V_ipport_firstauto)
  121                 halfrange = (V_ipport_lastauto - V_ipport_firstauto) / 2;
  122         else
  123                 halfrange = (V_ipport_firstauto - V_ipport_lastauto) / 2;
  124         /* Protect against goofy port ranges smaller than 32. */
  125         return (imin(imax(halfrange, 32), maxsockets / 5));
  126 }
  127 
  128 static int
  129 sysctl_maxtcptw(SYSCTL_HANDLER_ARGS)
  130 {
  131         int error, new;
  132 
  133         if (maxtcptw == 0)
  134                 new = tcptw_auto_size();
  135         else
  136                 new = maxtcptw;
  137         error = sysctl_handle_int(oidp, &new, 0, req);
  138         if (error == 0 && req->newptr)
  139                 if (new >= 32) {
  140                         maxtcptw = new;
  141                         uma_zone_set_max(V_tcptw_zone, maxtcptw);
  142                 }
  143         return (error);
  144 }
  145 
  146 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, maxtcptw, CTLTYPE_INT|CTLFLAG_RW,
  147     &maxtcptw, 0, sysctl_maxtcptw, "IU",
  148     "Maximum number of compressed TCP TIME_WAIT entries");
  149 
  150 VNET_DEFINE(int, nolocaltimewait) = 0;
  151 #define V_nolocaltimewait       VNET(nolocaltimewait)
  152 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, nolocaltimewait, CTLFLAG_RW,
  153     &VNET_NAME(nolocaltimewait), 0,
  154     "Do not create compressed TCP TIME_WAIT entries for local connections");
  155 
  156 void
  157 tcp_tw_zone_change(void)
  158 {
  159 
  160         if (maxtcptw == 0)
  161                 uma_zone_set_max(V_tcptw_zone, tcptw_auto_size());
  162 }
  163 
  164 void
  165 tcp_tw_init(void)
  166 {
  167 
  168         V_tcptw_zone = uma_zcreate("tcptw", sizeof(struct tcptw),
  169             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
  170         TUNABLE_INT_FETCH("net.inet.tcp.maxtcptw", &maxtcptw);
  171         if (maxtcptw == 0)
  172                 uma_zone_set_max(V_tcptw_zone, tcptw_auto_size());
  173         else
  174                 uma_zone_set_max(V_tcptw_zone, maxtcptw);
  175         TAILQ_INIT(&V_twq_2msl);
  176 }
  177 
  178 #ifdef VIMAGE
  179 void
  180 tcp_tw_destroy(void)
  181 {
  182         struct tcptw *tw;
  183 
  184         INP_INFO_WLOCK(&V_tcbinfo);
  185         while((tw = TAILQ_FIRST(&V_twq_2msl)) != NULL)
  186                 tcp_twclose(tw, 0);
  187         INP_INFO_WUNLOCK(&V_tcbinfo);
  188 
  189         uma_zdestroy(V_tcptw_zone);
  190 }
  191 #endif
  192 
  193 /*
  194  * Move a TCP connection into TIME_WAIT state.
  195  *    tcbinfo is locked.
  196  *    inp is locked, and is unlocked before returning.
  197  */
  198 void
  199 tcp_twstart(struct tcpcb *tp)
  200 {
  201         struct tcptw *tw;
  202         struct inpcb *inp = tp->t_inpcb;
  203         int acknow;
  204         struct socket *so;
  205 
  206         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);      /* tcp_tw_2msl_reset(). */
  207         INP_WLOCK_ASSERT(inp);
  208 
  209         if (V_nolocaltimewait && in_localip(inp->inp_faddr)) {
  210                 tp = tcp_close(tp);
  211                 if (tp != NULL)
  212                         INP_WUNLOCK(inp);
  213                 return;
  214         }
  215 
  216         tw = uma_zalloc(V_tcptw_zone, M_NOWAIT);
  217         if (tw == NULL) {
  218                 tw = tcp_tw_2msl_scan(1);
  219                 if (tw == NULL) {
  220                         tp = tcp_close(tp);
  221                         if (tp != NULL)
  222                                 INP_WUNLOCK(inp);
  223                         return;
  224                 }
  225         }
  226         tw->tw_inpcb = inp;
  227 
  228         /*
  229          * Recover last window size sent.
  230          */
  231         if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt))
  232                 tw->last_win = (tp->rcv_adv - tp->rcv_nxt) >> tp->rcv_scale;
  233         else
  234                 tw->last_win = 0;
  235 
  236         /*
  237          * Set t_recent if timestamps are used on the connection.
  238          */
  239         if ((tp->t_flags & (TF_REQ_TSTMP|TF_RCVD_TSTMP|TF_NOOPT)) ==
  240             (TF_REQ_TSTMP|TF_RCVD_TSTMP)) {
  241                 tw->t_recent = tp->ts_recent;
  242                 tw->ts_offset = tp->ts_offset;
  243         } else {
  244                 tw->t_recent = 0;
  245                 tw->ts_offset = 0;
  246         }
  247 
  248         tw->snd_nxt = tp->snd_nxt;
  249         tw->rcv_nxt = tp->rcv_nxt;
  250         tw->iss     = tp->iss;
  251         tw->irs     = tp->irs;
  252         tw->t_starttime = tp->t_starttime;
  253         tw->tw_time = 0;
  254 
  255 /* XXX
  256  * If this code will
  257  * be used for fin-wait-2 state also, then we may need
  258  * a ts_recent from the last segment.
  259  */
  260         acknow = tp->t_flags & TF_ACKNOW;
  261 
  262         /*
  263          * First, discard tcpcb state, which includes stopping its timers and
  264          * freeing it.  tcp_discardcb() used to also release the inpcb, but
  265          * that work is now done in the caller.
  266          *
  267          * Note: soisdisconnected() call used to be made in tcp_discardcb(),
  268          * and might not be needed here any longer.
  269          */
  270         tcp_discardcb(tp);
  271         so = inp->inp_socket;
  272         soisdisconnected(so);
  273         tw->tw_cred = crhold(so->so_cred);
  274         SOCK_LOCK(so);
  275         tw->tw_so_options = so->so_options;
  276         SOCK_UNLOCK(so);
  277         if (acknow)
  278                 tcp_twrespond(tw, TH_ACK);
  279         inp->inp_ppcb = tw;
  280         inp->inp_flags |= INP_TIMEWAIT;
  281         tcp_tw_2msl_reset(tw, 0);
  282 
  283         /*
  284          * If the inpcb owns the sole reference to the socket, then we can
  285          * detach and free the socket as it is not needed in time wait.
  286          */
  287         if (inp->inp_flags & INP_SOCKREF) {
  288                 KASSERT(so->so_state & SS_PROTOREF,
  289                     ("tcp_twstart: !SS_PROTOREF"));
  290                 inp->inp_flags &= ~INP_SOCKREF;
  291                 INP_WUNLOCK(inp);
  292                 ACCEPT_LOCK();
  293                 SOCK_LOCK(so);
  294                 so->so_state &= ~SS_PROTOREF;
  295                 sofree(so);
  296         } else
  297                 INP_WUNLOCK(inp);
  298 }
  299 
  300 #if 0
  301 /*
  302  * The appromixate rate of ISN increase of Microsoft TCP stacks;
  303  * the actual rate is slightly higher due to the addition of
  304  * random positive increments.
  305  *
  306  * Most other new OSes use semi-randomized ISN values, so we
  307  * do not need to worry about them.
  308  */
  309 #define MS_ISN_BYTES_PER_SECOND         250000
  310 
  311 /*
  312  * Determine if the ISN we will generate has advanced beyond the last
  313  * sequence number used by the previous connection.  If so, indicate
  314  * that it is safe to recycle this tw socket by returning 1.
  315  */
  316 int
  317 tcp_twrecycleable(struct tcptw *tw)
  318 {
  319         tcp_seq new_iss = tw->iss;
  320         tcp_seq new_irs = tw->irs;
  321 
  322         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);
  323         new_iss += (ticks - tw->t_starttime) * (ISN_BYTES_PER_SECOND / hz);
  324         new_irs += (ticks - tw->t_starttime) * (MS_ISN_BYTES_PER_SECOND / hz);
  325 
  326         if (SEQ_GT(new_iss, tw->snd_nxt) && SEQ_GT(new_irs, tw->rcv_nxt))
  327                 return (1);
  328         else
  329                 return (0);
  330 }
  331 #endif
  332 
  333 /*
  334  * Returns 1 if the TIME_WAIT state was killed and we should start over,
  335  * looking for a pcb in the listen state.  Returns 0 otherwise.
  336  */
  337 int
  338 tcp_twcheck(struct inpcb *inp, struct tcpopt *to, struct tcphdr *th,
  339     struct mbuf *m, int tlen)
  340 {
  341         struct tcptw *tw;
  342         int thflags;
  343         tcp_seq seq;
  344 
  345         /* tcbinfo lock required for tcp_twclose(), tcp_tw_2msl_reset(). */
  346         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);
  347         INP_WLOCK_ASSERT(inp);
  348 
  349         /*
  350          * XXXRW: Time wait state for inpcb has been recycled, but inpcb is
  351          * still present.  This is undesirable, but temporarily necessary
  352          * until we work out how to handle inpcb's who's timewait state has
  353          * been removed.
  354          */
  355         tw = intotw(inp);
  356         if (tw == NULL)
  357                 goto drop;
  358 
  359         thflags = th->th_flags;
  360 
  361         /*
  362          * NOTE: for FIN_WAIT_2 (to be added later),
  363          * must validate sequence number before accepting RST
  364          */
  365 
  366         /*
  367          * If the segment contains RST:
  368          *      Drop the segment - see Stevens, vol. 2, p. 964 and
  369          *      RFC 1337.
  370          */
  371         if (thflags & TH_RST)
  372                 goto drop;
  373 
  374 #if 0
  375 /* PAWS not needed at the moment */
  376         /*
  377          * RFC 1323 PAWS: If we have a timestamp reply on this segment
  378          * and it's less than ts_recent, drop it.
  379          */
  380         if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent &&
  381             TSTMP_LT(to.to_tsval, tp->ts_recent)) {
  382                 if ((thflags & TH_ACK) == 0)
  383                         goto drop;
  384                 goto ack;
  385         }
  386         /*
  387          * ts_recent is never updated because we never accept new segments.
  388          */
  389 #endif
  390 
  391         /*
  392          * If a new connection request is received
  393          * while in TIME_WAIT, drop the old connection
  394          * and start over if the sequence numbers
  395          * are above the previous ones.
  396          */
  397         if ((thflags & TH_SYN) && SEQ_GT(th->th_seq, tw->rcv_nxt)) {
  398                 tcp_twclose(tw, 0);
  399                 return (1);
  400         }
  401 
  402         /*
  403          * Drop the segment if it does not contain an ACK.
  404          */
  405         if ((thflags & TH_ACK) == 0)
  406                 goto drop;
  407 
  408         /*
  409          * Reset the 2MSL timer if this is a duplicate FIN.
  410          */
  411         if (thflags & TH_FIN) {
  412                 seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0);
  413                 if (seq + 1 == tw->rcv_nxt)
  414                         tcp_tw_2msl_reset(tw, 1);
  415         }
  416 
  417         /*
  418          * Acknowledge the segment if it has data or is not a duplicate ACK.
  419          */
  420         if (thflags != TH_ACK || tlen != 0 ||
  421             th->th_seq != tw->rcv_nxt || th->th_ack != tw->snd_nxt)
  422                 tcp_twrespond(tw, TH_ACK);
  423 drop:
  424         INP_WUNLOCK(inp);
  425         m_freem(m);
  426         return (0);
  427 }
  428 
  429 void
  430 tcp_twclose(struct tcptw *tw, int reuse)
  431 {
  432         struct socket *so;
  433         struct inpcb *inp;
  434 
  435         /*
  436          * At this point, we are in one of two situations:
  437          *
  438          * (1) We have no socket, just an inpcb<->twtcp pair.  We can free
  439          *     all state.
  440          *
  441          * (2) We have a socket -- if we own a reference, release it and
  442          *     notify the socket layer.
  443          */
  444         inp = tw->tw_inpcb;
  445         KASSERT((inp->inp_flags & INP_TIMEWAIT), ("tcp_twclose: !timewait"));
  446         KASSERT(intotw(inp) == tw, ("tcp_twclose: inp_ppcb != tw"));
  447         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);      /* tcp_tw_2msl_stop(). */
  448         INP_WLOCK_ASSERT(inp);
  449 
  450         tw->tw_inpcb = NULL;
  451         tcp_tw_2msl_stop(tw);
  452         inp->inp_ppcb = NULL;
  453         in_pcbdrop(inp);
  454 
  455         so = inp->inp_socket;
  456         if (so != NULL) {
  457                 /*
  458                  * If there's a socket, handle two cases: first, we own a
  459                  * strong reference, which we will now release, or we don't
  460                  * in which case another reference exists (XXXRW: think
  461                  * about this more), and we don't need to take action.
  462                  */
  463                 if (inp->inp_flags & INP_SOCKREF) {
  464                         inp->inp_flags &= ~INP_SOCKREF;
  465                         INP_WUNLOCK(inp);
  466                         ACCEPT_LOCK();
  467                         SOCK_LOCK(so);
  468                         KASSERT(so->so_state & SS_PROTOREF,
  469                             ("tcp_twclose: INP_SOCKREF && !SS_PROTOREF"));
  470                         so->so_state &= ~SS_PROTOREF;
  471                         sofree(so);
  472                 } else {
  473                         /*
  474                          * If we don't own the only reference, the socket and
  475                          * inpcb need to be left around to be handled by
  476                          * tcp_usr_detach() later.
  477                          */
  478                         INP_WUNLOCK(inp);
  479                 }
  480         } else
  481                 in_pcbfree(inp);
  482         TCPSTAT_INC(tcps_closed);
  483         crfree(tw->tw_cred);
  484         tw->tw_cred = NULL;
  485         if (reuse)
  486                 return;
  487         uma_zfree(V_tcptw_zone, tw);
  488 }
  489 
  490 int
  491 tcp_twrespond(struct tcptw *tw, int flags)
  492 {
  493         struct inpcb *inp = tw->tw_inpcb;
  494         struct tcphdr *th;
  495         struct mbuf *m;
  496         struct ip *ip = NULL;
  497         u_int hdrlen, optlen;
  498         int error;
  499         struct tcpopt to;
  500 #ifdef INET6
  501         struct ip6_hdr *ip6 = NULL;
  502         int isipv6 = inp->inp_inc.inc_flags & INC_ISIPV6;
  503 #endif
  504 
  505         INP_WLOCK_ASSERT(inp);
  506 
  507         m = m_gethdr(M_DONTWAIT, MT_DATA);
  508         if (m == NULL)
  509                 return (ENOBUFS);
  510         m->m_data += max_linkhdr;
  511 
  512 #ifdef MAC
  513         mac_inpcb_create_mbuf(inp, m);
  514 #endif
  515 
  516 #ifdef INET6
  517         if (isipv6) {
  518                 hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
  519                 ip6 = mtod(m, struct ip6_hdr *);
  520                 th = (struct tcphdr *)(ip6 + 1);
  521                 tcpip_fillheaders(inp, ip6, th);
  522         } else
  523 #endif
  524         {
  525                 hdrlen = sizeof(struct tcpiphdr);
  526                 ip = mtod(m, struct ip *);
  527                 th = (struct tcphdr *)(ip + 1);
  528                 tcpip_fillheaders(inp, ip, th);
  529         }
  530         to.to_flags = 0;
  531 
  532         /*
  533          * Send a timestamp and echo-reply if both our side and our peer
  534          * have sent timestamps in our SYN's and this is not a RST.
  535          */
  536         if (tw->t_recent && flags == TH_ACK) {
  537                 to.to_flags |= TOF_TS;
  538                 to.to_tsval = ticks + tw->ts_offset;
  539                 to.to_tsecr = tw->t_recent;
  540         }
  541         optlen = tcp_addoptions(&to, (u_char *)(th + 1));
  542 
  543         m->m_len = hdrlen + optlen;
  544         m->m_pkthdr.len = m->m_len;
  545 
  546         KASSERT(max_linkhdr + m->m_len <= MHLEN, ("tcptw: mbuf too small"));
  547 
  548         th->th_seq = htonl(tw->snd_nxt);
  549         th->th_ack = htonl(tw->rcv_nxt);
  550         th->th_off = (sizeof(struct tcphdr) + optlen) >> 2;
  551         th->th_flags = flags;
  552         th->th_win = htons(tw->last_win);
  553 
  554 #ifdef INET6
  555         if (isipv6) {
  556                 th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr),
  557                     sizeof(struct tcphdr) + optlen);
  558                 ip6->ip6_hlim = in6_selecthlim(inp, NULL);
  559                 error = ip6_output(m, inp->in6p_outputopts, NULL,
  560                     (tw->tw_so_options & SO_DONTROUTE), NULL, NULL, inp);
  561         } else
  562 #endif
  563         {
  564                 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
  565                     htons(sizeof(struct tcphdr) + optlen + IPPROTO_TCP));
  566                 m->m_pkthdr.csum_flags = CSUM_TCP;
  567                 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
  568                 ip->ip_len = m->m_pkthdr.len;
  569                 if (V_path_mtu_discovery)
  570                         ip->ip_off |= IP_DF;
  571                 error = ip_output(m, inp->inp_options, NULL,
  572                     ((tw->tw_so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0),
  573                     NULL, inp);
  574         }
  575         if (flags & TH_ACK)
  576                 TCPSTAT_INC(tcps_sndacks);
  577         else
  578                 TCPSTAT_INC(tcps_sndctrl);
  579         TCPSTAT_INC(tcps_sndtotal);
  580         return (error);
  581 }
  582 
  583 static void
  584 tcp_tw_2msl_reset(struct tcptw *tw, int rearm)
  585 {
  586 
  587         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);
  588         INP_WLOCK_ASSERT(tw->tw_inpcb);
  589         if (rearm)
  590                 TAILQ_REMOVE(&V_twq_2msl, tw, tw_2msl);
  591         tw->tw_time = ticks + 2 * tcp_msl;
  592         TAILQ_INSERT_TAIL(&V_twq_2msl, tw, tw_2msl);
  593 }
  594 
  595 static void
  596 tcp_tw_2msl_stop(struct tcptw *tw)
  597 {
  598 
  599         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);
  600         TAILQ_REMOVE(&V_twq_2msl, tw, tw_2msl);
  601 }
  602 
  603 struct tcptw *
  604 tcp_tw_2msl_scan(int reuse)
  605 {
  606         struct tcptw *tw;
  607 
  608         INP_INFO_WLOCK_ASSERT(&V_tcbinfo);
  609         for (;;) {
  610                 tw = TAILQ_FIRST(&V_twq_2msl);
  611                 if (tw == NULL || (!reuse && (tw->tw_time - ticks) > 0))
  612                         break;
  613                 INP_WLOCK(tw->tw_inpcb);
  614                 tcp_twclose(tw, reuse);
  615                 if (reuse)
  616                         return (tw);
  617         }
  618         return (NULL);
  619 }

Cache object: a7085cca4e64292fa13284016c1537d3


[ 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.