Home | History | Annotate | Line # | Download | only in netinet6
udp6_usrreq.c revision 1.116
      1  1.116     ozaki /*	$NetBSD: udp6_usrreq.c,v 1.116 2015/03/30 04:25:26 ozaki-r 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.116     ozaki __KERNEL_RCSID(0, "$NetBSD: udp6_usrreq.c,v 1.116 2015/03/30 04:25:26 ozaki-r Exp $");
     66   1.90  christos 
     67   1.90  christos #include "opt_inet.h"
     68   1.97     rmind #include "opt_inet_csum.h"
     69  1.116     ozaki #include "opt_ipsec.h"
     70    1.2    itojun 
     71    1.2    itojun #include <sys/param.h>
     72    1.2    itojun #include <sys/mbuf.h>
     73    1.2    itojun #include <sys/protosw.h>
     74    1.2    itojun #include <sys/socket.h>
     75    1.2    itojun #include <sys/socketvar.h>
     76    1.2    itojun #include <sys/systm.h>
     77    1.2    itojun #include <sys/proc.h>
     78    1.8    itojun #include <sys/syslog.h>
     79   1.90  christos #include <sys/domain.h>
     80   1.50    simonb #include <sys/sysctl.h>
     81    1.2    itojun 
     82    1.2    itojun #include <net/if.h>
     83    1.2    itojun #include <net/route.h>
     84    1.2    itojun #include <net/if_types.h>
     85    1.2    itojun 
     86    1.2    itojun #include <netinet/in.h>
     87    1.2    itojun #include <netinet/in_var.h>
     88   1.14    itojun #include <netinet/in_systm.h>
     89   1.97     rmind #include <netinet/in_offload.h>
     90   1.14    itojun #include <netinet/ip.h>
     91   1.14    itojun #include <netinet/ip_var.h>
     92   1.14    itojun #include <netinet/in_pcb.h>
     93   1.14    itojun #include <netinet/udp.h>
     94   1.14    itojun #include <netinet/udp_var.h>
     95   1.97     rmind #include <netinet/udp_private.h>
     96   1.97     rmind 
     97   1.23    itojun #include <netinet/ip6.h>
     98   1.97     rmind #include <netinet/icmp6.h>
     99   1.27    itojun #include <netinet6/ip6_var.h>
    100   1.97     rmind #include <netinet6/ip6_private.h>
    101    1.2    itojun #include <netinet6/in6_pcb.h>
    102    1.2    itojun #include <netinet6/udp6_var.h>
    103   1.82   thorpej #include <netinet6/udp6_private.h>
    104   1.14    itojun #include <netinet6/ip6protosw.h>
    105   1.97     rmind #include <netinet6/scope6_var.h>
    106    1.2    itojun 
    107  1.116     ozaki #ifdef IPSEC
    108  1.116     ozaki #include <netipsec/ipsec.h>
    109  1.116     ozaki #include <netipsec/ipsec_var.h>
    110  1.116     ozaki #include <netipsec/ipsec_private.h>
    111  1.116     ozaki #ifdef INET6
    112  1.116     ozaki #include <netipsec/ipsec6.h>
    113  1.116     ozaki #endif
    114  1.116     ozaki #endif	/* IPSEC */
    115  1.116     ozaki 
    116    1.2    itojun #include "faith.h"
    117   1.41    itojun #if defined(NFAITH) && NFAITH > 0
    118   1.41    itojun #include <net/if_faith.h>
    119   1.41    itojun #endif
    120    1.2    itojun 
    121    1.2    itojun /*
    122   1.73    rpaulo  * UDP protocol implementation.
    123    1.2    itojun  * Per RFC 768, August, 1980.
    124    1.2    itojun  */
    125    1.2    itojun 
    126   1.58    itojun extern struct inpcbtable udbtable;
    127   1.82   thorpej 
    128   1.82   thorpej percpu_t *udp6stat_percpu;
    129    1.2    itojun 
    130   1.97     rmind /* UDP on IP6 parameters */
    131   1.97     rmind static int	udp6_sendspace = 9216;	/* really max datagram size */
    132   1.97     rmind static int	udp6_recvspace = 40 * (1024 + sizeof(struct sockaddr_in6));
    133   1.97     rmind 					/* 40 1K datagrams */
    134   1.97     rmind 
    135   1.78    dyoung static	void udp6_notify(struct in6pcb *, int);
    136   1.88     pooka static	void sysctl_net_inet6_udp6_setup(struct sysctllog **);
    137    1.2    itojun 
    138   1.97     rmind #ifdef UDP_CSUM_COUNTERS
    139   1.97     rmind #include <sys/device.h>
    140   1.97     rmind struct evcnt udp6_hwcsum_bad = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    141   1.97     rmind     NULL, "udp6", "hwcsum bad");
    142   1.97     rmind struct evcnt udp6_hwcsum_ok = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    143   1.97     rmind     NULL, "udp6", "hwcsum ok");
    144   1.97     rmind struct evcnt udp6_hwcsum_data = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    145   1.97     rmind     NULL, "udp6", "hwcsum data");
    146   1.97     rmind struct evcnt udp6_swcsum = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    147   1.97     rmind     NULL, "udp6", "swcsum");
    148   1.97     rmind 
    149   1.97     rmind EVCNT_ATTACH_STATIC(udp6_hwcsum_bad);
    150   1.97     rmind EVCNT_ATTACH_STATIC(udp6_hwcsum_ok);
    151   1.97     rmind EVCNT_ATTACH_STATIC(udp6_hwcsum_data);
    152   1.97     rmind EVCNT_ATTACH_STATIC(udp6_swcsum);
    153   1.97     rmind 
    154   1.97     rmind #define	UDP_CSUM_COUNTER_INCR(ev)	(ev)->ev_count++
    155   1.97     rmind #else
    156   1.97     rmind #define	UDP_CSUM_COUNTER_INCR(ev)	/* nothing */
    157   1.97     rmind #endif
    158   1.97     rmind 
    159    1.2    itojun void
    160   1.81      matt udp6_init(void)
    161    1.2    itojun {
    162   1.88     pooka 	sysctl_net_inet6_udp6_setup(NULL);
    163   1.92     pooka 	udp6stat_percpu = percpu_alloc(sizeof(uint64_t) * UDP6_NSTATS);
    164   1.92     pooka 
    165   1.92     pooka 	udp_init_common();
    166    1.2    itojun }
    167    1.2    itojun 
    168    1.2    itojun /*
    169    1.2    itojun  * Notify a udp user of an asynchronous error;
    170   1.27    itojun  * just wake up so that he can collect error status.
    171    1.2    itojun  */
    172    1.2    itojun static	void
    173   1.76    dyoung udp6_notify(struct in6pcb *in6p, int errno)
    174    1.2    itojun {
    175    1.2    itojun 	in6p->in6p_socket->so_error = errno;
    176    1.2    itojun 	sorwakeup(in6p->in6p_socket);
    177    1.2    itojun 	sowwakeup(in6p->in6p_socket);
    178    1.2    itojun }
    179    1.2    itojun 
    180   1.84        ad void *
    181   1.76    dyoung udp6_ctlinput(int cmd, const struct sockaddr *sa, void *d)
    182    1.2    itojun {
    183    1.2    itojun 	struct udphdr uh;
    184   1.39    itojun 	struct ip6_hdr *ip6;
    185   1.76    dyoung 	const struct sockaddr_in6 *sa6 = (const struct sockaddr_in6 *)sa;
    186   1.14    itojun 	struct mbuf *m;
    187   1.14    itojun 	int off;
    188   1.40    itojun 	void *cmdarg;
    189   1.40    itojun 	struct ip6ctlparam *ip6cp = NULL;
    190   1.40    itojun 	const struct sockaddr_in6 *sa6_src = NULL;
    191   1.76    dyoung 	void (*notify)(struct in6pcb *, int) = udp6_notify;
    192   1.40    itojun 	struct udp_portonly {
    193   1.40    itojun 		u_int16_t uh_sport;
    194   1.40    itojun 		u_int16_t uh_dport;
    195   1.40    itojun 	} *uhp;
    196    1.2    itojun 
    197   1.10    itojun 	if (sa->sa_family != AF_INET6 ||
    198   1.10    itojun 	    sa->sa_len != sizeof(struct sockaddr_in6))
    199   1.84        ad 		return NULL;
    200   1.14    itojun 
    201   1.25    itojun 	if ((unsigned)cmd >= PRC_NCMDS)
    202   1.84        ad 		return NULL;
    203   1.25    itojun 	if (PRC_IS_REDIRECT(cmd))
    204   1.25    itojun 		notify = in6_rtchange, d = NULL;
    205   1.25    itojun 	else if (cmd == PRC_HOSTDEAD)
    206   1.25    itojun 		d = NULL;
    207   1.47    itojun 	else if (cmd == PRC_MSGSIZE) {
    208   1.47    itojun 		/* special code is present, see below */
    209   1.47    itojun 		notify = in6_rtchange;
    210   1.47    itojun 	}
    211   1.25    itojun 	else if (inet6ctlerrmap[cmd] == 0)
    212   1.84        ad 		return NULL;
    213    1.7    itojun 
    214   1.14    itojun 	/* if the parameter is from icmp6, decode it. */
    215   1.14    itojun 	if (d != NULL) {
    216   1.40    itojun 		ip6cp = (struct ip6ctlparam *)d;
    217   1.14    itojun 		m = ip6cp->ip6c_m;
    218   1.14    itojun 		ip6 = ip6cp->ip6c_ip6;
    219   1.14    itojun 		off = ip6cp->ip6c_off;
    220   1.40    itojun 		cmdarg = ip6cp->ip6c_cmdarg;
    221   1.40    itojun 		sa6_src = ip6cp->ip6c_src;
    222   1.14    itojun 	} else {
    223   1.14    itojun 		m = NULL;
    224   1.14    itojun 		ip6 = NULL;
    225   1.40    itojun 		cmdarg = NULL;
    226   1.40    itojun 		sa6_src = &sa6_any;
    227   1.60  christos 		off = 0;
    228   1.14    itojun 	}
    229   1.14    itojun 
    230    1.2    itojun 	if (ip6) {
    231    1.2    itojun 		/*
    232    1.2    itojun 		 * XXX: We assume that when IPV6 is non NULL,
    233    1.2    itojun 		 * M and OFF are valid.
    234    1.2    itojun 		 */
    235   1.33    itojun 
    236   1.33    itojun 		/* check if we can safely examine src and dst ports */
    237   1.42    itojun 		if (m->m_pkthdr.len < off + sizeof(*uhp)) {
    238   1.42    itojun 			if (cmd == PRC_MSGSIZE)
    239   1.42    itojun 				icmp6_mtudisc_update((struct ip6ctlparam *)d, 0);
    240   1.84        ad 			return NULL;
    241   1.42    itojun 		}
    242    1.7    itojun 
    243   1.87    cegger 		memset(&uh, 0, sizeof(uh));
    244   1.77  christos 		m_copydata(m, off, sizeof(*uhp), (void *)&uh);
    245   1.34    itojun 
    246   1.34    itojun 		if (cmd == PRC_MSGSIZE) {
    247   1.36    itojun 			int valid = 0;
    248   1.40    itojun 
    249   1.34    itojun 			/*
    250   1.34    itojun 			 * Check to see if we have a valid UDP socket
    251   1.34    itojun 			 * corresponding to the address in the ICMPv6 message
    252   1.34    itojun 			 * payload.
    253   1.34    itojun 			 */
    254   1.58    itojun 			if (in6_pcblookup_connect(&udbtable, &sa6->sin6_addr,
    255   1.68  christos 			    uh.uh_dport, (const struct in6_addr *)&sa6_src->sin6_addr,
    256   1.89    dyoung 						  uh.uh_sport, 0, 0))
    257   1.36    itojun 				valid++;
    258   1.34    itojun #if 0
    259   1.34    itojun 			/*
    260   1.34    itojun 			 * As the use of sendto(2) is fairly popular,
    261   1.34    itojun 			 * we may want to allow non-connected pcb too.
    262   1.34    itojun 			 * But it could be too weak against attacks...
    263   1.34    itojun 			 * We should at least check if the local address (= s)
    264   1.34    itojun 			 * is really ours.
    265   1.34    itojun 			 */
    266   1.58    itojun 			else if (in6_pcblookup_bind(&udbtable, &sa6->sin6_addr,
    267   1.58    itojun 			    uh.uh_dport, 0))
    268   1.36    itojun 				valid++;
    269   1.34    itojun #endif
    270   1.34    itojun 
    271   1.34    itojun 			/*
    272   1.40    itojun 			 * Depending on the value of "valid" and routing table
    273   1.40    itojun 			 * size (mtudisc_{hi,lo}wat), we will:
    274   1.46    itojun 			 * - recalculate the new MTU and create the
    275   1.40    itojun 			 *   corresponding routing entry, or
    276   1.40    itojun 			 * - ignore the MTU change notification.
    277   1.34    itojun 			 */
    278   1.36    itojun 			icmp6_mtudisc_update((struct ip6ctlparam *)d, valid);
    279   1.34    itojun 
    280   1.40    itojun 			/*
    281   1.74    rpaulo 			 * regardless of if we called
    282   1.74    rpaulo 			 * icmp6_mtudisc_update(), we need to call
    283   1.74    rpaulo 			 * in6_pcbnotify(), to notify path MTU change
    284   1.74    rpaulo 			 * to the userland (RFC3542), because some
    285   1.74    rpaulo 			 * unconnected sockets may share the same
    286   1.40    itojun 			 * destination and want to know the path MTU.
    287   1.40    itojun 			 */
    288   1.34    itojun 		}
    289   1.34    itojun 
    290   1.58    itojun 		(void) in6_pcbnotify(&udbtable, sa, uh.uh_dport,
    291   1.68  christos 		    (const struct sockaddr *)sa6_src, uh.uh_sport, cmd, cmdarg,
    292   1.40    itojun 		    notify);
    293    1.2    itojun 	} else {
    294   1.58    itojun 		(void) in6_pcbnotify(&udbtable, sa, 0,
    295   1.68  christos 		    (const struct sockaddr *)sa6_src, 0, cmd, cmdarg, notify);
    296    1.2    itojun 	}
    297   1.84        ad 	return NULL;
    298    1.2    itojun }
    299    1.2    itojun 
    300   1.90  christos int
    301   1.90  christos udp6_ctloutput(int op, struct socket *so, struct sockopt *sopt)
    302   1.90  christos {
    303   1.90  christos 	int s;
    304   1.90  christos 	int error = 0;
    305   1.90  christos 	int family;
    306   1.90  christos 
    307   1.90  christos 	family = so->so_proto->pr_domain->dom_family;
    308   1.90  christos 
    309   1.90  christos 	s = splsoftnet();
    310   1.90  christos 	switch (family) {
    311   1.90  christos #ifdef INET
    312   1.90  christos 	case PF_INET:
    313   1.90  christos 		if (sopt->sopt_level != IPPROTO_UDP) {
    314   1.90  christos 			error = ip_ctloutput(op, so, sopt);
    315   1.90  christos 			goto end;
    316   1.90  christos 		}
    317   1.90  christos 		break;
    318   1.90  christos #endif
    319   1.90  christos #ifdef INET6
    320   1.90  christos 	case PF_INET6:
    321   1.90  christos 		if (sopt->sopt_level != IPPROTO_UDP) {
    322   1.90  christos 			error = ip6_ctloutput(op, so, sopt);
    323   1.90  christos 			goto end;
    324   1.90  christos 		}
    325   1.90  christos 		break;
    326   1.90  christos #endif
    327   1.90  christos 	default:
    328   1.90  christos 		error = EAFNOSUPPORT;
    329   1.90  christos 		goto end;
    330   1.90  christos 	}
    331   1.91  christos 	error = EINVAL;
    332   1.90  christos 
    333   1.90  christos end:
    334   1.90  christos 	splx(s);
    335   1.90  christos 	return error;
    336   1.90  christos }
    337   1.90  christos 
    338   1.97     rmind static void
    339   1.97     rmind udp6_sendup(struct mbuf *m, int off /* offset of data portion */,
    340   1.97     rmind 	struct sockaddr *src, struct socket *so)
    341   1.97     rmind {
    342   1.97     rmind 	struct mbuf *opts = NULL;
    343   1.97     rmind 	struct mbuf *n;
    344   1.97     rmind 	struct in6pcb *in6p = NULL;
    345   1.97     rmind 
    346   1.97     rmind 	if (!so)
    347   1.97     rmind 		return;
    348   1.97     rmind 	if (so->so_proto->pr_domain->dom_family != AF_INET6)
    349   1.97     rmind 		return;
    350   1.97     rmind 	in6p = sotoin6pcb(so);
    351   1.97     rmind 
    352   1.97     rmind #if defined(IPSEC)
    353   1.97     rmind 	/* check AH/ESP integrity. */
    354   1.98  christos 	if (ipsec_used && so != NULL && ipsec6_in_reject_so(m, so)) {
    355   1.97     rmind 		IPSEC6_STATINC(IPSEC_STAT_IN_POLVIO);
    356   1.97     rmind 		if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)
    357   1.97     rmind 			icmp6_error(n, ICMP6_DST_UNREACH,
    358   1.97     rmind 			    ICMP6_DST_UNREACH_ADMIN, 0);
    359   1.97     rmind 		return;
    360   1.97     rmind 	}
    361   1.97     rmind #endif /*IPSEC*/
    362   1.97     rmind 
    363   1.97     rmind 	if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {
    364   1.97     rmind 		if (in6p && (in6p->in6p_flags & IN6P_CONTROLOPTS
    365   1.97     rmind #ifdef SO_OTIMESTAMP
    366   1.97     rmind 		    || in6p->in6p_socket->so_options & SO_OTIMESTAMP
    367   1.97     rmind #endif
    368   1.97     rmind 		    || in6p->in6p_socket->so_options & SO_TIMESTAMP)) {
    369   1.97     rmind 			struct ip6_hdr *ip6 = mtod(n, struct ip6_hdr *);
    370   1.97     rmind 			ip6_savecontrol(in6p, &opts, ip6, n);
    371   1.97     rmind 		}
    372   1.97     rmind 
    373   1.97     rmind 		m_adj(n, off);
    374   1.97     rmind 		if (sbappendaddr(&so->so_rcv, src, n, opts) == 0) {
    375   1.97     rmind 			m_freem(n);
    376   1.97     rmind 			if (opts)
    377   1.97     rmind 				m_freem(opts);
    378   1.97     rmind 			so->so_rcv.sb_overflowed++;
    379   1.97     rmind 			UDP6_STATINC(UDP6_STAT_FULLSOCK);
    380   1.97     rmind 		} else
    381   1.97     rmind 			sorwakeup(so);
    382   1.97     rmind 	}
    383   1.97     rmind }
    384   1.97     rmind 
    385   1.97     rmind int
    386   1.97     rmind udp6_realinput(int af, struct sockaddr_in6 *src, struct sockaddr_in6 *dst,
    387   1.97     rmind 	struct mbuf *m, int off)
    388   1.97     rmind {
    389   1.97     rmind 	u_int16_t sport, dport;
    390   1.97     rmind 	int rcvcnt;
    391   1.97     rmind 	struct in6_addr src6, *dst6;
    392   1.97     rmind 	const struct in_addr *dst4;
    393   1.97     rmind 	struct inpcb_hdr *inph;
    394   1.97     rmind 	struct in6pcb *in6p;
    395   1.97     rmind 
    396   1.97     rmind 	rcvcnt = 0;
    397   1.97     rmind 	off += sizeof(struct udphdr);	/* now, offset of payload */
    398   1.97     rmind 
    399   1.97     rmind 	if (af != AF_INET && af != AF_INET6)
    400   1.97     rmind 		goto bad;
    401   1.97     rmind 	if (src->sin6_family != AF_INET6 || dst->sin6_family != AF_INET6)
    402   1.97     rmind 		goto bad;
    403   1.97     rmind 
    404   1.97     rmind 	src6 = src->sin6_addr;
    405   1.97     rmind 	if (sa6_recoverscope(src) != 0) {
    406   1.97     rmind 		/* XXX: should be impossible. */
    407   1.97     rmind 		goto bad;
    408   1.97     rmind 	}
    409   1.97     rmind 	sport = src->sin6_port;
    410   1.97     rmind 
    411   1.97     rmind 	dport = dst->sin6_port;
    412   1.97     rmind 	dst4 = (struct in_addr *)&dst->sin6_addr.s6_addr[12];
    413   1.97     rmind 	dst6 = &dst->sin6_addr;
    414   1.97     rmind 
    415   1.97     rmind 	if (IN6_IS_ADDR_MULTICAST(dst6) ||
    416   1.97     rmind 	    (af == AF_INET && IN_MULTICAST(dst4->s_addr))) {
    417   1.97     rmind 		/*
    418   1.97     rmind 		 * Deliver a multicast or broadcast datagram to *all* sockets
    419   1.97     rmind 		 * for which the local and remote addresses and ports match
    420   1.97     rmind 		 * those of the incoming datagram.  This allows more than
    421   1.97     rmind 		 * one process to receive multi/broadcasts on the same port.
    422   1.97     rmind 		 * (This really ought to be done for unicast datagrams as
    423   1.97     rmind 		 * well, but that would cause problems with existing
    424   1.97     rmind 		 * applications that open both address-specific sockets and
    425   1.97     rmind 		 * a wildcard socket listening to the same port -- they would
    426   1.97     rmind 		 * end up receiving duplicates of every unicast datagram.
    427   1.97     rmind 		 * Those applications open the multiple sockets to overcome an
    428   1.97     rmind 		 * inadequacy of the UDP socket interface, but for backwards
    429   1.97     rmind 		 * compatibility we avoid the problem here rather than
    430   1.97     rmind 		 * fixing the interface.  Maybe 4.5BSD will remedy this?)
    431   1.97     rmind 		 */
    432   1.97     rmind 
    433   1.97     rmind 		/*
    434   1.97     rmind 		 * KAME note: traditionally we dropped udpiphdr from mbuf here.
    435   1.97     rmind 		 * we need udpiphdr for IPsec processing so we do that later.
    436   1.97     rmind 		 */
    437   1.97     rmind 		/*
    438   1.97     rmind 		 * Locate pcb(s) for datagram.
    439   1.97     rmind 		 */
    440   1.97     rmind 		TAILQ_FOREACH(inph, &udbtable.inpt_queue, inph_queue) {
    441   1.97     rmind 			in6p = (struct in6pcb *)inph;
    442   1.97     rmind 			if (in6p->in6p_af != AF_INET6)
    443   1.97     rmind 				continue;
    444   1.97     rmind 
    445   1.97     rmind 			if (in6p->in6p_lport != dport)
    446   1.97     rmind 				continue;
    447   1.97     rmind 			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
    448   1.97     rmind 				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr,
    449   1.97     rmind 				    dst6))
    450   1.97     rmind 					continue;
    451   1.97     rmind 			} else {
    452   1.97     rmind 				if (IN6_IS_ADDR_V4MAPPED(dst6) &&
    453   1.97     rmind 				    (in6p->in6p_flags & IN6P_IPV6_V6ONLY))
    454   1.97     rmind 					continue;
    455   1.97     rmind 			}
    456   1.97     rmind 			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
    457   1.97     rmind 				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr,
    458   1.97     rmind 				    &src6) || in6p->in6p_fport != sport)
    459   1.97     rmind 					continue;
    460   1.97     rmind 			} else {
    461   1.97     rmind 				if (IN6_IS_ADDR_V4MAPPED(&src6) &&
    462   1.97     rmind 				    (in6p->in6p_flags & IN6P_IPV6_V6ONLY))
    463   1.97     rmind 					continue;
    464   1.97     rmind 			}
    465   1.97     rmind 
    466   1.97     rmind 			udp6_sendup(m, off, (struct sockaddr *)src,
    467   1.97     rmind 				in6p->in6p_socket);
    468   1.97     rmind 			rcvcnt++;
    469   1.97     rmind 
    470   1.97     rmind 			/*
    471   1.97     rmind 			 * Don't look for additional matches if this one does
    472   1.97     rmind 			 * not have either the SO_REUSEPORT or SO_REUSEADDR
    473   1.97     rmind 			 * socket options set.  This heuristic avoids searching
    474   1.97     rmind 			 * through all pcbs in the common case of a non-shared
    475   1.97     rmind 			 * port.  It assumes that an application will never
    476   1.97     rmind 			 * clear these options after setting them.
    477   1.97     rmind 			 */
    478   1.97     rmind 			if ((in6p->in6p_socket->so_options &
    479   1.97     rmind 			    (SO_REUSEPORT|SO_REUSEADDR)) == 0)
    480   1.97     rmind 				break;
    481   1.97     rmind 		}
    482   1.97     rmind 	} else {
    483   1.97     rmind 		/*
    484   1.97     rmind 		 * Locate pcb for datagram.
    485   1.97     rmind 		 */
    486   1.97     rmind 		in6p = in6_pcblookup_connect(&udbtable, &src6, sport, dst6,
    487   1.97     rmind 					     dport, 0, 0);
    488   1.97     rmind 		if (in6p == 0) {
    489   1.97     rmind 			UDP_STATINC(UDP_STAT_PCBHASHMISS);
    490   1.97     rmind 			in6p = in6_pcblookup_bind(&udbtable, dst6, dport, 0);
    491   1.97     rmind 			if (in6p == 0)
    492   1.97     rmind 				return rcvcnt;
    493   1.97     rmind 		}
    494   1.97     rmind 
    495   1.97     rmind 		udp6_sendup(m, off, (struct sockaddr *)src, in6p->in6p_socket);
    496   1.97     rmind 		rcvcnt++;
    497   1.97     rmind 	}
    498   1.97     rmind 
    499   1.97     rmind bad:
    500   1.97     rmind 	return rcvcnt;
    501   1.97     rmind }
    502   1.97     rmind 
    503   1.97     rmind int
    504   1.97     rmind udp6_input_checksum(struct mbuf *m, const struct udphdr *uh, int off, int len)
    505   1.97     rmind {
    506   1.97     rmind 
    507   1.97     rmind 	/*
    508   1.97     rmind 	 * XXX it's better to record and check if this mbuf is
    509   1.97     rmind 	 * already checked.
    510   1.97     rmind 	 */
    511   1.97     rmind 
    512   1.97     rmind 	if (__predict_false((m->m_flags & M_LOOP) && !udp_do_loopback_cksum)) {
    513   1.97     rmind 		goto good;
    514   1.97     rmind 	}
    515   1.97     rmind 	if (uh->uh_sum == 0) {
    516   1.97     rmind 		UDP6_STATINC(UDP6_STAT_NOSUM);
    517   1.97     rmind 		goto bad;
    518   1.97     rmind 	}
    519   1.97     rmind 
    520   1.97     rmind 	switch (m->m_pkthdr.csum_flags &
    521   1.97     rmind 	    ((m->m_pkthdr.rcvif->if_csum_flags_rx & M_CSUM_UDPv6) |
    522   1.97     rmind 	    M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
    523   1.97     rmind 	case M_CSUM_UDPv6|M_CSUM_TCP_UDP_BAD:
    524   1.97     rmind 		UDP_CSUM_COUNTER_INCR(&udp6_hwcsum_bad);
    525   1.97     rmind 		UDP6_STATINC(UDP6_STAT_BADSUM);
    526   1.97     rmind 		goto bad;
    527   1.97     rmind 
    528   1.97     rmind #if 0 /* notyet */
    529   1.97     rmind 	case M_CSUM_UDPv6|M_CSUM_DATA:
    530   1.97     rmind #endif
    531   1.97     rmind 
    532   1.97     rmind 	case M_CSUM_UDPv6:
    533   1.97     rmind 		/* Checksum was okay. */
    534   1.97     rmind 		UDP_CSUM_COUNTER_INCR(&udp6_hwcsum_ok);
    535   1.97     rmind 		break;
    536   1.97     rmind 
    537   1.97     rmind 	default:
    538   1.97     rmind 		/*
    539   1.97     rmind 		 * Need to compute it ourselves.  Maybe skip checksum
    540   1.97     rmind 		 * on loopback interfaces.
    541   1.97     rmind 		 */
    542   1.97     rmind 		UDP_CSUM_COUNTER_INCR(&udp6_swcsum);
    543   1.97     rmind 		if (in6_cksum(m, IPPROTO_UDP, off, len) != 0) {
    544   1.97     rmind 			UDP6_STATINC(UDP6_STAT_BADSUM);
    545   1.97     rmind 			goto bad;
    546   1.97     rmind 		}
    547   1.97     rmind 	}
    548   1.97     rmind 
    549   1.97     rmind good:
    550   1.97     rmind 	return 0;
    551   1.97     rmind bad:
    552   1.97     rmind 	return -1;
    553   1.97     rmind }
    554   1.97     rmind 
    555   1.97     rmind int
    556   1.97     rmind udp6_input(struct mbuf **mp, int *offp, int proto)
    557   1.97     rmind {
    558   1.97     rmind 	struct mbuf *m = *mp;
    559   1.97     rmind 	int off = *offp;
    560   1.97     rmind 	struct sockaddr_in6 src, dst;
    561   1.97     rmind 	struct ip6_hdr *ip6;
    562   1.97     rmind 	struct udphdr *uh;
    563   1.97     rmind 	u_int32_t plen, ulen;
    564   1.97     rmind 
    565   1.97     rmind 	ip6 = mtod(m, struct ip6_hdr *);
    566   1.90  christos 
    567   1.97     rmind #if defined(NFAITH) && 0 < NFAITH
    568   1.97     rmind 	if (faithprefix(&ip6->ip6_dst)) {
    569   1.97     rmind 		/* send icmp6 host unreach? */
    570   1.97     rmind 		m_freem(m);
    571   1.97     rmind 		return IPPROTO_DONE;
    572   1.97     rmind 	}
    573   1.97     rmind #endif
    574   1.97     rmind 
    575   1.97     rmind 	UDP6_STATINC(UDP6_STAT_IPACKETS);
    576   1.97     rmind 
    577   1.97     rmind 	/* check for jumbogram is done in ip6_input.  we can trust pkthdr.len */
    578   1.97     rmind 	plen = m->m_pkthdr.len - off;
    579   1.97     rmind 	IP6_EXTHDR_GET(uh, struct udphdr *, m, off, sizeof(struct udphdr));
    580   1.97     rmind 	if (uh == NULL) {
    581   1.97     rmind 		IP6_STATINC(IP6_STAT_TOOSHORT);
    582   1.97     rmind 		return IPPROTO_DONE;
    583   1.97     rmind 	}
    584   1.97     rmind 	KASSERT(UDP_HDR_ALIGNED_P(uh));
    585   1.97     rmind 	ulen = ntohs((u_short)uh->uh_ulen);
    586   1.97     rmind 	/*
    587   1.97     rmind 	 * RFC2675 section 4: jumbograms will have 0 in the UDP header field,
    588   1.97     rmind 	 * iff payload length > 0xffff.
    589   1.97     rmind 	 */
    590   1.97     rmind 	if (ulen == 0 && plen > 0xffff)
    591   1.97     rmind 		ulen = plen;
    592   1.97     rmind 
    593   1.97     rmind 	if (plen != ulen) {
    594   1.97     rmind 		UDP6_STATINC(UDP6_STAT_BADLEN);
    595   1.97     rmind 		goto bad;
    596   1.97     rmind 	}
    597   1.97     rmind 
    598   1.97     rmind 	/* destination port of 0 is illegal, based on RFC768. */
    599   1.97     rmind 	if (uh->uh_dport == 0)
    600   1.97     rmind 		goto bad;
    601   1.97     rmind 
    602   1.97     rmind 	/* Be proactive about malicious use of IPv4 mapped address */
    603   1.97     rmind 	if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
    604   1.97     rmind 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
    605   1.97     rmind 		/* XXX stat */
    606   1.97     rmind 		goto bad;
    607   1.97     rmind 	}
    608   1.97     rmind 
    609   1.97     rmind 	/*
    610   1.97     rmind 	 * Checksum extended UDP header and data.  Maybe skip checksum
    611   1.97     rmind 	 * on loopback interfaces.
    612   1.97     rmind 	 */
    613   1.97     rmind 	if (udp6_input_checksum(m, uh, off, ulen))
    614   1.97     rmind 		goto bad;
    615   1.97     rmind 
    616   1.97     rmind 	/*
    617   1.97     rmind 	 * Construct source and dst sockaddrs.
    618   1.97     rmind 	 */
    619   1.97     rmind 	memset(&src, 0, sizeof(src));
    620   1.97     rmind 	src.sin6_family = AF_INET6;
    621   1.97     rmind 	src.sin6_len = sizeof(struct sockaddr_in6);
    622   1.97     rmind 	src.sin6_addr = ip6->ip6_src;
    623   1.97     rmind 	src.sin6_port = uh->uh_sport;
    624   1.97     rmind 	memset(&dst, 0, sizeof(dst));
    625   1.97     rmind 	dst.sin6_family = AF_INET6;
    626   1.97     rmind 	dst.sin6_len = sizeof(struct sockaddr_in6);
    627   1.97     rmind 	dst.sin6_addr = ip6->ip6_dst;
    628   1.97     rmind 	dst.sin6_port = uh->uh_dport;
    629   1.97     rmind 
    630   1.97     rmind 	if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {
    631   1.97     rmind 		if (m->m_flags & M_MCAST) {
    632   1.97     rmind 			UDP6_STATINC(UDP6_STAT_NOPORTMCAST);
    633   1.97     rmind 			goto bad;
    634   1.97     rmind 		}
    635   1.97     rmind 		UDP6_STATINC(UDP6_STAT_NOPORT);
    636   1.97     rmind 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
    637   1.97     rmind 		m = NULL;
    638   1.97     rmind 	}
    639   1.97     rmind 
    640   1.97     rmind bad:
    641   1.97     rmind 	if (m)
    642   1.97     rmind 		m_freem(m);
    643   1.97     rmind 	return IPPROTO_DONE;
    644   1.97     rmind }
    645    1.2    itojun 
    646   1.95     rmind static int
    647   1.95     rmind udp6_attach(struct socket *so, int proto)
    648   1.95     rmind {
    649   1.95     rmind 	struct in6pcb *in6p;
    650   1.95     rmind 	int s, error;
    651   1.95     rmind 
    652   1.95     rmind 	KASSERT(sotoin6pcb(so) == NULL);
    653   1.95     rmind 	sosetlock(so);
    654   1.95     rmind 
    655   1.95     rmind 	/*
    656   1.95     rmind 	 * MAPPED_ADDR implementation spec:
    657   1.95     rmind 	 *  Always attach for IPv6, and only when necessary for IPv4.
    658   1.95     rmind 	 */
    659   1.95     rmind 	s = splsoftnet();
    660   1.95     rmind 	error = in6_pcballoc(so, &udbtable);
    661   1.95     rmind 	splx(s);
    662   1.95     rmind 	if (error) {
    663   1.95     rmind 		return error;
    664   1.95     rmind 	}
    665   1.95     rmind 	error = soreserve(so, udp6_sendspace, udp6_recvspace);
    666   1.95     rmind 	if (error) {
    667   1.95     rmind 		return error;
    668   1.95     rmind 	}
    669   1.95     rmind 	in6p = sotoin6pcb(so);
    670   1.95     rmind 	in6p->in6p_cksum = -1;	/* just to be sure */
    671   1.95     rmind 
    672   1.95     rmind 	KASSERT(solocked(so));
    673   1.95     rmind 	return 0;
    674   1.95     rmind }
    675   1.95     rmind 
    676   1.95     rmind static void
    677   1.95     rmind udp6_detach(struct socket *so)
    678   1.95     rmind {
    679   1.95     rmind 	struct in6pcb *in6p = sotoin6pcb(so);
    680   1.95     rmind 	int s;
    681   1.95     rmind 
    682   1.95     rmind 	KASSERT(solocked(so));
    683   1.95     rmind 	KASSERT(in6p != NULL);
    684   1.95     rmind 
    685   1.95     rmind 	s = splsoftnet();
    686   1.95     rmind 	in6_pcbdetach(in6p);
    687   1.95     rmind 	splx(s);
    688   1.95     rmind }
    689   1.95     rmind 
    690   1.99       rtr static int
    691  1.107       rtr udp6_accept(struct socket *so, struct mbuf *nam)
    692  1.107       rtr {
    693  1.107       rtr 	KASSERT(solocked(so));
    694  1.107       rtr 
    695  1.107       rtr 	return EOPNOTSUPP;
    696  1.107       rtr }
    697  1.107       rtr 
    698  1.107       rtr static int
    699  1.112       rtr udp6_bind(struct socket *so, struct mbuf *nam, struct lwp *l)
    700  1.109       rtr {
    701  1.109       rtr 	struct in6pcb *in6p = sotoin6pcb(so);
    702  1.109       rtr 	int error = 0;
    703  1.109       rtr 	int s;
    704  1.109       rtr 
    705  1.109       rtr 	KASSERT(solocked(so));
    706  1.109       rtr 	KASSERT(in6p != NULL);
    707  1.109       rtr 
    708  1.109       rtr 	s = splsoftnet();
    709  1.112       rtr 	error = in6_pcbbind(in6p, nam, l);
    710  1.109       rtr 	splx(s);
    711  1.109       rtr 	return error;
    712  1.109       rtr }
    713  1.109       rtr 
    714  1.109       rtr static int
    715  1.112       rtr udp6_listen(struct socket *so, struct lwp *l)
    716  1.109       rtr {
    717  1.109       rtr 	KASSERT(solocked(so));
    718  1.109       rtr 
    719  1.109       rtr 	return EOPNOTSUPP;
    720  1.109       rtr }
    721  1.109       rtr 
    722  1.109       rtr static int
    723  1.112       rtr udp6_connect(struct socket *so, struct mbuf *nam, struct lwp *l)
    724  1.110       rtr {
    725  1.110       rtr 	struct in6pcb *in6p = sotoin6pcb(so);
    726  1.110       rtr 	int error = 0;
    727  1.110       rtr 	int s;
    728  1.110       rtr 
    729  1.110       rtr 	KASSERT(solocked(so));
    730  1.110       rtr 	KASSERT(in6p != NULL);
    731  1.110       rtr 
    732  1.110       rtr 	if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr))
    733  1.110       rtr 		return EISCONN;
    734  1.110       rtr 	s = splsoftnet();
    735  1.112       rtr 	error = in6_pcbconnect(in6p, nam, l);
    736  1.110       rtr 	splx(s);
    737  1.110       rtr 	if (error == 0)
    738  1.110       rtr 		soisconnected(so);
    739  1.110       rtr 
    740  1.110       rtr 	return error;
    741  1.110       rtr }
    742  1.110       rtr 
    743  1.110       rtr static int
    744  1.115       rtr udp6_connect2(struct socket *so, struct socket *so2)
    745  1.115       rtr {
    746  1.115       rtr 	KASSERT(solocked(so));
    747  1.115       rtr 
    748  1.115       rtr 	return EOPNOTSUPP;
    749  1.115       rtr }
    750  1.115       rtr 
    751  1.115       rtr static int
    752  1.111       rtr udp6_disconnect(struct socket *so)
    753  1.111       rtr {
    754  1.111       rtr 	struct in6pcb *in6p = sotoin6pcb(so);
    755  1.111       rtr 	int s;
    756  1.111       rtr 
    757  1.111       rtr 	KASSERT(solocked(so));
    758  1.111       rtr 	KASSERT(in6p != NULL);
    759  1.111       rtr 
    760  1.111       rtr 	if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr))
    761  1.111       rtr 		return ENOTCONN;
    762  1.111       rtr 
    763  1.111       rtr 	s = splsoftnet();
    764  1.111       rtr 	in6_pcbdisconnect(in6p);
    765  1.111       rtr 	memset((void *)&in6p->in6p_laddr, 0, sizeof(in6p->in6p_laddr));
    766  1.111       rtr 	splx(s);
    767  1.111       rtr 
    768  1.111       rtr 	so->so_state &= ~SS_ISCONNECTED;	/* XXX */
    769  1.111       rtr 	in6_pcbstate(in6p, IN6P_BOUND);		/* XXX */
    770  1.111       rtr 	return 0;
    771  1.111       rtr }
    772  1.111       rtr 
    773  1.111       rtr static int
    774  1.111       rtr udp6_shutdown(struct socket *so)
    775  1.111       rtr {
    776  1.111       rtr 	int s;
    777  1.111       rtr 
    778  1.111       rtr 	s = splsoftnet();
    779  1.111       rtr 	socantsendmore(so);
    780  1.111       rtr 	splx(s);
    781  1.111       rtr 
    782  1.111       rtr 	return 0;
    783  1.111       rtr }
    784  1.111       rtr 
    785  1.111       rtr static int
    786  1.111       rtr udp6_abort(struct socket *so)
    787  1.111       rtr {
    788  1.111       rtr 	int s;
    789  1.111       rtr 
    790  1.111       rtr 	KASSERT(solocked(so));
    791  1.111       rtr 	KASSERT(sotoin6pcb(so) != NULL);
    792  1.111       rtr 
    793  1.111       rtr 	s = splsoftnet();
    794  1.111       rtr 	soisdisconnected(so);
    795  1.111       rtr 	in6_pcbdetach(sotoin6pcb(so));
    796  1.111       rtr 	splx(s);
    797  1.111       rtr 
    798  1.111       rtr 	return 0;
    799  1.111       rtr }
    800  1.111       rtr 
    801  1.111       rtr static int
    802  1.101       rtr udp6_ioctl(struct socket *so, u_long cmd, void *addr6, struct ifnet *ifp)
    803    1.2    itojun {
    804   1.27    itojun 	/*
    805    1.2    itojun 	 * MAPPED_ADDR implementation info:
    806    1.2    itojun 	 *  Mapped addr support for PRU_CONTROL is not necessary.
    807    1.2    itojun 	 *  Because typical user of PRU_CONTROL is such as ifconfig,
    808    1.2    itojun 	 *  and they don't associate any addr to their socket.  Then
    809    1.2    itojun 	 *  socket family is only hint about the PRU_CONTROL'ed address
    810    1.2    itojun 	 *  family, especially when getting addrs from kernel.
    811    1.2    itojun 	 *  So AF_INET socket need to be used to control AF_INET addrs,
    812    1.2    itojun 	 *  and AF_INET6 socket for AF_INET6 addrs.
    813    1.2    itojun 	 */
    814  1.101       rtr 	return in6_control(so, cmd, addr6, ifp);
    815   1.99       rtr }
    816   1.99       rtr 
    817  1.102       rtr static int
    818  1.102       rtr udp6_stat(struct socket *so, struct stat *ub)
    819  1.102       rtr {
    820  1.105       rtr 	KASSERT(solocked(so));
    821  1.105       rtr 
    822  1.104       rtr 	/* stat: don't bother with a blocksize */
    823  1.104       rtr 	return 0;
    824  1.102       rtr }
    825  1.102       rtr 
    826  1.106       rtr static int
    827  1.106       rtr udp6_peeraddr(struct socket *so, struct mbuf *nam)
    828  1.106       rtr {
    829  1.106       rtr 	KASSERT(solocked(so));
    830  1.106       rtr 	KASSERT(sotoin6pcb(so) != NULL);
    831  1.106       rtr 	KASSERT(nam != NULL);
    832  1.106       rtr 
    833  1.106       rtr 	in6_setpeeraddr(sotoin6pcb(so), nam);
    834  1.106       rtr 	return 0;
    835  1.106       rtr }
    836  1.106       rtr 
    837  1.106       rtr static int
    838  1.106       rtr udp6_sockaddr(struct socket *so, struct mbuf *nam)
    839  1.106       rtr {
    840  1.106       rtr 	KASSERT(solocked(so));
    841  1.106       rtr 	KASSERT(sotoin6pcb(so) != NULL);
    842  1.106       rtr 	KASSERT(nam != NULL);
    843  1.106       rtr 
    844  1.106       rtr 	in6_setsockaddr(sotoin6pcb(so), nam);
    845  1.106       rtr 	return 0;
    846  1.106       rtr }
    847  1.106       rtr 
    848  1.108       rtr static int
    849  1.114       rtr udp6_rcvd(struct socket *so, int flags, struct lwp *l)
    850  1.114       rtr {
    851  1.114       rtr 	KASSERT(solocked(so));
    852  1.114       rtr 
    853  1.114       rtr 	return EOPNOTSUPP;
    854  1.114       rtr }
    855  1.114       rtr 
    856  1.114       rtr static int
    857  1.108       rtr udp6_recvoob(struct socket *so, struct mbuf *m, int flags)
    858  1.108       rtr {
    859  1.108       rtr 	KASSERT(solocked(so));
    860  1.108       rtr 
    861  1.108       rtr 	return EOPNOTSUPP;
    862  1.108       rtr }
    863  1.108       rtr 
    864  1.108       rtr static int
    865  1.113       rtr udp6_send(struct socket *so, struct mbuf *m, struct mbuf *nam,
    866  1.113       rtr     struct mbuf *control, struct lwp *l)
    867  1.113       rtr {
    868  1.113       rtr 	struct in6pcb *in6p = sotoin6pcb(so);
    869  1.113       rtr 	int error = 0;
    870  1.113       rtr 	int s;
    871  1.113       rtr 
    872  1.113       rtr 	KASSERT(solocked(so));
    873  1.113       rtr 	KASSERT(in6p != NULL);
    874  1.113       rtr 	KASSERT(m != NULL);
    875  1.113       rtr 
    876  1.113       rtr 	s = splsoftnet();
    877  1.113       rtr 	error = udp6_output(in6p, m, nam, control, l);
    878  1.113       rtr 	splx(s);
    879  1.113       rtr 
    880  1.113       rtr 	return error;
    881  1.113       rtr }
    882  1.113       rtr 
    883  1.113       rtr static int
    884  1.108       rtr udp6_sendoob(struct socket *so, struct mbuf *m, struct mbuf *control)
    885  1.108       rtr {
    886  1.108       rtr 	KASSERT(solocked(so));
    887  1.108       rtr 
    888  1.108       rtr 	if (m)
    889  1.108       rtr 		m_freem(m);
    890  1.108       rtr 	if (control)
    891  1.108       rtr 		m_freem(control);
    892  1.108       rtr 
    893  1.108       rtr 	return EOPNOTSUPP;
    894  1.108       rtr }
    895  1.108       rtr 
    896  1.115       rtr static int
    897  1.115       rtr udp6_purgeif(struct socket *so, struct ifnet *ifp)
    898  1.115       rtr {
    899  1.115       rtr 
    900  1.115       rtr 	mutex_enter(softnet_lock);
    901  1.115       rtr 	in6_pcbpurgeif0(&udbtable, ifp);
    902  1.115       rtr 	in6_purgeif(ifp);
    903  1.115       rtr 	in6_pcbpurgeif(&udbtable, ifp);
    904  1.115       rtr 	mutex_exit(softnet_lock);
    905  1.115       rtr 
    906  1.115       rtr 	return 0;
    907  1.115       rtr }
    908  1.115       rtr 
    909   1.99       rtr int
    910   1.99       rtr udp6_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr6,
    911   1.99       rtr     struct mbuf *control, struct lwp *l)
    912   1.99       rtr {
    913  1.113       rtr 	int error = 0;
    914   1.99       rtr 
    915   1.99       rtr 	KASSERT(req != PRU_ATTACH);
    916   1.99       rtr 	KASSERT(req != PRU_DETACH);
    917  1.107       rtr 	KASSERT(req != PRU_ACCEPT);
    918  1.109       rtr 	KASSERT(req != PRU_BIND);
    919  1.109       rtr 	KASSERT(req != PRU_LISTEN);
    920  1.110       rtr 	KASSERT(req != PRU_CONNECT);
    921  1.115       rtr 	KASSERT(req != PRU_CONNECT2);
    922  1.111       rtr 	KASSERT(req != PRU_DISCONNECT);
    923  1.111       rtr 	KASSERT(req != PRU_SHUTDOWN);
    924  1.111       rtr 	KASSERT(req != PRU_ABORT);
    925   1.99       rtr 	KASSERT(req != PRU_CONTROL);
    926  1.102       rtr 	KASSERT(req != PRU_SENSE);
    927  1.106       rtr 	KASSERT(req != PRU_PEERADDR);
    928  1.106       rtr 	KASSERT(req != PRU_SOCKADDR);
    929  1.114       rtr 	KASSERT(req != PRU_RCVD);
    930  1.108       rtr 	KASSERT(req != PRU_RCVOOB);
    931  1.113       rtr 	KASSERT(req != PRU_SEND);
    932  1.108       rtr 	KASSERT(req != PRU_SENDOOB);
    933  1.115       rtr 	KASSERT(req != PRU_PURGEIF);
    934   1.99       rtr 
    935  1.115       rtr 	if (sotoin6pcb(so) == NULL) {
    936    1.2    itojun 		error = EINVAL;
    937    1.2    itojun 		goto release;
    938    1.2    itojun 	}
    939    1.2    itojun 
    940    1.2    itojun 	switch (req) {
    941    1.2    itojun 	case PRU_FASTTIMO:
    942    1.2    itojun 	case PRU_SLOWTIMO:
    943    1.2    itojun 	case PRU_PROTORCV:
    944    1.2    itojun 	case PRU_PROTOSEND:
    945    1.2    itojun 		error = EOPNOTSUPP;
    946    1.2    itojun 		break;
    947    1.2    itojun 
    948    1.2    itojun 	default:
    949    1.2    itojun 		panic("udp6_usrreq");
    950    1.2    itojun 	}
    951    1.2    itojun 
    952    1.2    itojun release:
    953   1.80    dyoung 	if (control != NULL)
    954    1.2    itojun 		m_freem(control);
    955   1.80    dyoung 	if (m != NULL)
    956    1.2    itojun 		m_freem(m);
    957   1.80    dyoung 	return error;
    958    1.2    itojun }
    959    1.2    itojun 
    960   1.82   thorpej static int
    961   1.82   thorpej sysctl_net_inet6_udp6_stats(SYSCTLFN_ARGS)
    962   1.82   thorpej {
    963   1.82   thorpej 
    964   1.86   thorpej 	return (NETSTAT_SYSCTL(udp6stat_percpu, UDP6_NSTATS));
    965   1.82   thorpej }
    966   1.82   thorpej 
    967   1.88     pooka static void
    968   1.88     pooka sysctl_net_inet6_udp6_setup(struct sysctllog **clog)
    969    1.2    itojun {
    970   1.93     pooka 
    971   1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    972   1.62    atatat 		       CTLFLAG_PERMANENT,
    973   1.61    atatat 		       CTLTYPE_NODE, "inet6", NULL,
    974   1.61    atatat 		       NULL, 0, NULL, 0,
    975   1.61    atatat 		       CTL_NET, PF_INET6, CTL_EOL);
    976   1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    977   1.62    atatat 		       CTLFLAG_PERMANENT,
    978   1.63    atatat 		       CTLTYPE_NODE, "udp6",
    979   1.63    atatat 		       SYSCTL_DESCR("UDPv6 related settings"),
    980   1.61    atatat 		       NULL, 0, NULL, 0,
    981   1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, CTL_EOL);
    982   1.61    atatat 
    983   1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    984   1.62    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    985   1.63    atatat 		       CTLTYPE_INT, "sendspace",
    986   1.63    atatat 		       SYSCTL_DESCR("Default UDP send buffer size"),
    987   1.61    atatat 		       NULL, 0, &udp6_sendspace, 0,
    988   1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_SENDSPACE,
    989   1.61    atatat 		       CTL_EOL);
    990   1.62    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    991   1.62    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    992   1.63    atatat 		       CTLTYPE_INT, "recvspace",
    993   1.63    atatat 		       SYSCTL_DESCR("Default UDP receive buffer size"),
    994   1.61    atatat 		       NULL, 0, &udp6_recvspace, 0,
    995   1.61    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_RECVSPACE,
    996   1.61    atatat 		       CTL_EOL);
    997   1.64   thorpej 	sysctl_createv(clog, 0, NULL, NULL,
    998   1.64   thorpej 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    999   1.64   thorpej 		       CTLTYPE_INT, "do_loopback_cksum",
   1000   1.64   thorpej 		       SYSCTL_DESCR("Perform UDP checksum on loopback"),
   1001   1.64   thorpej 		       NULL, 0, &udp_do_loopback_cksum, 0,
   1002   1.64   thorpej 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_LOOPBACKCKSUM,
   1003   1.64   thorpej 		       CTL_EOL);
   1004   1.65    atatat 	sysctl_createv(clog, 0, NULL, NULL,
   1005   1.65    atatat 		       CTLFLAG_PERMANENT,
   1006   1.67    atatat 		       CTLTYPE_STRUCT, "pcblist",
   1007   1.65    atatat 		       SYSCTL_DESCR("UDP protocol control block list"),
   1008   1.65    atatat 		       sysctl_inpcblist, 0, &udbtable, 0,
   1009   1.65    atatat 		       CTL_NET, PF_INET6, IPPROTO_UDP, CTL_CREATE,
   1010   1.65    atatat 		       CTL_EOL);
   1011   1.70    rpaulo 	sysctl_createv(clog, 0, NULL, NULL,
   1012   1.70    rpaulo 		       CTLFLAG_PERMANENT,
   1013   1.70    rpaulo 		       CTLTYPE_STRUCT, "stats",
   1014   1.70    rpaulo 		       SYSCTL_DESCR("UDPv6 statistics"),
   1015   1.82   thorpej 		       sysctl_net_inet6_udp6_stats, 0, NULL, 0,
   1016   1.70    rpaulo 		       CTL_NET, PF_INET6, IPPROTO_UDP, UDP6CTL_STATS,
   1017   1.70    rpaulo 		       CTL_EOL);
   1018    1.2    itojun }
   1019   1.82   thorpej 
   1020   1.82   thorpej void
   1021   1.82   thorpej udp6_statinc(u_int stat)
   1022   1.82   thorpej {
   1023   1.82   thorpej 
   1024   1.82   thorpej 	KASSERT(stat < UDP6_NSTATS);
   1025   1.82   thorpej 	UDP6_STATINC(stat);
   1026   1.82   thorpej }
   1027   1.94     rmind 
   1028   1.96     rmind PR_WRAP_USRREQS(udp6)
   1029   1.96     rmind #define	udp6_attach	udp6_attach_wrapper
   1030   1.96     rmind #define	udp6_detach	udp6_detach_wrapper
   1031  1.107       rtr #define	udp6_accept	udp6_accept_wrapper
   1032  1.109       rtr #define	udp6_bind	udp6_bind_wrapper
   1033  1.109       rtr #define	udp6_listen	udp6_listen_wrapper
   1034  1.110       rtr #define	udp6_connect	udp6_connect_wrapper
   1035  1.115       rtr #define	udp6_connect2	udp6_connect2_wrapper
   1036  1.111       rtr #define	udp6_disconnect	udp6_disconnect_wrapper
   1037  1.111       rtr #define	udp6_shutdown	udp6_shutdown_wrapper
   1038  1.111       rtr #define	udp6_abort	udp6_abort_wrapper
   1039   1.99       rtr #define	udp6_ioctl	udp6_ioctl_wrapper
   1040  1.102       rtr #define	udp6_stat	udp6_stat_wrapper
   1041  1.106       rtr #define	udp6_peeraddr	udp6_peeraddr_wrapper
   1042  1.106       rtr #define	udp6_sockaddr	udp6_sockaddr_wrapper
   1043  1.114       rtr #define	udp6_rcvd	udp6_rcvd_wrapper
   1044  1.108       rtr #define	udp6_recvoob	udp6_recvoob_wrapper
   1045  1.113       rtr #define	udp6_send	udp6_send_wrapper
   1046  1.108       rtr #define	udp6_sendoob	udp6_sendoob_wrapper
   1047  1.115       rtr #define	udp6_purgeif	udp6_purgeif_wrapper
   1048   1.94     rmind #define	udp6_usrreq	udp6_usrreq_wrapper
   1049   1.94     rmind 
   1050   1.94     rmind const struct pr_usrreqs udp6_usrreqs = {
   1051   1.95     rmind 	.pr_attach	= udp6_attach,
   1052   1.95     rmind 	.pr_detach	= udp6_detach,
   1053  1.107       rtr 	.pr_accept	= udp6_accept,
   1054  1.109       rtr 	.pr_bind	= udp6_bind,
   1055  1.109       rtr 	.pr_listen	= udp6_listen,
   1056  1.110       rtr 	.pr_connect	= udp6_connect,
   1057  1.115       rtr 	.pr_connect2	= udp6_connect2,
   1058  1.111       rtr 	.pr_disconnect	= udp6_disconnect,
   1059  1.111       rtr 	.pr_shutdown	= udp6_shutdown,
   1060  1.111       rtr 	.pr_abort	= udp6_abort,
   1061   1.99       rtr 	.pr_ioctl	= udp6_ioctl,
   1062  1.102       rtr 	.pr_stat	= udp6_stat,
   1063  1.106       rtr 	.pr_peeraddr	= udp6_peeraddr,
   1064  1.106       rtr 	.pr_sockaddr	= udp6_sockaddr,
   1065  1.114       rtr 	.pr_rcvd	= udp6_rcvd,
   1066  1.108       rtr 	.pr_recvoob	= udp6_recvoob,
   1067  1.113       rtr 	.pr_send	= udp6_send,
   1068  1.108       rtr 	.pr_sendoob	= udp6_sendoob,
   1069  1.115       rtr 	.pr_purgeif	= udp6_purgeif,
   1070   1.94     rmind 	.pr_generic	= udp6_usrreq,
   1071   1.94     rmind };
   1072