Home | History | Annotate | Line # | Download | only in netinet6
udp6_usrreq.c revision 1.68.2.2
      1  1.68.2.2      yamt /*	$NetBSD: udp6_usrreq.c,v 1.68.2.2 2006/12/30 20:50:39 yamt Exp $	*/
      2      1.43    itojun /*	$KAME: udp6_usrreq.c,v 1.86 2001/05/27 17:33:00 itojun Exp $	*/
      3       1.3   thorpej 
      4       1.2    itojun /*
      5       1.2    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6       1.2    itojun  * All rights reserved.
      7      1.27    itojun  *
      8       1.2    itojun  * Redistribution and use in source and binary forms, with or without
      9       1.2    itojun  * modification, are permitted provided that the following conditions
     10       1.2    itojun  * are met:
     11       1.2    itojun  * 1. Redistributions of source code must retain the above copyright
     12       1.2    itojun  *    notice, this list of conditions and the following disclaimer.
     13       1.2    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.2    itojun  *    notice, this list of conditions and the following disclaimer in the
     15       1.2    itojun  *    documentation and/or other materials provided with the distribution.
     16       1.2    itojun  * 3. Neither the name of the project nor the names of its contributors
     17       1.2    itojun  *    may be used to endorse or promote products derived from this software
     18       1.2    itojun  *    without specific prior written permission.
     19      1.27    itojun  *
     20       1.2    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21       1.2    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22       1.2    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23       1.2    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24       1.2    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25       1.2    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26       1.2    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27       1.2    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28       1.2    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29       1.2    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30       1.2    itojun  * SUCH DAMAGE.
     31       1.2    itojun  */
     32       1.2    itojun 
     33       1.2    itojun /*
     34       1.2    itojun  * Copyright (c) 1982, 1986, 1989, 1993
     35       1.2    itojun  *	The Regents of the University of California.  All rights reserved.
     36       1.2    itojun  *
     37       1.2    itojun  * Redistribution and use in source and binary forms, with or without
     38       1.2    itojun  * modification, are permitted provided that the following conditions
     39       1.2    itojun  * are met:
     40       1.2    itojun  * 1. Redistributions of source code must retain the above copyright
     41       1.2    itojun  *    notice, this list of conditions and the following disclaimer.
     42       1.2    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     43       1.2    itojun  *    notice, this list of conditions and the following disclaimer in the
     44       1.2    itojun  *    documentation and/or other materials provided with the distribution.
     45      1.56       agc  * 3. Neither the name of the University nor the names of its contributors
     46       1.2    itojun  *    may be used to endorse or promote products derived from this software
     47       1.2    itojun  *    without specific prior written permission.
     48       1.2    itojun  *
     49       1.2    itojun  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     50       1.2    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     51       1.2    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     52       1.2    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     53       1.2    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     54       1.2    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     55       1.2    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     56       1.2    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     57       1.2    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     58       1.2    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     59       1.2    itojun  * SUCH DAMAGE.
     60       1.2    itojun  *
     61       1.2    itojun  *	@(#)udp_var.h	8.1 (Berkeley) 6/10/93
     62       1.2    itojun  */
     63      1.51     lukem 
     64      1.51     lukem #include <sys/cdefs.h>
     65  1.68.2.2      yamt __KERNEL_RCSID(0, "$NetBSD: udp6_usrreq.c,v 1.68.2.2 2006/12/30 20:50:39 yamt Exp $");
     66       1.2    itojun 
     67       1.2    itojun #include <sys/param.h>
     68       1.2    itojun #include <sys/malloc.h>
     69       1.2    itojun #include <sys/mbuf.h>
     70       1.2    itojun #include <sys/protosw.h>
     71       1.2    itojun #include <sys/socket.h>
     72       1.2    itojun #include <sys/socketvar.h>
     73       1.2    itojun #include <sys/errno.h>
     74       1.2    itojun #include <sys/stat.h>
     75       1.2    itojun #include <sys/systm.h>
     76       1.2    itojun #include <sys/proc.h>
     77       1.8    itojun #include <sys/syslog.h>
     78      1.50    simonb #include <sys/sysctl.h>
     79       1.2    itojun 
     80       1.2    itojun #include <net/if.h>
     81       1.2    itojun #include <net/route.h>
     82       1.2    itojun #include <net/if_types.h>
     83       1.2    itojun 
     84       1.2    itojun #include <netinet/in.h>
     85       1.2    itojun #include <netinet/in_var.h>
     86      1.14    itojun #include <netinet/in_systm.h>
     87      1.14    itojun #include <netinet/ip.h>
     88      1.14    itojun #include <netinet/ip_var.h>
     89      1.14    itojun #include <netinet/in_pcb.h>
     90      1.14    itojun #include <netinet/udp.h>
     91      1.14    itojun #include <netinet/udp_var.h>
     92      1.23    itojun #include <netinet/ip6.h>
     93      1.27    itojun #include <netinet6/ip6_var.h>
     94       1.2    itojun #include <netinet6/in6_pcb.h>
     95      1.23    itojun #include <netinet/icmp6.h>
     96       1.2    itojun #include <netinet6/udp6_var.h>
     97      1.14    itojun #include <netinet6/ip6protosw.h>
     98  1.68.2.1      yamt #include <netinet/in_offload.h>
     99       1.2    itojun 
    100       1.2    itojun #include "faith.h"
    101      1.41    itojun #if defined(NFAITH) && NFAITH > 0
    102      1.41    itojun #include <net/if_faith.h>
    103      1.41    itojun #endif
    104       1.2    itojun 
    105       1.2    itojun /*
    106  1.68.2.1      yamt  * UDP protocol implementation.
    107       1.2    itojun  * Per RFC 768, August, 1980.
    108       1.2    itojun  */
    109       1.2    itojun 
    110      1.58    itojun extern struct inpcbtable udbtable;
    111      1.52      matt struct	udp6stat udp6stat;
    112       1.2    itojun 
    113       1.2    itojun static	void udp6_notify __P((struct in6pcb *, int));
    114       1.2    itojun 
    115       1.2    itojun void
    116       1.2    itojun udp6_init()
    117       1.2    itojun {
    118      1.58    itojun 	/* initialization done in udp_input() due to initialization order */
    119       1.2    itojun }
    120       1.2    itojun 
    121       1.2    itojun /*
    122       1.2    itojun  * Notify a udp user of an asynchronous error;
    123      1.27    itojun  * just wake up so that he can collect error status.
    124       1.2    itojun  */
    125       1.2    itojun static	void
    126       1.2    itojun udp6_notify(in6p, errno)
    127      1.39    itojun 	struct in6pcb *in6p;
    128       1.2    itojun 	int errno;
    129       1.2    itojun {
    130       1.2    itojun 	in6p->in6p_socket->so_error = errno;
    131       1.2    itojun 	sorwakeup(in6p->in6p_socket);
    132       1.2    itojun 	sowwakeup(in6p->in6p_socket);
    133       1.2    itojun }
    134       1.2    itojun 
    135       1.2    itojun void
    136      1.14    itojun udp6_ctlinput(cmd, sa, d)
    137       1.2    itojun 	int cmd;
    138       1.2    itojun 	struct sockaddr *sa;
    139      1.14    itojun 	void *d;
    140       1.2    itojun {
    141       1.2    itojun 	struct udphdr uh;
    142      1.39    itojun 	struct ip6_hdr *ip6;
    143      1.40    itojun 	struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)sa;
    144      1.14    itojun 	struct mbuf *m;
    145      1.14    itojun 	int off;
    146      1.40    itojun 	void *cmdarg;
    147      1.40    itojun 	struct ip6ctlparam *ip6cp = NULL;
    148      1.40    itojun 	const struct sockaddr_in6 *sa6_src = NULL;
    149      1.25    itojun 	void (*notify) __P((struct in6pcb *, int)) = udp6_notify;
    150      1.40    itojun 	struct udp_portonly {
    151      1.40    itojun 		u_int16_t uh_sport;
    152      1.40    itojun 		u_int16_t uh_dport;
    153      1.40    itojun 	} *uhp;
    154       1.2    itojun 
    155      1.10    itojun 	if (sa->sa_family != AF_INET6 ||
    156      1.10    itojun 	    sa->sa_len != sizeof(struct sockaddr_in6))
    157      1.10    itojun 		return;
    158      1.14    itojun 
    159      1.25    itojun 	if ((unsigned)cmd >= PRC_NCMDS)
    160      1.25    itojun 		return;
    161      1.25    itojun 	if (PRC_IS_REDIRECT(cmd))
    162      1.25    itojun 		notify = in6_rtchange, d = NULL;
    163      1.25    itojun 	else if (cmd == PRC_HOSTDEAD)
    164      1.25    itojun 		d = NULL;
    165      1.47    itojun 	else if (cmd == PRC_MSGSIZE) {
    166      1.47    itojun 		/* special code is present, see below */
    167      1.47    itojun 		notify = in6_rtchange;
    168      1.47    itojun 	}
    169      1.25    itojun 	else if (inet6ctlerrmap[cmd] == 0)
    170       1.2    itojun 		return;
    171       1.7    itojun 
    172      1.14    itojun 	/* if the parameter is from icmp6, decode it. */
    173      1.14    itojun 	if (d != NULL) {
    174      1.40    itojun 		ip6cp = (struct ip6ctlparam *)d;
    175      1.14    itojun 		m = ip6cp->ip6c_m;
    176      1.14    itojun 		ip6 = ip6cp->ip6c_ip6;
    177      1.14    itojun 		off = ip6cp->ip6c_off;
    178      1.40    itojun 		cmdarg = ip6cp->ip6c_cmdarg;
    179      1.40    itojun 		sa6_src = ip6cp->ip6c_src;
    180      1.14    itojun 	} else {
    181      1.14    itojun 		m = NULL;
    182      1.14    itojun 		ip6 = NULL;
    183      1.40    itojun 		cmdarg = NULL;
    184      1.40    itojun 		sa6_src = &sa6_any;
    185      1.60  christos 		off = 0;
    186      1.14    itojun 	}
    187      1.14    itojun 
    188       1.2    itojun 	if (ip6) {
    189       1.2    itojun 		/*
    190       1.2    itojun 		 * XXX: We assume that when IPV6 is non NULL,
    191       1.2    itojun 		 * M and OFF are valid.
    192       1.2    itojun 		 */
    193      1.33    itojun 
    194      1.33    itojun 		/* check if we can safely examine src and dst ports */
    195      1.42    itojun 		if (m->m_pkthdr.len < off + sizeof(*uhp)) {
    196      1.42    itojun 			if (cmd == PRC_MSGSIZE)
    197      1.42    itojun 				icmp6_mtudisc_update((struct ip6ctlparam *)d, 0);
    198      1.33    itojun 			return;
    199      1.42    itojun 		}
    200       1.7    itojun 
    201      1.40    itojun 		bzero(&uh, sizeof(uh));
    202      1.40    itojun 		m_copydata(m, off, sizeof(*uhp), (caddr_t)&uh);
    203      1.34    itojun 
    204      1.34    itojun 		if (cmd == PRC_MSGSIZE) {
    205      1.36    itojun 			int valid = 0;
    206      1.40    itojun 
    207      1.34    itojun 			/*
    208      1.34    itojun 			 * Check to see if we have a valid UDP socket
    209      1.34    itojun 			 * corresponding to the address in the ICMPv6 message
    210      1.34    itojun 			 * payload.
    211      1.34    itojun 			 */
    212      1.58    itojun 			if (in6_pcblookup_connect(&udbtable, &sa6->sin6_addr,
    213      1.68  christos 			    uh.uh_dport, (const struct in6_addr *)&sa6_src->sin6_addr,
    214      1.40    itojun 			    uh.uh_sport, 0))
    215      1.36    itojun 				valid++;
    216      1.34    itojun #if 0
    217      1.34    itojun 			/*
    218      1.34    itojun 			 * As the use of sendto(2) is fairly popular,
    219      1.34    itojun 			 * we may want to allow non-connected pcb too.
    220      1.34    itojun 			 * But it could be too weak against attacks...
    221      1.34    itojun 			 * We should at least check if the local address (= s)
    222      1.34    itojun 			 * is really ours.
    223      1.34    itojun 			 */
    224      1.58    itojun 			else if (in6_pcblookup_bind(&udbtable, &sa6->sin6_addr,
    225      1.58    itojun 			    uh.uh_dport, 0))
    226      1.36    itojun 				valid++;
    227      1.34    itojun #endif
    228      1.34    itojun 
    229      1.34    itojun 			/*
    230      1.40    itojun 			 * Depending on the value of "valid" and routing table
    231      1.40    itojun 			 * size (mtudisc_{hi,lo}wat), we will:
    232      1.46    itojun 			 * - recalculate the new MTU and create the
    233      1.40    itojun 			 *   corresponding routing entry, or
    234      1.40    itojun 			 * - ignore the MTU change notification.
    235      1.34    itojun 			 */
    236      1.36    itojun 			icmp6_mtudisc_update((struct ip6ctlparam *)d, valid);
    237      1.34    itojun 
    238      1.40    itojun 			/*
    239  1.68.2.1      yamt 			 * regardless of if we called
    240  1.68.2.1      yamt 			 * icmp6_mtudisc_update(), we need to call
    241  1.68.2.1      yamt 			 * in6_pcbnotify(), to notify path MTU change
    242  1.68.2.1      yamt 			 * to the userland (RFC3542), because some
    243  1.68.2.1      yamt 			 * unconnected sockets may share the same
    244      1.40    itojun 			 * destination and want to know the path MTU.
    245      1.40    itojun 			 */
    246      1.34    itojun 		}
    247      1.34    itojun 
    248      1.58    itojun 		(void) in6_pcbnotify(&udbtable, sa, uh.uh_dport,
    249      1.68  christos 		    (const struct sockaddr *)sa6_src, uh.uh_sport, cmd, cmdarg,
    250      1.40    itojun 		    notify);
    251       1.2    itojun 	} else {
    252      1.58    itojun 		(void) in6_pcbnotify(&udbtable, sa, 0,
    253      1.68  christos 		    (const struct sockaddr *)sa6_src, 0, cmd, cmdarg, notify);
    254       1.2    itojun 	}
    255       1.2    itojun }
    256       1.2    itojun 
    257       1.2    itojun extern	int udp6_sendspace;
    258       1.2    itojun extern	int udp6_recvspace;
    259       1.2    itojun 
    260       1.2    itojun int
    261  1.68.2.1      yamt udp6_usrreq(so, req, m, addr6, control, l)
    262       1.2    itojun 	struct socket *so;
    263       1.2    itojun 	int req;
    264       1.2    itojun 	struct mbuf *m, *addr6, *control;
    265  1.68.2.1      yamt 	struct lwp *l;
    266       1.2    itojun {
    267       1.2    itojun 	struct	in6pcb *in6p = sotoin6pcb(so);
    268       1.2    itojun 	int	error = 0;
    269       1.2    itojun 	int	s;
    270       1.2    itojun 
    271      1.27    itojun 	/*
    272       1.2    itojun 	 * MAPPED_ADDR implementation info:
    273       1.2    itojun 	 *  Mapped addr support for PRU_CONTROL is not necessary.
    274       1.2    itojun 	 *  Because typical user of PRU_CONTROL is such as ifconfig,
    275       1.2    itojun 	 *  and they don't associate any addr to their socket.  Then
    276       1.2    itojun 	 *  socket family is only hint about the PRU_CONTROL'ed address
    277       1.2    itojun 	 *  family, especially when getting addrs from kernel.
    278       1.2    itojun 	 *  So AF_INET socket need to be used to control AF_INET addrs,
    279       1.2    itojun 	 *  and AF_INET6 socket for AF_INET6 addrs.
    280       1.2    itojun 	 */
    281       1.2    itojun 	if (req == PRU_CONTROL)
    282      1.53    itojun 		return (in6_control(so, (u_long)m, (caddr_t)addr6,
    283  1.68.2.2      yamt 				   (struct ifnet *)control, l));
    284      1.20   thorpej 
    285      1.21   thorpej 	if (req == PRU_PURGEIF) {
    286      1.58    itojun 		in6_pcbpurgeif0(&udbtable, (struct ifnet *)control);
    287      1.21   thorpej 		in6_purgeif((struct ifnet *)control);
    288      1.58    itojun 		in6_pcbpurgeif(&udbtable, (struct ifnet *)control);
    289      1.20   thorpej 		return (0);
    290      1.20   thorpej 	}
    291       1.2    itojun 
    292       1.2    itojun 	if (in6p == NULL && req != PRU_ATTACH) {
    293       1.2    itojun 		error = EINVAL;
    294       1.2    itojun 		goto release;
    295       1.2    itojun 	}
    296       1.2    itojun 
    297       1.2    itojun 	switch (req) {
    298       1.2    itojun 	case PRU_ATTACH:
    299       1.2    itojun 		/*
    300       1.2    itojun 		 * MAPPED_ADDR implementation spec:
    301      1.27    itojun 		 *  Always attach for IPv6,
    302       1.2    itojun 		 *  and only when necessary for IPv4.
    303       1.2    itojun 		 */
    304       1.2    itojun 		if (in6p != NULL) {
    305       1.2    itojun 			error = EINVAL;
    306       1.2    itojun 			break;
    307       1.2    itojun 		}
    308       1.4    itojun 		s = splsoftnet();
    309      1.58    itojun 		error = in6_pcballoc(so, &udbtable);
    310       1.2    itojun 		splx(s);
    311       1.2    itojun 		if (error)
    312       1.2    itojun 			break;
    313       1.2    itojun 		error = soreserve(so, udp6_sendspace, udp6_recvspace);
    314       1.2    itojun 		if (error)
    315       1.2    itojun 			break;
    316       1.2    itojun 		in6p = sotoin6pcb(so);
    317       1.2    itojun 		in6p->in6p_cksum = -1;	/* just to be sure */
    318       1.2    itojun 		break;
    319       1.2    itojun 
    320       1.2    itojun 	case PRU_DETACH:
    321      1.58    itojun 		in6_pcbdetach(in6p);
    322       1.2    itojun 		break;
    323       1.2    itojun 
    324       1.2    itojun 	case PRU_BIND:
    325       1.4    itojun 		s = splsoftnet();
    326  1.68.2.2      yamt 		error = in6_pcbbind(in6p, addr6, l);
    327       1.2    itojun 		splx(s);
    328       1.2    itojun 		break;
    329       1.2    itojun 
    330       1.2    itojun 	case PRU_LISTEN:
    331       1.2    itojun 		error = EOPNOTSUPP;
    332       1.2    itojun 		break;
    333       1.2    itojun 
    334       1.2    itojun 	case PRU_CONNECT:
    335      1.14    itojun 		if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
    336       1.2    itojun 			error = EISCONN;
    337       1.2    itojun 			break;
    338       1.2    itojun 		}
    339       1.4    itojun 		s = splsoftnet();
    340  1.68.2.2      yamt 		error = in6_pcbconnect(in6p, addr6, l);
    341       1.2    itojun 		splx(s);
    342       1.2    itojun 		if (error == 0)
    343       1.2    itojun 			soisconnected(so);
    344       1.2    itojun 		break;
    345       1.2    itojun 
    346       1.2    itojun 	case PRU_CONNECT2:
    347       1.2    itojun 		error = EOPNOTSUPP;
    348       1.2    itojun 		break;
    349       1.2    itojun 
    350       1.2    itojun 	case PRU_ACCEPT:
    351       1.2    itojun 		error = EOPNOTSUPP;
    352       1.2    itojun 		break;
    353       1.2    itojun 
    354       1.2    itojun 	case PRU_DISCONNECT:
    355       1.2    itojun 		if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
    356       1.2    itojun 			error = ENOTCONN;
    357       1.2    itojun 			break;
    358       1.2    itojun 		}
    359       1.4    itojun 		s = splsoftnet();
    360       1.2    itojun 		in6_pcbdisconnect(in6p);
    361       1.2    itojun 		bzero((caddr_t)&in6p->in6p_laddr, sizeof(in6p->in6p_laddr));
    362       1.2    itojun 		splx(s);
    363       1.2    itojun 		so->so_state &= ~SS_ISCONNECTED;		/* XXX */
    364      1.58    itojun 		in6_pcbstate(in6p, IN6P_BOUND);		/* XXX */
    365       1.2    itojun 		break;
    366       1.2    itojun 
    367       1.2    itojun 	case PRU_SHUTDOWN:
    368       1.2    itojun 		socantsendmore(so);
    369       1.2    itojun 		break;
    370       1.2    itojun 
    371       1.2    itojun 	case PRU_SEND:
    372  1.68.2.2      yamt 		return (udp6_output(in6p, m, addr6, control, l));
    373       1.2    itojun 
    374       1.2    itojun 	case PRU_ABORT:
    375       1.2    itojun 		soisdisconnected(so);
    376      1.58    itojun 		in6_pcbdetach(in6p);
    377       1.2    itojun 		break;
    378       1.2    itojun 
    379       1.2    itojun 	case PRU_SOCKADDR:
    380       1.2    itojun 		in6_setsockaddr(in6p, addr6);
    381       1.2    itojun 		break;
    382       1.2    itojun 
    383       1.2    itojun 	case PRU_PEERADDR:
    384       1.2    itojun 		in6_setpeeraddr(in6p, addr6);
    385       1.2    itojun 		break;
    386       1.2    itojun 
    387       1.2    itojun 	case PRU_SENSE:
    388       1.2    itojun 		/*
    389       1.2    itojun 		 * stat: don't bother with a blocksize
    390       1.2    itojun 		 */
    391      1.53    itojun 		return (0);
    392       1.2    itojun 
    393       1.2    itojun 	case PRU_SENDOOB:
    394       1.2    itojun 	case PRU_FASTTIMO:
    395       1.2    itojun 	case PRU_SLOWTIMO:
    396       1.2    itojun 	case PRU_PROTORCV:
    397       1.2    itojun 	case PRU_PROTOSEND:
    398       1.2    itojun 		error = EOPNOTSUPP;
    399       1.2    itojun 		break;
    400       1.2    itojun 
    401       1.2    itojun 	case PRU_RCVD:
    402       1.2    itojun 	case PRU_RCVOOB:
    403      1.53    itojun 		return (EOPNOTSUPP);	/* do not free mbuf's */
    404       1.2    itojun 
    405       1.2    itojun 	default:
    406       1.2    itojun 		panic("udp6_usrreq");
    407       1.2    itojun 	}
    408       1.2    itojun 
    409       1.2    itojun release:
    410      1.43    itojun 	if (control)
    411       1.2    itojun 		m_freem(control);
    412       1.2    itojun 	if (m)
    413       1.2    itojun 		m_freem(m);
    414      1.53    itojun 	return (error);
    415       1.2    itojun }
    416       1.2    itojun 
    417      1.61    atatat SYSCTL_SETUP(sysctl_net_inet6_udp6_setup, "sysctl net.inet6.udp6 subtree setup")
    418       1.2    itojun {
    419      1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    420      1.62    atatat 		       CTLFLAG_PERMANENT,
    421      1.61    atatat 		       CTLTYPE_NODE, "net", NULL,
    422      1.61    atatat 		       NULL, 0, NULL, 0,
    423      1.61    atatat 		       CTL_NET, CTL_EOL);
    424      1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    425      1.62    atatat 		       CTLFLAG_PERMANENT,
    426      1.61    atatat 		       CTLTYPE_NODE, "inet6", NULL,
    427      1.61    atatat 		       NULL, 0, NULL, 0,
    428      1.61    atatat 		       CTL_NET, PF_INET6, CTL_EOL);
    429      1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    430      1.62    atatat 		       CTLFLAG_PERMANENT,
    431      1.63    atatat 		       CTLTYPE_NODE, "udp6",
    432      1.63    atatat 		       SYSCTL_DESCR("UDPv6 related settings"),
    433      1.61    atatat 		       NULL, 0, NULL, 0,
    434      1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, CTL_EOL);
    435      1.61    atatat 
    436      1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    437      1.62    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    438      1.63    atatat 		       CTLTYPE_INT, "sendspace",
    439      1.63    atatat 		       SYSCTL_DESCR("Default UDP send buffer size"),
    440      1.61    atatat 		       NULL, 0, &udp6_sendspace, 0,
    441      1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_SENDSPACE,
    442      1.61    atatat 		       CTL_EOL);
    443      1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    444      1.62    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    445      1.63    atatat 		       CTLTYPE_INT, "recvspace",
    446      1.63    atatat 		       SYSCTL_DESCR("Default UDP receive buffer size"),
    447      1.61    atatat 		       NULL, 0, &udp6_recvspace, 0,
    448      1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_RECVSPACE,
    449      1.61    atatat 		       CTL_EOL);
    450      1.64   thorpej 	sysctl_createv(clog, 0, NULL, NULL,
    451      1.64   thorpej 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    452      1.64   thorpej 		       CTLTYPE_INT, "do_loopback_cksum",
    453      1.64   thorpej 		       SYSCTL_DESCR("Perform UDP checksum on loopback"),
    454      1.64   thorpej 		       NULL, 0, &udp_do_loopback_cksum, 0,
    455      1.64   thorpej 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_LOOPBACKCKSUM,
    456      1.64   thorpej 		       CTL_EOL);
    457      1.65    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    458      1.65    atatat 		       CTLFLAG_PERMANENT,
    459      1.67    atatat 		       CTLTYPE_STRUCT, "pcblist",
    460      1.65    atatat 		       SYSCTL_DESCR("UDP protocol control block list"),
    461      1.65    atatat 		       sysctl_inpcblist, 0, &udbtable, 0,
    462      1.65    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, CTL_CREATE,
    463      1.65    atatat 		       CTL_EOL);
    464  1.68.2.1      yamt 	sysctl_createv(clog, 0, NULL, NULL,
    465  1.68.2.1      yamt 		       CTLFLAG_PERMANENT,
    466  1.68.2.1      yamt 		       CTLTYPE_STRUCT, "stats",
    467  1.68.2.1      yamt 		       SYSCTL_DESCR("UDPv6 statistics"),
    468  1.68.2.1      yamt 		       NULL, 0, &udp6stat, sizeof(udp6stat),
    469  1.68.2.1      yamt 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_STATS,
    470  1.68.2.1      yamt 		       CTL_EOL);
    471       1.2    itojun }
    472