1 /* $FreeBSD: src/sys/netinet6/udp6_usrreq.c,v 1.6.2.13 2003/01/24 05:11:35 sam Exp $ */
2 /* $DragonFly: src/sys/netinet6/udp6_usrreq.c,v 1.26 2007/04/22 01:13:14 dillon Exp $ */
3 /* $KAME: udp6_usrreq.c,v 1.27 2001/05/21 05:45:10 jinmei Exp $ */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Copyright (c) 1982, 1986, 1989, 1993
36 * The Regents of the University of California. All rights reserved.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)udp_var.h 8.1 (Berkeley) 6/10/93
70 #include "opt_inet6.h"
71 #include "opt_ipsec.h"
73 #include <sys/param.h>
74 #include <sys/kernel.h>
76 #include <sys/protosw.h>
77 #include <sys/socket.h>
78 #include <sys/socketvar.h>
79 #include <sys/sysctl.h>
80 #include <sys/errno.h>
82 #include <sys/systm.h>
83 #include <sys/syslog.h>
87 #include <sys/thread2.h>
88 #include <sys/socketvar2.h>
89 #include <sys/msgport2.h>
92 #include <net/route.h>
93 #include <net/if_types.h>
95 #include <netinet/in.h>
96 #include <netinet/in_systm.h>
97 #include <netinet/ip.h>
98 #include <netinet/in_pcb.h>
99 #include <netinet/in_var.h>
100 #include <netinet/ip_var.h>
101 #include <netinet/udp.h>
102 #include <netinet/udp_var.h>
103 #include <netinet/ip6.h>
104 #include <netinet6/ip6_var.h>
105 #include <netinet6/in6_pcb.h>
106 #include <netinet/icmp6.h>
107 #include <netinet6/udp6_var.h>
108 #include <netinet6/ip6protosw.h>
111 #include <netinet6/ipsec.h>
112 #include <netinet6/ipsec6.h>
116 #include <netproto/ipsec/ipsec.h>
117 #include <netproto/ipsec/ipsec6.h>
118 #endif /* FAST_IPSEC */
121 * UDP protocol inplementation.
122 * Per RFC 768, August, 1980.
125 extern struct protosw inetsw
[];
126 static int in6_mcmatch (struct inpcb
*, struct in6_addr
*, struct ifnet
*);
129 in6_mcmatch(struct inpcb
*in6p
, struct in6_addr
*ia6
, struct ifnet
*ifp
)
131 struct ip6_moptions
*im6o
= in6p
->in6p_moptions
;
132 struct in6_multi_mship
*imm
;
137 for (imm
= im6o
->im6o_memberships
.lh_first
; imm
!= NULL
;
138 imm
= imm
->i6mm_chain
.le_next
) {
140 imm
->i6mm_maddr
->in6m_ifp
== ifp
) &&
141 IN6_ARE_ADDR_EQUAL(&imm
->i6mm_maddr
->in6m_addr
,
149 udp6_input(struct mbuf
**mp
, int *offp
, int proto
)
151 struct mbuf
*m
= *mp
;
155 struct mbuf
*opts
= NULL
;
158 struct sockaddr_in6 udp_in6
;
161 IP6_EXTHDR_CHECK(m
, off
, sizeof(struct udphdr
), IPPROTO_DONE
);
163 ip6
= mtod(m
, struct ip6_hdr
*);
165 if (faithprefix_p
!= NULL
&& (*faithprefix_p
)(&ip6
->ip6_dst
)) {
166 /* XXX send icmp6 host/port unreach? */
171 udpstat
.udps_ipackets
++;
173 plen
= ntohs(ip6
->ip6_plen
) - off
+ sizeof(*ip6
);
174 uh
= (struct udphdr
*)((caddr_t
)ip6
+ off
);
175 ulen
= ntohs((u_short
)uh
->uh_ulen
);
178 udpstat
.udps_badlen
++;
183 * Checksum extended UDP header and data.
186 udpstat
.udps_nosum
++;
187 else if (in6_cksum(m
, IPPROTO_UDP
, off
, ulen
) != 0) {
188 udpstat
.udps_badsum
++;
192 if (IN6_IS_ADDR_MULTICAST(&ip6
->ip6_dst
)) {
196 * Deliver a multicast datagram to all sockets
197 * for which the local and remote addresses and ports match
198 * those of the incoming datagram. This allows more than
199 * one process to receive multicasts on the same port.
200 * (This really ought to be done for unicast datagrams as
201 * well, but that would cause problems with existing
202 * applications that open both address-specific sockets and
203 * a wildcard socket listening to the same port -- they would
204 * end up receiving duplicates of every unicast datagram.
205 * Those applications open the multiple sockets to overcome an
206 * inadequacy of the UDP socket interface, but for backwards
207 * compatibility we avoid the problem here rather than
208 * fixing the interface. Maybe 4.5BSD will remedy this?)
212 * In a case that laddr should be set to the link-local
213 * address (this happens in RIPng), the multicast address
214 * specified in the received packet does not match with
215 * laddr. To cure this situation, the matching is relaxed
216 * if the receiving interface is the same as one specified
217 * in the socket and if the destination multicast address
218 * matches one of the multicast groups specified in the socket.
222 * Construct sockaddr format source address.
224 init_sin6(&udp_in6
, m
); /* general init */
225 udp_in6
.sin6_port
= uh
->uh_sport
;
227 * KAME note: traditionally we dropped udpiphdr from mbuf here.
228 * We need udphdr for IPsec processing so we do that later.
232 * Locate pcb(s) for datagram.
233 * (Algorithm copied from raw_intr().)
236 LIST_FOREACH(in6p
, &udbinfo
.pcblisthead
, inp_list
) {
237 if (in6p
->inp_flags
& INP_PLACEMARKER
)
239 if (!(in6p
->inp_vflag
& INP_IPV6
))
241 if (in6p
->in6p_lport
!= uh
->uh_dport
)
243 if (!IN6_IS_ADDR_UNSPECIFIED(&in6p
->in6p_laddr
)) {
244 if (!IN6_ARE_ADDR_EQUAL(&in6p
->in6p_laddr
,
246 !in6_mcmatch(in6p
, &ip6
->ip6_dst
,
250 if (!IN6_IS_ADDR_UNSPECIFIED(&in6p
->in6p_faddr
)) {
251 if (!IN6_ARE_ADDR_EQUAL(&in6p
->in6p_faddr
,
253 in6p
->in6p_fport
!= uh
->uh_sport
)
262 * Check AH/ESP integrity.
264 if (ipsec6_in_reject_so(m
, last
->inp_socket
))
265 ipsec6stat
.in_polvio
++;
266 /* do not inject data into pcb */
271 * Check AH/ESP integrity.
273 if (ipsec6_in_reject(m
, last
))
276 #endif /* FAST_IPSEC */
277 if ((n
= m_copy(m
, 0, M_COPYALL
)) != NULL
) {
280 * m_copy(m, offset, ...) above.
281 * ssb_appendaddr() expects M_PKTHDR,
282 * and m_copy() will copy M_PKTHDR
283 * only if offset is 0.
285 so
= last
->in6p_socket
;
286 if ((last
->in6p_flags
& IN6P_CONTROLOPTS
) ||
287 (so
->so_options
& SO_TIMESTAMP
)) {
288 ip6_savecontrol(last
, &opts
,
291 m_adj(n
, off
+ sizeof(struct udphdr
));
292 lwkt_gettoken(&so
->so_rcv
.ssb_token
);
293 if (ssb_appendaddr(&so
->so_rcv
,
294 (struct sockaddr
*)&udp_in6
,
299 udpstat
.udps_fullsock
++;
303 lwkt_reltoken(&so
->so_rcv
.ssb_token
);
309 * Don't look for additional matches if this one does
310 * not have either the SO_REUSEPORT or SO_REUSEADDR
311 * socket options set. This heuristic avoids searching
312 * through all pcbs in the common case of a non-shared
313 * port. It assumes that an application will never
314 * clear these options after setting them.
316 if ((last
->in6p_socket
->so_options
&
317 (SO_REUSEPORT
| SO_REUSEADDR
)) == 0)
323 * No matching pcb found; discard datagram.
324 * (No need to send an ICMP Port Unreachable
325 * for a broadcast or multicast datgram.)
327 udpstat
.udps_noport
++;
328 udpstat
.udps_noportmcast
++;
333 * Check AH/ESP integrity.
335 if (ipsec6_in_reject_so(m
, last
->inp_socket
)) {
336 ipsec6stat
.in_polvio
++;
342 * Check AH/ESP integrity.
344 if (ipsec6_in_reject(m
, last
)) {
347 #endif /* FAST_IPSEC */
348 if (last
->in6p_flags
& IN6P_CONTROLOPTS
349 || last
->in6p_socket
->so_options
& SO_TIMESTAMP
)
350 ip6_savecontrol(last
, &opts
, ip6
, m
);
352 m_adj(m
, off
+ sizeof(struct udphdr
));
353 so
= last
->in6p_socket
;
354 lwkt_gettoken(&so
->so_rcv
.ssb_token
);
355 if (ssb_appendaddr(&so
->so_rcv
, (struct sockaddr
*)&udp_in6
,
357 udpstat
.udps_fullsock
++;
358 lwkt_reltoken(&so
->so_rcv
.ssb_token
);
362 lwkt_reltoken(&so
->so_rcv
.ssb_token
);
366 * Locate pcb for datagram.
368 in6p
= in6_pcblookup_hash(&udbinfo
, &ip6
->ip6_src
, uh
->uh_sport
,
369 &ip6
->ip6_dst
, uh
->uh_dport
, 1,
373 char buf
[INET6_ADDRSTRLEN
];
375 strcpy(buf
, ip6_sprintf(&ip6
->ip6_dst
));
377 "Connection attempt to UDP [%s]:%d from [%s]:%d\n",
378 buf
, ntohs(uh
->uh_dport
),
379 ip6_sprintf(&ip6
->ip6_src
), ntohs(uh
->uh_sport
));
381 udpstat
.udps_noport
++;
382 if (m
->m_flags
& M_MCAST
) {
383 kprintf("UDP6: M_MCAST is set in a unicast packet.\n");
384 udpstat
.udps_noportmcast
++;
387 icmp6_error(m
, ICMP6_DST_UNREACH
, ICMP6_DST_UNREACH_NOPORT
, 0);
392 * Check AH/ESP integrity.
394 if (ipsec6_in_reject_so(m
, in6p
->in6p_socket
)) {
395 ipsec6stat
.in_polvio
++;
401 * Check AH/ESP integrity.
403 if (ipsec6_in_reject(m
, in6p
)) {
406 #endif /* FAST_IPSEC */
409 * Construct sockaddr format source address.
410 * Stuff source address and datagram in user buffer.
412 init_sin6(&udp_in6
, m
); /* general init */
413 udp_in6
.sin6_port
= uh
->uh_sport
;
414 if (in6p
->in6p_flags
& IN6P_CONTROLOPTS
415 || in6p
->in6p_socket
->so_options
& SO_TIMESTAMP
)
416 ip6_savecontrol(in6p
, &opts
, ip6
, m
);
417 m_adj(m
, off
+ sizeof(struct udphdr
));
418 so
= in6p
->in6p_socket
;
419 lwkt_gettoken(&so
->so_rcv
.ssb_token
);
420 if (ssb_appendaddr(&so
->so_rcv
, (struct sockaddr
*)&udp_in6
,
422 udpstat
.udps_fullsock
++;
423 lwkt_reltoken(&so
->so_rcv
.ssb_token
);
427 lwkt_reltoken(&so
->so_rcv
.ssb_token
);
438 udp6_ctlinput(netmsg_t msg
)
440 int cmd
= msg
->ctlinput
.nm_cmd
;
441 struct sockaddr
*sa
= msg
->ctlinput
.nm_arg
;
442 void *d
= msg
->ctlinput
.nm_extra
;
447 struct ip6ctlparam
*ip6cp
= NULL
;
448 const struct sockaddr_in6
*sa6_src
= NULL
;
449 void (*notify
) (struct inpcb
*, int) = udp_notify
;
450 struct udp_portonly
{
455 if (sa
->sa_family
!= AF_INET6
||
456 sa
->sa_len
!= sizeof(struct sockaddr_in6
))
459 if ((unsigned)cmd
>= PRC_NCMDS
)
461 if (PRC_IS_REDIRECT(cmd
))
462 notify
= in6_rtchange
, d
= NULL
;
463 else if (cmd
== PRC_HOSTDEAD
)
465 else if (inet6ctlerrmap
[cmd
] == 0)
468 /* if the parameter is from icmp6, decode it. */
470 ip6cp
= (struct ip6ctlparam
*)d
;
472 ip6
= ip6cp
->ip6c_ip6
;
473 off
= ip6cp
->ip6c_off
;
474 sa6_src
= ip6cp
->ip6c_src
;
483 * XXX: We assume that when IPV6 is non NULL,
484 * M and OFF are valid.
487 /* check if we can safely examine src and dst ports */
488 if (m
->m_pkthdr
.len
< off
+ sizeof(*uhp
))
491 bzero(&uh
, sizeof(uh
));
492 m_copydata(m
, off
, sizeof(*uhp
), (caddr_t
)&uh
);
494 in6_pcbnotify(&udbinfo
.pcblisthead
, sa
, uh
.uh_dport
,
495 (struct sockaddr
*)ip6cp
->ip6c_src
, uh
.uh_sport
,
498 in6_pcbnotify(&udbinfo
.pcblisthead
, sa
, 0,
499 (const struct sockaddr
*)sa6_src
, 0,
503 lwkt_replymsg(&msg
->ctlinput
.base
.lmsg
, 0);
507 udp6_getcred(SYSCTL_HANDLER_ARGS
)
509 struct sockaddr_in6 addrs
[2];
513 error
= priv_check(req
->td
, PRIV_ROOT
);
517 if (req
->newlen
!= sizeof(addrs
))
519 if (req
->oldlen
!= sizeof(struct ucred
))
521 error
= SYSCTL_IN(req
, addrs
, sizeof(addrs
));
525 inp
= in6_pcblookup_hash(&udbinfo
, &addrs
[1].sin6_addr
,
527 &addrs
[0].sin6_addr
, addrs
[0].sin6_port
,
529 if (!inp
|| !inp
->inp_socket
) {
533 error
= SYSCTL_OUT(req
, inp
->inp_socket
->so_cred
,
534 sizeof(struct ucred
));
541 SYSCTL_PROC(_net_inet6_udp6
, OID_AUTO
, getcred
, CTLTYPE_OPAQUE
|CTLFLAG_RW
,
543 udp6_getcred
, "S,ucred", "Get the ucred of a UDP6 connection");
546 * NOTE: (so) is referenced from soabort*() and netmsg_pru_abort()
547 * will sofree() it when we return.
550 udp6_abort(netmsg_t msg
)
552 struct socket
*so
= msg
->abort
.base
.nm_so
;
558 soisdisconnected(so
);
564 lwkt_replymsg(&msg
->abort
.base
.lmsg
, error
);
568 udp6_attach(netmsg_t msg
)
570 struct socket
*so
= msg
->attach
.base
.nm_so
;
571 struct pru_attach_info
*ai
= msg
->attach
.nm_ai
;
581 if (so
->so_snd
.ssb_hiwat
== 0 || so
->so_rcv
.ssb_hiwat
== 0) {
582 error
= soreserve(so
, udp_sendspace
, udp_recvspace
,
588 error
= in_pcballoc(so
, &udbinfo
);
592 sosetport(so
, cpu_portfn(0));
593 inp
= (struct inpcb
*)so
->so_pcb
;
594 inp
->inp_vflag
|= INP_IPV6
;
596 inp
->inp_vflag
|= INP_IPV4
;
597 inp
->in6p_hops
= -1; /* use kernel default */
598 inp
->in6p_cksum
= -1; /* just to be sure */
601 * IPv4 TTL initialization is necessary for an IPv6 socket as well,
602 * because the socket may be bound to an IPv6 wildcard address,
603 * which may match an IPv4-mapped IPv6 address.
605 inp
->inp_ip_ttl
= ip_defttl
;
608 lwkt_replymsg(&msg
->attach
.base
.lmsg
, error
);
612 udp6_bind(netmsg_t msg
)
614 struct socket
*so
=msg
->bind
.base
.nm_so
;
615 struct sockaddr
*nam
= msg
->bind
.nm_nam
;
616 struct thread
*td
= msg
->bind
.nm_td
;
617 struct sockaddr_in6
*sin6_p
= (struct sockaddr_in6
*)nam
;
627 inp
->inp_vflag
&= ~INP_IPV4
;
628 inp
->inp_vflag
|= INP_IPV6
;
629 if (!(inp
->inp_flags
& IN6P_IPV6_V6ONLY
)) {
630 if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p
->sin6_addr
))
631 inp
->inp_vflag
|= INP_IPV4
;
632 else if (IN6_IS_ADDR_V4MAPPED(&sin6_p
->sin6_addr
)) {
633 struct sockaddr_in sin
;
635 in6_sin6_2_sin(&sin
, sin6_p
);
636 inp
->inp_vflag
|= INP_IPV4
;
637 inp
->inp_vflag
&= ~INP_IPV6
;
639 error
= in_pcbbind(inp
, (struct sockaddr
*)&sin
, td
);
646 error
= in6_pcbbind(inp
, nam
, td
);
649 if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p
->sin6_addr
))
650 inp
->inp_flags
|= INP_WASBOUND_NOTANY
;
651 in_pcbinswildcardhash(inp
);
654 lwkt_replymsg(&msg
->bind
.base
.lmsg
, error
);
658 udp6_connect(netmsg_t msg
)
660 struct socket
*so
= msg
->connect
.base
.nm_so
;
661 struct sockaddr
*nam
= msg
->connect
.nm_nam
;
662 struct thread
*td
= msg
->connect
.nm_td
;
672 if (!(inp
->inp_flags
& IN6P_IPV6_V6ONLY
)) {
673 struct sockaddr_in6
*sin6_p
;
675 sin6_p
= (struct sockaddr_in6
*)nam
;
676 if (IN6_IS_ADDR_V4MAPPED(&sin6_p
->sin6_addr
)) {
677 struct sockaddr_in sin
;
679 if (inp
->inp_faddr
.s_addr
!= INADDR_ANY
) {
683 in6_sin6_2_sin(&sin
, sin6_p
);
685 error
= in_pcbconnect(inp
, (struct sockaddr
*)&sin
, td
);
688 inp
->inp_vflag
|= INP_IPV4
;
689 inp
->inp_vflag
&= ~INP_IPV6
;
695 if (!IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
)) {
699 if (inp
->inp_flags
& INP_WILDCARD
)
700 in_pcbremwildcardhash(inp
);
701 if (!prison_remote_ip(td
, nam
)) {
702 error
= EAFNOSUPPORT
; /* IPv4 only jail */
706 error
= in6_pcbconnect(inp
, nam
, td
);
709 if (!ip6_v6only
) { /* should be non mapped addr */
710 inp
->inp_vflag
&= ~INP_IPV4
;
711 inp
->inp_vflag
|= INP_IPV6
;
714 } else if (error
== EAFNOSUPPORT
) { /* connection dissolved */
716 * Follow traditional BSD behavior and retain
717 * the local port binding. But, fix the old misbehavior
718 * of overwriting any previously bound local address.
720 if (!(inp
->inp_flags
& INP_WASBOUND_NOTANY
))
721 inp
->in6p_laddr
= kin6addr_any
;
722 in_pcbinswildcardhash(inp
);
725 lwkt_replymsg(&msg
->connect
.base
.lmsg
, error
);
729 udp6_detach(netmsg_t msg
)
731 struct socket
*so
= msg
->detach
.base
.nm_so
;
744 lwkt_replymsg(&msg
->detach
.base
.lmsg
, error
);
748 udp6_disconnect(netmsg_t msg
)
750 struct socket
*so
= msg
->disconnect
.base
.nm_so
;
760 if (inp
->inp_vflag
& INP_IPV4
) {
761 const struct pr_usrreqs
*pru
;
763 pru
= inetsw
[ip_protox
[IPPROTO_UDP
]].pr_usrreqs
;
764 pru
->pru_disconnect(msg
); /* XXX on right port? */
768 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
)) {
772 in6_pcbdisconnect(inp
);
774 soclrstate(so
, SS_ISCONNECTED
); /* XXX */
778 lwkt_replymsg(&msg
->disconnect
.base
.lmsg
, error
);
782 udp6_send(netmsg_t msg
)
784 struct socket
*so
= msg
->send
.base
.nm_so
;
785 struct mbuf
*m
= msg
->send
.nm_m
;
786 struct sockaddr
*addr
= msg
->send
.nm_addr
;
787 struct mbuf
*control
= msg
->send
.nm_control
;
788 struct thread
*td
= msg
->send
.nm_td
;
799 if (addr
->sa_len
!= sizeof(struct sockaddr_in6
)) {
803 if (addr
->sa_family
!= AF_INET6
) {
804 error
= EAFNOSUPPORT
;
811 struct sockaddr_in6
*sin6
= 0;
814 hasv4addr
= (inp
->inp_vflag
& INP_IPV4
);
816 sin6
= (struct sockaddr_in6
*)addr
;
817 hasv4addr
= IN6_IS_ADDR_V4MAPPED(&sin6
->sin6_addr
)
821 const struct pr_usrreqs
*pru
;
824 in6_sin6_2_sin_in_sock(addr
);
825 pru
= inetsw
[ip_protox
[IPPROTO_UDP
]].pr_usrreqs
;
827 /* msg invalid now */
832 error
= udp6_output(inp
, m
, addr
, control
, td
);
833 lwkt_replymsg(&msg
->send
.base
.lmsg
, error
);
837 lwkt_replymsg(&msg
->send
.base
.lmsg
, error
);
840 struct pr_usrreqs udp6_usrreqs
= {
841 .pru_abort
= udp6_abort
,
842 .pru_accept
= pr_generic_notsupp
,
843 .pru_attach
= udp6_attach
,
844 .pru_bind
= udp6_bind
,
845 .pru_connect
= udp6_connect
,
846 .pru_connect2
= pr_generic_notsupp
,
847 .pru_control
= in6_control_dispatch
,
848 .pru_detach
= udp6_detach
,
849 .pru_disconnect
= udp6_disconnect
,
850 .pru_listen
= pr_generic_notsupp
,
851 .pru_peeraddr
= in6_mapped_peeraddr_dispatch
,
852 .pru_rcvd
= pr_generic_notsupp
,
853 .pru_rcvoob
= pr_generic_notsupp
,
854 .pru_send
= udp6_send
,
855 .pru_sense
= pru_sense_null
,
856 .pru_shutdown
= udp_shutdown
,
857 .pru_sockaddr
= in6_mapped_sockaddr_dispatch
,
858 .pru_sosend
= sosend
,
859 .pru_soreceive
= soreceive