Home | History | Annotate | Line # | Download | only in netinet
tcp_output.c revision 1.67.2.7
      1  1.67.2.7  jdolecek /*	$NetBSD: tcp_output.c,v 1.67.2.7 2002/09/06 08:49:20 jdolecek Exp $	*/
      2      1.48    itojun 
      3      1.48    itojun /*
      4      1.48    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5      1.48    itojun  * All rights reserved.
      6  1.67.2.6  jdolecek  *
      7      1.48    itojun  * Redistribution and use in source and binary forms, with or without
      8      1.48    itojun  * modification, are permitted provided that the following conditions
      9      1.48    itojun  * are met:
     10      1.48    itojun  * 1. Redistributions of source code must retain the above copyright
     11      1.48    itojun  *    notice, this list of conditions and the following disclaimer.
     12      1.48    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.48    itojun  *    notice, this list of conditions and the following disclaimer in the
     14      1.48    itojun  *    documentation and/or other materials provided with the distribution.
     15      1.48    itojun  * 3. Neither the name of the project nor the names of its contributors
     16      1.48    itojun  *    may be used to endorse or promote products derived from this software
     17      1.48    itojun  *    without specific prior written permission.
     18  1.67.2.6  jdolecek  *
     19      1.48    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20      1.48    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21      1.48    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22      1.48    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23      1.48    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24      1.48    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25      1.48    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26      1.48    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27      1.48    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28      1.48    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29      1.48    itojun  * SUCH DAMAGE.
     30      1.48    itojun  */
     31      1.28   thorpej 
     32  1.67.2.4  jdolecek /*
     33  1.67.2.4  jdolecek  *      @(#)COPYRIGHT   1.1 (NRL) 17 January 1995
     34  1.67.2.6  jdolecek  *
     35  1.67.2.4  jdolecek  * NRL grants permission for redistribution and use in source and binary
     36  1.67.2.4  jdolecek  * forms, with or without modification, of the software and documentation
     37  1.67.2.4  jdolecek  * created at NRL provided that the following conditions are met:
     38  1.67.2.6  jdolecek  *
     39  1.67.2.4  jdolecek  * 1. Redistributions of source code must retain the above copyright
     40  1.67.2.4  jdolecek  *    notice, this list of conditions and the following disclaimer.
     41  1.67.2.4  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     42  1.67.2.4  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     43  1.67.2.4  jdolecek  *    documentation and/or other materials provided with the distribution.
     44  1.67.2.4  jdolecek  * 3. All advertising materials mentioning features or use of this software
     45  1.67.2.4  jdolecek  *    must display the following acknowledgements:
     46  1.67.2.4  jdolecek  *      This product includes software developed by the University of
     47  1.67.2.4  jdolecek  *      California, Berkeley and its contributors.
     48  1.67.2.4  jdolecek  *      This product includes software developed at the Information
     49  1.67.2.4  jdolecek  *      Technology Division, US Naval Research Laboratory.
     50  1.67.2.4  jdolecek  * 4. Neither the name of the NRL nor the names of its contributors
     51  1.67.2.4  jdolecek  *    may be used to endorse or promote products derived from this software
     52  1.67.2.4  jdolecek  *    without specific prior written permission.
     53  1.67.2.6  jdolecek  *
     54  1.67.2.4  jdolecek  * THE SOFTWARE PROVIDED BY NRL IS PROVIDED BY NRL AND CONTRIBUTORS ``AS
     55  1.67.2.4  jdolecek  * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     56  1.67.2.4  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
     57  1.67.2.4  jdolecek  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL NRL OR
     58  1.67.2.4  jdolecek  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     59  1.67.2.4  jdolecek  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     60  1.67.2.4  jdolecek  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     61  1.67.2.4  jdolecek  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     62  1.67.2.4  jdolecek  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     63  1.67.2.4  jdolecek  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     64  1.67.2.4  jdolecek  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     65  1.67.2.6  jdolecek  *
     66  1.67.2.4  jdolecek  * The views and conclusions contained in the software and documentation
     67  1.67.2.4  jdolecek  * are those of the authors and should not be interpreted as representing
     68  1.67.2.4  jdolecek  * official policies, either expressed or implied, of the US Naval
     69  1.67.2.4  jdolecek  * Research Laboratory (NRL).
     70  1.67.2.4  jdolecek  */
     71  1.67.2.4  jdolecek 
     72      1.28   thorpej /*-
     73      1.64   thorpej  * Copyright (c) 1997, 1998, 2001 The NetBSD Foundation, Inc.
     74      1.28   thorpej  * All rights reserved.
     75      1.28   thorpej  *
     76      1.28   thorpej  * This code is derived from software contributed to The NetBSD Foundation
     77      1.28   thorpej  * by Jason R. Thorpe and Kevin M. Lahey of the Numerical Aerospace Simulation
     78      1.28   thorpej  * Facility, NASA Ames Research Center.
     79      1.28   thorpej  *
     80      1.28   thorpej  * Redistribution and use in source and binary forms, with or without
     81      1.28   thorpej  * modification, are permitted provided that the following conditions
     82      1.28   thorpej  * are met:
     83      1.28   thorpej  * 1. Redistributions of source code must retain the above copyright
     84      1.28   thorpej  *    notice, this list of conditions and the following disclaimer.
     85      1.28   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     86      1.28   thorpej  *    notice, this list of conditions and the following disclaimer in the
     87      1.28   thorpej  *    documentation and/or other materials provided with the distribution.
     88      1.28   thorpej  * 3. All advertising materials mentioning features or use of this software
     89      1.28   thorpej  *    must display the following acknowledgement:
     90      1.28   thorpej  *	This product includes software developed by the NetBSD
     91      1.28   thorpej  *	Foundation, Inc. and its contributors.
     92      1.28   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     93      1.28   thorpej  *    contributors may be used to endorse or promote products derived
     94      1.28   thorpej  *    from this software without specific prior written permission.
     95      1.28   thorpej  *
     96      1.28   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     97      1.28   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     98      1.28   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     99      1.28   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
    100      1.28   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    101      1.28   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    102      1.28   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    103      1.28   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    104      1.28   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    105      1.28   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    106      1.28   thorpej  * POSSIBILITY OF SUCH DAMAGE.
    107      1.28   thorpej  */
    108      1.10       cgd 
    109       1.1       cgd /*
    110      1.27   thorpej  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
    111       1.9   mycroft  *	The Regents of the University of California.  All rights reserved.
    112       1.1       cgd  *
    113       1.1       cgd  * Redistribution and use in source and binary forms, with or without
    114       1.1       cgd  * modification, are permitted provided that the following conditions
    115       1.1       cgd  * are met:
    116       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
    117       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
    118       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
    119       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
    120       1.1       cgd  *    documentation and/or other materials provided with the distribution.
    121       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
    122       1.1       cgd  *    must display the following acknowledgement:
    123       1.1       cgd  *	This product includes software developed by the University of
    124       1.1       cgd  *	California, Berkeley and its contributors.
    125       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
    126       1.1       cgd  *    may be used to endorse or promote products derived from this software
    127       1.1       cgd  *    without specific prior written permission.
    128       1.1       cgd  *
    129       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    130       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    131       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    132       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    133       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    134       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    135       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    136       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    137       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    138       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    139       1.1       cgd  * SUCH DAMAGE.
    140       1.1       cgd  *
    141      1.27   thorpej  *	@(#)tcp_output.c	8.4 (Berkeley) 5/24/95
    142       1.1       cgd  */
    143       1.1       cgd 
    144  1.67.2.3   thorpej #include <sys/cdefs.h>
    145  1.67.2.7  jdolecek __KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.67.2.7 2002/09/06 08:49:20 jdolecek Exp $");
    146  1.67.2.3   thorpej 
    147      1.48    itojun #include "opt_inet.h"
    148      1.51   thorpej #include "opt_ipsec.h"
    149      1.67       abs #include "opt_tcp_debug.h"
    150      1.48    itojun 
    151       1.4   mycroft #include <sys/param.h>
    152       1.4   mycroft #include <sys/systm.h>
    153       1.4   mycroft #include <sys/malloc.h>
    154       1.4   mycroft #include <sys/mbuf.h>
    155       1.4   mycroft #include <sys/protosw.h>
    156       1.4   mycroft #include <sys/socket.h>
    157       1.4   mycroft #include <sys/socketvar.h>
    158       1.4   mycroft #include <sys/errno.h>
    159      1.48    itojun #include <sys/domain.h>
    160  1.67.2.2   thorpej #include <sys/kernel.h>
    161       1.1       cgd 
    162      1.17   thorpej #include <net/if.h>
    163       1.4   mycroft #include <net/route.h>
    164       1.1       cgd 
    165       1.4   mycroft #include <netinet/in.h>
    166       1.4   mycroft #include <netinet/in_systm.h>
    167       1.4   mycroft #include <netinet/ip.h>
    168       1.4   mycroft #include <netinet/in_pcb.h>
    169       1.4   mycroft #include <netinet/ip_var.h>
    170      1.48    itojun 
    171      1.48    itojun #ifdef INET6
    172      1.48    itojun #ifndef INET
    173      1.48    itojun #include <netinet/in.h>
    174      1.48    itojun #endif
    175      1.48    itojun #include <netinet/ip6.h>
    176  1.67.2.6  jdolecek #include <netinet6/in6_var.h>
    177      1.48    itojun #include <netinet6/ip6_var.h>
    178  1.67.2.6  jdolecek #include <netinet6/in6_pcb.h>
    179  1.67.2.6  jdolecek #include <netinet6/nd6.h>
    180      1.48    itojun #endif
    181      1.48    itojun 
    182       1.4   mycroft #include <netinet/tcp.h>
    183       1.1       cgd #define	TCPOUTFLAGS
    184       1.4   mycroft #include <netinet/tcp_fsm.h>
    185       1.4   mycroft #include <netinet/tcp_seq.h>
    186       1.4   mycroft #include <netinet/tcp_timer.h>
    187       1.4   mycroft #include <netinet/tcp_var.h>
    188       1.4   mycroft #include <netinet/tcpip.h>
    189       1.4   mycroft #include <netinet/tcp_debug.h>
    190      1.14  christos 
    191       1.1       cgd #ifdef notyet
    192       1.1       cgd extern struct mbuf *m_copypack();
    193       1.1       cgd #endif
    194       1.1       cgd 
    195       1.9   mycroft #define MAX_TCPOPTLEN	32	/* max # bytes that go in options */
    196       1.1       cgd 
    197      1.33   thorpej /*
    198      1.36   thorpej  * Knob to enable Congestion Window Monitoring, and control the
    199      1.36   thorpej  * the burst size it allows.  Default burst is 4 packets, per
    200      1.36   thorpej  * the Internet draft.
    201      1.33   thorpej  */
    202  1.67.2.6  jdolecek int	tcp_cwm = 0;
    203      1.36   thorpej int	tcp_cwm_burstsize = 4;
    204      1.33   thorpej 
    205  1.67.2.6  jdolecek #ifdef TCP_OUTPUT_COUNTERS
    206  1.67.2.6  jdolecek #include <sys/device.h>
    207  1.67.2.6  jdolecek 
    208  1.67.2.6  jdolecek extern struct evcnt tcp_output_bigheader;
    209  1.67.2.6  jdolecek extern struct evcnt tcp_output_copysmall;
    210  1.67.2.6  jdolecek extern struct evcnt tcp_output_copybig;
    211  1.67.2.6  jdolecek extern struct evcnt tcp_output_refbig;
    212  1.67.2.6  jdolecek 
    213  1.67.2.6  jdolecek #define	TCP_OUTPUT_COUNTER_INCR(ev)	(ev)->ev_count++
    214  1.67.2.6  jdolecek #else
    215  1.67.2.6  jdolecek 
    216  1.67.2.6  jdolecek #define	TCP_OUTPUT_COUNTER_INCR(ev)	/* nothing */
    217  1.67.2.6  jdolecek 
    218  1.67.2.6  jdolecek #endif /* TCP_OUTPUT_COUNTERS */
    219  1.67.2.6  jdolecek 
    220  1.67.2.1     lukem static
    221  1.67.2.1     lukem #ifndef GPROF
    222  1.67.2.1     lukem __inline
    223  1.67.2.1     lukem #endif
    224  1.67.2.1     lukem void
    225  1.67.2.1     lukem tcp_segsize(struct tcpcb *tp, int *txsegsizep, int *rxsegsizep)
    226      1.17   thorpej {
    227      1.60    itojun #ifdef INET
    228      1.17   thorpej 	struct inpcb *inp = tp->t_inpcb;
    229      1.60    itojun #endif
    230      1.48    itojun #ifdef INET6
    231      1.48    itojun 	struct in6pcb *in6p = tp->t_in6pcb;
    232      1.48    itojun #endif
    233  1.67.2.7  jdolecek 	struct socket *so;
    234      1.17   thorpej 	struct rtentry *rt;
    235      1.17   thorpej 	struct ifnet *ifp;
    236      1.17   thorpej 	int size;
    237      1.48    itojun 	int iphlen;
    238  1.67.2.3   thorpej 	int optlen;
    239      1.48    itojun 
    240      1.60    itojun #ifdef DIAGNOSTIC
    241      1.60    itojun 	if (tp->t_inpcb && tp->t_in6pcb)
    242      1.60    itojun 		panic("tcp_segsize: both t_inpcb and t_in6pcb are set");
    243      1.60    itojun #endif
    244      1.48    itojun 	switch (tp->t_family) {
    245      1.60    itojun #ifdef INET
    246      1.48    itojun 	case AF_INET:
    247      1.48    itojun 		iphlen = sizeof(struct ip);
    248      1.48    itojun 		break;
    249      1.60    itojun #endif
    250      1.48    itojun #ifdef INET6
    251      1.48    itojun 	case AF_INET6:
    252      1.48    itojun 		iphlen = sizeof(struct ip6_hdr);
    253      1.48    itojun 		break;
    254      1.48    itojun #endif
    255      1.48    itojun 	default:
    256      1.48    itojun 		size = tcp_mssdflt;
    257      1.48    itojun 		goto out;
    258      1.48    itojun 	}
    259      1.17   thorpej 
    260      1.60    itojun 	rt = NULL;
    261      1.60    itojun #ifdef INET
    262  1.67.2.7  jdolecek 	if (inp) {
    263      1.48    itojun 		rt = in_pcbrtentry(inp);
    264  1.67.2.7  jdolecek 		so = inp->inp_socket;
    265  1.67.2.7  jdolecek 	}
    266      1.60    itojun #endif
    267      1.61    itojun #ifdef INET6
    268  1.67.2.7  jdolecek 	if (in6p) {
    269      1.48    itojun 		rt = in6_pcbrtentry(in6p);
    270  1.67.2.7  jdolecek 		so = in6p->in6p_socket;
    271  1.67.2.7  jdolecek 	}
    272      1.48    itojun #endif
    273      1.48    itojun 	if (rt == NULL) {
    274      1.17   thorpej 		size = tcp_mssdflt;
    275      1.17   thorpej 		goto out;
    276      1.17   thorpej 	}
    277      1.17   thorpej 
    278      1.17   thorpej 	ifp = rt->rt_ifp;
    279      1.17   thorpej 
    280      1.48    itojun 	size = tcp_mssdflt;
    281  1.67.2.6  jdolecek 	if (tp->t_mtudisc && rt->rt_rmx.rmx_mtu != 0)
    282      1.48    itojun 		size = rt->rt_rmx.rmx_mtu - iphlen - sizeof(struct tcphdr);
    283      1.60    itojun 	else if (ifp->if_flags & IFF_LOOPBACK)
    284      1.60    itojun 		size = ifp->if_mtu - iphlen - sizeof(struct tcphdr);
    285      1.60    itojun #ifdef INET
    286  1.67.2.6  jdolecek 	else if (inp && tp->t_mtudisc)
    287      1.48    itojun 		size = ifp->if_mtu - iphlen - sizeof(struct tcphdr);
    288      1.48    itojun 	else if (inp && in_localaddr(inp->inp_faddr))
    289      1.48    itojun 		size = ifp->if_mtu - iphlen - sizeof(struct tcphdr);
    290      1.60    itojun #endif
    291      1.48    itojun #ifdef INET6
    292      1.48    itojun 	else if (in6p) {
    293      1.60    itojun #ifdef INET
    294      1.48    itojun 		if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr)) {
    295      1.48    itojun 			/* mapped addr case */
    296      1.48    itojun 			struct in_addr d;
    297      1.48    itojun 			bcopy(&in6p->in6p_faddr.s6_addr32[3], &d, sizeof(d));
    298  1.67.2.6  jdolecek 			if (tp->t_mtudisc || in_localaddr(d))
    299      1.48    itojun 				size = ifp->if_mtu - iphlen - sizeof(struct tcphdr);
    300      1.60    itojun 		} else
    301      1.60    itojun #endif
    302      1.60    itojun 		{
    303      1.65    itojun 			/*
    304      1.65    itojun 			 * for IPv6, path MTU discovery is always turned on,
    305      1.65    itojun 			 * or the node must use packet size <= 1280.
    306      1.65    itojun 			 */
    307  1.67.2.6  jdolecek 			size = tp->t_mtudisc ? IN6_LINKMTU(ifp) : IPV6_MMTU;
    308  1.67.2.6  jdolecek 			size -= (iphlen + sizeof(struct tcphdr));
    309      1.48    itojun 		}
    310      1.48    itojun 	}
    311      1.48    itojun #endif
    312  1.67.2.5  jdolecek  out:
    313  1.67.2.3   thorpej 	/*
    314  1.67.2.3   thorpej 	 * Now we must make room for whatever extra TCP/IP options are in
    315  1.67.2.3   thorpej 	 * the packet.
    316  1.67.2.3   thorpej 	 */
    317  1.67.2.3   thorpej 	optlen = tcp_optlen(tp);
    318  1.67.2.3   thorpej 
    319      1.48    itojun 	/*
    320      1.48    itojun 	 * XXX tp->t_ourmss should have the right size, but without this code
    321      1.48    itojun 	 * fragmentation will occur... need more investigation
    322      1.48    itojun 	 */
    323      1.60    itojun #ifdef INET
    324      1.48    itojun 	if (inp) {
    325      1.48    itojun #ifdef IPSEC
    326  1.67.2.3   thorpej 		optlen += ipsec4_hdrsiz_tcp(tp);
    327      1.48    itojun #endif
    328  1.67.2.3   thorpej 		optlen += ip_optlen(inp);
    329      1.48    itojun 	}
    330      1.60    itojun #endif
    331      1.48    itojun #ifdef INET6
    332      1.60    itojun #ifdef INET
    333      1.60    itojun 	if (in6p && tp->t_family == AF_INET) {
    334      1.48    itojun #ifdef IPSEC
    335  1.67.2.3   thorpej 		optlen += ipsec4_hdrsiz_tcp(tp);
    336      1.48    itojun #endif
    337      1.48    itojun 		/* XXX size -= ip_optlen(in6p); */
    338      1.60    itojun 	} else
    339      1.60    itojun #endif
    340      1.60    itojun 	if (in6p && tp->t_family == AF_INET6) {
    341      1.61    itojun #ifdef IPSEC
    342  1.67.2.3   thorpej 		optlen += ipsec6_hdrsiz_tcp(tp);
    343      1.48    itojun #endif
    344  1.67.2.3   thorpej 		optlen += ip6_optlen(in6p);
    345      1.48    itojun 	}
    346      1.48    itojun #endif
    347  1.67.2.3   thorpej 	size -= optlen;
    348      1.17   thorpej 
    349      1.52    itojun 	/*
    350      1.52    itojun 	 * *rxsegsizep holds *estimated* inbound segment size (estimation
    351      1.52    itojun 	 * assumes that path MTU is the same for both ways).  this is only
    352      1.52    itojun 	 * for silly window avoidance, do not use the value for other purposes.
    353      1.52    itojun 	 *
    354      1.52    itojun 	 * ipseclen is subtracted from both sides, this may not be right.
    355      1.52    itojun 	 * I'm not quite sure about this (could someone comment).
    356      1.52    itojun 	 */
    357  1.67.2.3   thorpej 	*txsegsizep = min(tp->t_peermss - optlen, size);
    358  1.67.2.7  jdolecek 	/*
    359  1.67.2.7  jdolecek 	 * Never send more than half a buffer full.  This insures that we can
    360  1.67.2.7  jdolecek 	 * always keep 2 packets on the wire, no matter what SO_SNDBUF is, and
    361  1.67.2.7  jdolecek 	 * therefore ACKs will never be delayed unless we run out of data to
    362  1.67.2.7  jdolecek 	 * transmit.
    363  1.67.2.7  jdolecek 	 */
    364  1.67.2.7  jdolecek 	if (so)
    365  1.67.2.7  jdolecek 		*txsegsizep = min((so->so_snd.sb_hiwat >> 1) - optlen,
    366  1.67.2.7  jdolecek 		    *txsegsizep);
    367  1.67.2.3   thorpej 	*rxsegsizep = min(tp->t_ourmss - optlen, size);
    368      1.21       kml 
    369      1.21       kml 	if (*txsegsizep != tp->t_segsz) {
    370      1.35       kml 		/*
    371  1.67.2.6  jdolecek 		 * If the new segment size is larger, we don't want to
    372      1.35       kml 		 * mess up the congestion window, but if it is smaller
    373      1.35       kml 		 * we'll have to reduce the congestion window to ensure
    374      1.35       kml 		 * that we don't get into trouble with initial windows
    375      1.35       kml 		 * and the rest.  In any case, if the segment size
    376      1.35       kml 		 * has changed, chances are the path has, too, and
    377      1.35       kml 		 * our congestion window will be different.
    378      1.29       kml 		 */
    379      1.35       kml 		if (*txsegsizep < tp->t_segsz) {
    380  1.67.2.6  jdolecek 			tp->snd_cwnd = max((tp->snd_cwnd / tp->t_segsz)
    381      1.35       kml 					   * *txsegsizep, *txsegsizep);
    382  1.67.2.6  jdolecek 			tp->snd_ssthresh = max((tp->snd_ssthresh / tp->t_segsz)
    383      1.35       kml 						* *txsegsizep, *txsegsizep);
    384      1.35       kml 		}
    385      1.21       kml 		tp->t_segsz = *txsegsizep;
    386      1.21       kml 	}
    387      1.17   thorpej }
    388      1.17   thorpej 
    389  1.67.2.1     lukem static
    390  1.67.2.1     lukem #ifndef GPROF
    391  1.67.2.1     lukem __inline
    392  1.67.2.1     lukem #endif
    393  1.67.2.1     lukem int
    394  1.67.2.1     lukem tcp_build_datapkt(struct tcpcb *tp, struct socket *so, int off,
    395  1.67.2.1     lukem     long len, int hdrlen, struct mbuf **mp)
    396  1.67.2.1     lukem {
    397  1.67.2.1     lukem 	struct mbuf *m;
    398  1.67.2.1     lukem 
    399  1.67.2.1     lukem 	if (tp->t_force && len == 1)
    400  1.67.2.1     lukem 		tcpstat.tcps_sndprobe++;
    401  1.67.2.1     lukem 	else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
    402  1.67.2.1     lukem 		tcpstat.tcps_sndrexmitpack++;
    403  1.67.2.1     lukem 		tcpstat.tcps_sndrexmitbyte += len;
    404  1.67.2.1     lukem 	} else {
    405  1.67.2.1     lukem 		tcpstat.tcps_sndpack++;
    406  1.67.2.1     lukem 		tcpstat.tcps_sndbyte += len;
    407  1.67.2.1     lukem 	}
    408  1.67.2.1     lukem #ifdef notyet
    409  1.67.2.1     lukem 	if ((m = m_copypack(so->so_snd.sb_mb, off,
    410  1.67.2.1     lukem 	    (int)len, max_linkhdr + hdrlen)) == 0)
    411  1.67.2.1     lukem 		return (ENOBUFS);
    412  1.67.2.1     lukem 	/*
    413  1.67.2.1     lukem 	 * m_copypack left space for our hdr; use it.
    414  1.67.2.1     lukem 	 */
    415  1.67.2.1     lukem 	m->m_len += hdrlen;
    416  1.67.2.1     lukem 	m->m_data -= hdrlen;
    417  1.67.2.1     lukem #else
    418  1.67.2.1     lukem 	MGETHDR(m, M_DONTWAIT, MT_HEADER);
    419  1.67.2.6  jdolecek 	if (__predict_false(m == NULL))
    420  1.67.2.6  jdolecek 		return (ENOBUFS);
    421  1.67.2.6  jdolecek 
    422  1.67.2.6  jdolecek 	/*
    423  1.67.2.6  jdolecek 	 * XXX Because other code assumes headers will fit in
    424  1.67.2.6  jdolecek 	 * XXX one header mbuf.
    425  1.67.2.6  jdolecek 	 *
    426  1.67.2.6  jdolecek 	 * (This code should almost *never* be run.)
    427  1.67.2.6  jdolecek 	 */
    428  1.67.2.6  jdolecek 	if (__predict_false((max_linkhdr + hdrlen) > MHLEN)) {
    429  1.67.2.6  jdolecek 		TCP_OUTPUT_COUNTER_INCR(&tcp_output_bigheader);
    430  1.67.2.1     lukem 		MCLGET(m, M_DONTWAIT);
    431  1.67.2.1     lukem 		if ((m->m_flags & M_EXT) == 0) {
    432  1.67.2.1     lukem 			m_freem(m);
    433  1.67.2.6  jdolecek 			return (ENOBUFS);
    434  1.67.2.1     lukem 		}
    435  1.67.2.1     lukem 	}
    436  1.67.2.6  jdolecek 
    437  1.67.2.1     lukem 	m->m_data += max_linkhdr;
    438  1.67.2.1     lukem 	m->m_len = hdrlen;
    439  1.67.2.1     lukem 	if (len <= M_TRAILINGSPACE(m)) {
    440  1.67.2.1     lukem 		m_copydata(so->so_snd.sb_mb, off, (int) len,
    441  1.67.2.1     lukem 		    mtod(m, caddr_t) + hdrlen);
    442  1.67.2.1     lukem 		m->m_len += len;
    443  1.67.2.6  jdolecek 		TCP_OUTPUT_COUNTER_INCR(&tcp_output_copysmall);
    444  1.67.2.1     lukem 	} else {
    445  1.67.2.1     lukem 		m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
    446  1.67.2.1     lukem 		if (m->m_next == NULL) {
    447  1.67.2.1     lukem 			m_freem(m);
    448  1.67.2.1     lukem 			return (ENOBUFS);
    449  1.67.2.1     lukem 		}
    450  1.67.2.6  jdolecek #ifdef TCP_OUTPUT_COUNTERS
    451  1.67.2.6  jdolecek 		if (m->m_next->m_flags & M_EXT)
    452  1.67.2.6  jdolecek 			TCP_OUTPUT_COUNTER_INCR(&tcp_output_refbig);
    453  1.67.2.6  jdolecek 		else
    454  1.67.2.6  jdolecek 			TCP_OUTPUT_COUNTER_INCR(&tcp_output_copybig);
    455  1.67.2.6  jdolecek #endif /* TCP_OUTPUT_COUNTERS */
    456  1.67.2.1     lukem 	}
    457  1.67.2.1     lukem #endif
    458  1.67.2.1     lukem 
    459  1.67.2.1     lukem 	*mp = m;
    460  1.67.2.1     lukem 	return (0);
    461  1.67.2.1     lukem }
    462  1.67.2.1     lukem 
    463       1.1       cgd /*
    464       1.1       cgd  * Tcp output routine: figure out what should be sent and send it.
    465       1.1       cgd  */
    466       1.6   mycroft int
    467       1.1       cgd tcp_output(tp)
    468      1.56  augustss 	struct tcpcb *tp;
    469       1.1       cgd {
    470      1.48    itojun 	struct socket *so;
    471      1.48    itojun 	struct route *ro;
    472      1.47   thorpej 	long len, win;
    473       1.1       cgd 	int off, flags, error;
    474      1.56  augustss 	struct mbuf *m;
    475      1.48    itojun 	struct ip *ip;
    476      1.48    itojun #ifdef INET6
    477      1.48    itojun 	struct ip6_hdr *ip6;
    478      1.48    itojun #endif
    479      1.56  augustss 	struct tcphdr *th;
    480       1.9   mycroft 	u_char opt[MAX_TCPOPTLEN];
    481       1.1       cgd 	unsigned optlen, hdrlen;
    482      1.18   thorpej 	int idle, sendalot, txsegsize, rxsegsize;
    483      1.44      matt 	int maxburst = TCP_MAXBURST;
    484      1.48    itojun 	int af;		/* address family on the wire */
    485      1.48    itojun 	int iphdrlen;
    486      1.48    itojun 
    487      1.60    itojun #ifdef DIAGNOSTIC
    488      1.60    itojun 	if (tp->t_inpcb && tp->t_in6pcb)
    489      1.60    itojun 		panic("tcp_output: both t_inpcb and t_in6pcb are set");
    490      1.60    itojun #endif
    491      1.48    itojun 	so = NULL;
    492      1.48    itojun 	ro = NULL;
    493      1.48    itojun 	if (tp->t_inpcb) {
    494      1.48    itojun 		so = tp->t_inpcb->inp_socket;
    495      1.48    itojun 		ro = &tp->t_inpcb->inp_route;
    496      1.48    itojun 	}
    497      1.48    itojun #ifdef INET6
    498      1.48    itojun 	else if (tp->t_in6pcb) {
    499      1.48    itojun 		so = tp->t_in6pcb->in6p_socket;
    500      1.48    itojun 		ro = (struct route *)&tp->t_in6pcb->in6p_route;
    501      1.48    itojun 	}
    502      1.48    itojun #endif
    503      1.48    itojun 
    504      1.48    itojun 	switch (af = tp->t_family) {
    505      1.60    itojun #ifdef INET
    506      1.48    itojun 	case AF_INET:
    507      1.48    itojun 		if (tp->t_inpcb)
    508      1.48    itojun 			break;
    509      1.48    itojun #ifdef INET6
    510      1.48    itojun 		/* mapped addr case */
    511      1.48    itojun 		if (tp->t_in6pcb)
    512      1.48    itojun 			break;
    513      1.48    itojun #endif
    514      1.48    itojun 		return EINVAL;
    515      1.60    itojun #endif
    516      1.48    itojun #ifdef INET6
    517      1.48    itojun 	case AF_INET6:
    518      1.48    itojun 		if (tp->t_in6pcb)
    519      1.48    itojun 			break;
    520      1.48    itojun 		return EINVAL;
    521      1.48    itojun #endif
    522      1.48    itojun 	default:
    523      1.48    itojun 		return EAFNOSUPPORT;
    524      1.48    itojun 	}
    525      1.17   thorpej 
    526      1.18   thorpej 	tcp_segsize(tp, &txsegsize, &rxsegsize);
    527       1.1       cgd 
    528       1.1       cgd 	idle = (tp->snd_max == tp->snd_una);
    529      1.33   thorpej 
    530      1.41   thorpej 	/*
    531      1.41   thorpej 	 * Restart Window computation.  From draft-floyd-incr-init-win-03:
    532      1.41   thorpej 	 *
    533      1.41   thorpej 	 *	Optionally, a TCP MAY set the restart window to the
    534      1.41   thorpej 	 *	minimum of the value used for the initial window and
    535      1.41   thorpej 	 *	the current value of cwnd (in other words, using a
    536      1.41   thorpej 	 *	larger value for the restart window should never increase
    537      1.41   thorpej 	 *	the size of cwnd).
    538      1.41   thorpej 	 */
    539      1.33   thorpej 	if (tcp_cwm) {
    540       1.1       cgd 		/*
    541      1.33   thorpej 		 * Hughes/Touch/Heidemann Congestion Window Monitoring.
    542      1.33   thorpej 		 * Count the number of packets currently pending
    543      1.33   thorpej 		 * acknowledgement, and limit our congestion window
    544      1.37   thorpej 		 * to a pre-determined allowed burst size plus that count.
    545      1.33   thorpej 		 * This prevents bursting once all pending packets have
    546      1.33   thorpej 		 * been acknowledged (i.e. transmission is idle).
    547      1.42   thorpej 		 *
    548      1.42   thorpej 		 * XXX Link this to Initial Window?
    549       1.1       cgd 		 */
    550      1.33   thorpej 		tp->snd_cwnd = min(tp->snd_cwnd,
    551      1.36   thorpej 		    (tcp_cwm_burstsize * txsegsize) +
    552      1.33   thorpej 		    (tp->snd_nxt - tp->snd_una));
    553      1.33   thorpej 	} else {
    554  1.67.2.2   thorpej 		if (idle && (tcp_now - tp->t_rcvtime) >= tp->t_rxtcur) {
    555      1.33   thorpej 			/*
    556      1.33   thorpej 			 * We have been idle for "a while" and no acks are
    557      1.33   thorpej 			 * expected to clock out any data we send --
    558      1.33   thorpej 			 * slow start to get ack "clock" running again.
    559      1.33   thorpej 			 */
    560      1.41   thorpej 			tp->snd_cwnd = min(tp->snd_cwnd,
    561      1.41   thorpej 			    TCP_INITIAL_WINDOW(tcp_init_win, txsegsize));
    562      1.33   thorpej 		}
    563      1.33   thorpej 	}
    564      1.33   thorpej 
    565       1.1       cgd again:
    566      1.33   thorpej 	/*
    567      1.33   thorpej 	 * Determine length of data that should be transmitted, and
    568      1.33   thorpej 	 * flags that should be used.  If there is some data or critical
    569      1.33   thorpej 	 * controls (SYN, RST) to send, then transmit; otherwise,
    570      1.33   thorpej 	 * investigate further.
    571      1.33   thorpej 	 */
    572       1.1       cgd 	sendalot = 0;
    573       1.1       cgd 	off = tp->snd_nxt - tp->snd_una;
    574       1.1       cgd 	win = min(tp->snd_wnd, tp->snd_cwnd);
    575       1.1       cgd 
    576       1.9   mycroft 	flags = tcp_outflags[tp->t_state];
    577       1.1       cgd 	/*
    578       1.1       cgd 	 * If in persist timeout with window of 0, send 1 byte.
    579       1.1       cgd 	 * Otherwise, if window is small but nonzero
    580       1.1       cgd 	 * and timer expired, we will send what we can
    581       1.1       cgd 	 * and go to transmit state.
    582       1.1       cgd 	 */
    583       1.1       cgd 	if (tp->t_force) {
    584       1.9   mycroft 		if (win == 0) {
    585       1.9   mycroft 			/*
    586       1.9   mycroft 			 * If we still have some data to send, then
    587       1.9   mycroft 			 * clear the FIN bit.  Usually this would
    588       1.9   mycroft 			 * happen below when it realizes that we
    589       1.9   mycroft 			 * aren't sending all the data.  However,
    590       1.9   mycroft 			 * if we have exactly 1 byte of unset data,
    591       1.9   mycroft 			 * then it won't clear the FIN bit below,
    592       1.9   mycroft 			 * and if we are in persist state, we wind
    593       1.9   mycroft 			 * up sending the packet without recording
    594       1.9   mycroft 			 * that we sent the FIN bit.
    595       1.9   mycroft 			 *
    596       1.9   mycroft 			 * We can't just blindly clear the FIN bit,
    597       1.9   mycroft 			 * because if we don't have any more data
    598       1.9   mycroft 			 * to send then the probe will be the FIN
    599       1.9   mycroft 			 * itself.
    600       1.9   mycroft 			 */
    601       1.9   mycroft 			if (off < so->so_snd.sb_cc)
    602       1.9   mycroft 				flags &= ~TH_FIN;
    603       1.1       cgd 			win = 1;
    604       1.9   mycroft 		} else {
    605      1.38   thorpej 			TCP_TIMER_DISARM(tp, TCPT_PERSIST);
    606       1.1       cgd 			tp->t_rxtshift = 0;
    607       1.1       cgd 		}
    608       1.1       cgd 	}
    609       1.1       cgd 
    610      1.11   mycroft 	if (win < so->so_snd.sb_cc) {
    611      1.11   mycroft 		len = win - off;
    612      1.11   mycroft 		flags &= ~TH_FIN;
    613      1.11   mycroft 	} else
    614      1.11   mycroft 		len = so->so_snd.sb_cc - off;
    615       1.1       cgd 
    616       1.1       cgd 	if (len < 0) {
    617       1.1       cgd 		/*
    618       1.1       cgd 		 * If FIN has been sent but not acked,
    619       1.1       cgd 		 * but we haven't been called to retransmit,
    620       1.1       cgd 		 * len will be -1.  Otherwise, window shrank
    621       1.1       cgd 		 * after we sent into it.  If window shrank to 0,
    622      1.25   thorpej 		 * cancel pending retransmit, pull snd_nxt back
    623      1.25   thorpej 		 * to (closed) window, and set the persist timer
    624      1.25   thorpej 		 * if it isn't already going.  If the window didn't
    625      1.25   thorpej 		 * close completely, just wait for an ACK.
    626      1.43   mycroft 		 *
    627      1.43   mycroft 		 * If we have a pending FIN, either it has already been
    628      1.43   mycroft 		 * transmitted or it is outside the window, so drop it.
    629      1.43   mycroft 		 * If the FIN has been transmitted, but this is not a
    630      1.43   mycroft 		 * retransmission, then len must be -1.  Therefore we also
    631      1.43   mycroft 		 * prevent here the sending of `gratuitous FINs'.  This
    632      1.43   mycroft 		 * eliminates the need to check for that case below (e.g.
    633      1.43   mycroft 		 * to back up snd_nxt before the FIN so that the sequence
    634      1.43   mycroft 		 * number is correct).
    635       1.1       cgd 		 */
    636       1.1       cgd 		len = 0;
    637      1.43   mycroft 		flags &= ~TH_FIN;
    638       1.1       cgd 		if (win == 0) {
    639      1.38   thorpej 			TCP_TIMER_DISARM(tp, TCPT_REXMT);
    640      1.25   thorpej 			tp->t_rxtshift = 0;
    641       1.1       cgd 			tp->snd_nxt = tp->snd_una;
    642      1.38   thorpej 			if (TCP_TIMER_ISARMED(tp, TCPT_PERSIST) == 0)
    643      1.25   thorpej 				tcp_setpersist(tp);
    644       1.1       cgd 		}
    645       1.1       cgd 	}
    646      1.18   thorpej 	if (len > txsegsize) {
    647      1.18   thorpej 		len = txsegsize;
    648      1.11   mycroft 		flags &= ~TH_FIN;
    649       1.1       cgd 		sendalot = 1;
    650       1.1       cgd 	}
    651       1.1       cgd 
    652       1.1       cgd 	win = sbspace(&so->so_rcv);
    653       1.1       cgd 
    654       1.1       cgd 	/*
    655       1.1       cgd 	 * Sender silly window avoidance.  If connection is idle
    656       1.1       cgd 	 * and can send all data, a maximum segment,
    657       1.1       cgd 	 * at least a maximum default-size segment do it,
    658       1.1       cgd 	 * or are forced, do it; otherwise don't bother.
    659       1.1       cgd 	 * If peer's buffer is tiny, then send
    660       1.1       cgd 	 * when window is at least half open.
    661       1.1       cgd 	 * If retransmitting (possibly after persist timer forced us
    662       1.1       cgd 	 * to send into a small window), then must resend.
    663       1.1       cgd 	 */
    664       1.1       cgd 	if (len) {
    665      1.18   thorpej 		if (len == txsegsize)
    666       1.1       cgd 			goto send;
    667      1.46   thorpej 		if ((so->so_state & SS_MORETOCOME) == 0 &&
    668      1.46   thorpej 		    ((idle || tp->t_flags & TF_NODELAY) &&
    669      1.46   thorpej 		     len + off >= so->so_snd.sb_cc))
    670       1.1       cgd 			goto send;
    671       1.1       cgd 		if (tp->t_force)
    672       1.1       cgd 			goto send;
    673       1.1       cgd 		if (len >= tp->max_sndwnd / 2)
    674       1.1       cgd 			goto send;
    675       1.1       cgd 		if (SEQ_LT(tp->snd_nxt, tp->snd_max))
    676       1.1       cgd 			goto send;
    677       1.1       cgd 	}
    678       1.1       cgd 
    679       1.1       cgd 	/*
    680      1.18   thorpej 	 * Compare available window to amount of window known to peer
    681      1.18   thorpej 	 * (as advertised window less next expected input).  If the
    682      1.18   thorpej 	 * difference is at least twice the size of the largest segment
    683      1.18   thorpej 	 * we expect to receive (i.e. two segments) or at least 50% of
    684      1.18   thorpej 	 * the maximum possible window, then want to send a window update
    685      1.18   thorpej 	 * to peer.
    686       1.1       cgd 	 */
    687       1.1       cgd 	if (win > 0) {
    688  1.67.2.6  jdolecek 		/*
    689       1.9   mycroft 		 * "adv" is the amount we can increase the window,
    690       1.9   mycroft 		 * taking into account that we are limited by
    691       1.9   mycroft 		 * TCP_MAXWIN << tp->rcv_scale.
    692       1.9   mycroft 		 */
    693       1.9   mycroft 		long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
    694       1.9   mycroft 			(tp->rcv_adv - tp->rcv_nxt);
    695       1.1       cgd 
    696      1.18   thorpej 		if (adv >= (long) (2 * rxsegsize))
    697       1.1       cgd 			goto send;
    698       1.1       cgd 		if (2 * adv >= (long) so->so_rcv.sb_hiwat)
    699       1.1       cgd 			goto send;
    700       1.1       cgd 	}
    701       1.1       cgd 
    702       1.1       cgd 	/*
    703       1.1       cgd 	 * Send if we owe peer an ACK.
    704       1.1       cgd 	 */
    705       1.1       cgd 	if (tp->t_flags & TF_ACKNOW)
    706       1.1       cgd 		goto send;
    707      1.43   mycroft 	if (flags & (TH_SYN|TH_FIN|TH_RST))
    708       1.1       cgd 		goto send;
    709       1.1       cgd 	if (SEQ_GT(tp->snd_up, tp->snd_una))
    710       1.1       cgd 		goto send;
    711       1.1       cgd 
    712       1.1       cgd 	/*
    713       1.1       cgd 	 * TCP window updates are not reliable, rather a polling protocol
    714       1.1       cgd 	 * using ``persist'' packets is used to insure receipt of window
    715       1.1       cgd 	 * updates.  The three ``states'' for the output side are:
    716       1.1       cgd 	 *	idle			not doing retransmits or persists
    717       1.1       cgd 	 *	persisting		to move a small or zero window
    718       1.1       cgd 	 *	(re)transmitting	and thereby not persisting
    719       1.1       cgd 	 *
    720       1.1       cgd 	 * tp->t_timer[TCPT_PERSIST]
    721       1.1       cgd 	 *	is set when we are in persist state.
    722       1.1       cgd 	 * tp->t_force
    723       1.1       cgd 	 *	is set when we are called to send a persist packet.
    724       1.1       cgd 	 * tp->t_timer[TCPT_REXMT]
    725       1.1       cgd 	 *	is set when we are retransmitting
    726       1.1       cgd 	 * The output side is idle when both timers are zero.
    727       1.1       cgd 	 *
    728       1.1       cgd 	 * If send window is too small, there is data to transmit, and no
    729       1.1       cgd 	 * retransmit or persist is pending, then go to persist state.
    730       1.1       cgd 	 * If nothing happens soon, send when timer expires:
    731       1.1       cgd 	 * if window is nonzero, transmit what we can,
    732       1.1       cgd 	 * otherwise force out a byte.
    733       1.1       cgd 	 */
    734      1.38   thorpej 	if (so->so_snd.sb_cc && TCP_TIMER_ISARMED(tp, TCPT_REXMT) == 0 &&
    735      1.38   thorpej 	    TCP_TIMER_ISARMED(tp, TCPT_PERSIST) == 0) {
    736       1.1       cgd 		tp->t_rxtshift = 0;
    737       1.1       cgd 		tcp_setpersist(tp);
    738       1.1       cgd 	}
    739       1.1       cgd 
    740       1.1       cgd 	/*
    741       1.1       cgd 	 * No reason to send a segment, just return.
    742       1.1       cgd 	 */
    743       1.1       cgd 	return (0);
    744       1.1       cgd 
    745       1.1       cgd send:
    746       1.1       cgd 	/*
    747       1.1       cgd 	 * Before ESTABLISHED, force sending of initial options
    748       1.1       cgd 	 * unless TCP set not to do any options.
    749       1.1       cgd 	 * NOTE: we assume that the IP/TCP header plus TCP options
    750       1.1       cgd 	 * always fit in a single mbuf, leaving room for a maximum
    751       1.1       cgd 	 * link header, i.e.
    752      1.48    itojun 	 *	max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MCLBYTES
    753       1.1       cgd 	 */
    754       1.1       cgd 	optlen = 0;
    755      1.48    itojun 	switch (af) {
    756      1.60    itojun #ifdef INET
    757      1.48    itojun 	case AF_INET:
    758      1.48    itojun 		iphdrlen = sizeof(struct ip) + sizeof(struct tcphdr);
    759      1.48    itojun 		break;
    760      1.60    itojun #endif
    761      1.48    itojun #ifdef INET6
    762      1.48    itojun 	case AF_INET6:
    763      1.48    itojun 		iphdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
    764      1.48    itojun 		break;
    765      1.48    itojun #endif
    766      1.49    itojun 	default:	/*pacify gcc*/
    767      1.49    itojun 		iphdrlen = 0;
    768      1.49    itojun 		break;
    769      1.48    itojun 	}
    770      1.48    itojun 	hdrlen = iphdrlen;
    771       1.9   mycroft 	if (flags & TH_SYN) {
    772      1.48    itojun 		struct rtentry *rt;
    773      1.48    itojun 
    774      1.60    itojun 		rt = NULL;
    775      1.60    itojun #ifdef INET
    776      1.48    itojun 		if (tp->t_inpcb)
    777      1.48    itojun 			rt = in_pcbrtentry(tp->t_inpcb);
    778      1.60    itojun #endif
    779      1.61    itojun #ifdef INET6
    780      1.60    itojun 		if (tp->t_in6pcb)
    781      1.48    itojun 			rt = in6_pcbrtentry(tp->t_in6pcb);
    782      1.48    itojun #endif
    783      1.34       kml 
    784       1.9   mycroft 		tp->snd_nxt = tp->iss;
    785  1.67.2.6  jdolecek 		tp->t_ourmss = tcp_mss_to_advertise(rt != NULL ?
    786      1.52    itojun 						    rt->rt_ifp : NULL, af);
    787       1.9   mycroft 		if ((tp->t_flags & TF_NOOPT) == 0) {
    788       1.9   mycroft 			opt[0] = TCPOPT_MAXSEG;
    789       1.9   mycroft 			opt[1] = 4;
    790      1.17   thorpej 			opt[2] = (tp->t_ourmss >> 8) & 0xff;
    791      1.17   thorpej 			opt[3] = tp->t_ourmss & 0xff;
    792       1.9   mycroft 			optlen = 4;
    793  1.67.2.6  jdolecek 
    794       1.9   mycroft 			if ((tp->t_flags & TF_REQ_SCALE) &&
    795       1.9   mycroft 			    ((flags & TH_ACK) == 0 ||
    796       1.9   mycroft 			    (tp->t_flags & TF_RCVD_SCALE))) {
    797      1.12       cgd 				*((u_int32_t *) (opt + optlen)) = htonl(
    798       1.9   mycroft 					TCPOPT_NOP << 24 |
    799       1.9   mycroft 					TCPOPT_WINDOW << 16 |
    800       1.9   mycroft 					TCPOLEN_WINDOW << 8 |
    801       1.9   mycroft 					tp->request_r_scale);
    802       1.9   mycroft 				optlen += 4;
    803       1.9   mycroft 			}
    804       1.9   mycroft 		}
    805  1.67.2.6  jdolecek 	}
    806  1.67.2.6  jdolecek 
    807  1.67.2.6  jdolecek 	/*
    808  1.67.2.6  jdolecek 	 * Send a timestamp and echo-reply if this is a SYN and our side
    809       1.9   mycroft 	 * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
    810       1.9   mycroft 	 * and our peer have sent timestamps in our SYN's.
    811  1.67.2.6  jdolecek 	 */
    812  1.67.2.6  jdolecek 	if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
    813  1.67.2.6  jdolecek 	     (flags & TH_RST) == 0 &&
    814  1.67.2.6  jdolecek 	    ((flags & (TH_SYN|TH_ACK)) == TH_SYN ||
    815       1.9   mycroft 	     (tp->t_flags & TF_RCVD_TSTMP))) {
    816      1.13       cgd 		u_int32_t *lp = (u_int32_t *)(opt + optlen);
    817       1.9   mycroft 
    818  1.67.2.6  jdolecek 		/* Form timestamp option as shown in appendix A of RFC 1323. */
    819  1.67.2.6  jdolecek 		*lp++ = htonl(TCPOPT_TSTAMP_HDR);
    820  1.67.2.6  jdolecek 		*lp++ = htonl(TCP_TIMESTAMP(tp));
    821  1.67.2.6  jdolecek 		*lp   = htonl(tp->ts_recent);
    822  1.67.2.6  jdolecek 		optlen += TCPOLEN_TSTAMP_APPA;
    823  1.67.2.6  jdolecek 	}
    824  1.67.2.6  jdolecek 
    825  1.67.2.6  jdolecek 	hdrlen += optlen;
    826  1.67.2.6  jdolecek 
    827       1.1       cgd #ifdef DIAGNOSTIC
    828      1.29       kml 	if (len > txsegsize)
    829      1.29       kml 		panic("tcp data to be sent is larger than segment");
    830  1.67.2.6  jdolecek 	if (max_linkhdr + hdrlen > MCLBYTES)
    831       1.9   mycroft 		panic("tcphdr too big");
    832       1.1       cgd #endif
    833       1.1       cgd 
    834       1.1       cgd 	/*
    835       1.1       cgd 	 * Grab a header mbuf, attaching a copy of data to
    836       1.1       cgd 	 * be transmitted, and initialize the header from
    837       1.1       cgd 	 * the template for sends on this connection.
    838       1.1       cgd 	 */
    839       1.1       cgd 	if (len) {
    840  1.67.2.1     lukem 		error = tcp_build_datapkt(tp, so, off, len, hdrlen, &m);
    841  1.67.2.1     lukem 		if (error)
    842       1.1       cgd 			goto out;
    843       1.1       cgd 		/*
    844       1.1       cgd 		 * If we're sending everything we've got, set PUSH.
    845       1.1       cgd 		 * (This will keep happy those implementations which only
    846       1.1       cgd 		 * give data to the user when a buffer fills or
    847       1.1       cgd 		 * a PUSH comes in.)
    848       1.1       cgd 		 */
    849       1.1       cgd 		if (off + len == so->so_snd.sb_cc)
    850       1.1       cgd 			flags |= TH_PUSH;
    851       1.1       cgd 	} else {
    852       1.1       cgd 		if (tp->t_flags & TF_ACKNOW)
    853       1.1       cgd 			tcpstat.tcps_sndacks++;
    854       1.1       cgd 		else if (flags & (TH_SYN|TH_FIN|TH_RST))
    855       1.1       cgd 			tcpstat.tcps_sndctrl++;
    856       1.1       cgd 		else if (SEQ_GT(tp->snd_up, tp->snd_una))
    857       1.1       cgd 			tcpstat.tcps_sndurg++;
    858       1.1       cgd 		else
    859       1.1       cgd 			tcpstat.tcps_sndwinup++;
    860       1.1       cgd 
    861       1.1       cgd 		MGETHDR(m, M_DONTWAIT, MT_HEADER);
    862      1.54    itojun 		if (m != NULL && max_linkhdr + hdrlen > MHLEN) {
    863      1.48    itojun 			MCLGET(m, M_DONTWAIT);
    864      1.48    itojun 			if ((m->m_flags & M_EXT) == 0) {
    865      1.48    itojun 				m_freem(m);
    866      1.48    itojun 				m = NULL;
    867      1.48    itojun 			}
    868      1.48    itojun 		}
    869       1.1       cgd 		if (m == NULL) {
    870       1.1       cgd 			error = ENOBUFS;
    871       1.1       cgd 			goto out;
    872       1.1       cgd 		}
    873       1.1       cgd 		m->m_data += max_linkhdr;
    874       1.1       cgd 		m->m_len = hdrlen;
    875       1.1       cgd 	}
    876       1.1       cgd 	m->m_pkthdr.rcvif = (struct ifnet *)0;
    877      1.48    itojun 	switch (af) {
    878      1.60    itojun #ifdef INET
    879      1.48    itojun 	case AF_INET:
    880      1.48    itojun 		ip = mtod(m, struct ip *);
    881      1.48    itojun #ifdef INET6
    882      1.48    itojun 		ip6 = NULL;
    883      1.48    itojun #endif
    884      1.48    itojun 		th = (struct tcphdr *)(ip + 1);
    885      1.48    itojun 		break;
    886      1.60    itojun #endif
    887      1.48    itojun #ifdef INET6
    888      1.48    itojun 	case AF_INET6:
    889      1.48    itojun 		ip = NULL;
    890      1.48    itojun 		ip6 = mtod(m, struct ip6_hdr *);
    891      1.48    itojun 		th = (struct tcphdr *)(ip6 + 1);
    892      1.48    itojun 		break;
    893      1.48    itojun #endif
    894      1.49    itojun 	default:	/*pacify gcc*/
    895      1.49    itojun 		ip = NULL;
    896      1.50      fvdl #ifdef INET6
    897      1.49    itojun 		ip6 = NULL;
    898      1.50      fvdl #endif
    899      1.49    itojun 		th = NULL;
    900      1.49    itojun 		break;
    901      1.48    itojun 	}
    902       1.1       cgd 	if (tp->t_template == 0)
    903       1.1       cgd 		panic("tcp_output");
    904      1.48    itojun 	if (tp->t_template->m_len < iphdrlen)
    905      1.48    itojun 		panic("tcp_output");
    906      1.48    itojun 	bcopy(mtod(tp->t_template, caddr_t), mtod(m, caddr_t), iphdrlen);
    907       1.1       cgd 
    908       1.1       cgd 	/*
    909       1.9   mycroft 	 * If we are doing retransmissions, then snd_nxt will
    910       1.9   mycroft 	 * not reflect the first unsent octet.  For ACK only
    911       1.9   mycroft 	 * packets, we do not want the sequence number of the
    912       1.9   mycroft 	 * retransmitted packet, we want the sequence number
    913       1.9   mycroft 	 * of the next unsent octet.  So, if there is no data
    914       1.9   mycroft 	 * (and no SYN or FIN), use snd_max instead of snd_nxt
    915       1.9   mycroft 	 * when filling in ti_seq.  But if we are in persist
    916       1.9   mycroft 	 * state, snd_max might reflect one byte beyond the
    917       1.9   mycroft 	 * right edge of the window, so use snd_nxt in that
    918       1.9   mycroft 	 * case, since we know we aren't doing a retransmission.
    919       1.9   mycroft 	 * (retransmit and persist are mutually exclusive...)
    920       1.9   mycroft 	 */
    921      1.38   thorpej 	if (len || (flags & (TH_SYN|TH_FIN)) ||
    922      1.38   thorpej 	    TCP_TIMER_ISARMED(tp, TCPT_PERSIST))
    923      1.48    itojun 		th->th_seq = htonl(tp->snd_nxt);
    924       1.8   mycroft 	else
    925      1.48    itojun 		th->th_seq = htonl(tp->snd_max);
    926      1.48    itojun 	th->th_ack = htonl(tp->rcv_nxt);
    927       1.1       cgd 	if (optlen) {
    928      1.48    itojun 		bcopy((caddr_t)opt, (caddr_t)(th + 1), optlen);
    929      1.48    itojun 		th->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
    930       1.1       cgd 	}
    931      1.48    itojun 	th->th_flags = flags;
    932       1.1       cgd 	/*
    933       1.1       cgd 	 * Calculate receive window.  Don't shrink window,
    934       1.1       cgd 	 * but avoid silly window syndrome.
    935       1.1       cgd 	 */
    936      1.18   thorpej 	if (win < (long)(so->so_rcv.sb_hiwat / 4) && win < (long)rxsegsize)
    937       1.1       cgd 		win = 0;
    938       1.9   mycroft 	if (win > (long)TCP_MAXWIN << tp->rcv_scale)
    939       1.9   mycroft 		win = (long)TCP_MAXWIN << tp->rcv_scale;
    940       1.1       cgd 	if (win < (long)(tp->rcv_adv - tp->rcv_nxt))
    941       1.1       cgd 		win = (long)(tp->rcv_adv - tp->rcv_nxt);
    942      1.48    itojun 	th->th_win = htons((u_int16_t) (win>>tp->rcv_scale));
    943       1.1       cgd 	if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
    944      1.16       kml 		u_int32_t urp = tp->snd_up - tp->snd_nxt;
    945      1.16       kml 		if (urp > IP_MAXPACKET)
    946      1.16       kml 			urp = IP_MAXPACKET;
    947      1.48    itojun 		th->th_urp = htons((u_int16_t)urp);
    948      1.48    itojun 		th->th_flags |= TH_URG;
    949       1.1       cgd 	} else
    950       1.1       cgd 		/*
    951       1.1       cgd 		 * If no urgent pointer to send, then we pull
    952       1.1       cgd 		 * the urgent pointer to the left edge of the send window
    953       1.1       cgd 		 * so that it doesn't drift into the send window on sequence
    954       1.1       cgd 		 * number wraparound.
    955       1.1       cgd 		 */
    956       1.1       cgd 		tp->snd_up = tp->snd_una;		/* drag it along */
    957       1.1       cgd 
    958       1.1       cgd 	/*
    959      1.66   thorpej 	 * Set ourselves up to be checksummed just before the packet
    960      1.66   thorpej 	 * hits the wire.
    961       1.1       cgd 	 */
    962      1.48    itojun 	switch (af) {
    963      1.60    itojun #ifdef INET
    964      1.48    itojun 	case AF_INET:
    965      1.66   thorpej 		m->m_pkthdr.csum_flags = M_CSUM_TCPv4;
    966      1.66   thorpej 		m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
    967      1.66   thorpej 		if (len + optlen) {
    968      1.66   thorpej 			/* Fixup the pseudo-header checksum. */
    969      1.66   thorpej 			/* XXXJRT Not IP Jumbogram safe. */
    970      1.66   thorpej 			th->th_sum = in_cksum_addword(th->th_sum,
    971      1.66   thorpej 			    htons((u_int16_t) (len + optlen)));
    972      1.66   thorpej 		}
    973      1.48    itojun 		break;
    974      1.60    itojun #endif
    975      1.48    itojun #ifdef INET6
    976      1.48    itojun 	case AF_INET6:
    977      1.66   thorpej 		/*
    978      1.66   thorpej 		 * XXX Actually delaying the checksum is Hard
    979      1.66   thorpej 		 * XXX (well, maybe not for Itojun, but it is
    980      1.66   thorpej 		 * XXX for me), but we can still take advantage
    981      1.66   thorpej 		 * XXX of the cached pseudo-header checksum.
    982      1.66   thorpej 		 */
    983      1.48    itojun 		/* equals to hdrlen + len */
    984      1.48    itojun 		m->m_pkthdr.len = sizeof(struct ip6_hdr)
    985      1.48    itojun 			+ sizeof(struct tcphdr) + optlen + len;
    986      1.66   thorpej #ifdef notyet
    987      1.66   thorpej 		m->m_pkthdr.csum_flags = M_CSUM_TCPv6;
    988      1.66   thorpej 		m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
    989      1.66   thorpej #endif
    990      1.66   thorpej 		if (len + optlen) {
    991      1.66   thorpej 			/* Fixup the pseudo-header checksum. */
    992      1.66   thorpej 			/* XXXJRT: Not IPv6 Jumbogram safe. */
    993      1.66   thorpej 			th->th_sum = in_cksum_addword(th->th_sum,
    994      1.66   thorpej 			    htons((u_int16_t) (len + optlen)));
    995      1.66   thorpej 		}
    996      1.66   thorpej #ifndef notyet
    997      1.66   thorpej 		th->th_sum = in6_cksum(m, 0, sizeof(struct ip6_hdr),
    998      1.66   thorpej 		    sizeof(struct tcphdr) + optlen + len);
    999      1.66   thorpej #endif
   1000      1.48    itojun 		break;
   1001      1.48    itojun #endif
   1002      1.48    itojun 	}
   1003       1.1       cgd 
   1004       1.1       cgd 	/*
   1005       1.1       cgd 	 * In transmit state, time the transmission and arrange for
   1006       1.1       cgd 	 * the retransmit.  In persist state, just set snd_max.
   1007       1.1       cgd 	 */
   1008      1.38   thorpej 	if (tp->t_force == 0 || TCP_TIMER_ISARMED(tp, TCPT_PERSIST) == 0) {
   1009       1.1       cgd 		tcp_seq startseq = tp->snd_nxt;
   1010       1.1       cgd 
   1011       1.1       cgd 		/*
   1012       1.1       cgd 		 * Advance snd_nxt over sequence space of this segment.
   1013      1.43   mycroft 		 * There are no states in which we send both a SYN and a FIN,
   1014      1.43   mycroft 		 * so we collapse the tests for these flags.
   1015       1.1       cgd 		 */
   1016      1.43   mycroft 		if (flags & (TH_SYN|TH_FIN))
   1017      1.43   mycroft 			tp->snd_nxt++;
   1018       1.1       cgd 		tp->snd_nxt += len;
   1019       1.1       cgd 		if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
   1020       1.1       cgd 			tp->snd_max = tp->snd_nxt;
   1021       1.1       cgd 			/*
   1022       1.1       cgd 			 * Time this transmission if not a retransmission and
   1023       1.1       cgd 			 * not currently timing anything.
   1024       1.1       cgd 			 */
   1025  1.67.2.2   thorpej 			if (tp->t_rtttime == 0) {
   1026  1.67.2.2   thorpej 				tp->t_rtttime = tcp_now;
   1027       1.1       cgd 				tp->t_rtseq = startseq;
   1028       1.1       cgd 				tcpstat.tcps_segstimed++;
   1029       1.1       cgd 			}
   1030       1.1       cgd 		}
   1031       1.1       cgd 
   1032       1.1       cgd 		/*
   1033       1.1       cgd 		 * Set retransmit timer if not currently set,
   1034       1.1       cgd 		 * and not doing an ack or a keep-alive probe.
   1035       1.1       cgd 		 * Initial value for retransmit timer is smoothed
   1036       1.1       cgd 		 * round-trip time + 2 * round-trip time variance.
   1037       1.1       cgd 		 * Initialize shift counter which is used for backoff
   1038       1.1       cgd 		 * of retransmit time.
   1039       1.1       cgd 		 */
   1040      1.38   thorpej 		if (TCP_TIMER_ISARMED(tp, TCPT_REXMT) == 0 &&
   1041       1.1       cgd 		    tp->snd_nxt != tp->snd_una) {
   1042      1.38   thorpej 			TCP_TIMER_ARM(tp, TCPT_REXMT, tp->t_rxtcur);
   1043      1.38   thorpej 			if (TCP_TIMER_ISARMED(tp, TCPT_PERSIST)) {
   1044      1.38   thorpej 				TCP_TIMER_DISARM(tp, TCPT_PERSIST);
   1045       1.1       cgd 				tp->t_rxtshift = 0;
   1046       1.1       cgd 			}
   1047       1.1       cgd 		}
   1048       1.1       cgd 	} else
   1049       1.1       cgd 		if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
   1050       1.1       cgd 			tp->snd_max = tp->snd_nxt + len;
   1051       1.1       cgd 
   1052      1.67       abs #ifdef TCP_DEBUG
   1053       1.1       cgd 	/*
   1054       1.1       cgd 	 * Trace.
   1055       1.1       cgd 	 */
   1056      1.48    itojun 	if (so->so_options & SO_DEBUG) {
   1057      1.48    itojun 		/*
   1058      1.48    itojun 		 * need to recover version # field, which was overwritten
   1059      1.48    itojun 		 * on ip_cksum computation.
   1060      1.48    itojun 		 */
   1061      1.48    itojun 		struct ip *sip;
   1062      1.48    itojun 		sip = mtod(m, struct ip *);
   1063      1.48    itojun 		switch (af) {
   1064      1.60    itojun #ifdef INET
   1065      1.48    itojun 		case AF_INET:
   1066      1.48    itojun 			sip->ip_v = 4;
   1067      1.48    itojun 			break;
   1068      1.60    itojun #endif
   1069      1.48    itojun #ifdef INET6
   1070      1.48    itojun 		case AF_INET6:
   1071      1.48    itojun 			sip->ip_v = 6;
   1072      1.48    itojun 			break;
   1073      1.48    itojun #endif
   1074      1.48    itojun 		}
   1075      1.48    itojun 		tcp_trace(TA_OUTPUT, tp->t_state, tp, m, 0);
   1076      1.48    itojun 	}
   1077      1.67       abs #endif
   1078       1.1       cgd 
   1079       1.1       cgd 	/*
   1080       1.1       cgd 	 * Fill in IP length and desired time to live and
   1081       1.1       cgd 	 * send to IP level.  There should be a better way
   1082       1.1       cgd 	 * to handle ttl and tos; we could keep them in
   1083       1.1       cgd 	 * the template, but need a way to checksum without them.
   1084       1.1       cgd 	 */
   1085       1.1       cgd 	m->m_pkthdr.len = hdrlen + len;
   1086      1.19       kml 
   1087      1.48    itojun 	switch (af) {
   1088      1.60    itojun #ifdef INET
   1089      1.48    itojun 	case AF_INET:
   1090  1.67.2.7  jdolecek 		ip->ip_len = htons(m->m_pkthdr.len);
   1091      1.48    itojun 		if (tp->t_inpcb) {
   1092      1.48    itojun 			ip->ip_ttl = tp->t_inpcb->inp_ip.ip_ttl;
   1093      1.48    itojun 			ip->ip_tos = tp->t_inpcb->inp_ip.ip_tos;
   1094      1.48    itojun 		}
   1095      1.48    itojun #ifdef INET6
   1096      1.48    itojun 		else if (tp->t_in6pcb) {
   1097      1.62    itojun 			ip->ip_ttl = in6_selecthlim(tp->t_in6pcb, NULL); /*XXX*/
   1098      1.48    itojun 			ip->ip_tos = 0;	/*XXX*/
   1099      1.48    itojun 		}
   1100      1.48    itojun #endif
   1101      1.48    itojun 		break;
   1102      1.60    itojun #endif
   1103      1.48    itojun #ifdef INET6
   1104      1.48    itojun 	case AF_INET6:
   1105      1.48    itojun 		ip6->ip6_nxt = IPPROTO_TCP;
   1106      1.53    itojun 		if (tp->t_in6pcb) {
   1107      1.53    itojun 			/*
   1108      1.53    itojun 			 * we separately set hoplimit for every segment, since
   1109      1.53    itojun 			 * the user might want to change the value via
   1110      1.53    itojun 			 * setsockopt. Also, desired default hop limit might
   1111      1.53    itojun 			 * be changed via Neighbor Discovery.
   1112      1.53    itojun 			 */
   1113      1.53    itojun 			ip6->ip6_hlim = in6_selecthlim(tp->t_in6pcb,
   1114      1.53    itojun 				ro->ro_rt ? ro->ro_rt->rt_ifp : NULL);
   1115      1.53    itojun 		}
   1116      1.48    itojun 		/* ip6->ip6_flow = ??? */
   1117      1.48    itojun 		/* ip6_plen will be filled in ip6_output(). */
   1118      1.48    itojun 		break;
   1119      1.48    itojun #endif
   1120      1.48    itojun 	}
   1121      1.19       kml 
   1122      1.48    itojun #ifdef IPSEC
   1123      1.63    itojun 	if (ipsec_setsocket(m, so) != 0) {
   1124      1.63    itojun 		m_freem(m);
   1125      1.63    itojun 		error = ENOBUFS;
   1126      1.63    itojun 		goto out;
   1127      1.63    itojun 	}
   1128      1.48    itojun #endif /*IPSEC*/
   1129      1.48    itojun 
   1130      1.48    itojun 	switch (af) {
   1131      1.60    itojun #ifdef INET
   1132      1.48    itojun 	case AF_INET:
   1133      1.48    itojun 	    {
   1134      1.48    itojun 		struct mbuf *opts;
   1135      1.48    itojun 
   1136      1.48    itojun 		if (tp->t_inpcb)
   1137      1.48    itojun 			opts = tp->t_inpcb->inp_options;
   1138      1.48    itojun 		else
   1139      1.48    itojun 			opts = NULL;
   1140      1.48    itojun 		error = ip_output(m, opts, ro,
   1141  1.67.2.6  jdolecek 			(tp->t_mtudisc ? IP_MTUDISC : 0) |
   1142      1.59   thorpej 			(so->so_options & SO_DONTROUTE),
   1143      1.59   thorpej 			0);
   1144      1.48    itojun 		break;
   1145      1.48    itojun 	    }
   1146      1.60    itojun #endif
   1147      1.48    itojun #ifdef INET6
   1148      1.48    itojun 	case AF_INET6:
   1149      1.48    itojun 	    {
   1150      1.48    itojun 		struct ip6_pktopts *opts;
   1151      1.48    itojun 
   1152      1.48    itojun 		if (tp->t_in6pcb)
   1153      1.48    itojun 			opts = tp->t_in6pcb->in6p_outputopts;
   1154      1.48    itojun 		else
   1155      1.48    itojun 			opts = NULL;
   1156      1.48    itojun 		error = ip6_output(m, opts, (struct route_in6 *)ro,
   1157      1.53    itojun 			so->so_options & SO_DONTROUTE, 0, NULL);
   1158      1.48    itojun 		break;
   1159      1.48    itojun 	    }
   1160      1.48    itojun #endif
   1161      1.49    itojun 	default:
   1162      1.49    itojun 		error = EAFNOSUPPORT;
   1163      1.49    itojun 		break;
   1164      1.48    itojun 	}
   1165       1.1       cgd 	if (error) {
   1166       1.1       cgd out:
   1167       1.1       cgd 		if (error == ENOBUFS) {
   1168  1.67.2.1     lukem 			tcpstat.tcps_selfquench++;
   1169      1.60    itojun #ifdef INET
   1170      1.48    itojun 			if (tp->t_inpcb)
   1171      1.48    itojun 				tcp_quench(tp->t_inpcb, 0);
   1172      1.60    itojun #endif
   1173      1.58    itojun #ifdef INET6
   1174      1.60    itojun 			if (tp->t_in6pcb)
   1175      1.48    itojun 				tcp6_quench(tp->t_in6pcb, 0);
   1176      1.48    itojun #endif
   1177  1.67.2.2   thorpej 			error = 0;
   1178  1.67.2.2   thorpej 		} else if ((error == EHOSTUNREACH || error == ENETDOWN) &&
   1179  1.67.2.2   thorpej 		    TCPS_HAVERCVDSYN(tp->t_state)) {
   1180       1.1       cgd 			tp->t_softerror = error;
   1181  1.67.2.2   thorpej 			error = 0;
   1182       1.1       cgd 		}
   1183  1.67.2.2   thorpej 
   1184  1.67.2.2   thorpej 		/* Restart the delayed ACK timer, if necessary. */
   1185  1.67.2.2   thorpej 		if (tp->t_flags & TF_DELACK)
   1186  1.67.2.2   thorpej 			TCP_RESTART_DELACK(tp);
   1187  1.67.2.2   thorpej 
   1188       1.1       cgd 		return (error);
   1189       1.1       cgd 	}
   1190       1.1       cgd 	tcpstat.tcps_sndtotal++;
   1191      1.23   thorpej 	if (tp->t_flags & TF_DELACK)
   1192      1.23   thorpej 		tcpstat.tcps_delack++;
   1193       1.1       cgd 
   1194       1.1       cgd 	/*
   1195       1.1       cgd 	 * Data sent (as far as we can tell).
   1196       1.1       cgd 	 * If this advertises a larger window than any other segment,
   1197       1.1       cgd 	 * then remember the size of the advertised window.
   1198       1.1       cgd 	 * Any pending ACK has now been sent.
   1199       1.1       cgd 	 */
   1200       1.1       cgd 	if (win > 0 && SEQ_GT(tp->rcv_nxt+win, tp->rcv_adv))
   1201       1.1       cgd 		tp->rcv_adv = tp->rcv_nxt + win;
   1202       1.9   mycroft 	tp->last_ack_sent = tp->rcv_nxt;
   1203      1.26   thorpej 	tp->t_flags &= ~TF_ACKNOW;
   1204      1.26   thorpej 	TCP_CLEAR_DELACK(tp);
   1205      1.44      matt #ifdef DIAGNOSTIC
   1206      1.44      matt 	if (maxburst < 0)
   1207      1.44      matt 		printf("tcp_output: maxburst exceeded by %d\n", -maxburst);
   1208      1.44      matt #endif
   1209      1.45      matt 	if (sendalot && (!tcp_do_newreno || --maxburst))
   1210       1.1       cgd 		goto again;
   1211       1.1       cgd 	return (0);
   1212       1.1       cgd }
   1213       1.1       cgd 
   1214       1.6   mycroft void
   1215       1.1       cgd tcp_setpersist(tp)
   1216      1.56  augustss 	struct tcpcb *tp;
   1217       1.1       cgd {
   1218      1.56  augustss 	int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> (1 + 2);
   1219      1.38   thorpej 	int nticks;
   1220       1.1       cgd 
   1221      1.38   thorpej 	if (TCP_TIMER_ISARMED(tp, TCPT_REXMT))
   1222       1.1       cgd 		panic("tcp_output REXMT");
   1223       1.1       cgd 	/*
   1224       1.1       cgd 	 * Start/restart persistance timer.
   1225       1.1       cgd 	 */
   1226      1.30       kml 	if (t < tp->t_rttmin)
   1227      1.30       kml 		t = tp->t_rttmin;
   1228      1.38   thorpej 	TCPT_RANGESET(nticks, t * tcp_backoff[tp->t_rxtshift],
   1229       1.1       cgd 	    TCPTV_PERSMIN, TCPTV_PERSMAX);
   1230      1.38   thorpej 	TCP_TIMER_ARM(tp, TCPT_PERSIST, nticks);
   1231       1.1       cgd 	if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
   1232       1.1       cgd 		tp->t_rxtshift++;
   1233       1.1       cgd }
   1234