Home | History | Annotate | Line # | Download | only in netinet
tcp_usrreq.c revision 1.136.6.2
      1  1.136.6.2  rmind /*	$NetBSD: tcp_usrreq.c,v 1.136.6.2 2007/08/02 02:42:42 rmind Exp $	*/
      2  1.136.6.2  rmind 
      3  1.136.6.2  rmind /*
      4  1.136.6.2  rmind  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5  1.136.6.2  rmind  * All rights reserved.
      6  1.136.6.2  rmind  *
      7  1.136.6.2  rmind  * Redistribution and use in source and binary forms, with or without
      8  1.136.6.2  rmind  * modification, are permitted provided that the following conditions
      9  1.136.6.2  rmind  * are met:
     10  1.136.6.2  rmind  * 1. Redistributions of source code must retain the above copyright
     11  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer.
     12  1.136.6.2  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer in the
     14  1.136.6.2  rmind  *    documentation and/or other materials provided with the distribution.
     15  1.136.6.2  rmind  * 3. Neither the name of the project nor the names of its contributors
     16  1.136.6.2  rmind  *    may be used to endorse or promote products derived from this software
     17  1.136.6.2  rmind  *    without specific prior written permission.
     18  1.136.6.2  rmind  *
     19  1.136.6.2  rmind  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20  1.136.6.2  rmind  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  1.136.6.2  rmind  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  1.136.6.2  rmind  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23  1.136.6.2  rmind  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  1.136.6.2  rmind  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  1.136.6.2  rmind  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  1.136.6.2  rmind  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  1.136.6.2  rmind  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  1.136.6.2  rmind  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.136.6.2  rmind  * SUCH DAMAGE.
     30  1.136.6.2  rmind  */
     31  1.136.6.2  rmind 
     32  1.136.6.2  rmind /*-
     33  1.136.6.2  rmind  * Copyright (c) 1997, 1998, 2005, 2006 The NetBSD Foundation, Inc.
     34  1.136.6.2  rmind  * All rights reserved.
     35  1.136.6.2  rmind  *
     36  1.136.6.2  rmind  * This code is derived from software contributed to The NetBSD Foundation
     37  1.136.6.2  rmind  * by Jason R. Thorpe and Kevin M. Lahey of the Numerical Aerospace Simulation
     38  1.136.6.2  rmind  * Facility, NASA Ames Research Center.
     39  1.136.6.2  rmind  * This code is derived from software contributed to The NetBSD Foundation
     40  1.136.6.2  rmind  * by Charles M. Hannum.
     41  1.136.6.2  rmind  * This code is derived from software contributed to The NetBSD Foundation
     42  1.136.6.2  rmind  * by Rui Paulo.
     43  1.136.6.2  rmind  *
     44  1.136.6.2  rmind  * Redistribution and use in source and binary forms, with or without
     45  1.136.6.2  rmind  * modification, are permitted provided that the following conditions
     46  1.136.6.2  rmind  * are met:
     47  1.136.6.2  rmind  * 1. Redistributions of source code must retain the above copyright
     48  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer.
     49  1.136.6.2  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     50  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer in the
     51  1.136.6.2  rmind  *    documentation and/or other materials provided with the distribution.
     52  1.136.6.2  rmind  * 3. All advertising materials mentioning features or use of this software
     53  1.136.6.2  rmind  *    must display the following acknowledgement:
     54  1.136.6.2  rmind  *	This product includes software developed by the NetBSD
     55  1.136.6.2  rmind  *	Foundation, Inc. and its contributors.
     56  1.136.6.2  rmind  * 4. Neither the name of The NetBSD Foundation nor the names of its
     57  1.136.6.2  rmind  *    contributors may be used to endorse or promote products derived
     58  1.136.6.2  rmind  *    from this software without specific prior written permission.
     59  1.136.6.2  rmind  *
     60  1.136.6.2  rmind  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     61  1.136.6.2  rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     62  1.136.6.2  rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     63  1.136.6.2  rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     64  1.136.6.2  rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     65  1.136.6.2  rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     66  1.136.6.2  rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     67  1.136.6.2  rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     68  1.136.6.2  rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     69  1.136.6.2  rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     70  1.136.6.2  rmind  * POSSIBILITY OF SUCH DAMAGE.
     71  1.136.6.2  rmind  */
     72  1.136.6.2  rmind 
     73  1.136.6.2  rmind /*
     74  1.136.6.2  rmind  * Copyright (c) 1982, 1986, 1988, 1993, 1995
     75  1.136.6.2  rmind  *	The Regents of the University of California.  All rights reserved.
     76  1.136.6.2  rmind  *
     77  1.136.6.2  rmind  * Redistribution and use in source and binary forms, with or without
     78  1.136.6.2  rmind  * modification, are permitted provided that the following conditions
     79  1.136.6.2  rmind  * are met:
     80  1.136.6.2  rmind  * 1. Redistributions of source code must retain the above copyright
     81  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer.
     82  1.136.6.2  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     83  1.136.6.2  rmind  *    notice, this list of conditions and the following disclaimer in the
     84  1.136.6.2  rmind  *    documentation and/or other materials provided with the distribution.
     85  1.136.6.2  rmind  * 3. Neither the name of the University nor the names of its contributors
     86  1.136.6.2  rmind  *    may be used to endorse or promote products derived from this software
     87  1.136.6.2  rmind  *    without specific prior written permission.
     88  1.136.6.2  rmind  *
     89  1.136.6.2  rmind  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     90  1.136.6.2  rmind  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     91  1.136.6.2  rmind  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     92  1.136.6.2  rmind  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     93  1.136.6.2  rmind  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     94  1.136.6.2  rmind  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     95  1.136.6.2  rmind  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     96  1.136.6.2  rmind  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     97  1.136.6.2  rmind  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     98  1.136.6.2  rmind  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     99  1.136.6.2  rmind  * SUCH DAMAGE.
    100  1.136.6.2  rmind  *
    101  1.136.6.2  rmind  *	@(#)tcp_usrreq.c	8.5 (Berkeley) 6/21/95
    102  1.136.6.2  rmind  */
    103  1.136.6.2  rmind 
    104  1.136.6.2  rmind #include <sys/cdefs.h>
    105  1.136.6.2  rmind __KERNEL_RCSID(0, "$NetBSD: tcp_usrreq.c,v 1.136.6.2 2007/08/02 02:42:42 rmind Exp $");
    106  1.136.6.2  rmind 
    107  1.136.6.2  rmind #include "opt_inet.h"
    108  1.136.6.2  rmind #include "opt_ipsec.h"
    109  1.136.6.2  rmind #include "opt_tcp_debug.h"
    110  1.136.6.2  rmind #include "opt_mbuftrace.h"
    111  1.136.6.2  rmind #include "rnd.h"
    112  1.136.6.2  rmind 
    113  1.136.6.2  rmind #include <sys/param.h>
    114  1.136.6.2  rmind #include <sys/systm.h>
    115  1.136.6.2  rmind #include <sys/kernel.h>
    116  1.136.6.2  rmind #include <sys/malloc.h>
    117  1.136.6.2  rmind #include <sys/mbuf.h>
    118  1.136.6.2  rmind #include <sys/socket.h>
    119  1.136.6.2  rmind #include <sys/socketvar.h>
    120  1.136.6.2  rmind #include <sys/protosw.h>
    121  1.136.6.2  rmind #include <sys/errno.h>
    122  1.136.6.2  rmind #include <sys/stat.h>
    123  1.136.6.2  rmind #include <sys/proc.h>
    124  1.136.6.2  rmind #include <sys/domain.h>
    125  1.136.6.2  rmind #include <sys/sysctl.h>
    126  1.136.6.2  rmind #include <sys/kauth.h>
    127  1.136.6.2  rmind 
    128  1.136.6.2  rmind #include <net/if.h>
    129  1.136.6.2  rmind #include <net/route.h>
    130  1.136.6.2  rmind 
    131  1.136.6.2  rmind #include <netinet/in.h>
    132  1.136.6.2  rmind #include <netinet/in_systm.h>
    133  1.136.6.2  rmind #include <netinet/in_var.h>
    134  1.136.6.2  rmind #include <netinet/ip.h>
    135  1.136.6.2  rmind #include <netinet/in_pcb.h>
    136  1.136.6.2  rmind #include <netinet/ip_var.h>
    137  1.136.6.2  rmind #include <netinet/in_offload.h>
    138  1.136.6.2  rmind 
    139  1.136.6.2  rmind #ifdef INET6
    140  1.136.6.2  rmind #ifndef INET
    141  1.136.6.2  rmind #include <netinet/in.h>
    142  1.136.6.2  rmind #endif
    143  1.136.6.2  rmind #include <netinet/ip6.h>
    144  1.136.6.2  rmind #include <netinet6/in6_pcb.h>
    145  1.136.6.2  rmind #include <netinet6/ip6_var.h>
    146  1.136.6.2  rmind #include <netinet6/scope6_var.h>
    147  1.136.6.2  rmind #endif
    148  1.136.6.2  rmind 
    149  1.136.6.2  rmind #include <netinet/tcp.h>
    150  1.136.6.2  rmind #include <netinet/tcp_fsm.h>
    151  1.136.6.2  rmind #include <netinet/tcp_seq.h>
    152  1.136.6.2  rmind #include <netinet/tcp_timer.h>
    153  1.136.6.2  rmind #include <netinet/tcp_var.h>
    154  1.136.6.2  rmind #include <netinet/tcp_congctl.h>
    155  1.136.6.2  rmind #include <netinet/tcpip.h>
    156  1.136.6.2  rmind #include <netinet/tcp_debug.h>
    157  1.136.6.2  rmind 
    158  1.136.6.2  rmind #include "opt_tcp_space.h"
    159  1.136.6.2  rmind 
    160  1.136.6.2  rmind #ifdef IPSEC
    161  1.136.6.2  rmind #include <netinet6/ipsec.h>
    162  1.136.6.2  rmind #endif /*IPSEC*/
    163  1.136.6.2  rmind 
    164  1.136.6.2  rmind /*
    165  1.136.6.2  rmind  * TCP protocol interface to socket abstraction.
    166  1.136.6.2  rmind  */
    167  1.136.6.2  rmind 
    168  1.136.6.2  rmind /*
    169  1.136.6.2  rmind  * Process a TCP user request for TCP tb.  If this is a send request
    170  1.136.6.2  rmind  * then m is the mbuf chain of send data.  If this is a timer expiration
    171  1.136.6.2  rmind  * (called from the software clock routine), then timertype tells which timer.
    172  1.136.6.2  rmind  */
    173  1.136.6.2  rmind /*ARGSUSED*/
    174  1.136.6.2  rmind int
    175  1.136.6.2  rmind tcp_usrreq(struct socket *so, int req,
    176  1.136.6.2  rmind     struct mbuf *m, struct mbuf *nam, struct mbuf *control, struct lwp *l)
    177  1.136.6.2  rmind {
    178  1.136.6.2  rmind 	struct inpcb *inp;
    179  1.136.6.2  rmind #ifdef INET6
    180  1.136.6.2  rmind 	struct in6pcb *in6p;
    181  1.136.6.2  rmind #endif
    182  1.136.6.2  rmind 	struct tcpcb *tp = NULL;
    183  1.136.6.2  rmind 	int s;
    184  1.136.6.2  rmind 	int error = 0;
    185  1.136.6.2  rmind #ifdef TCP_DEBUG
    186  1.136.6.2  rmind 	int ostate = 0;
    187  1.136.6.2  rmind #endif
    188  1.136.6.2  rmind 	int family;	/* family of the socket */
    189  1.136.6.2  rmind 
    190  1.136.6.2  rmind 	family = so->so_proto->pr_domain->dom_family;
    191  1.136.6.2  rmind 
    192  1.136.6.2  rmind 	if (req == PRU_CONTROL) {
    193  1.136.6.2  rmind 		switch (family) {
    194  1.136.6.2  rmind #ifdef INET
    195  1.136.6.2  rmind 		case PF_INET:
    196  1.136.6.2  rmind 			return (in_control(so, (long)m, (void *)nam,
    197  1.136.6.2  rmind 			    (struct ifnet *)control, l));
    198  1.136.6.2  rmind #endif
    199  1.136.6.2  rmind #ifdef INET6
    200  1.136.6.2  rmind 		case PF_INET6:
    201  1.136.6.2  rmind 			return (in6_control(so, (long)m, (void *)nam,
    202  1.136.6.2  rmind 			    (struct ifnet *)control, l));
    203  1.136.6.2  rmind #endif
    204  1.136.6.2  rmind 		default:
    205  1.136.6.2  rmind 			return EAFNOSUPPORT;
    206  1.136.6.2  rmind 		}
    207  1.136.6.2  rmind 	}
    208  1.136.6.2  rmind 
    209  1.136.6.2  rmind 	s = splsoftnet();
    210  1.136.6.2  rmind 
    211  1.136.6.2  rmind 	if (req == PRU_PURGEIF) {
    212  1.136.6.2  rmind 		switch (family) {
    213  1.136.6.2  rmind #ifdef INET
    214  1.136.6.2  rmind 		case PF_INET:
    215  1.136.6.2  rmind 			in_pcbpurgeif0(&tcbtable, (struct ifnet *)control);
    216  1.136.6.2  rmind 			in_purgeif((struct ifnet *)control);
    217  1.136.6.2  rmind 			in_pcbpurgeif(&tcbtable, (struct ifnet *)control);
    218  1.136.6.2  rmind 			break;
    219  1.136.6.2  rmind #endif
    220  1.136.6.2  rmind #ifdef INET6
    221  1.136.6.2  rmind 		case PF_INET6:
    222  1.136.6.2  rmind 			in6_pcbpurgeif0(&tcbtable, (struct ifnet *)control);
    223  1.136.6.2  rmind 			in6_purgeif((struct ifnet *)control);
    224  1.136.6.2  rmind 			in6_pcbpurgeif(&tcbtable, (struct ifnet *)control);
    225  1.136.6.2  rmind 			break;
    226  1.136.6.2  rmind #endif
    227  1.136.6.2  rmind 		default:
    228  1.136.6.2  rmind 			splx(s);
    229  1.136.6.2  rmind 			return (EAFNOSUPPORT);
    230  1.136.6.2  rmind 		}
    231  1.136.6.2  rmind 		splx(s);
    232  1.136.6.2  rmind 		return (0);
    233  1.136.6.2  rmind 	}
    234  1.136.6.2  rmind 
    235  1.136.6.2  rmind 	switch (family) {
    236  1.136.6.2  rmind #ifdef INET
    237  1.136.6.2  rmind 	case PF_INET:
    238  1.136.6.2  rmind 		inp = sotoinpcb(so);
    239  1.136.6.2  rmind #ifdef INET6
    240  1.136.6.2  rmind 		in6p = NULL;
    241  1.136.6.2  rmind #endif
    242  1.136.6.2  rmind 		break;
    243  1.136.6.2  rmind #endif
    244  1.136.6.2  rmind #ifdef INET6
    245  1.136.6.2  rmind 	case PF_INET6:
    246  1.136.6.2  rmind 		inp = NULL;
    247  1.136.6.2  rmind 		in6p = sotoin6pcb(so);
    248  1.136.6.2  rmind 		break;
    249  1.136.6.2  rmind #endif
    250  1.136.6.2  rmind 	default:
    251  1.136.6.2  rmind 		splx(s);
    252  1.136.6.2  rmind 		return EAFNOSUPPORT;
    253  1.136.6.2  rmind 	}
    254  1.136.6.2  rmind 
    255  1.136.6.2  rmind #ifdef DIAGNOSTIC
    256  1.136.6.2  rmind #ifdef INET6
    257  1.136.6.2  rmind 	if (inp && in6p)
    258  1.136.6.2  rmind 		panic("tcp_usrreq: both inp and in6p set to non-NULL");
    259  1.136.6.2  rmind #endif
    260  1.136.6.2  rmind 	if (req != PRU_SEND && req != PRU_SENDOOB && control)
    261  1.136.6.2  rmind 		panic("tcp_usrreq: unexpected control mbuf");
    262  1.136.6.2  rmind #endif
    263  1.136.6.2  rmind 	/*
    264  1.136.6.2  rmind 	 * When a TCP is attached to a socket, then there will be
    265  1.136.6.2  rmind 	 * a (struct inpcb) pointed at by the socket, and this
    266  1.136.6.2  rmind 	 * structure will point at a subsidary (struct tcpcb).
    267  1.136.6.2  rmind 	 */
    268  1.136.6.2  rmind #ifndef INET6
    269  1.136.6.2  rmind 	if (inp == 0 && req != PRU_ATTACH)
    270  1.136.6.2  rmind #else
    271  1.136.6.2  rmind 	if ((inp == 0 && in6p == 0) && req != PRU_ATTACH)
    272  1.136.6.2  rmind #endif
    273  1.136.6.2  rmind 	{
    274  1.136.6.2  rmind 		error = EINVAL;
    275  1.136.6.2  rmind 		goto release;
    276  1.136.6.2  rmind 	}
    277  1.136.6.2  rmind #ifdef INET
    278  1.136.6.2  rmind 	if (inp) {
    279  1.136.6.2  rmind 		tp = intotcpcb(inp);
    280  1.136.6.2  rmind 		/* WHAT IF TP IS 0? */
    281  1.136.6.2  rmind #ifdef KPROF
    282  1.136.6.2  rmind 		tcp_acounts[tp->t_state][req]++;
    283  1.136.6.2  rmind #endif
    284  1.136.6.2  rmind #ifdef TCP_DEBUG
    285  1.136.6.2  rmind 		ostate = tp->t_state;
    286  1.136.6.2  rmind #endif
    287  1.136.6.2  rmind 	}
    288  1.136.6.2  rmind #endif
    289  1.136.6.2  rmind #ifdef INET6
    290  1.136.6.2  rmind 	if (in6p) {
    291  1.136.6.2  rmind 		tp = in6totcpcb(in6p);
    292  1.136.6.2  rmind 		/* WHAT IF TP IS 0? */
    293  1.136.6.2  rmind #ifdef KPROF
    294  1.136.6.2  rmind 		tcp_acounts[tp->t_state][req]++;
    295  1.136.6.2  rmind #endif
    296  1.136.6.2  rmind #ifdef TCP_DEBUG
    297  1.136.6.2  rmind 		ostate = tp->t_state;
    298  1.136.6.2  rmind #endif
    299  1.136.6.2  rmind 	}
    300  1.136.6.2  rmind #endif
    301  1.136.6.2  rmind 
    302  1.136.6.2  rmind 	switch (req) {
    303  1.136.6.2  rmind 
    304  1.136.6.2  rmind 	/*
    305  1.136.6.2  rmind 	 * TCP attaches to socket via PRU_ATTACH, reserving space,
    306  1.136.6.2  rmind 	 * and an internet control block.
    307  1.136.6.2  rmind 	 */
    308  1.136.6.2  rmind 	case PRU_ATTACH:
    309  1.136.6.2  rmind #ifndef INET6
    310  1.136.6.2  rmind 		if (inp != 0)
    311  1.136.6.2  rmind #else
    312  1.136.6.2  rmind 		if (inp != 0 || in6p != 0)
    313  1.136.6.2  rmind #endif
    314  1.136.6.2  rmind 		{
    315  1.136.6.2  rmind 			error = EISCONN;
    316  1.136.6.2  rmind 			break;
    317  1.136.6.2  rmind 		}
    318  1.136.6.2  rmind 		error = tcp_attach(so);
    319  1.136.6.2  rmind 		if (error)
    320  1.136.6.2  rmind 			break;
    321  1.136.6.2  rmind 		if ((so->so_options & SO_LINGER) && so->so_linger == 0)
    322  1.136.6.2  rmind 			so->so_linger = TCP_LINGERTIME;
    323  1.136.6.2  rmind 		tp = sototcpcb(so);
    324  1.136.6.2  rmind 		break;
    325  1.136.6.2  rmind 
    326  1.136.6.2  rmind 	/*
    327  1.136.6.2  rmind 	 * PRU_DETACH detaches the TCP protocol from the socket.
    328  1.136.6.2  rmind 	 */
    329  1.136.6.2  rmind 	case PRU_DETACH:
    330  1.136.6.2  rmind 		tp = tcp_disconnect(tp);
    331  1.136.6.2  rmind 		break;
    332  1.136.6.2  rmind 
    333  1.136.6.2  rmind 	/*
    334  1.136.6.2  rmind 	 * Give the socket an address.
    335  1.136.6.2  rmind 	 */
    336  1.136.6.2  rmind 	case PRU_BIND:
    337  1.136.6.2  rmind 		switch (family) {
    338  1.136.6.2  rmind #ifdef INET
    339  1.136.6.2  rmind 		case PF_INET:
    340  1.136.6.2  rmind 			error = in_pcbbind(inp, nam, l);
    341  1.136.6.2  rmind 			break;
    342  1.136.6.2  rmind #endif
    343  1.136.6.2  rmind #ifdef INET6
    344  1.136.6.2  rmind 		case PF_INET6:
    345  1.136.6.2  rmind 			error = in6_pcbbind(in6p, nam, l);
    346  1.136.6.2  rmind 			if (!error) {
    347  1.136.6.2  rmind 				/* mapped addr case */
    348  1.136.6.2  rmind 				if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr))
    349  1.136.6.2  rmind 					tp->t_family = AF_INET;
    350  1.136.6.2  rmind 				else
    351  1.136.6.2  rmind 					tp->t_family = AF_INET6;
    352  1.136.6.2  rmind 			}
    353  1.136.6.2  rmind 			break;
    354  1.136.6.2  rmind #endif
    355  1.136.6.2  rmind 		}
    356  1.136.6.2  rmind 		break;
    357  1.136.6.2  rmind 
    358  1.136.6.2  rmind 	/*
    359  1.136.6.2  rmind 	 * Prepare to accept connections.
    360  1.136.6.2  rmind 	 */
    361  1.136.6.2  rmind 	case PRU_LISTEN:
    362  1.136.6.2  rmind #ifdef INET
    363  1.136.6.2  rmind 		if (inp && inp->inp_lport == 0) {
    364  1.136.6.2  rmind 			error = in_pcbbind(inp, (struct mbuf *)0,
    365  1.136.6.2  rmind 			    (struct lwp *)0);
    366  1.136.6.2  rmind 			if (error)
    367  1.136.6.2  rmind 				break;
    368  1.136.6.2  rmind 		}
    369  1.136.6.2  rmind #endif
    370  1.136.6.2  rmind #ifdef INET6
    371  1.136.6.2  rmind 		if (in6p && in6p->in6p_lport == 0) {
    372  1.136.6.2  rmind 			error = in6_pcbbind(in6p, (struct mbuf *)0,
    373  1.136.6.2  rmind 			    (struct lwp *)0);
    374  1.136.6.2  rmind 			if (error)
    375  1.136.6.2  rmind 				break;
    376  1.136.6.2  rmind 		}
    377  1.136.6.2  rmind #endif
    378  1.136.6.2  rmind 		tp->t_state = TCPS_LISTEN;
    379  1.136.6.2  rmind 		break;
    380  1.136.6.2  rmind 
    381  1.136.6.2  rmind 	/*
    382  1.136.6.2  rmind 	 * Initiate connection to peer.
    383  1.136.6.2  rmind 	 * Create a template for use in transmissions on this connection.
    384  1.136.6.2  rmind 	 * Enter SYN_SENT state, and mark socket as connecting.
    385  1.136.6.2  rmind 	 * Start keep-alive timer, and seed output sequence space.
    386  1.136.6.2  rmind 	 * Send initial segment on connection.
    387  1.136.6.2  rmind 	 */
    388  1.136.6.2  rmind 	case PRU_CONNECT:
    389  1.136.6.2  rmind #ifdef INET
    390  1.136.6.2  rmind 		if (inp) {
    391  1.136.6.2  rmind 			if (inp->inp_lport == 0) {
    392  1.136.6.2  rmind 				error = in_pcbbind(inp, (struct mbuf *)0,
    393  1.136.6.2  rmind 				    (struct lwp *)0);
    394  1.136.6.2  rmind 				if (error)
    395  1.136.6.2  rmind 					break;
    396  1.136.6.2  rmind 			}
    397  1.136.6.2  rmind 			error = in_pcbconnect(inp, nam, l);
    398  1.136.6.2  rmind 		}
    399  1.136.6.2  rmind #endif
    400  1.136.6.2  rmind #ifdef INET6
    401  1.136.6.2  rmind 		if (in6p) {
    402  1.136.6.2  rmind 			if (in6p->in6p_lport == 0) {
    403  1.136.6.2  rmind 				error = in6_pcbbind(in6p, (struct mbuf *)0,
    404  1.136.6.2  rmind 				    (struct lwp *)0);
    405  1.136.6.2  rmind 				if (error)
    406  1.136.6.2  rmind 					break;
    407  1.136.6.2  rmind 			}
    408  1.136.6.2  rmind 			error = in6_pcbconnect(in6p, nam, l);
    409  1.136.6.2  rmind 			if (!error) {
    410  1.136.6.2  rmind 				/* mapped addr case */
    411  1.136.6.2  rmind 				if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr))
    412  1.136.6.2  rmind 					tp->t_family = AF_INET;
    413  1.136.6.2  rmind 				else
    414  1.136.6.2  rmind 					tp->t_family = AF_INET6;
    415  1.136.6.2  rmind 			}
    416  1.136.6.2  rmind 		}
    417  1.136.6.2  rmind #endif
    418  1.136.6.2  rmind 		if (error)
    419  1.136.6.2  rmind 			break;
    420  1.136.6.2  rmind 		tp->t_template = tcp_template(tp);
    421  1.136.6.2  rmind 		if (tp->t_template == 0) {
    422  1.136.6.2  rmind #ifdef INET
    423  1.136.6.2  rmind 			if (inp)
    424  1.136.6.2  rmind 				in_pcbdisconnect(inp);
    425  1.136.6.2  rmind #endif
    426  1.136.6.2  rmind #ifdef INET6
    427  1.136.6.2  rmind 			if (in6p)
    428  1.136.6.2  rmind 				in6_pcbdisconnect(in6p);
    429  1.136.6.2  rmind #endif
    430  1.136.6.2  rmind 			error = ENOBUFS;
    431  1.136.6.2  rmind 			break;
    432  1.136.6.2  rmind 		}
    433  1.136.6.2  rmind 		/*
    434  1.136.6.2  rmind 		 * Compute window scaling to request:
    435  1.136.6.2  rmind 		 * XXX: This should be moved to tcp_output(),
    436  1.136.6.2  rmind 		 * and should be based on the actual MSS.
    437  1.136.6.2  rmind 		 */
    438  1.136.6.2  rmind 		while (tp->request_r_scale < TCP_MAX_WINSHIFT &&
    439  1.136.6.2  rmind 		    (0x1 << tp->request_r_scale) < tcp_minmss)
    440  1.136.6.2  rmind 			tp->request_r_scale++;
    441  1.136.6.2  rmind 		soisconnecting(so);
    442  1.136.6.2  rmind 		tcpstat.tcps_connattempt++;
    443  1.136.6.2  rmind 		tp->t_state = TCPS_SYN_SENT;
    444  1.136.6.2  rmind 		TCP_TIMER_ARM(tp, TCPT_KEEP, tp->t_keepinit);
    445  1.136.6.2  rmind 		tp->iss = tcp_new_iss(tp, 0);
    446  1.136.6.2  rmind 		tcp_sendseqinit(tp);
    447  1.136.6.2  rmind 		error = tcp_output(tp);
    448  1.136.6.2  rmind 		break;
    449  1.136.6.2  rmind 
    450  1.136.6.2  rmind 	/*
    451  1.136.6.2  rmind 	 * Create a TCP connection between two sockets.
    452  1.136.6.2  rmind 	 */
    453  1.136.6.2  rmind 	case PRU_CONNECT2:
    454  1.136.6.2  rmind 		error = EOPNOTSUPP;
    455  1.136.6.2  rmind 		break;
    456  1.136.6.2  rmind 
    457  1.136.6.2  rmind 	/*
    458  1.136.6.2  rmind 	 * Initiate disconnect from peer.
    459  1.136.6.2  rmind 	 * If connection never passed embryonic stage, just drop;
    460  1.136.6.2  rmind 	 * else if don't need to let data drain, then can just drop anyways,
    461  1.136.6.2  rmind 	 * else have to begin TCP shutdown process: mark socket disconnecting,
    462  1.136.6.2  rmind 	 * drain unread data, state switch to reflect user close, and
    463  1.136.6.2  rmind 	 * send segment (e.g. FIN) to peer.  Socket will be really disconnected
    464  1.136.6.2  rmind 	 * when peer sends FIN and acks ours.
    465  1.136.6.2  rmind 	 *
    466  1.136.6.2  rmind 	 * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
    467  1.136.6.2  rmind 	 */
    468  1.136.6.2  rmind 	case PRU_DISCONNECT:
    469  1.136.6.2  rmind 		tp = tcp_disconnect(tp);
    470  1.136.6.2  rmind 		break;
    471  1.136.6.2  rmind 
    472  1.136.6.2  rmind 	/*
    473  1.136.6.2  rmind 	 * Accept a connection.  Essentially all the work is
    474  1.136.6.2  rmind 	 * done at higher levels; just return the address
    475  1.136.6.2  rmind 	 * of the peer, storing through addr.
    476  1.136.6.2  rmind 	 */
    477  1.136.6.2  rmind 	case PRU_ACCEPT:
    478  1.136.6.2  rmind #ifdef INET
    479  1.136.6.2  rmind 		if (inp)
    480  1.136.6.2  rmind 			in_setpeeraddr(inp, nam);
    481  1.136.6.2  rmind #endif
    482  1.136.6.2  rmind #ifdef INET6
    483  1.136.6.2  rmind 		if (in6p)
    484  1.136.6.2  rmind 			in6_setpeeraddr(in6p, nam);
    485  1.136.6.2  rmind #endif
    486  1.136.6.2  rmind 		break;
    487  1.136.6.2  rmind 
    488  1.136.6.2  rmind 	/*
    489  1.136.6.2  rmind 	 * Mark the connection as being incapable of further output.
    490  1.136.6.2  rmind 	 */
    491  1.136.6.2  rmind 	case PRU_SHUTDOWN:
    492  1.136.6.2  rmind 		socantsendmore(so);
    493  1.136.6.2  rmind 		tp = tcp_usrclosed(tp);
    494  1.136.6.2  rmind 		if (tp)
    495  1.136.6.2  rmind 			error = tcp_output(tp);
    496  1.136.6.2  rmind 		break;
    497  1.136.6.2  rmind 
    498  1.136.6.2  rmind 	/*
    499  1.136.6.2  rmind 	 * After a receive, possibly send window update to peer.
    500  1.136.6.2  rmind 	 */
    501  1.136.6.2  rmind 	case PRU_RCVD:
    502  1.136.6.2  rmind 		/*
    503  1.136.6.2  rmind 		 * soreceive() calls this function when a user receives
    504  1.136.6.2  rmind 		 * ancillary data on a listening socket. We don't call
    505  1.136.6.2  rmind 		 * tcp_output in such a case, since there is no header
    506  1.136.6.2  rmind 		 * template for a listening socket and hence the kernel
    507  1.136.6.2  rmind 		 * will panic.
    508  1.136.6.2  rmind 		 */
    509  1.136.6.2  rmind 		if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) != 0)
    510  1.136.6.2  rmind 			(void) tcp_output(tp);
    511  1.136.6.2  rmind 		break;
    512  1.136.6.2  rmind 
    513  1.136.6.2  rmind 	/*
    514  1.136.6.2  rmind 	 * Do a send by putting data in output queue and updating urgent
    515  1.136.6.2  rmind 	 * marker if URG set.  Possibly send more data.
    516  1.136.6.2  rmind 	 */
    517  1.136.6.2  rmind 	case PRU_SEND:
    518  1.136.6.2  rmind 		if (control && control->m_len) {
    519  1.136.6.2  rmind 			m_freem(control);
    520  1.136.6.2  rmind 			m_freem(m);
    521  1.136.6.2  rmind 			error = EINVAL;
    522  1.136.6.2  rmind 			break;
    523  1.136.6.2  rmind 		}
    524  1.136.6.2  rmind 		sbappendstream(&so->so_snd, m);
    525  1.136.6.2  rmind 		error = tcp_output(tp);
    526  1.136.6.2  rmind 		break;
    527  1.136.6.2  rmind 
    528  1.136.6.2  rmind 	/*
    529  1.136.6.2  rmind 	 * Abort the TCP.
    530  1.136.6.2  rmind 	 */
    531  1.136.6.2  rmind 	case PRU_ABORT:
    532  1.136.6.2  rmind 		tp = tcp_drop(tp, ECONNABORTED);
    533  1.136.6.2  rmind 		break;
    534  1.136.6.2  rmind 
    535  1.136.6.2  rmind 	case PRU_SENSE:
    536  1.136.6.2  rmind 		/*
    537  1.136.6.2  rmind 		 * stat: don't bother with a blocksize.
    538  1.136.6.2  rmind 		 */
    539  1.136.6.2  rmind 		splx(s);
    540  1.136.6.2  rmind 		return (0);
    541  1.136.6.2  rmind 
    542  1.136.6.2  rmind 	case PRU_RCVOOB:
    543  1.136.6.2  rmind 		if (control && control->m_len) {
    544  1.136.6.2  rmind 			m_freem(control);
    545  1.136.6.2  rmind 			m_freem(m);
    546  1.136.6.2  rmind 			error = EINVAL;
    547  1.136.6.2  rmind 			break;
    548  1.136.6.2  rmind 		}
    549  1.136.6.2  rmind 		if ((so->so_oobmark == 0 &&
    550  1.136.6.2  rmind 		    (so->so_state & SS_RCVATMARK) == 0) ||
    551  1.136.6.2  rmind 		    so->so_options & SO_OOBINLINE ||
    552  1.136.6.2  rmind 		    tp->t_oobflags & TCPOOB_HADDATA) {
    553  1.136.6.2  rmind 			error = EINVAL;
    554  1.136.6.2  rmind 			break;
    555  1.136.6.2  rmind 		}
    556  1.136.6.2  rmind 		if ((tp->t_oobflags & TCPOOB_HAVEDATA) == 0) {
    557  1.136.6.2  rmind 			error = EWOULDBLOCK;
    558  1.136.6.2  rmind 			break;
    559  1.136.6.2  rmind 		}
    560  1.136.6.2  rmind 		m->m_len = 1;
    561  1.136.6.2  rmind 		*mtod(m, char *) = tp->t_iobc;
    562  1.136.6.2  rmind 		if (((long)nam & MSG_PEEK) == 0)
    563  1.136.6.2  rmind 			tp->t_oobflags ^= (TCPOOB_HAVEDATA | TCPOOB_HADDATA);
    564  1.136.6.2  rmind 		break;
    565  1.136.6.2  rmind 
    566  1.136.6.2  rmind 	case PRU_SENDOOB:
    567  1.136.6.2  rmind 		if (sbspace(&so->so_snd) < -512) {
    568  1.136.6.2  rmind 			m_freem(m);
    569  1.136.6.2  rmind 			error = ENOBUFS;
    570  1.136.6.2  rmind 			break;
    571  1.136.6.2  rmind 		}
    572  1.136.6.2  rmind 		/*
    573  1.136.6.2  rmind 		 * According to RFC961 (Assigned Protocols),
    574  1.136.6.2  rmind 		 * the urgent pointer points to the last octet
    575  1.136.6.2  rmind 		 * of urgent data.  We continue, however,
    576  1.136.6.2  rmind 		 * to consider it to indicate the first octet
    577  1.136.6.2  rmind 		 * of data past the urgent section.
    578  1.136.6.2  rmind 		 * Otherwise, snd_up should be one lower.
    579  1.136.6.2  rmind 		 */
    580  1.136.6.2  rmind 		sbappendstream(&so->so_snd, m);
    581  1.136.6.2  rmind 		tp->snd_up = tp->snd_una + so->so_snd.sb_cc;
    582  1.136.6.2  rmind 		tp->t_force = 1;
    583  1.136.6.2  rmind 		error = tcp_output(tp);
    584  1.136.6.2  rmind 		tp->t_force = 0;
    585  1.136.6.2  rmind 		break;
    586  1.136.6.2  rmind 
    587  1.136.6.2  rmind 	case PRU_SOCKADDR:
    588  1.136.6.2  rmind #ifdef INET
    589  1.136.6.2  rmind 		if (inp)
    590  1.136.6.2  rmind 			in_setsockaddr(inp, nam);
    591  1.136.6.2  rmind #endif
    592  1.136.6.2  rmind #ifdef INET6
    593  1.136.6.2  rmind 		if (in6p)
    594  1.136.6.2  rmind 			in6_setsockaddr(in6p, nam);
    595  1.136.6.2  rmind #endif
    596  1.136.6.2  rmind 		break;
    597  1.136.6.2  rmind 
    598  1.136.6.2  rmind 	case PRU_PEERADDR:
    599  1.136.6.2  rmind #ifdef INET
    600  1.136.6.2  rmind 		if (inp)
    601  1.136.6.2  rmind 			in_setpeeraddr(inp, nam);
    602  1.136.6.2  rmind #endif
    603  1.136.6.2  rmind #ifdef INET6
    604  1.136.6.2  rmind 		if (in6p)
    605  1.136.6.2  rmind 			in6_setpeeraddr(in6p, nam);
    606  1.136.6.2  rmind #endif
    607  1.136.6.2  rmind 		break;
    608  1.136.6.2  rmind 
    609  1.136.6.2  rmind 	default:
    610  1.136.6.2  rmind 		panic("tcp_usrreq");
    611  1.136.6.2  rmind 	}
    612  1.136.6.2  rmind #ifdef TCP_DEBUG
    613  1.136.6.2  rmind 	if (tp && (so->so_options & SO_DEBUG))
    614  1.136.6.2  rmind 		tcp_trace(TA_USER, ostate, tp, NULL, req);
    615  1.136.6.2  rmind #endif
    616  1.136.6.2  rmind 
    617  1.136.6.2  rmind release:
    618  1.136.6.2  rmind 	splx(s);
    619  1.136.6.2  rmind 	return (error);
    620  1.136.6.2  rmind }
    621  1.136.6.2  rmind 
    622  1.136.6.2  rmind static void
    623  1.136.6.2  rmind change_keepalive(struct socket *so, struct tcpcb *tp)
    624  1.136.6.2  rmind {
    625  1.136.6.2  rmind 	tp->t_maxidle = tp->t_keepcnt * tp->t_keepintvl;
    626  1.136.6.2  rmind 	TCP_TIMER_DISARM(tp, TCPT_KEEP);
    627  1.136.6.2  rmind 	TCP_TIMER_DISARM(tp, TCPT_2MSL);
    628  1.136.6.2  rmind 
    629  1.136.6.2  rmind 	if (tp->t_state == TCPS_SYN_RECEIVED ||
    630  1.136.6.2  rmind 	    tp->t_state == TCPS_SYN_SENT) {
    631  1.136.6.2  rmind 		TCP_TIMER_ARM(tp, TCPT_KEEP, tp->t_keepinit);
    632  1.136.6.2  rmind 	} else if (so->so_options & SO_KEEPALIVE &&
    633  1.136.6.2  rmind 	    tp->t_state <= TCPS_CLOSE_WAIT) {
    634  1.136.6.2  rmind 		TCP_TIMER_ARM(tp, TCPT_KEEP, tp->t_keepintvl);
    635  1.136.6.2  rmind 	} else {
    636  1.136.6.2  rmind 		TCP_TIMER_ARM(tp, TCPT_KEEP, tp->t_keepidle);
    637  1.136.6.2  rmind 	}
    638  1.136.6.2  rmind 
    639  1.136.6.2  rmind 	if ((tp->t_state == TCPS_FIN_WAIT_2) && (tp->t_maxidle > 0))
    640  1.136.6.2  rmind 		TCP_TIMER_ARM(tp, TCPT_2MSL, tp->t_maxidle);
    641  1.136.6.2  rmind }
    642  1.136.6.2  rmind 
    643  1.136.6.2  rmind 
    644  1.136.6.2  rmind int
    645  1.136.6.2  rmind tcp_ctloutput(int op, struct socket *so, int level, int optname,
    646  1.136.6.2  rmind     struct mbuf **mp)
    647  1.136.6.2  rmind {
    648  1.136.6.2  rmind 	int error = 0, s;
    649  1.136.6.2  rmind 	struct inpcb *inp;
    650  1.136.6.2  rmind #ifdef INET6
    651  1.136.6.2  rmind 	struct in6pcb *in6p;
    652  1.136.6.2  rmind #endif
    653  1.136.6.2  rmind 	struct tcpcb *tp;
    654  1.136.6.2  rmind 	struct mbuf *m;
    655  1.136.6.2  rmind 	int i;
    656  1.136.6.2  rmind 	u_int ui;
    657  1.136.6.2  rmind 	int family;	/* family of the socket */
    658  1.136.6.2  rmind 
    659  1.136.6.2  rmind 	family = so->so_proto->pr_domain->dom_family;
    660  1.136.6.2  rmind 
    661  1.136.6.2  rmind 	s = splsoftnet();
    662  1.136.6.2  rmind 	switch (family) {
    663  1.136.6.2  rmind #ifdef INET
    664  1.136.6.2  rmind 	case PF_INET:
    665  1.136.6.2  rmind 		inp = sotoinpcb(so);
    666  1.136.6.2  rmind #ifdef INET6
    667  1.136.6.2  rmind 		in6p = NULL;
    668  1.136.6.2  rmind #endif
    669  1.136.6.2  rmind 		break;
    670  1.136.6.2  rmind #endif
    671  1.136.6.2  rmind #ifdef INET6
    672  1.136.6.2  rmind 	case PF_INET6:
    673  1.136.6.2  rmind 		inp = NULL;
    674  1.136.6.2  rmind 		in6p = sotoin6pcb(so);
    675  1.136.6.2  rmind 		break;
    676  1.136.6.2  rmind #endif
    677  1.136.6.2  rmind 	default:
    678  1.136.6.2  rmind 		splx(s);
    679  1.136.6.2  rmind 		panic("%s: af %d", __func__, family);
    680  1.136.6.2  rmind 	}
    681  1.136.6.2  rmind #ifndef INET6
    682  1.136.6.2  rmind 	if (inp == NULL)
    683  1.136.6.2  rmind #else
    684  1.136.6.2  rmind 	if (inp == NULL && in6p == NULL)
    685  1.136.6.2  rmind #endif
    686  1.136.6.2  rmind 	{
    687  1.136.6.2  rmind 		splx(s);
    688  1.136.6.2  rmind 		if (op == PRCO_SETOPT && *mp)
    689  1.136.6.2  rmind 			(void) m_free(*mp);
    690  1.136.6.2  rmind 		return (ECONNRESET);
    691  1.136.6.2  rmind 	}
    692  1.136.6.2  rmind 	if (level != IPPROTO_TCP) {
    693  1.136.6.2  rmind 		switch (family) {
    694  1.136.6.2  rmind #ifdef INET
    695  1.136.6.2  rmind 		case PF_INET:
    696  1.136.6.2  rmind 			error = ip_ctloutput(op, so, level, optname, mp);
    697  1.136.6.2  rmind 			break;
    698  1.136.6.2  rmind #endif
    699  1.136.6.2  rmind #ifdef INET6
    700  1.136.6.2  rmind 		case PF_INET6:
    701  1.136.6.2  rmind 			error = ip6_ctloutput(op, so, level, optname, mp);
    702  1.136.6.2  rmind 			break;
    703  1.136.6.2  rmind #endif
    704  1.136.6.2  rmind 		}
    705  1.136.6.2  rmind 		splx(s);
    706  1.136.6.2  rmind 		return (error);
    707  1.136.6.2  rmind 	}
    708  1.136.6.2  rmind 	if (inp)
    709  1.136.6.2  rmind 		tp = intotcpcb(inp);
    710  1.136.6.2  rmind #ifdef INET6
    711  1.136.6.2  rmind 	else if (in6p)
    712  1.136.6.2  rmind 		tp = in6totcpcb(in6p);
    713  1.136.6.2  rmind #endif
    714  1.136.6.2  rmind 	else
    715  1.136.6.2  rmind 		tp = NULL;
    716  1.136.6.2  rmind 
    717  1.136.6.2  rmind 	switch (op) {
    718  1.136.6.2  rmind 
    719  1.136.6.2  rmind 	case PRCO_SETOPT:
    720  1.136.6.2  rmind 		m = *mp;
    721  1.136.6.2  rmind 		switch (optname) {
    722  1.136.6.2  rmind 
    723  1.136.6.2  rmind #ifdef TCP_SIGNATURE
    724  1.136.6.2  rmind 		case TCP_MD5SIG:
    725  1.136.6.2  rmind 			if (m == NULL || m->m_len < sizeof (int))
    726  1.136.6.2  rmind 				error = EINVAL;
    727  1.136.6.2  rmind 			if (error)
    728  1.136.6.2  rmind 				break;
    729  1.136.6.2  rmind 			if (*mtod(m, int *) > 0)
    730  1.136.6.2  rmind 				tp->t_flags |= TF_SIGNATURE;
    731  1.136.6.2  rmind 			else
    732  1.136.6.2  rmind 				tp->t_flags &= ~TF_SIGNATURE;
    733  1.136.6.2  rmind 			break;
    734  1.136.6.2  rmind #endif /* TCP_SIGNATURE */
    735  1.136.6.2  rmind 
    736  1.136.6.2  rmind 		case TCP_NODELAY:
    737  1.136.6.2  rmind 			if (m == NULL || m->m_len < sizeof (int))
    738  1.136.6.2  rmind 				error = EINVAL;
    739  1.136.6.2  rmind 			else if (*mtod(m, int *))
    740  1.136.6.2  rmind 				tp->t_flags |= TF_NODELAY;
    741  1.136.6.2  rmind 			else
    742  1.136.6.2  rmind 				tp->t_flags &= ~TF_NODELAY;
    743  1.136.6.2  rmind 			break;
    744  1.136.6.2  rmind 
    745  1.136.6.2  rmind 		case TCP_MAXSEG:
    746  1.136.6.2  rmind 			if (m && m->m_len >= sizeof(int) &&
    747  1.136.6.2  rmind 			    (i = *mtod(m, int *)) > 0 &&
    748  1.136.6.2  rmind 			    i <= tp->t_peermss)
    749  1.136.6.2  rmind 				tp->t_peermss = i;  /* limit on send size */
    750  1.136.6.2  rmind 			else
    751  1.136.6.2  rmind 				error = EINVAL;
    752  1.136.6.2  rmind 			break;
    753  1.136.6.2  rmind #ifdef notyet
    754  1.136.6.2  rmind 		case TCP_CONGCTL:
    755  1.136.6.2  rmind 			if (m == NULL)
    756  1.136.6.2  rmind 				error = EINVAL;
    757  1.136.6.2  rmind 			error = tcp_congctl_select(tp, mtod(m, char *));
    758  1.136.6.2  rmind #endif
    759  1.136.6.2  rmind 			break;
    760  1.136.6.2  rmind 
    761  1.136.6.2  rmind 		case TCP_KEEPIDLE:
    762  1.136.6.2  rmind 			if (m && m->m_len >= sizeof(u_int) &&
    763  1.136.6.2  rmind 			    (ui = *mtod(m, u_int *)) > 0) {
    764  1.136.6.2  rmind 				tp->t_keepidle = ui;
    765  1.136.6.2  rmind 				change_keepalive(so, tp);
    766  1.136.6.2  rmind 			} else
    767  1.136.6.2  rmind 				error = EINVAL;
    768  1.136.6.2  rmind 			break;
    769  1.136.6.2  rmind 
    770  1.136.6.2  rmind 		case TCP_KEEPINTVL:
    771  1.136.6.2  rmind 			if (m && m->m_len >= sizeof(u_int) &&
    772  1.136.6.2  rmind 			    (ui = *mtod(m, u_int *)) > 0) {
    773  1.136.6.2  rmind 				tp->t_keepintvl = ui;
    774  1.136.6.2  rmind 				change_keepalive(so, tp);
    775  1.136.6.2  rmind 			} else
    776  1.136.6.2  rmind 				error = EINVAL;
    777  1.136.6.2  rmind 			break;
    778  1.136.6.2  rmind 
    779  1.136.6.2  rmind 		case TCP_KEEPCNT:
    780  1.136.6.2  rmind 			if (m && m->m_len >= sizeof(u_int) &&
    781  1.136.6.2  rmind 			    (ui = *mtod(m, u_int *)) > 0) {
    782  1.136.6.2  rmind 				tp->t_keepcnt = ui;
    783  1.136.6.2  rmind 				change_keepalive(so, tp);
    784  1.136.6.2  rmind 			} else
    785  1.136.6.2  rmind 				error = EINVAL;
    786  1.136.6.2  rmind 			break;
    787  1.136.6.2  rmind 
    788  1.136.6.2  rmind 		case TCP_KEEPINIT:
    789  1.136.6.2  rmind 			if (m && m->m_len >= sizeof(u_int) &&
    790  1.136.6.2  rmind 			    (ui = *mtod(m, u_int *)) > 0) {
    791  1.136.6.2  rmind 				tp->t_keepinit = ui;
    792  1.136.6.2  rmind 				change_keepalive(so, tp);
    793  1.136.6.2  rmind 			} else
    794  1.136.6.2  rmind 				error = EINVAL;
    795  1.136.6.2  rmind 			break;
    796  1.136.6.2  rmind 
    797  1.136.6.2  rmind 		default:
    798  1.136.6.2  rmind 			error = ENOPROTOOPT;
    799  1.136.6.2  rmind 			break;
    800  1.136.6.2  rmind 		}
    801  1.136.6.2  rmind 		if (m)
    802  1.136.6.2  rmind 			(void) m_free(m);
    803  1.136.6.2  rmind 		break;
    804  1.136.6.2  rmind 
    805  1.136.6.2  rmind 	case PRCO_GETOPT:
    806  1.136.6.2  rmind 		*mp = m = m_get(M_WAIT, MT_SOOPTS);
    807  1.136.6.2  rmind 		m->m_len = sizeof(int);
    808  1.136.6.2  rmind 		MCLAIM(m, so->so_mowner);
    809  1.136.6.2  rmind 
    810  1.136.6.2  rmind 		switch (optname) {
    811  1.136.6.2  rmind #ifdef TCP_SIGNATURE
    812  1.136.6.2  rmind 		case TCP_MD5SIG:
    813  1.136.6.2  rmind 			*mtod(m, int *) = (tp->t_flags & TF_SIGNATURE) ? 1 : 0;
    814  1.136.6.2  rmind 			break;
    815  1.136.6.2  rmind #endif
    816  1.136.6.2  rmind 		case TCP_NODELAY:
    817  1.136.6.2  rmind 			*mtod(m, int *) = tp->t_flags & TF_NODELAY;
    818  1.136.6.2  rmind 			break;
    819  1.136.6.2  rmind 		case TCP_MAXSEG:
    820  1.136.6.2  rmind 			*mtod(m, int *) = tp->t_peermss;
    821  1.136.6.2  rmind 			break;
    822  1.136.6.2  rmind #ifdef notyet
    823  1.136.6.2  rmind 		case TCP_CONGCTL:
    824  1.136.6.2  rmind 			break;
    825  1.136.6.2  rmind #endif
    826  1.136.6.2  rmind 		default:
    827  1.136.6.2  rmind 			error = ENOPROTOOPT;
    828  1.136.6.2  rmind 			break;
    829  1.136.6.2  rmind 		}
    830  1.136.6.2  rmind 		break;
    831  1.136.6.2  rmind 	}
    832  1.136.6.2  rmind 	splx(s);
    833  1.136.6.2  rmind 	return (error);
    834  1.136.6.2  rmind }
    835  1.136.6.2  rmind 
    836  1.136.6.2  rmind #ifndef TCP_SENDSPACE
    837  1.136.6.2  rmind #define	TCP_SENDSPACE	1024*32
    838  1.136.6.2  rmind #endif
    839  1.136.6.2  rmind int	tcp_sendspace = TCP_SENDSPACE;
    840  1.136.6.2  rmind #ifndef TCP_RECVSPACE
    841  1.136.6.2  rmind #define	TCP_RECVSPACE	1024*32
    842  1.136.6.2  rmind #endif
    843  1.136.6.2  rmind int	tcp_recvspace = TCP_RECVSPACE;
    844  1.136.6.2  rmind 
    845  1.136.6.2  rmind /*
    846  1.136.6.2  rmind  * Attach TCP protocol to socket, allocating
    847  1.136.6.2  rmind  * internet protocol control block, tcp control block,
    848  1.136.6.2  rmind  * bufer space, and entering LISTEN state if to accept connections.
    849  1.136.6.2  rmind  */
    850  1.136.6.2  rmind int
    851  1.136.6.2  rmind tcp_attach(struct socket *so)
    852  1.136.6.2  rmind {
    853  1.136.6.2  rmind 	struct tcpcb *tp;
    854  1.136.6.2  rmind 	struct inpcb *inp;
    855  1.136.6.2  rmind #ifdef INET6
    856  1.136.6.2  rmind 	struct in6pcb *in6p;
    857  1.136.6.2  rmind #endif
    858  1.136.6.2  rmind 	int error;
    859  1.136.6.2  rmind 	int family;	/* family of the socket */
    860  1.136.6.2  rmind 
    861  1.136.6.2  rmind 	family = so->so_proto->pr_domain->dom_family;
    862  1.136.6.2  rmind 
    863  1.136.6.2  rmind #ifdef MBUFTRACE
    864  1.136.6.2  rmind 	so->so_mowner = &tcp_sock_mowner;
    865  1.136.6.2  rmind 	so->so_rcv.sb_mowner = &tcp_sock_rx_mowner;
    866  1.136.6.2  rmind 	so->so_snd.sb_mowner = &tcp_sock_tx_mowner;
    867  1.136.6.2  rmind #endif
    868  1.136.6.2  rmind 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
    869  1.136.6.2  rmind 		error = soreserve(so, tcp_sendspace, tcp_recvspace);
    870  1.136.6.2  rmind 		if (error)
    871  1.136.6.2  rmind 			return (error);
    872  1.136.6.2  rmind 	}
    873  1.136.6.2  rmind 
    874  1.136.6.2  rmind 	so->so_rcv.sb_flags |= SB_AUTOSIZE;
    875  1.136.6.2  rmind 	so->so_snd.sb_flags |= SB_AUTOSIZE;
    876  1.136.6.2  rmind 
    877  1.136.6.2  rmind 	switch (family) {
    878  1.136.6.2  rmind #ifdef INET
    879  1.136.6.2  rmind 	case PF_INET:
    880  1.136.6.2  rmind 		error = in_pcballoc(so, &tcbtable);
    881  1.136.6.2  rmind 		if (error)
    882  1.136.6.2  rmind 			return (error);
    883  1.136.6.2  rmind 		inp = sotoinpcb(so);
    884  1.136.6.2  rmind #ifdef INET6
    885  1.136.6.2  rmind 		in6p = NULL;
    886  1.136.6.2  rmind #endif
    887  1.136.6.2  rmind 		break;
    888  1.136.6.2  rmind #endif
    889  1.136.6.2  rmind #ifdef INET6
    890  1.136.6.2  rmind 	case PF_INET6:
    891  1.136.6.2  rmind 		error = in6_pcballoc(so, &tcbtable);
    892  1.136.6.2  rmind 		if (error)
    893  1.136.6.2  rmind 			return (error);
    894  1.136.6.2  rmind 		inp = NULL;
    895  1.136.6.2  rmind 		in6p = sotoin6pcb(so);
    896  1.136.6.2  rmind 		break;
    897  1.136.6.2  rmind #endif
    898  1.136.6.2  rmind 	default:
    899  1.136.6.2  rmind 		return EAFNOSUPPORT;
    900  1.136.6.2  rmind 	}
    901  1.136.6.2  rmind 	if (inp)
    902  1.136.6.2  rmind 		tp = tcp_newtcpcb(family, (void *)inp);
    903  1.136.6.2  rmind #ifdef INET6
    904  1.136.6.2  rmind 	else if (in6p)
    905  1.136.6.2  rmind 		tp = tcp_newtcpcb(family, (void *)in6p);
    906  1.136.6.2  rmind #endif
    907  1.136.6.2  rmind 	else
    908  1.136.6.2  rmind 		tp = NULL;
    909  1.136.6.2  rmind 
    910  1.136.6.2  rmind 	if (tp == 0) {
    911  1.136.6.2  rmind 		int nofd = so->so_state & SS_NOFDREF;	/* XXX */
    912  1.136.6.2  rmind 
    913  1.136.6.2  rmind 		so->so_state &= ~SS_NOFDREF;	/* don't free the socket yet */
    914  1.136.6.2  rmind #ifdef INET
    915  1.136.6.2  rmind 		if (inp)
    916  1.136.6.2  rmind 			in_pcbdetach(inp);
    917  1.136.6.2  rmind #endif
    918  1.136.6.2  rmind #ifdef INET6
    919  1.136.6.2  rmind 		if (in6p)
    920  1.136.6.2  rmind 			in6_pcbdetach(in6p);
    921  1.136.6.2  rmind #endif
    922  1.136.6.2  rmind 		so->so_state |= nofd;
    923  1.136.6.2  rmind 		return (ENOBUFS);
    924  1.136.6.2  rmind 	}
    925  1.136.6.2  rmind 	tp->t_state = TCPS_CLOSED;
    926  1.136.6.2  rmind 	return (0);
    927  1.136.6.2  rmind }
    928  1.136.6.2  rmind 
    929  1.136.6.2  rmind /*
    930  1.136.6.2  rmind  * Initiate (or continue) disconnect.
    931  1.136.6.2  rmind  * If embryonic state, just send reset (once).
    932  1.136.6.2  rmind  * If in ``let data drain'' option and linger null, just drop.
    933  1.136.6.2  rmind  * Otherwise (hard), mark socket disconnecting and drop
    934  1.136.6.2  rmind  * current input data; switch states based on user close, and
    935  1.136.6.2  rmind  * send segment to peer (with FIN).
    936  1.136.6.2  rmind  */
    937  1.136.6.2  rmind struct tcpcb *
    938  1.136.6.2  rmind tcp_disconnect(struct tcpcb *tp)
    939  1.136.6.2  rmind {
    940  1.136.6.2  rmind 	struct socket *so;
    941  1.136.6.2  rmind 
    942  1.136.6.2  rmind 	if (tp->t_inpcb)
    943  1.136.6.2  rmind 		so = tp->t_inpcb->inp_socket;
    944  1.136.6.2  rmind #ifdef INET6
    945  1.136.6.2  rmind 	else if (tp->t_in6pcb)
    946  1.136.6.2  rmind 		so = tp->t_in6pcb->in6p_socket;
    947  1.136.6.2  rmind #endif
    948  1.136.6.2  rmind 	else
    949  1.136.6.2  rmind 		so = NULL;
    950  1.136.6.2  rmind 
    951  1.136.6.2  rmind 	if (TCPS_HAVEESTABLISHED(tp->t_state) == 0)
    952  1.136.6.2  rmind 		tp = tcp_close(tp);
    953  1.136.6.2  rmind 	else if ((so->so_options & SO_LINGER) && so->so_linger == 0)
    954  1.136.6.2  rmind 		tp = tcp_drop(tp, 0);
    955  1.136.6.2  rmind 	else {
    956  1.136.6.2  rmind 		soisdisconnecting(so);
    957  1.136.6.2  rmind 		sbflush(&so->so_rcv);
    958  1.136.6.2  rmind 		tp = tcp_usrclosed(tp);
    959  1.136.6.2  rmind 		if (tp)
    960  1.136.6.2  rmind 			(void) tcp_output(tp);
    961  1.136.6.2  rmind 	}
    962  1.136.6.2  rmind 	return (tp);
    963  1.136.6.2  rmind }
    964  1.136.6.2  rmind 
    965  1.136.6.2  rmind /*
    966  1.136.6.2  rmind  * User issued close, and wish to trail through shutdown states:
    967  1.136.6.2  rmind  * if never received SYN, just forget it.  If got a SYN from peer,
    968  1.136.6.2  rmind  * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
    969  1.136.6.2  rmind  * If already got a FIN from peer, then almost done; go to LAST_ACK
    970  1.136.6.2  rmind  * state.  In all other cases, have already sent FIN to peer (e.g.
    971  1.136.6.2  rmind  * after PRU_SHUTDOWN), and just have to play tedious game waiting
    972  1.136.6.2  rmind  * for peer to send FIN or not respond to keep-alives, etc.
    973  1.136.6.2  rmind  * We can let the user exit from the close as soon as the FIN is acked.
    974  1.136.6.2  rmind  */
    975  1.136.6.2  rmind struct tcpcb *
    976  1.136.6.2  rmind tcp_usrclosed(struct tcpcb *tp)
    977  1.136.6.2  rmind {
    978  1.136.6.2  rmind 
    979  1.136.6.2  rmind 	switch (tp->t_state) {
    980  1.136.6.2  rmind 
    981  1.136.6.2  rmind 	case TCPS_CLOSED:
    982  1.136.6.2  rmind 	case TCPS_LISTEN:
    983  1.136.6.2  rmind 	case TCPS_SYN_SENT:
    984  1.136.6.2  rmind 		tp->t_state = TCPS_CLOSED;
    985  1.136.6.2  rmind 		tp = tcp_close(tp);
    986  1.136.6.2  rmind 		break;
    987  1.136.6.2  rmind 
    988  1.136.6.2  rmind 	case TCPS_SYN_RECEIVED:
    989  1.136.6.2  rmind 	case TCPS_ESTABLISHED:
    990  1.136.6.2  rmind 		tp->t_state = TCPS_FIN_WAIT_1;
    991  1.136.6.2  rmind 		break;
    992  1.136.6.2  rmind 
    993  1.136.6.2  rmind 	case TCPS_CLOSE_WAIT:
    994  1.136.6.2  rmind 		tp->t_state = TCPS_LAST_ACK;
    995  1.136.6.2  rmind 		break;
    996  1.136.6.2  rmind 	}
    997  1.136.6.2  rmind 	if (tp && tp->t_state >= TCPS_FIN_WAIT_2) {
    998  1.136.6.2  rmind 		struct socket *so;
    999  1.136.6.2  rmind 		if (tp->t_inpcb)
   1000  1.136.6.2  rmind 			so = tp->t_inpcb->inp_socket;
   1001  1.136.6.2  rmind #ifdef INET6
   1002  1.136.6.2  rmind 		else if (tp->t_in6pcb)
   1003  1.136.6.2  rmind 			so = tp->t_in6pcb->in6p_socket;
   1004  1.136.6.2  rmind #endif
   1005  1.136.6.2  rmind 		else
   1006  1.136.6.2  rmind 			so = NULL;
   1007  1.136.6.2  rmind 		if (so)
   1008  1.136.6.2  rmind 			soisdisconnected(so);
   1009  1.136.6.2  rmind 		/*
   1010  1.136.6.2  rmind 		 * If we are in FIN_WAIT_2, we arrived here because the
   1011  1.136.6.2  rmind 		 * application did a shutdown of the send side.  Like the
   1012  1.136.6.2  rmind 		 * case of a transition from FIN_WAIT_1 to FIN_WAIT_2 after
   1013  1.136.6.2  rmind 		 * a full close, we start a timer to make sure sockets are
   1014  1.136.6.2  rmind 		 * not left in FIN_WAIT_2 forever.
   1015  1.136.6.2  rmind 		 */
   1016  1.136.6.2  rmind 		if ((tp->t_state == TCPS_FIN_WAIT_2) && (tp->t_maxidle > 0))
   1017  1.136.6.2  rmind 			TCP_TIMER_ARM(tp, TCPT_2MSL, tp->t_maxidle);
   1018  1.136.6.2  rmind 	}
   1019  1.136.6.2  rmind 	return (tp);
   1020  1.136.6.2  rmind }
   1021  1.136.6.2  rmind 
   1022  1.136.6.2  rmind /*
   1023  1.136.6.2  rmind  * sysctl helper routine for net.inet.ip.mssdflt.  it can't be less
   1024  1.136.6.2  rmind  * than 32.
   1025  1.136.6.2  rmind  */
   1026  1.136.6.2  rmind static int
   1027  1.136.6.2  rmind sysctl_net_inet_tcp_mssdflt(SYSCTLFN_ARGS)
   1028  1.136.6.2  rmind {
   1029  1.136.6.2  rmind 	int error, mssdflt;
   1030  1.136.6.2  rmind 	struct sysctlnode node;
   1031  1.136.6.2  rmind 
   1032  1.136.6.2  rmind 	mssdflt = tcp_mssdflt;
   1033  1.136.6.2  rmind 	node = *rnode;
   1034  1.136.6.2  rmind 	node.sysctl_data = &mssdflt;
   1035  1.136.6.2  rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1036  1.136.6.2  rmind 	if (error || newp == NULL)
   1037  1.136.6.2  rmind 		return (error);
   1038  1.136.6.2  rmind 
   1039  1.136.6.2  rmind 	if (mssdflt < 32)
   1040  1.136.6.2  rmind 		return (EINVAL);
   1041  1.136.6.2  rmind 	tcp_mssdflt = mssdflt;
   1042  1.136.6.2  rmind 
   1043  1.136.6.2  rmind 	return (0);
   1044  1.136.6.2  rmind }
   1045  1.136.6.2  rmind 
   1046  1.136.6.2  rmind /*
   1047  1.136.6.2  rmind  * sysctl helper routine for setting port related values under
   1048  1.136.6.2  rmind  * net.inet.ip and net.inet6.ip6.  does basic range checking and does
   1049  1.136.6.2  rmind  * additional checks for each type.  this code has placed in
   1050  1.136.6.2  rmind  * tcp_input.c since INET and INET6 both use the same tcp code.
   1051  1.136.6.2  rmind  *
   1052  1.136.6.2  rmind  * this helper is not static so that both inet and inet6 can use it.
   1053  1.136.6.2  rmind  */
   1054  1.136.6.2  rmind int
   1055  1.136.6.2  rmind sysctl_net_inet_ip_ports(SYSCTLFN_ARGS)
   1056  1.136.6.2  rmind {
   1057  1.136.6.2  rmind 	int error, tmp;
   1058  1.136.6.2  rmind 	int apmin, apmax;
   1059  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1060  1.136.6.2  rmind 	int lpmin, lpmax;
   1061  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1062  1.136.6.2  rmind 	struct sysctlnode node;
   1063  1.136.6.2  rmind 
   1064  1.136.6.2  rmind 	if (namelen != 0)
   1065  1.136.6.2  rmind 		return (EINVAL);
   1066  1.136.6.2  rmind 
   1067  1.136.6.2  rmind 	switch (name[-3]) {
   1068  1.136.6.2  rmind #ifdef INET
   1069  1.136.6.2  rmind 	    case PF_INET:
   1070  1.136.6.2  rmind 		apmin = anonportmin;
   1071  1.136.6.2  rmind 		apmax = anonportmax;
   1072  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1073  1.136.6.2  rmind 		lpmin = lowportmin;
   1074  1.136.6.2  rmind 		lpmax = lowportmax;
   1075  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1076  1.136.6.2  rmind 		break;
   1077  1.136.6.2  rmind #endif /* INET */
   1078  1.136.6.2  rmind #ifdef INET6
   1079  1.136.6.2  rmind 	    case PF_INET6:
   1080  1.136.6.2  rmind 		apmin = ip6_anonportmin;
   1081  1.136.6.2  rmind 		apmax = ip6_anonportmax;
   1082  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1083  1.136.6.2  rmind 		lpmin = ip6_lowportmin;
   1084  1.136.6.2  rmind 		lpmax = ip6_lowportmax;
   1085  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1086  1.136.6.2  rmind 		break;
   1087  1.136.6.2  rmind #endif /* INET6 */
   1088  1.136.6.2  rmind 	    default:
   1089  1.136.6.2  rmind 		return (EINVAL);
   1090  1.136.6.2  rmind 	}
   1091  1.136.6.2  rmind 
   1092  1.136.6.2  rmind 	/*
   1093  1.136.6.2  rmind 	 * insert temporary copy into node, perform lookup on
   1094  1.136.6.2  rmind 	 * temporary, then restore pointer
   1095  1.136.6.2  rmind 	 */
   1096  1.136.6.2  rmind 	node = *rnode;
   1097  1.136.6.2  rmind 	tmp = *(int*)rnode->sysctl_data;
   1098  1.136.6.2  rmind 	node.sysctl_data = &tmp;
   1099  1.136.6.2  rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1100  1.136.6.2  rmind 	if (error || newp == NULL)
   1101  1.136.6.2  rmind 		return (error);
   1102  1.136.6.2  rmind 
   1103  1.136.6.2  rmind 	/*
   1104  1.136.6.2  rmind 	 * simple port range check
   1105  1.136.6.2  rmind 	 */
   1106  1.136.6.2  rmind 	if (tmp < 0 || tmp > 65535)
   1107  1.136.6.2  rmind 		return (EINVAL);
   1108  1.136.6.2  rmind 
   1109  1.136.6.2  rmind 	/*
   1110  1.136.6.2  rmind 	 * per-node range checks
   1111  1.136.6.2  rmind 	 */
   1112  1.136.6.2  rmind 	switch (rnode->sysctl_num) {
   1113  1.136.6.2  rmind 	case IPCTL_ANONPORTMIN:
   1114  1.136.6.2  rmind 		if (tmp >= apmax)
   1115  1.136.6.2  rmind 			return (EINVAL);
   1116  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1117  1.136.6.2  rmind 		if (tmp < IPPORT_RESERVED)
   1118  1.136.6.2  rmind                         return (EINVAL);
   1119  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1120  1.136.6.2  rmind 		break;
   1121  1.136.6.2  rmind 
   1122  1.136.6.2  rmind 	case IPCTL_ANONPORTMAX:
   1123  1.136.6.2  rmind                 if (apmin >= tmp)
   1124  1.136.6.2  rmind 			return (EINVAL);
   1125  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1126  1.136.6.2  rmind 		if (tmp < IPPORT_RESERVED)
   1127  1.136.6.2  rmind                         return (EINVAL);
   1128  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1129  1.136.6.2  rmind 		break;
   1130  1.136.6.2  rmind 
   1131  1.136.6.2  rmind #ifndef IPNOPRIVPORTS
   1132  1.136.6.2  rmind 	case IPCTL_LOWPORTMIN:
   1133  1.136.6.2  rmind 		if (tmp >= lpmax ||
   1134  1.136.6.2  rmind 		    tmp > IPPORT_RESERVEDMAX ||
   1135  1.136.6.2  rmind 		    tmp < IPPORT_RESERVEDMIN)
   1136  1.136.6.2  rmind 			return (EINVAL);
   1137  1.136.6.2  rmind 		break;
   1138  1.136.6.2  rmind 
   1139  1.136.6.2  rmind 	case IPCTL_LOWPORTMAX:
   1140  1.136.6.2  rmind 		if (lpmin >= tmp ||
   1141  1.136.6.2  rmind 		    tmp > IPPORT_RESERVEDMAX ||
   1142  1.136.6.2  rmind 		    tmp < IPPORT_RESERVEDMIN)
   1143  1.136.6.2  rmind 			return (EINVAL);
   1144  1.136.6.2  rmind 		break;
   1145  1.136.6.2  rmind #endif /* IPNOPRIVPORTS */
   1146  1.136.6.2  rmind 
   1147  1.136.6.2  rmind 	default:
   1148  1.136.6.2  rmind 		return (EINVAL);
   1149  1.136.6.2  rmind 	}
   1150  1.136.6.2  rmind 
   1151  1.136.6.2  rmind 	*(int*)rnode->sysctl_data = tmp;
   1152  1.136.6.2  rmind 
   1153  1.136.6.2  rmind 	return (0);
   1154  1.136.6.2  rmind }
   1155  1.136.6.2  rmind 
   1156  1.136.6.2  rmind /*
   1157  1.136.6.2  rmind  * The superuser can drop any connection.  Normal users can only drop
   1158  1.136.6.2  rmind  * their own connections.
   1159  1.136.6.2  rmind  */
   1160  1.136.6.2  rmind static inline int
   1161  1.136.6.2  rmind check_sockuid(struct socket *sockp, kauth_cred_t cred)
   1162  1.136.6.2  rmind {
   1163  1.136.6.2  rmind 	uid_t sockuid;
   1164  1.136.6.2  rmind 
   1165  1.136.6.2  rmind 	sockuid = sockp->so_uidinfo->ui_uid;
   1166  1.136.6.2  rmind 	if (kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER, NULL) == 0 ||
   1167  1.136.6.2  rmind 	    sockuid == kauth_cred_getuid(cred) ||
   1168  1.136.6.2  rmind 	    sockuid == kauth_cred_geteuid(cred))
   1169  1.136.6.2  rmind 		return 0;
   1170  1.136.6.2  rmind 	return EACCES;
   1171  1.136.6.2  rmind }
   1172  1.136.6.2  rmind 
   1173  1.136.6.2  rmind static inline int
   1174  1.136.6.2  rmind copyout_uid(struct socket *sockp, void *oldp, size_t *oldlenp)
   1175  1.136.6.2  rmind {
   1176  1.136.6.2  rmind 	size_t sz;
   1177  1.136.6.2  rmind 	int error;
   1178  1.136.6.2  rmind 	uid_t uid;
   1179  1.136.6.2  rmind 
   1180  1.136.6.2  rmind 	uid = sockp->so_uidinfo->ui_uid;
   1181  1.136.6.2  rmind 	if (oldp) {
   1182  1.136.6.2  rmind 		sz = MIN(sizeof(uid), *oldlenp);
   1183  1.136.6.2  rmind 		error = copyout(&uid, oldp, sz);
   1184  1.136.6.2  rmind 		if (error)
   1185  1.136.6.2  rmind 			return error;
   1186  1.136.6.2  rmind 	}
   1187  1.136.6.2  rmind 	*oldlenp = sizeof(uid);
   1188  1.136.6.2  rmind 	return 0;
   1189  1.136.6.2  rmind }
   1190  1.136.6.2  rmind 
   1191  1.136.6.2  rmind static inline int
   1192  1.136.6.2  rmind inet4_ident_core(struct in_addr raddr, u_int rport,
   1193  1.136.6.2  rmind     struct in_addr laddr, u_int lport,
   1194  1.136.6.2  rmind     void *oldp, size_t *oldlenp,
   1195  1.136.6.2  rmind     struct lwp *l, int dodrop)
   1196  1.136.6.2  rmind {
   1197  1.136.6.2  rmind 	struct inpcb *inp;
   1198  1.136.6.2  rmind 	struct socket *sockp;
   1199  1.136.6.2  rmind 
   1200  1.136.6.2  rmind 	inp = in_pcblookup_connect(&tcbtable, raddr, rport, laddr, lport);
   1201  1.136.6.2  rmind 
   1202  1.136.6.2  rmind 	if (inp == NULL || (sockp = inp->inp_socket) == NULL)
   1203  1.136.6.2  rmind 		return ESRCH;
   1204  1.136.6.2  rmind 
   1205  1.136.6.2  rmind 	if (dodrop) {
   1206  1.136.6.2  rmind 		struct tcpcb *tp;
   1207  1.136.6.2  rmind 
   1208  1.136.6.2  rmind 		if (inp == NULL || (tp = intotcpcb(inp)) == NULL ||
   1209  1.136.6.2  rmind 		    (inp->inp_socket->so_options & SO_ACCEPTCONN) != 0)
   1210  1.136.6.2  rmind 			return ESRCH;
   1211  1.136.6.2  rmind 
   1212  1.136.6.2  rmind 		if (check_sockuid(inp->inp_socket, l->l_cred) != 0)
   1213  1.136.6.2  rmind 			return EACCES;
   1214  1.136.6.2  rmind 
   1215  1.136.6.2  rmind 		(void)tcp_drop(tp, ECONNABORTED);
   1216  1.136.6.2  rmind 		return 0;
   1217  1.136.6.2  rmind 	}
   1218  1.136.6.2  rmind 	else
   1219  1.136.6.2  rmind 		return copyout_uid(sockp, oldp, oldlenp);
   1220  1.136.6.2  rmind }
   1221  1.136.6.2  rmind 
   1222  1.136.6.2  rmind #ifdef INET6
   1223  1.136.6.2  rmind static inline int
   1224  1.136.6.2  rmind inet6_ident_core(struct in6_addr *raddr, u_int rport,
   1225  1.136.6.2  rmind     struct in6_addr *laddr, u_int lport,
   1226  1.136.6.2  rmind     void *oldp, size_t *oldlenp,
   1227  1.136.6.2  rmind     struct lwp *l, int dodrop)
   1228  1.136.6.2  rmind {
   1229  1.136.6.2  rmind 	struct in6pcb *in6p;
   1230  1.136.6.2  rmind 	struct socket *sockp;
   1231  1.136.6.2  rmind 
   1232  1.136.6.2  rmind 	in6p = in6_pcblookup_connect(&tcbtable, raddr, rport, laddr, lport, 0);
   1233  1.136.6.2  rmind 
   1234  1.136.6.2  rmind 	if (in6p == NULL || (sockp = in6p->in6p_socket) == NULL)
   1235  1.136.6.2  rmind 		return ESRCH;
   1236  1.136.6.2  rmind 
   1237  1.136.6.2  rmind 	if (dodrop) {
   1238  1.136.6.2  rmind 		struct tcpcb *tp;
   1239  1.136.6.2  rmind 
   1240  1.136.6.2  rmind 		if (in6p == NULL || (tp = in6totcpcb(in6p)) == NULL ||
   1241  1.136.6.2  rmind 		    (in6p->in6p_socket->so_options & SO_ACCEPTCONN) != 0)
   1242  1.136.6.2  rmind 			return ESRCH;
   1243  1.136.6.2  rmind 
   1244  1.136.6.2  rmind 		if (check_sockuid(in6p->in6p_socket, l->l_cred) != 0)
   1245  1.136.6.2  rmind 			return EACCES;
   1246  1.136.6.2  rmind 
   1247  1.136.6.2  rmind 		(void)tcp_drop(tp, ECONNABORTED);
   1248  1.136.6.2  rmind 		return 0;
   1249  1.136.6.2  rmind 	}
   1250  1.136.6.2  rmind 	else
   1251  1.136.6.2  rmind 		return copyout_uid(sockp, oldp, oldlenp);
   1252  1.136.6.2  rmind }
   1253  1.136.6.2  rmind #endif
   1254  1.136.6.2  rmind 
   1255  1.136.6.2  rmind /*
   1256  1.136.6.2  rmind  * sysctl helper routine for the net.inet.tcp.drop and
   1257  1.136.6.2  rmind  * net.inet6.tcp6.drop nodes.
   1258  1.136.6.2  rmind  */
   1259  1.136.6.2  rmind #define sysctl_net_inet_tcp_drop sysctl_net_inet_tcp_ident
   1260  1.136.6.2  rmind 
   1261  1.136.6.2  rmind /*
   1262  1.136.6.2  rmind  * sysctl helper routine for the net.inet.tcp.ident and
   1263  1.136.6.2  rmind  * net.inet6.tcp6.ident nodes.  contains backwards compat code for the
   1264  1.136.6.2  rmind  * old way of looking up the ident information for ipv4 which involves
   1265  1.136.6.2  rmind  * stuffing the port/addr pairs into the mib lookup.
   1266  1.136.6.2  rmind  */
   1267  1.136.6.2  rmind static int
   1268  1.136.6.2  rmind sysctl_net_inet_tcp_ident(SYSCTLFN_ARGS)
   1269  1.136.6.2  rmind {
   1270  1.136.6.2  rmind #ifdef INET
   1271  1.136.6.2  rmind 	struct sockaddr_in *si4[2];
   1272  1.136.6.2  rmind #endif /* INET */
   1273  1.136.6.2  rmind #ifdef INET6
   1274  1.136.6.2  rmind 	struct sockaddr_in6 *si6[2];
   1275  1.136.6.2  rmind #endif /* INET6 */
   1276  1.136.6.2  rmind 	struct sockaddr_storage sa[2];
   1277  1.136.6.2  rmind 	int error, pf, dodrop, s;
   1278  1.136.6.2  rmind 
   1279  1.136.6.2  rmind 	dodrop = name[-1] == TCPCTL_DROP;
   1280  1.136.6.2  rmind 	if (dodrop) {
   1281  1.136.6.2  rmind 		if (oldp != NULL || *oldlenp != 0)
   1282  1.136.6.2  rmind 			return EINVAL;
   1283  1.136.6.2  rmind 		if (newp == NULL)
   1284  1.136.6.2  rmind 			return EPERM;
   1285  1.136.6.2  rmind 		if (newlen < sizeof(sa))
   1286  1.136.6.2  rmind 			return ENOMEM;
   1287  1.136.6.2  rmind 	}
   1288  1.136.6.2  rmind 	if (namelen != 4 && namelen != 0)
   1289  1.136.6.2  rmind 		return EINVAL;
   1290  1.136.6.2  rmind 	if (name[-2] != IPPROTO_TCP)
   1291  1.136.6.2  rmind 		return EINVAL;
   1292  1.136.6.2  rmind 	pf = name[-3];
   1293  1.136.6.2  rmind 
   1294  1.136.6.2  rmind 	/* old style lookup, ipv4 only */
   1295  1.136.6.2  rmind 	if (namelen == 4) {
   1296  1.136.6.2  rmind #ifdef INET
   1297  1.136.6.2  rmind 		struct in_addr laddr, raddr;
   1298  1.136.6.2  rmind 		u_int lport, rport;
   1299  1.136.6.2  rmind 
   1300  1.136.6.2  rmind 		if (pf != PF_INET)
   1301  1.136.6.2  rmind 			return EPROTONOSUPPORT;
   1302  1.136.6.2  rmind 		raddr.s_addr = (uint32_t)name[0];
   1303  1.136.6.2  rmind 		rport = (u_int)name[1];
   1304  1.136.6.2  rmind 		laddr.s_addr = (uint32_t)name[2];
   1305  1.136.6.2  rmind 		lport = (u_int)name[3];
   1306  1.136.6.2  rmind 
   1307  1.136.6.2  rmind 		s = splsoftnet();
   1308  1.136.6.2  rmind 		error = inet4_ident_core(raddr, rport, laddr, lport,
   1309  1.136.6.2  rmind 		    oldp, oldlenp, l, dodrop);
   1310  1.136.6.2  rmind 		splx(s);
   1311  1.136.6.2  rmind 		return error;
   1312  1.136.6.2  rmind #else /* INET */
   1313  1.136.6.2  rmind 		return EINVAL;
   1314  1.136.6.2  rmind #endif /* INET */
   1315  1.136.6.2  rmind 	}
   1316  1.136.6.2  rmind 
   1317  1.136.6.2  rmind 	if (newp == NULL || newlen != sizeof(sa))
   1318  1.136.6.2  rmind 		return EINVAL;
   1319  1.136.6.2  rmind 	error = copyin(newp, &sa, newlen);
   1320  1.136.6.2  rmind 	if (error)
   1321  1.136.6.2  rmind 		return error;
   1322  1.136.6.2  rmind 
   1323  1.136.6.2  rmind 	/*
   1324  1.136.6.2  rmind 	 * requested families must match
   1325  1.136.6.2  rmind 	 */
   1326  1.136.6.2  rmind 	if (pf != sa[0].ss_family || sa[0].ss_family != sa[1].ss_family)
   1327  1.136.6.2  rmind 		return EINVAL;
   1328  1.136.6.2  rmind 
   1329  1.136.6.2  rmind 	switch (pf) {
   1330  1.136.6.2  rmind #ifdef INET6
   1331  1.136.6.2  rmind 	case PF_INET6:
   1332  1.136.6.2  rmind 		si6[0] = (struct sockaddr_in6*)&sa[0];
   1333  1.136.6.2  rmind 		si6[1] = (struct sockaddr_in6*)&sa[1];
   1334  1.136.6.2  rmind 		if (si6[0]->sin6_len != sizeof(*si6[0]) ||
   1335  1.136.6.2  rmind 		    si6[1]->sin6_len != sizeof(*si6[1]))
   1336  1.136.6.2  rmind 			return EINVAL;
   1337  1.136.6.2  rmind 
   1338  1.136.6.2  rmind 		if (!IN6_IS_ADDR_V4MAPPED(&si6[0]->sin6_addr) &&
   1339  1.136.6.2  rmind 		    !IN6_IS_ADDR_V4MAPPED(&si6[1]->sin6_addr)) {
   1340  1.136.6.2  rmind 			error = sa6_embedscope(si6[0], ip6_use_defzone);
   1341  1.136.6.2  rmind 			if (error)
   1342  1.136.6.2  rmind 				return error;
   1343  1.136.6.2  rmind 			error = sa6_embedscope(si6[1], ip6_use_defzone);
   1344  1.136.6.2  rmind 			if (error)
   1345  1.136.6.2  rmind 				return error;
   1346  1.136.6.2  rmind 
   1347  1.136.6.2  rmind 			s = splsoftnet();
   1348  1.136.6.2  rmind 			error = inet6_ident_core(&si6[0]->sin6_addr,
   1349  1.136.6.2  rmind 			    si6[0]->sin6_port, &si6[1]->sin6_addr,
   1350  1.136.6.2  rmind 			    si6[1]->sin6_port, oldp, oldlenp, l, dodrop);
   1351  1.136.6.2  rmind 			splx(s);
   1352  1.136.6.2  rmind 			return error;
   1353  1.136.6.2  rmind 		}
   1354  1.136.6.2  rmind 
   1355  1.136.6.2  rmind 		if (IN6_IS_ADDR_V4MAPPED(&si6[0]->sin6_addr) !=
   1356  1.136.6.2  rmind 		    IN6_IS_ADDR_V4MAPPED(&si6[1]->sin6_addr))
   1357  1.136.6.2  rmind 			return EINVAL;
   1358  1.136.6.2  rmind 
   1359  1.136.6.2  rmind 		in6_sin6_2_sin_in_sock((struct sockaddr *)&sa[0]);
   1360  1.136.6.2  rmind 		in6_sin6_2_sin_in_sock((struct sockaddr *)&sa[1]);
   1361  1.136.6.2  rmind 		/*FALLTHROUGH*/
   1362  1.136.6.2  rmind #endif /* INET6 */
   1363  1.136.6.2  rmind #ifdef INET
   1364  1.136.6.2  rmind 	case PF_INET:
   1365  1.136.6.2  rmind 		si4[0] = (struct sockaddr_in*)&sa[0];
   1366  1.136.6.2  rmind 		si4[1] = (struct sockaddr_in*)&sa[1];
   1367  1.136.6.2  rmind 		if (si4[0]->sin_len != sizeof(*si4[0]) ||
   1368  1.136.6.2  rmind 		    si4[0]->sin_len != sizeof(*si4[1]))
   1369  1.136.6.2  rmind 			return EINVAL;
   1370  1.136.6.2  rmind 
   1371  1.136.6.2  rmind 		s = splsoftnet();
   1372  1.136.6.2  rmind 		error = inet4_ident_core(si4[0]->sin_addr, si4[0]->sin_port,
   1373  1.136.6.2  rmind 		    si4[1]->sin_addr, si4[1]->sin_port,
   1374  1.136.6.2  rmind 		    oldp, oldlenp, l, dodrop);
   1375  1.136.6.2  rmind 		splx(s);
   1376  1.136.6.2  rmind 		return error;
   1377  1.136.6.2  rmind #endif /* INET */
   1378  1.136.6.2  rmind 	default:
   1379  1.136.6.2  rmind 		return EPROTONOSUPPORT;
   1380  1.136.6.2  rmind 	}
   1381  1.136.6.2  rmind }
   1382  1.136.6.2  rmind 
   1383  1.136.6.2  rmind /*
   1384  1.136.6.2  rmind  * sysctl helper for the inet and inet6 pcblists.  handles tcp/udp and
   1385  1.136.6.2  rmind  * inet/inet6, as well as raw pcbs for each.  specifically not
   1386  1.136.6.2  rmind  * declared static so that raw sockets and udp/udp6 can use it as
   1387  1.136.6.2  rmind  * well.
   1388  1.136.6.2  rmind  */
   1389  1.136.6.2  rmind int
   1390  1.136.6.2  rmind sysctl_inpcblist(SYSCTLFN_ARGS)
   1391  1.136.6.2  rmind {
   1392  1.136.6.2  rmind #ifdef INET
   1393  1.136.6.2  rmind 	struct sockaddr_in *in;
   1394  1.136.6.2  rmind 	const struct inpcb *inp;
   1395  1.136.6.2  rmind #endif
   1396  1.136.6.2  rmind #ifdef INET6
   1397  1.136.6.2  rmind 	struct sockaddr_in6 *in6;
   1398  1.136.6.2  rmind 	const struct in6pcb *in6p;
   1399  1.136.6.2  rmind #endif
   1400  1.136.6.2  rmind 	/*
   1401  1.136.6.2  rmind 	 * sysctl_data is const, but CIRCLEQ_FOREACH can't use a const
   1402  1.136.6.2  rmind 	 * struct inpcbtable pointer, so we have to discard const.  :-/
   1403  1.136.6.2  rmind 	 */
   1404  1.136.6.2  rmind 	struct inpcbtable *pcbtbl = __UNCONST(rnode->sysctl_data);
   1405  1.136.6.2  rmind 	const struct inpcb_hdr *inph;
   1406  1.136.6.2  rmind 	struct tcpcb *tp;
   1407  1.136.6.2  rmind 	struct kinfo_pcb pcb;
   1408  1.136.6.2  rmind 	char *dp;
   1409  1.136.6.2  rmind 	u_int op, arg;
   1410  1.136.6.2  rmind 	size_t len, needed, elem_size, out_size;
   1411  1.136.6.2  rmind 	int error, elem_count, pf, proto, pf2;
   1412  1.136.6.2  rmind 
   1413  1.136.6.2  rmind 	if (namelen != 4)
   1414  1.136.6.2  rmind 		return (EINVAL);
   1415  1.136.6.2  rmind 
   1416  1.136.6.2  rmind 	if (oldp != NULL) {
   1417  1.136.6.2  rmind 		    len = *oldlenp;
   1418  1.136.6.2  rmind 		    elem_size = name[2];
   1419  1.136.6.2  rmind 		    elem_count = name[3];
   1420  1.136.6.2  rmind 		    if (elem_size != sizeof(pcb))
   1421  1.136.6.2  rmind 			    return EINVAL;
   1422  1.136.6.2  rmind 	} else {
   1423  1.136.6.2  rmind 		    len = 0;
   1424  1.136.6.2  rmind 		    elem_count = INT_MAX;
   1425  1.136.6.2  rmind 		    elem_size = sizeof(pcb);
   1426  1.136.6.2  rmind 	}
   1427  1.136.6.2  rmind 	error = 0;
   1428  1.136.6.2  rmind 	dp = oldp;
   1429  1.136.6.2  rmind 	op = name[0];
   1430  1.136.6.2  rmind 	arg = name[1];
   1431  1.136.6.2  rmind 	out_size = elem_size;
   1432  1.136.6.2  rmind 	needed = 0;
   1433  1.136.6.2  rmind 
   1434  1.136.6.2  rmind 	if (namelen == 1 && name[0] == CTL_QUERY)
   1435  1.136.6.2  rmind 		return (sysctl_query(SYSCTLFN_CALL(rnode)));
   1436  1.136.6.2  rmind 
   1437  1.136.6.2  rmind 	if (name - oname != 4)
   1438  1.136.6.2  rmind 		return (EINVAL);
   1439  1.136.6.2  rmind 
   1440  1.136.6.2  rmind 	pf = oname[1];
   1441  1.136.6.2  rmind 	proto = oname[2];
   1442  1.136.6.2  rmind 	pf2 = (oldp != NULL) ? pf : 0;
   1443  1.136.6.2  rmind 
   1444  1.136.6.2  rmind 	CIRCLEQ_FOREACH(inph, &pcbtbl->inpt_queue, inph_queue) {
   1445  1.136.6.2  rmind #ifdef INET
   1446  1.136.6.2  rmind 		inp = (const struct inpcb *)inph;
   1447  1.136.6.2  rmind #endif
   1448  1.136.6.2  rmind #ifdef INET6
   1449  1.136.6.2  rmind 		in6p = (const struct in6pcb *)inph;
   1450  1.136.6.2  rmind #endif
   1451  1.136.6.2  rmind 
   1452  1.136.6.2  rmind 		if (inph->inph_af != pf)
   1453  1.136.6.2  rmind 			continue;
   1454  1.136.6.2  rmind 
   1455  1.136.6.2  rmind 		if (kauth_authorize_network(l->l_cred, KAUTH_NETWORK_SOCKET,
   1456  1.136.6.2  rmind 		    KAUTH_REQ_NETWORK_SOCKET_CANSEE, inph->inph_socket, NULL,
   1457  1.136.6.2  rmind 		    NULL) != 0)
   1458  1.136.6.2  rmind 			continue;
   1459  1.136.6.2  rmind 
   1460  1.136.6.2  rmind 		memset(&pcb, 0, sizeof(pcb));
   1461  1.136.6.2  rmind 
   1462  1.136.6.2  rmind 		pcb.ki_family = pf;
   1463  1.136.6.2  rmind 		pcb.ki_type = proto;
   1464  1.136.6.2  rmind 
   1465  1.136.6.2  rmind 		switch (pf2) {
   1466  1.136.6.2  rmind 		case 0:
   1467  1.136.6.2  rmind 			/* just probing for size */
   1468  1.136.6.2  rmind 			break;
   1469  1.136.6.2  rmind #ifdef INET
   1470  1.136.6.2  rmind 		case PF_INET:
   1471  1.136.6.2  rmind 			pcb.ki_family = inp->inp_socket->so_proto->
   1472  1.136.6.2  rmind 			    pr_domain->dom_family;
   1473  1.136.6.2  rmind 			pcb.ki_type = inp->inp_socket->so_proto->
   1474  1.136.6.2  rmind 			    pr_type;
   1475  1.136.6.2  rmind 			pcb.ki_protocol = inp->inp_socket->so_proto->
   1476  1.136.6.2  rmind 			    pr_protocol;
   1477  1.136.6.2  rmind 			pcb.ki_pflags = inp->inp_flags;
   1478  1.136.6.2  rmind 
   1479  1.136.6.2  rmind 			pcb.ki_sostate = inp->inp_socket->so_state;
   1480  1.136.6.2  rmind 			pcb.ki_prstate = inp->inp_state;
   1481  1.136.6.2  rmind 			if (proto == IPPROTO_TCP) {
   1482  1.136.6.2  rmind 				tp = intotcpcb(inp);
   1483  1.136.6.2  rmind 				pcb.ki_tstate = tp->t_state;
   1484  1.136.6.2  rmind 				pcb.ki_tflags = tp->t_flags;
   1485  1.136.6.2  rmind 			}
   1486  1.136.6.2  rmind 
   1487  1.136.6.2  rmind 			pcb.ki_pcbaddr = PTRTOUINT64(inp);
   1488  1.136.6.2  rmind 			pcb.ki_ppcbaddr = PTRTOUINT64(inp->inp_ppcb);
   1489  1.136.6.2  rmind 			pcb.ki_sockaddr = PTRTOUINT64(inp->inp_socket);
   1490  1.136.6.2  rmind 
   1491  1.136.6.2  rmind 			pcb.ki_rcvq = inp->inp_socket->so_rcv.sb_cc;
   1492  1.136.6.2  rmind 			pcb.ki_sndq = inp->inp_socket->so_snd.sb_cc;
   1493  1.136.6.2  rmind 
   1494  1.136.6.2  rmind 			in = satosin(&pcb.ki_src);
   1495  1.136.6.2  rmind 			in->sin_len = sizeof(*in);
   1496  1.136.6.2  rmind 			in->sin_family = pf;
   1497  1.136.6.2  rmind 			in->sin_port = inp->inp_lport;
   1498  1.136.6.2  rmind 			in->sin_addr = inp->inp_laddr;
   1499  1.136.6.2  rmind 			if (pcb.ki_prstate >= INP_CONNECTED) {
   1500  1.136.6.2  rmind 				in = satosin(&pcb.ki_dst);
   1501  1.136.6.2  rmind 				in->sin_len = sizeof(*in);
   1502  1.136.6.2  rmind 				in->sin_family = pf;
   1503  1.136.6.2  rmind 				in->sin_port = inp->inp_fport;
   1504  1.136.6.2  rmind 				in->sin_addr = inp->inp_faddr;
   1505  1.136.6.2  rmind 			}
   1506  1.136.6.2  rmind 			break;
   1507  1.136.6.2  rmind #endif
   1508  1.136.6.2  rmind #ifdef INET6
   1509  1.136.6.2  rmind 		case PF_INET6:
   1510  1.136.6.2  rmind 			pcb.ki_family = in6p->in6p_socket->so_proto->
   1511  1.136.6.2  rmind 			    pr_domain->dom_family;
   1512  1.136.6.2  rmind 			pcb.ki_type = in6p->in6p_socket->so_proto->pr_type;
   1513  1.136.6.2  rmind 			pcb.ki_protocol = in6p->in6p_socket->so_proto->
   1514  1.136.6.2  rmind 			    pr_protocol;
   1515  1.136.6.2  rmind 			pcb.ki_pflags = in6p->in6p_flags;
   1516  1.136.6.2  rmind 
   1517  1.136.6.2  rmind 			pcb.ki_sostate = in6p->in6p_socket->so_state;
   1518  1.136.6.2  rmind 			pcb.ki_prstate = in6p->in6p_state;
   1519  1.136.6.2  rmind 			if (proto == IPPROTO_TCP) {
   1520  1.136.6.2  rmind 				tp = in6totcpcb(in6p);
   1521  1.136.6.2  rmind 				pcb.ki_tstate = tp->t_state;
   1522  1.136.6.2  rmind 				pcb.ki_tflags = tp->t_flags;
   1523  1.136.6.2  rmind 			}
   1524  1.136.6.2  rmind 
   1525  1.136.6.2  rmind 			pcb.ki_pcbaddr = PTRTOUINT64(in6p);
   1526  1.136.6.2  rmind 			pcb.ki_ppcbaddr = PTRTOUINT64(in6p->in6p_ppcb);
   1527  1.136.6.2  rmind 			pcb.ki_sockaddr = PTRTOUINT64(in6p->in6p_socket);
   1528  1.136.6.2  rmind 
   1529  1.136.6.2  rmind 			pcb.ki_rcvq = in6p->in6p_socket->so_rcv.sb_cc;
   1530  1.136.6.2  rmind 			pcb.ki_sndq = in6p->in6p_socket->so_snd.sb_cc;
   1531  1.136.6.2  rmind 
   1532  1.136.6.2  rmind 			in6 = satosin6(&pcb.ki_src);
   1533  1.136.6.2  rmind 			in6->sin6_len = sizeof(*in6);
   1534  1.136.6.2  rmind 			in6->sin6_family = pf;
   1535  1.136.6.2  rmind 			in6->sin6_port = in6p->in6p_lport;
   1536  1.136.6.2  rmind 			in6->sin6_flowinfo = in6p->in6p_flowinfo;
   1537  1.136.6.2  rmind 			in6->sin6_addr = in6p->in6p_laddr;
   1538  1.136.6.2  rmind 			in6->sin6_scope_id = 0; /* XXX? */
   1539  1.136.6.2  rmind 
   1540  1.136.6.2  rmind 			if (pcb.ki_prstate >= IN6P_CONNECTED) {
   1541  1.136.6.2  rmind 				in6 = satosin6(&pcb.ki_dst);
   1542  1.136.6.2  rmind 				in6->sin6_len = sizeof(*in6);
   1543  1.136.6.2  rmind 				in6->sin6_family = pf;
   1544  1.136.6.2  rmind 				in6->sin6_port = in6p->in6p_fport;
   1545  1.136.6.2  rmind 				in6->sin6_flowinfo = in6p->in6p_flowinfo;
   1546  1.136.6.2  rmind 				in6->sin6_addr = in6p->in6p_faddr;
   1547  1.136.6.2  rmind 				in6->sin6_scope_id = 0; /* XXX? */
   1548  1.136.6.2  rmind 			}
   1549  1.136.6.2  rmind 			break;
   1550  1.136.6.2  rmind #endif
   1551  1.136.6.2  rmind 		}
   1552  1.136.6.2  rmind 
   1553  1.136.6.2  rmind 		if (len >= elem_size && elem_count > 0) {
   1554  1.136.6.2  rmind 			error = copyout(&pcb, dp, out_size);
   1555  1.136.6.2  rmind 			if (error)
   1556  1.136.6.2  rmind 				return (error);
   1557  1.136.6.2  rmind 			dp += elem_size;
   1558  1.136.6.2  rmind 			len -= elem_size;
   1559  1.136.6.2  rmind 		}
   1560  1.136.6.2  rmind 		if (elem_count > 0) {
   1561  1.136.6.2  rmind 			needed += elem_size;
   1562  1.136.6.2  rmind 			if (elem_count != INT_MAX)
   1563  1.136.6.2  rmind 				elem_count--;
   1564  1.136.6.2  rmind 		}
   1565  1.136.6.2  rmind 	}
   1566  1.136.6.2  rmind 
   1567  1.136.6.2  rmind 	*oldlenp = needed;
   1568  1.136.6.2  rmind 	if (oldp == NULL)
   1569  1.136.6.2  rmind 		*oldlenp += PCB_SLOP * sizeof(struct kinfo_pcb);
   1570  1.136.6.2  rmind 
   1571  1.136.6.2  rmind 	return (error);
   1572  1.136.6.2  rmind }
   1573  1.136.6.2  rmind 
   1574  1.136.6.2  rmind static int
   1575  1.136.6.2  rmind sysctl_tcp_congctl(SYSCTLFN_ARGS)
   1576  1.136.6.2  rmind {
   1577  1.136.6.2  rmind 	struct sysctlnode node;
   1578  1.136.6.2  rmind 	int error, r;
   1579  1.136.6.2  rmind 	char newname[TCPCC_MAXLEN];
   1580  1.136.6.2  rmind 
   1581  1.136.6.2  rmind 	strlcpy(newname, tcp_congctl_global_name, sizeof(newname) - 1);
   1582  1.136.6.2  rmind 
   1583  1.136.6.2  rmind 	node = *rnode;
   1584  1.136.6.2  rmind 	node.sysctl_data = newname;
   1585  1.136.6.2  rmind 	node.sysctl_size = sizeof(newname);
   1586  1.136.6.2  rmind 
   1587  1.136.6.2  rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1588  1.136.6.2  rmind 
   1589  1.136.6.2  rmind 	if (error ||
   1590  1.136.6.2  rmind 	    newp == NULL ||
   1591  1.136.6.2  rmind 	    strncmp(newname, tcp_congctl_global_name, sizeof(newname)) == 0)
   1592  1.136.6.2  rmind 		return error;
   1593  1.136.6.2  rmind 
   1594  1.136.6.2  rmind 	if ((r = tcp_congctl_select(NULL, newname)))
   1595  1.136.6.2  rmind 		return r;
   1596  1.136.6.2  rmind 
   1597  1.136.6.2  rmind 	return error;
   1598  1.136.6.2  rmind }
   1599  1.136.6.2  rmind 
   1600  1.136.6.2  rmind static int
   1601  1.136.6.2  rmind sysctl_tcp_keep(SYSCTLFN_ARGS)
   1602  1.136.6.2  rmind {
   1603  1.136.6.2  rmind 	int error;
   1604  1.136.6.2  rmind 	u_int tmp;
   1605  1.136.6.2  rmind 	struct sysctlnode node;
   1606  1.136.6.2  rmind 
   1607  1.136.6.2  rmind 	node = *rnode;
   1608  1.136.6.2  rmind 	tmp = *(u_int *)rnode->sysctl_data;
   1609  1.136.6.2  rmind 	node.sysctl_data = &tmp;
   1610  1.136.6.2  rmind 
   1611  1.136.6.2  rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1612  1.136.6.2  rmind 	if (error || newp == NULL)
   1613  1.136.6.2  rmind 		return error;
   1614  1.136.6.2  rmind 
   1615  1.136.6.2  rmind 	*(u_int *)rnode->sysctl_data = tmp;
   1616  1.136.6.2  rmind 	tcp_tcpcb_template();	/* update the template */
   1617  1.136.6.2  rmind 	return 0;
   1618  1.136.6.2  rmind }
   1619  1.136.6.2  rmind 
   1620  1.136.6.2  rmind 
   1621  1.136.6.2  rmind /*
   1622  1.136.6.2  rmind  * this (second stage) setup routine is a replacement for tcp_sysctl()
   1623  1.136.6.2  rmind  * (which is currently used for ipv4 and ipv6)
   1624  1.136.6.2  rmind  */
   1625  1.136.6.2  rmind static void
   1626  1.136.6.2  rmind sysctl_net_inet_tcp_setup2(struct sysctllog **clog, int pf, const char *pfname,
   1627  1.136.6.2  rmind 			   const char *tcpname)
   1628  1.136.6.2  rmind {
   1629  1.136.6.2  rmind 	const struct sysctlnode *sack_node;
   1630  1.136.6.2  rmind 	const struct sysctlnode *abc_node;
   1631  1.136.6.2  rmind 	const struct sysctlnode *ecn_node;
   1632  1.136.6.2  rmind 	const struct sysctlnode *congctl_node;
   1633  1.136.6.2  rmind #ifdef TCP_DEBUG
   1634  1.136.6.2  rmind 	extern struct tcp_debug tcp_debug[TCP_NDEBUG];
   1635  1.136.6.2  rmind 	extern int tcp_debx;
   1636  1.136.6.2  rmind #endif
   1637  1.136.6.2  rmind 
   1638  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1639  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1640  1.136.6.2  rmind 		       CTLTYPE_NODE, "net", NULL,
   1641  1.136.6.2  rmind 		       NULL, 0, NULL, 0,
   1642  1.136.6.2  rmind 		       CTL_NET, CTL_EOL);
   1643  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1644  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1645  1.136.6.2  rmind 		       CTLTYPE_NODE, pfname, NULL,
   1646  1.136.6.2  rmind 		       NULL, 0, NULL, 0,
   1647  1.136.6.2  rmind 		       CTL_NET, pf, CTL_EOL);
   1648  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1649  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1650  1.136.6.2  rmind 		       CTLTYPE_NODE, tcpname,
   1651  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP related settings"),
   1652  1.136.6.2  rmind 		       NULL, 0, NULL, 0,
   1653  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_EOL);
   1654  1.136.6.2  rmind 
   1655  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1656  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1657  1.136.6.2  rmind 		       CTLTYPE_INT, "rfc1323",
   1658  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable RFC1323 TCP extensions"),
   1659  1.136.6.2  rmind 		       NULL, 0, &tcp_do_rfc1323, 0,
   1660  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_RFC1323, CTL_EOL);
   1661  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1662  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1663  1.136.6.2  rmind 		       CTLTYPE_INT, "sendspace",
   1664  1.136.6.2  rmind 		       SYSCTL_DESCR("Default TCP send buffer size"),
   1665  1.136.6.2  rmind 		       NULL, 0, &tcp_sendspace, 0,
   1666  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SENDSPACE, CTL_EOL);
   1667  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1668  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1669  1.136.6.2  rmind 		       CTLTYPE_INT, "recvspace",
   1670  1.136.6.2  rmind 		       SYSCTL_DESCR("Default TCP receive buffer size"),
   1671  1.136.6.2  rmind 		       NULL, 0, &tcp_recvspace, 0,
   1672  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_RECVSPACE, CTL_EOL);
   1673  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1674  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1675  1.136.6.2  rmind 		       CTLTYPE_INT, "mssdflt",
   1676  1.136.6.2  rmind 		       SYSCTL_DESCR("Default maximum segment size"),
   1677  1.136.6.2  rmind 		       sysctl_net_inet_tcp_mssdflt, 0, &tcp_mssdflt, 0,
   1678  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_MSSDFLT, CTL_EOL);
   1679  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1680  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1681  1.136.6.2  rmind 		       CTLTYPE_INT, "minmss",
   1682  1.136.6.2  rmind 		       SYSCTL_DESCR("Lower limit for TCP maximum segment size"),
   1683  1.136.6.2  rmind 		       NULL, 0, &tcp_minmss, 0,
   1684  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1685  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1686  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1687  1.136.6.2  rmind 		       CTLTYPE_INT, "syn_cache_limit",
   1688  1.136.6.2  rmind 		       SYSCTL_DESCR("Maximum number of entries in the TCP "
   1689  1.136.6.2  rmind 				    "compressed state engine"),
   1690  1.136.6.2  rmind 		       NULL, 0, &tcp_syn_cache_limit, 0,
   1691  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SYN_CACHE_LIMIT,
   1692  1.136.6.2  rmind 		       CTL_EOL);
   1693  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1694  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1695  1.136.6.2  rmind 		       CTLTYPE_INT, "syn_bucket_limit",
   1696  1.136.6.2  rmind 		       SYSCTL_DESCR("Maximum number of entries per hash "
   1697  1.136.6.2  rmind 				    "bucket in the TCP compressed state "
   1698  1.136.6.2  rmind 				    "engine"),
   1699  1.136.6.2  rmind 		       NULL, 0, &tcp_syn_bucket_limit, 0,
   1700  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SYN_BUCKET_LIMIT,
   1701  1.136.6.2  rmind 		       CTL_EOL);
   1702  1.136.6.2  rmind #if 0 /* obsoleted */
   1703  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1704  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1705  1.136.6.2  rmind 		       CTLTYPE_INT, "syn_cache_interval",
   1706  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP compressed state engine's timer interval"),
   1707  1.136.6.2  rmind 		       NULL, 0, &tcp_syn_cache_interval, 0,
   1708  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SYN_CACHE_INTER,
   1709  1.136.6.2  rmind 		       CTL_EOL);
   1710  1.136.6.2  rmind #endif
   1711  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1712  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1713  1.136.6.2  rmind 		       CTLTYPE_INT, "init_win",
   1714  1.136.6.2  rmind 		       SYSCTL_DESCR("Initial TCP congestion window"),
   1715  1.136.6.2  rmind 		       NULL, 0, &tcp_init_win, 0,
   1716  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_INIT_WIN, CTL_EOL);
   1717  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1718  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1719  1.136.6.2  rmind 		       CTLTYPE_INT, "mss_ifmtu",
   1720  1.136.6.2  rmind 		       SYSCTL_DESCR("Use interface MTU for calculating MSS"),
   1721  1.136.6.2  rmind 		       NULL, 0, &tcp_mss_ifmtu, 0,
   1722  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_MSS_IFMTU, CTL_EOL);
   1723  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &sack_node,
   1724  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1725  1.136.6.2  rmind 		       CTLTYPE_NODE, "sack",
   1726  1.136.6.2  rmind 		       SYSCTL_DESCR("RFC2018 Selective ACKnowledgement tunables"),
   1727  1.136.6.2  rmind 		       NULL, 0, NULL, 0,
   1728  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SACK, CTL_EOL);
   1729  1.136.6.2  rmind 
   1730  1.136.6.2  rmind 	/* Congctl subtree */
   1731  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &congctl_node,
   1732  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1733  1.136.6.2  rmind 		       CTLTYPE_NODE, "congctl",
   1734  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP Congestion Control"),
   1735  1.136.6.2  rmind 	    	       NULL, 0, NULL, 0,
   1736  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1737  1.136.6.2  rmind 	sysctl_createv(clog, 0, &congctl_node, NULL,
   1738  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1739  1.136.6.2  rmind 		       CTLTYPE_STRING, "available",
   1740  1.136.6.2  rmind 		       SYSCTL_DESCR("Available Congestion Control Mechanisms"),
   1741  1.136.6.2  rmind 		       NULL, 0, &tcp_congctl_avail, 0, CTL_CREATE, CTL_EOL);
   1742  1.136.6.2  rmind 	sysctl_createv(clog, 0, &congctl_node, NULL,
   1743  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1744  1.136.6.2  rmind 		       CTLTYPE_STRING, "selected",
   1745  1.136.6.2  rmind 		       SYSCTL_DESCR("Selected Congestion Control Mechanism"),
   1746  1.136.6.2  rmind 		       sysctl_tcp_congctl, 0, NULL, TCPCC_MAXLEN,
   1747  1.136.6.2  rmind 		       CTL_CREATE, CTL_EOL);
   1748  1.136.6.2  rmind 
   1749  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1750  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1751  1.136.6.2  rmind 		       CTLTYPE_INT, "win_scale",
   1752  1.136.6.2  rmind 		       SYSCTL_DESCR("Use RFC1323 window scale options"),
   1753  1.136.6.2  rmind 		       NULL, 0, &tcp_do_win_scale, 0,
   1754  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_WSCALE, CTL_EOL);
   1755  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1756  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1757  1.136.6.2  rmind 		       CTLTYPE_INT, "timestamps",
   1758  1.136.6.2  rmind 		       SYSCTL_DESCR("Use RFC1323 time stamp options"),
   1759  1.136.6.2  rmind 		       NULL, 0, &tcp_do_timestamps, 0,
   1760  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_TSTAMP, CTL_EOL);
   1761  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1762  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1763  1.136.6.2  rmind 		       CTLTYPE_INT, "compat_42",
   1764  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable workarounds for 4.2BSD TCP bugs"),
   1765  1.136.6.2  rmind 		       NULL, 0, &tcp_compat_42, 0,
   1766  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_COMPAT_42, CTL_EOL);
   1767  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1768  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1769  1.136.6.2  rmind 		       CTLTYPE_INT, "cwm",
   1770  1.136.6.2  rmind 		       SYSCTL_DESCR("Hughes/Touch/Heidemann Congestion Window "
   1771  1.136.6.2  rmind 				    "Monitoring"),
   1772  1.136.6.2  rmind 		       NULL, 0, &tcp_cwm, 0,
   1773  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_CWM, CTL_EOL);
   1774  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1775  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1776  1.136.6.2  rmind 		       CTLTYPE_INT, "cwm_burstsize",
   1777  1.136.6.2  rmind 		       SYSCTL_DESCR("Congestion Window Monitoring allowed "
   1778  1.136.6.2  rmind 				    "burst count in packets"),
   1779  1.136.6.2  rmind 		       NULL, 0, &tcp_cwm_burstsize, 0,
   1780  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_CWM_BURSTSIZE,
   1781  1.136.6.2  rmind 		       CTL_EOL);
   1782  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1783  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1784  1.136.6.2  rmind 		       CTLTYPE_INT, "ack_on_push",
   1785  1.136.6.2  rmind 		       SYSCTL_DESCR("Immediately return ACK when PSH is "
   1786  1.136.6.2  rmind 				    "received"),
   1787  1.136.6.2  rmind 		       NULL, 0, &tcp_ack_on_push, 0,
   1788  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_ACK_ON_PUSH, CTL_EOL);
   1789  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1790  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1791  1.136.6.2  rmind 		       CTLTYPE_INT, "keepidle",
   1792  1.136.6.2  rmind 		       SYSCTL_DESCR("Allowed connection idle ticks before a "
   1793  1.136.6.2  rmind 				    "keepalive probe is sent"),
   1794  1.136.6.2  rmind 		       sysctl_tcp_keep, 0, &tcp_keepidle, 0,
   1795  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_KEEPIDLE, CTL_EOL);
   1796  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1797  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1798  1.136.6.2  rmind 		       CTLTYPE_INT, "keepintvl",
   1799  1.136.6.2  rmind 		       SYSCTL_DESCR("Ticks before next keepalive probe is sent"),
   1800  1.136.6.2  rmind 		       sysctl_tcp_keep, 0, &tcp_keepintvl, 0,
   1801  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_KEEPINTVL, CTL_EOL);
   1802  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1803  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1804  1.136.6.2  rmind 		       CTLTYPE_INT, "keepcnt",
   1805  1.136.6.2  rmind 		       SYSCTL_DESCR("Number of keepalive probes to send"),
   1806  1.136.6.2  rmind 		       sysctl_tcp_keep, 0, &tcp_keepcnt, 0,
   1807  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_KEEPCNT, CTL_EOL);
   1808  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1809  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
   1810  1.136.6.2  rmind 		       CTLTYPE_INT, "slowhz",
   1811  1.136.6.2  rmind 		       SYSCTL_DESCR("Keepalive ticks per second"),
   1812  1.136.6.2  rmind 		       NULL, PR_SLOWHZ, NULL, 0,
   1813  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SLOWHZ, CTL_EOL);
   1814  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1815  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1816  1.136.6.2  rmind 		       CTLTYPE_INT, "log_refused",
   1817  1.136.6.2  rmind 		       SYSCTL_DESCR("Log refused TCP connections"),
   1818  1.136.6.2  rmind 		       NULL, 0, &tcp_log_refused, 0,
   1819  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_LOG_REFUSED, CTL_EOL);
   1820  1.136.6.2  rmind #if 0 /* obsoleted */
   1821  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1822  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1823  1.136.6.2  rmind 		       CTLTYPE_INT, "rstratelimit", NULL,
   1824  1.136.6.2  rmind 		       NULL, 0, &tcp_rst_ratelim, 0,
   1825  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_RSTRATELIMIT, CTL_EOL);
   1826  1.136.6.2  rmind #endif
   1827  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1828  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1829  1.136.6.2  rmind 		       CTLTYPE_INT, "rstppslimit",
   1830  1.136.6.2  rmind 		       SYSCTL_DESCR("Maximum number of RST packets to send "
   1831  1.136.6.2  rmind 				    "per second"),
   1832  1.136.6.2  rmind 		       NULL, 0, &tcp_rst_ppslim, 0,
   1833  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_RSTPPSLIMIT, CTL_EOL);
   1834  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1835  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1836  1.136.6.2  rmind 		       CTLTYPE_INT, "delack_ticks",
   1837  1.136.6.2  rmind 		       SYSCTL_DESCR("Number of ticks to delay sending an ACK"),
   1838  1.136.6.2  rmind 		       NULL, 0, &tcp_delack_ticks, 0,
   1839  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_DELACK_TICKS, CTL_EOL);
   1840  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1841  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1842  1.136.6.2  rmind 		       CTLTYPE_INT, "init_win_local",
   1843  1.136.6.2  rmind 		       SYSCTL_DESCR("Initial TCP window size (in segments)"),
   1844  1.136.6.2  rmind 		       NULL, 0, &tcp_init_win_local, 0,
   1845  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_INIT_WIN_LOCAL,
   1846  1.136.6.2  rmind 		       CTL_EOL);
   1847  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1848  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1849  1.136.6.2  rmind 		       CTLTYPE_STRUCT, "ident",
   1850  1.136.6.2  rmind 		       SYSCTL_DESCR("RFC1413 Identification Protocol lookups"),
   1851  1.136.6.2  rmind 		       sysctl_net_inet_tcp_ident, 0, NULL, sizeof(uid_t),
   1852  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_IDENT, CTL_EOL);
   1853  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1854  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1855  1.136.6.2  rmind 		       CTLTYPE_INT, "do_loopback_cksum",
   1856  1.136.6.2  rmind 		       SYSCTL_DESCR("Perform TCP checksum on loopback"),
   1857  1.136.6.2  rmind 		       NULL, 0, &tcp_do_loopback_cksum, 0,
   1858  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_LOOPBACKCKSUM,
   1859  1.136.6.2  rmind 		       CTL_EOL);
   1860  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1861  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1862  1.136.6.2  rmind 		       CTLTYPE_STRUCT, "pcblist",
   1863  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP protocol control block list"),
   1864  1.136.6.2  rmind 		       sysctl_inpcblist, 0, &tcbtable, 0,
   1865  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE,
   1866  1.136.6.2  rmind 		       CTL_EOL);
   1867  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1868  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1869  1.136.6.2  rmind 		       CTLTYPE_INT, "keepinit",
   1870  1.136.6.2  rmind 		       SYSCTL_DESCR("Ticks before initial tcp connection times out"),
   1871  1.136.6.2  rmind 		       sysctl_tcp_keep, 0, &tcp_keepinit, 0,
   1872  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1873  1.136.6.2  rmind 
   1874  1.136.6.2  rmind 	/* TCP socket buffers auto-sizing nodes */
   1875  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1876  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1877  1.136.6.2  rmind 		       CTLTYPE_INT, "recvbuf_auto",
   1878  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable automatic receive "
   1879  1.136.6.2  rmind 		           "buffer sizing (experimental)"),
   1880  1.136.6.2  rmind 		       NULL, 0, &tcp_do_autorcvbuf, 0,
   1881  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1882  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1883  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1884  1.136.6.2  rmind 		       CTLTYPE_INT, "recvbuf_inc",
   1885  1.136.6.2  rmind 		       SYSCTL_DESCR("Incrementor step size of "
   1886  1.136.6.2  rmind 		           "automatic receive buffer"),
   1887  1.136.6.2  rmind 		       NULL, 0, &tcp_autorcvbuf_inc, 0,
   1888  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1889  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1890  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1891  1.136.6.2  rmind 		       CTLTYPE_INT, "recvbuf_max",
   1892  1.136.6.2  rmind 		       SYSCTL_DESCR("Max size of automatic receive buffer"),
   1893  1.136.6.2  rmind 		       NULL, 0, &tcp_autorcvbuf_max, 0,
   1894  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1895  1.136.6.2  rmind 
   1896  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1897  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1898  1.136.6.2  rmind 		       CTLTYPE_INT, "sendbuf_auto",
   1899  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable automatic send "
   1900  1.136.6.2  rmind 		           "buffer sizing (experimental)"),
   1901  1.136.6.2  rmind 		       NULL, 0, &tcp_do_autosndbuf, 0,
   1902  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1903  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1904  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1905  1.136.6.2  rmind 		       CTLTYPE_INT, "sendbuf_inc",
   1906  1.136.6.2  rmind 		       SYSCTL_DESCR("Incrementor step size of "
   1907  1.136.6.2  rmind 		           "automatic send buffer"),
   1908  1.136.6.2  rmind 		       NULL, 0, &tcp_autosndbuf_inc, 0,
   1909  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1910  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1911  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1912  1.136.6.2  rmind 		       CTLTYPE_INT, "sendbuf_max",
   1913  1.136.6.2  rmind 		       SYSCTL_DESCR("Max size of automatic send buffer"),
   1914  1.136.6.2  rmind 		       NULL, 0, &tcp_autosndbuf_max, 0,
   1915  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1916  1.136.6.2  rmind 
   1917  1.136.6.2  rmind 	/* ECN subtree */
   1918  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &ecn_node,
   1919  1.136.6.2  rmind 	    	       CTLFLAG_PERMANENT,
   1920  1.136.6.2  rmind 		       CTLTYPE_NODE, "ecn",
   1921  1.136.6.2  rmind 	    	       SYSCTL_DESCR("RFC3168 Explicit Congestion Notification"),
   1922  1.136.6.2  rmind 	    	       NULL, 0, NULL, 0,
   1923  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   1924  1.136.6.2  rmind 	sysctl_createv(clog, 0, &ecn_node, NULL,
   1925  1.136.6.2  rmind 	    	       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1926  1.136.6.2  rmind 		       CTLTYPE_INT, "enable",
   1927  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable TCP Explicit Congestion "
   1928  1.136.6.2  rmind 			   "Notification"),
   1929  1.136.6.2  rmind 	    	       NULL, 0, &tcp_do_ecn, 0, CTL_CREATE, CTL_EOL);
   1930  1.136.6.2  rmind 	sysctl_createv(clog, 0, &ecn_node, NULL,
   1931  1.136.6.2  rmind 	    	       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1932  1.136.6.2  rmind 		       CTLTYPE_INT, "maxretries",
   1933  1.136.6.2  rmind 		       SYSCTL_DESCR("Number of times to retry ECN setup "
   1934  1.136.6.2  rmind 			       "before disabling ECN on the connection"),
   1935  1.136.6.2  rmind 	    	       NULL, 0, &tcp_ecn_maxretries, 0, CTL_CREATE, CTL_EOL);
   1936  1.136.6.2  rmind 
   1937  1.136.6.2  rmind 	/* SACK gets it's own little subtree. */
   1938  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &sack_node,
   1939  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1940  1.136.6.2  rmind 		       CTLTYPE_INT, "enable",
   1941  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable RFC2018 Selective ACKnowledgement"),
   1942  1.136.6.2  rmind 		       NULL, 0, &tcp_do_sack, 0,
   1943  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SACK, CTL_CREATE, CTL_EOL);
   1944  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &sack_node,
   1945  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1946  1.136.6.2  rmind 		       CTLTYPE_INT, "maxholes",
   1947  1.136.6.2  rmind 		       SYSCTL_DESCR("Maximum number of TCP SACK holes allowed per connection"),
   1948  1.136.6.2  rmind 		       NULL, 0, &tcp_sack_tp_maxholes, 0,
   1949  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SACK, CTL_CREATE, CTL_EOL);
   1950  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &sack_node,
   1951  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1952  1.136.6.2  rmind 		       CTLTYPE_INT, "globalmaxholes",
   1953  1.136.6.2  rmind 		       SYSCTL_DESCR("Global maximum number of TCP SACK holes"),
   1954  1.136.6.2  rmind 		       NULL, 0, &tcp_sack_globalmaxholes, 0,
   1955  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SACK, CTL_CREATE, CTL_EOL);
   1956  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &sack_node,
   1957  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1958  1.136.6.2  rmind 		       CTLTYPE_INT, "globalholes",
   1959  1.136.6.2  rmind 		       SYSCTL_DESCR("Global number of TCP SACK holes"),
   1960  1.136.6.2  rmind 		       NULL, 0, &tcp_sack_globalholes, 0,
   1961  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_SACK, CTL_CREATE, CTL_EOL);
   1962  1.136.6.2  rmind 
   1963  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1964  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1965  1.136.6.2  rmind 		       CTLTYPE_STRUCT, "stats",
   1966  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP statistics"),
   1967  1.136.6.2  rmind 		       NULL, 0, &tcpstat, sizeof(tcpstat),
   1968  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_STATS,
   1969  1.136.6.2  rmind 		       CTL_EOL);
   1970  1.136.6.2  rmind #ifdef TCP_DEBUG
   1971  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1972  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1973  1.136.6.2  rmind 		       CTLTYPE_STRUCT, "debug",
   1974  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP sockets debug information"),
   1975  1.136.6.2  rmind 		       NULL, 0, &tcp_debug, sizeof(tcp_debug),
   1976  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_DEBUG,
   1977  1.136.6.2  rmind 		       CTL_EOL);
   1978  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1979  1.136.6.2  rmind 		       CTLFLAG_PERMANENT,
   1980  1.136.6.2  rmind 		       CTLTYPE_INT, "debx",
   1981  1.136.6.2  rmind 		       SYSCTL_DESCR("Number of TCP debug sockets messages"),
   1982  1.136.6.2  rmind 		       NULL, 0, &tcp_debx, sizeof(tcp_debx),
   1983  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_DEBX,
   1984  1.136.6.2  rmind 		       CTL_EOL);
   1985  1.136.6.2  rmind #endif
   1986  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1987  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1988  1.136.6.2  rmind 		       CTLTYPE_STRUCT, "drop",
   1989  1.136.6.2  rmind 		       SYSCTL_DESCR("TCP drop connection"),
   1990  1.136.6.2  rmind 		       sysctl_net_inet_tcp_drop, 0, NULL, 0,
   1991  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, TCPCTL_DROP, CTL_EOL);
   1992  1.136.6.2  rmind #if NRND > 0
   1993  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, NULL,
   1994  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1995  1.136.6.2  rmind 		       CTLTYPE_INT, "iss_hash",
   1996  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable RFC 1948 ISS by cryptographic "
   1997  1.136.6.2  rmind 				    "hash computation"),
   1998  1.136.6.2  rmind 		       NULL, 0, &tcp_do_rfc1948, sizeof(tcp_do_rfc1948),
   1999  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE,
   2000  1.136.6.2  rmind 		       CTL_EOL);
   2001  1.136.6.2  rmind #endif
   2002  1.136.6.2  rmind 
   2003  1.136.6.2  rmind 	/* ABC subtree */
   2004  1.136.6.2  rmind 
   2005  1.136.6.2  rmind 	sysctl_createv(clog, 0, NULL, &abc_node,
   2006  1.136.6.2  rmind 		       CTLFLAG_PERMANENT, CTLTYPE_NODE, "abc",
   2007  1.136.6.2  rmind 		       SYSCTL_DESCR("RFC3465 Appropriate Byte Counting (ABC)"),
   2008  1.136.6.2  rmind 		       NULL, 0, NULL, 0,
   2009  1.136.6.2  rmind 		       CTL_NET, pf, IPPROTO_TCP, CTL_CREATE, CTL_EOL);
   2010  1.136.6.2  rmind 	sysctl_createv(clog, 0, &abc_node, NULL,
   2011  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   2012  1.136.6.2  rmind 		       CTLTYPE_INT, "enable",
   2013  1.136.6.2  rmind 		       SYSCTL_DESCR("Enable RFC3465 Appropriate Byte Counting"),
   2014  1.136.6.2  rmind 		       NULL, 0, &tcp_do_abc, 0, CTL_CREATE, CTL_EOL);
   2015  1.136.6.2  rmind 	sysctl_createv(clog, 0, &abc_node, NULL,
   2016  1.136.6.2  rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   2017  1.136.6.2  rmind 		       CTLTYPE_INT, "aggressive",
   2018  1.136.6.2  rmind 		       SYSCTL_DESCR("1: L=2*SMSS 0: L=1*SMSS"),
   2019  1.136.6.2  rmind 		       NULL, 0, &tcp_abc_aggressive, 0, CTL_CREATE, CTL_EOL);
   2020  1.136.6.2  rmind }
   2021  1.136.6.2  rmind 
   2022  1.136.6.2  rmind /*
   2023  1.136.6.2  rmind  * Sysctl for tcp variables.
   2024  1.136.6.2  rmind  */
   2025  1.136.6.2  rmind #ifdef INET
   2026  1.136.6.2  rmind SYSCTL_SETUP(sysctl_net_inet_tcp_setup, "sysctl net.inet.tcp subtree setup")
   2027  1.136.6.2  rmind {
   2028  1.136.6.2  rmind 
   2029  1.136.6.2  rmind 	sysctl_net_inet_tcp_setup2(clog, PF_INET, "inet", "tcp");
   2030  1.136.6.2  rmind }
   2031  1.136.6.2  rmind #endif /* INET */
   2032  1.136.6.2  rmind 
   2033  1.136.6.2  rmind #ifdef INET6
   2034  1.136.6.2  rmind SYSCTL_SETUP(sysctl_net_inet6_tcp6_setup, "sysctl net.inet6.tcp6 subtree setup")
   2035  1.136.6.2  rmind {
   2036  1.136.6.2  rmind 
   2037  1.136.6.2  rmind 	sysctl_net_inet_tcp_setup2(clog, PF_INET6, "inet6", "tcp6");
   2038  1.136.6.2  rmind }
   2039  1.136.6.2  rmind #endif /* INET6 */
   2040