2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the project nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $FreeBSD: src/sys/netinet6/raw_ip6.c,v 1.7.2.4 2001/07/29 19:32:40 ume Exp $
33 * Copyright (c) 1982, 1986, 1988, 1993
34 * The Regents of the University of California. All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * @(#)raw_ip.c 8.2 (Berkeley) 1/4/94
66 #include <sys/param.h>
67 #include <sys/malloc.h>
70 #include <sys/socket.h>
71 #include <sys/protosw.h>
72 #include <sys/socketvar.h>
73 #include <sys/errno.h>
74 #include <sys/systm.h>
77 #include <net/route.h>
78 #include <net/if_types.h>
80 #include <netinet/in.h>
81 #include <netinet/in_var.h>
82 #include <netinet/in_systm.h>
83 #include <netinet/ip6.h>
84 #include <netinet6/ip6_var.h>
85 #include <netinet6/ip6_mroute.h>
86 #include <netinet/icmp6.h>
87 #include <netinet/in_pcb.h>
88 #include <netinet6/in6_pcb.h>
89 #include <netinet6/nd6.h>
90 #include <netinet6/ip6protosw.h>
91 #if ENABLE_DEFAULT_SCOPE
92 #include <netinet6/scope6_var.h>
94 #include <netinet6/raw_ip6.h>
95 #include <netinet6/ip6_fw.h>
98 #include <netinet6/ipsec.h>
99 #include <netinet6/ipsec6.h>
100 extern int ipsec_bypass
;
103 #define satosin6(sa) ((struct sockaddr_in6 *)(sa))
104 #define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa))
107 * Raw interface to IP6 protocol.
110 extern struct inpcbhead ripcb
;
111 extern struct inpcbinfo ripcbinfo
;
112 extern u_long rip_sendspace
;
113 extern u_long rip_recvspace
;
114 extern u_long route_generation
;
116 struct rip6stat rip6stat
;
119 * Setup generic address and protocol structures
120 * for raw_input routine, then pass them along with
128 struct mbuf
*m
= *mp
;
129 register struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
130 register struct inpcb
*in6p
;
131 struct inpcb
*last
= 0;
132 struct mbuf
*opts
= NULL
;
133 struct sockaddr_in6 rip6src
;
134 int proto
= ip6
->ip6_nxt
;
136 rip6stat
.rip6s_ipackets
++;
138 #if defined(NFAITH) && 0 < NFAITH
139 if (faithprefix(&ip6
->ip6_dst
)) {
140 /* XXX send icmp6 host/port unreach? */
146 init_sin6(&rip6src
, m
); /* general init */
148 lck_rw_lock_shared(ripcbinfo
.mtx
);
149 LIST_FOREACH(in6p
, &ripcb
, inp_list
) {
150 if ((in6p
->in6p_vflag
& INP_IPV6
) == 0)
152 if (in6p
->in6p_ip6_nxt
&&
153 in6p
->in6p_ip6_nxt
!= proto
)
155 if (!IN6_IS_ADDR_UNSPECIFIED(&in6p
->in6p_laddr
) &&
156 !IN6_ARE_ADDR_EQUAL(&in6p
->in6p_laddr
, &ip6
->ip6_dst
))
158 if (!IN6_IS_ADDR_UNSPECIFIED(&in6p
->in6p_faddr
) &&
159 !IN6_ARE_ADDR_EQUAL(&in6p
->in6p_faddr
, &ip6
->ip6_src
))
161 if (in6p
->in6p_cksum
!= -1) {
162 rip6stat
.rip6s_isum
++;
163 if (in6_cksum(m
, ip6
->ip6_nxt
, *offp
,
164 m
->m_pkthdr
.len
- *offp
)) {
165 rip6stat
.rip6s_badsum
++;
170 struct mbuf
*n
= m_copy(m
, 0, (int)M_COPYALL
);
174 * Check AH/ESP integrity.
176 if (ipsec_bypass
== 0 && n
&& ipsec6_in_reject_so(n
, last
->inp_socket
)) {
178 IPSEC_STAT_INCREMENT(ipsec6stat
.in_polvio
);
179 /* do not inject data into pcb */
183 if (last
->in6p_flags
& IN6P_CONTROLOPTS
||
184 last
->in6p_socket
->so_options
& SO_TIMESTAMP
)
185 ip6_savecontrol(last
, &opts
, ip6
, n
);
186 /* strip intermediate headers */
188 if (sbappendaddr(&last
->in6p_socket
->so_rcv
,
189 (struct sockaddr
*)&rip6src
,
190 n
, opts
, NULL
) == 0) {
191 rip6stat
.rip6s_fullsock
++;
193 sorwakeup(last
->in6p_socket
);
199 lck_rw_done(ripcbinfo
.mtx
);
202 * Check AH/ESP integrity.
204 if (ipsec_bypass
== 0 && last
&& ipsec6_in_reject_so(m
, last
->inp_socket
)) {
206 IPSEC_STAT_INCREMENT(ipsec6stat
.in_polvio
);
207 ip6stat
.ip6s_delivered
--;
208 /* do not inject data into pcb */
212 if (last
->in6p_flags
& IN6P_CONTROLOPTS
||
213 last
->in6p_socket
->so_options
& SO_TIMESTAMP
)
214 ip6_savecontrol(last
, &opts
, ip6
, m
);
215 /* strip intermediate headers */
217 if (sbappendaddr(&last
->in6p_socket
->so_rcv
,
218 (struct sockaddr
*)&rip6src
, m
, opts
, NULL
) == 0) {
219 rip6stat
.rip6s_fullsock
++;
221 sorwakeup(last
->in6p_socket
);
223 rip6stat
.rip6s_nosock
++;
224 if (m
->m_flags
& M_MCAST
)
225 rip6stat
.rip6s_nosockmcast
++;
226 if (proto
== IPPROTO_NONE
)
229 char *prvnxtp
= ip6_get_prevhdr(m
, *offp
); /* XXX */
230 icmp6_error(m
, ICMP6_PARAM_PROB
,
231 ICMP6_PARAMPROB_NEXTHEADER
,
232 prvnxtp
- mtod(m
, char *));
234 ip6stat
.ip6s_delivered
--;
248 struct ip6ctlparam
*ip6cp
= NULL
;
249 const struct sockaddr_in6
*sa6_src
= NULL
;
250 void (*notify
)(struct inpcb
*, int) = in6_rtchange
;
252 if (sa
->sa_family
!= AF_INET6
||
253 sa
->sa_len
!= sizeof(struct sockaddr_in6
))
256 if ((unsigned)cmd
>= PRC_NCMDS
)
258 if (PRC_IS_REDIRECT(cmd
))
259 notify
= in6_rtchange
, d
= NULL
;
260 else if (cmd
== PRC_HOSTDEAD
)
262 else if (inet6ctlerrmap
[cmd
] == 0)
265 /* if the parameter is from icmp6, decode it. */
267 ip6cp
= (struct ip6ctlparam
*)d
;
269 ip6
= ip6cp
->ip6c_ip6
;
270 off
= ip6cp
->ip6c_off
;
271 sa6_src
= ip6cp
->ip6c_src
;
278 (void) in6_pcbnotify(&ripcbinfo
, sa
, 0, (const struct sockaddr
*)sa6_src
,
283 * Generate IPv6 header and pass packet to ip6_output.
284 * Tack on options user may have setup with control call.
288 register struct mbuf
*m
,
290 struct sockaddr_in6
*dstsock
,
291 struct mbuf
*control
)
293 struct in6_addr
*dst
;
296 u_int plen
= m
->m_pkthdr
.len
;
298 struct ip6_pktopts opt
, *optp
= 0;
299 struct ifnet
*oifp
= NULL
;
300 int type
= 0, code
= 0; /* for ICMPv6 output statistics only */
303 in6p
= sotoin6pcb(so
);
308 dst
= &dstsock
->sin6_addr
;
310 if ((error
= ip6_setpktoptions(control
, &opt
, priv
, 0)) != 0)
314 optp
= in6p
->in6p_outputopts
;
317 * For an ICMPv6 packet, we should know its type and code
318 * to update statistics.
320 if (so
->so_proto
->pr_protocol
== IPPROTO_ICMPV6
) {
321 struct icmp6_hdr
*icmp6
;
322 if (m
->m_len
< sizeof(struct icmp6_hdr
) &&
323 (m
= m_pullup(m
, sizeof(struct icmp6_hdr
))) == NULL
) {
327 icmp6
= mtod(m
, struct icmp6_hdr
*);
328 type
= icmp6
->icmp6_type
;
329 code
= icmp6
->icmp6_code
;
332 M_PREPEND(m
, sizeof(*ip6
), M_WAIT
);
333 ip6
= mtod(m
, struct ip6_hdr
*);
336 * Next header might not be ICMP6 but use its pseudo header anyway.
341 * If the scope of the destination is link-local, embed the interface
342 * index in the address.
344 * XXX advanced-api value overrides sin6_scope_id
346 if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_dst
)) {
347 struct in6_pktinfo
*pi
;
350 * XXX Boundary check is assumed to be already done in
351 * ip6_setpktoptions().
353 if (optp
&& (pi
= optp
->ip6po_pktinfo
) && pi
->ipi6_ifindex
) {
354 ip6
->ip6_dst
.s6_addr16
[1] = htons(pi
->ipi6_ifindex
);
355 oifp
= ifindex2ifnet
[pi
->ipi6_ifindex
];
356 } else if (IN6_IS_ADDR_MULTICAST(&ip6
->ip6_dst
) &&
357 in6p
->in6p_moptions
&&
358 in6p
->in6p_moptions
->im6o_multicast_ifp
) {
359 oifp
= in6p
->in6p_moptions
->im6o_multicast_ifp
;
360 ip6
->ip6_dst
.s6_addr16
[1] = htons(oifp
->if_index
);
361 } else if (dstsock
->sin6_scope_id
) {
363 if (dstsock
->sin6_scope_id
< 0
364 || if_index
< dstsock
->sin6_scope_id
) {
365 error
= ENXIO
; /* XXX EINVAL? */
368 ip6
->ip6_dst
.s6_addr16
[1]
369 = htons(dstsock
->sin6_scope_id
& 0xffff);/*XXX*/
374 * Source address selection.
377 struct in6_addr
*in6a
;
378 struct in6_addr storage
;
380 if ((in6a
= in6_selectsrc(dstsock
, optp
,
384 &storage
, &error
)) == 0) {
386 error
= EADDRNOTAVAIL
;
389 ip6
->ip6_src
= *in6a
;
390 if (in6p
->in6p_route
.ro_rt
)
391 oifp
= ifindex2ifnet
[in6p
->in6p_route
.ro_rt
->rt_ifp
->if_index
];
393 ip6
->ip6_flow
= (ip6
->ip6_flow
& ~IPV6_FLOWINFO_MASK
) |
394 (in6p
->in6p_flowinfo
& IPV6_FLOWINFO_MASK
);
395 ip6
->ip6_vfc
= (ip6
->ip6_vfc
& ~IPV6_VERSION_MASK
) |
396 (IPV6_VERSION
& IPV6_VERSION_MASK
);
397 /* ip6_plen will be filled in ip6_output, so not fill it here. */
398 ip6
->ip6_nxt
= in6p
->in6p_ip6_nxt
;
399 ip6
->ip6_hlim
= in6_selecthlim(in6p
, oifp
);
401 if (so
->so_proto
->pr_protocol
== IPPROTO_ICMPV6
||
402 in6p
->in6p_cksum
!= -1) {
407 /* compute checksum */
408 if (so
->so_proto
->pr_protocol
== IPPROTO_ICMPV6
)
409 off
= offsetof(struct icmp6_hdr
, icmp6_cksum
);
411 off
= in6p
->in6p_cksum
;
412 if (plen
< off
+ 1) {
416 off
+= sizeof(struct ip6_hdr
);
419 while (n
&& n
->m_len
<= off
) {
425 p
= (u_int16_t
*)(mtod(n
, caddr_t
) + off
);
427 *p
= in6_cksum(m
, ip6
->ip6_nxt
, sizeof(*ip6
), plen
);
431 if (ipsec_bypass
== 0 && ipsec_setsocket(m
, so
) != 0) {
437 if (in6p
->in6p_route
.ro_rt
&& in6p
->in6p_route
.ro_rt
->generation_id
!= route_generation
) {
438 rtfree(in6p
->in6p_route
.ro_rt
);
439 in6p
->in6p_route
.ro_rt
= (struct rtentry
*)0;
442 error
= ip6_output(m
, optp
, &in6p
->in6p_route
, 0,
443 in6p
->in6p_moptions
, &oifp
, 0);
444 if (so
->so_proto
->pr_protocol
== IPPROTO_ICMPV6
) {
446 icmp6_ifoutstat_inc(oifp
, type
, code
);
447 icmp6stat
.icp6s_outhist
[type
]++;
449 rip6stat
.rip6s_opackets
++;
458 if (optp
== &opt
&& optp
->ip6po_rthdr
&& optp
->ip6po_route
.ro_rt
) {
459 rtfree(optp
->ip6po_route
.ro_rt
);
460 optp
->ip6po_route
.ro_rt
= NULL
;
464 ip6_clearpktopts(optp
, 0, -1);
477 * Raw IPv6 socket option processing.
482 struct sockopt
*sopt
)
486 if (sopt
->sopt_level
== IPPROTO_ICMPV6
)
488 * XXX: is it better to call icmp6_ctloutput() directly
491 return(icmp6_ctloutput(so
, sopt
));
492 else if (sopt
->sopt_level
!= IPPROTO_IPV6
)
497 switch (sopt
->sopt_dir
) {
499 switch (sopt
->sopt_name
) {
502 if (ip6_fw_ctl_ptr
== 0)
505 error
= ip6_fw_ctl_ptr(sopt
);
517 error
= ip6_mrouter_get(so
, sopt
);
520 error
= ip6_ctloutput(so
, sopt
);
526 switch (sopt
->sopt_name
) {
531 if (ip6_fw_ctl_ptr
== 0)
534 error
= ip6_fw_ctl_ptr(sopt
);
546 error
= ip6_mrouter_set(so
, sopt
);
549 error
= ip6_ctloutput(so
, sopt
);
559 rip6_attach(struct socket
*so
, int proto
, __unused
struct proc
*p
)
566 panic("rip6_attach");
567 if (p
&& (error
= proc_suser(p
)) != 0)
570 error
= soreserve(so
, rip_sendspace
, rip_recvspace
);
573 error
= in_pcballoc(so
, &ripcbinfo
, p
);
576 inp
= (struct inpcb
*)so
->so_pcb
;
577 inp
->inp_vflag
|= INP_IPV6
;
578 inp
->in6p_ip6_nxt
= (long)proto
;
579 inp
->in6p_hops
= -1; /* use kernel default */
580 inp
->in6p_cksum
= -1;
581 MALLOC(inp
->in6p_icmp6filt
, struct icmp6_filter
*,
582 sizeof(struct icmp6_filter
), M_PCB
, M_WAITOK
);
583 if (inp
->in6p_icmp6filt
== NULL
)
585 ICMP6_FILTER_SETPASSALL(inp
->in6p_icmp6filt
);
590 rip6_detach(struct socket
*so
)
596 panic("rip6_detach");
598 if (so
== ip6_mrouter
)
600 if (inp
->in6p_icmp6filt
) {
601 FREE(inp
->in6p_icmp6filt
, M_PCB
);
602 inp
->in6p_icmp6filt
= NULL
;
609 rip6_abort(struct socket
*so
)
611 soisdisconnected(so
);
612 return rip6_detach(so
);
616 rip6_disconnect(struct socket
*so
)
618 struct inpcb
*inp
= sotoinpcb(so
);
620 if ((so
->so_state
& SS_ISCONNECTED
) == 0)
622 inp
->in6p_faddr
= in6addr_any
;
623 return rip6_abort(so
);
627 rip6_bind(struct socket
*so
, struct sockaddr
*nam
, __unused
struct proc
*p
)
629 struct inpcb
*inp
= sotoinpcb(so
);
630 struct sockaddr_in6
*addr
= (struct sockaddr_in6
*)nam
;
631 struct ifaddr
*ia
= NULL
;
633 if (nam
->sa_len
!= sizeof(*addr
))
636 if (TAILQ_EMPTY(&ifnet_head
) || addr
->sin6_family
!= AF_INET6
)
637 return EADDRNOTAVAIL
;
638 #if ENABLE_DEFAULT_SCOPE
639 if (addr
->sin6_scope_id
== 0) { /* not change if specified */
640 addr
->sin6_scope_id
= scope6_addr2default(&addr
->sin6_addr
);
643 if (!IN6_IS_ADDR_UNSPECIFIED(&addr
->sin6_addr
) &&
644 (ia
= ifa_ifwithaddr((struct sockaddr
*)addr
)) == 0)
645 return EADDRNOTAVAIL
;
647 ((struct in6_ifaddr
*)ia
)->ia6_flags
&
648 (IN6_IFF_ANYCAST
|IN6_IFF_NOTREADY
|
649 IN6_IFF_DETACHED
|IN6_IFF_DEPRECATED
)) {
651 return(EADDRNOTAVAIL
);
655 inp
->in6p_laddr
= addr
->sin6_addr
;
660 rip6_connect(struct socket
*so
, struct sockaddr
*nam
, __unused
struct proc
*p
)
662 struct inpcb
*inp
= sotoinpcb(so
);
663 struct sockaddr_in6
*addr
= (struct sockaddr_in6
*)nam
;
664 struct in6_addr
*in6a
= NULL
;
665 struct in6_addr storage
;
667 #if ENABLE_DEFAULT_SCOPE
668 struct sockaddr_in6 tmp
;
671 if (nam
->sa_len
!= sizeof(*addr
))
673 if (TAILQ_EMPTY(&ifnet_head
))
674 return EADDRNOTAVAIL
;
675 if (addr
->sin6_family
!= AF_INET6
)
677 #if ENABLE_DEFAULT_SCOPE
678 if (addr
->sin6_scope_id
== 0) { /* not change if specified */
679 /* avoid overwrites */
682 addr
->sin6_scope_id
= scope6_addr2default(&addr
->sin6_addr
);
685 /* Source address selection. XXX: need pcblookup? */
686 in6a
= in6_selectsrc(addr
, inp
->in6p_outputopts
,
687 inp
->in6p_moptions
, &inp
->in6p_route
,
688 &inp
->in6p_laddr
, &storage
, &error
);
690 return (error
? error
: EADDRNOTAVAIL
);
691 inp
->in6p_laddr
= *in6a
;
692 inp
->in6p_faddr
= addr
->sin6_addr
;
698 rip6_shutdown(struct socket
*so
)
705 rip6_send(struct socket
*so
, __unused
int flags
, struct mbuf
*m
, struct sockaddr
*nam
,
706 struct mbuf
*control
, __unused
struct proc
*p
)
708 struct inpcb
*inp
= sotoinpcb(so
);
709 struct sockaddr_in6 tmp
;
710 struct sockaddr_in6
*dst
;
712 /* always copy sockaddr to avoid overwrites */
713 if (so
->so_state
& SS_ISCONNECTED
) {
719 bzero(&tmp
, sizeof(tmp
));
720 tmp
.sin6_family
= AF_INET6
;
721 tmp
.sin6_len
= sizeof(struct sockaddr_in6
);
722 bcopy(&inp
->in6p_faddr
, &tmp
.sin6_addr
,
723 sizeof(struct in6_addr
));
730 tmp
= *(struct sockaddr_in6
*)nam
;
733 #if ENABLE_DEFAULT_SCOPE
734 if (dst
->sin6_scope_id
== 0) { /* not change if specified */
735 dst
->sin6_scope_id
= scope6_addr2default(&dst
->sin6_addr
);
738 return rip6_output(m
, so
, dst
, control
);
741 struct pr_usrreqs rip6_usrreqs
= {
742 rip6_abort
, pru_accept_notsupp
, rip6_attach
, rip6_bind
, rip6_connect
,
743 pru_connect2_notsupp
, in6_control
, rip6_detach
, rip6_disconnect
,
744 pru_listen_notsupp
, in6_setpeeraddr
, pru_rcvd_notsupp
,
745 pru_rcvoob_notsupp
, rip6_send
, pru_sense_null
, rip6_shutdown
,
746 in6_setsockaddr
, sosend
, soreceive
, pru_sopoll_notsupp
749 __private_extern__
struct pr_usrreqs icmp6_dgram_usrreqs
= {
750 rip6_abort
, pru_accept_notsupp
, icmp6_dgram_attach
, rip6_bind
, rip6_connect
,
751 pru_connect2_notsupp
, in6_control
, rip6_detach
, rip6_disconnect
,
752 pru_listen_notsupp
, in6_setpeeraddr
, pru_rcvd_notsupp
,
753 pru_rcvoob_notsupp
, icmp6_dgram_send
, pru_sense_null
, rip6_shutdown
,
754 in6_setsockaddr
, sosend
, soreceive
, pru_sopoll_notsupp