1 /* $FreeBSD: src/sys/netinet6/ip6_output.c,v 1.43 2002/10/31 19:45:48 ume Exp $ */
2 /* $KAME: ip6_output.c,v 1.279 2002/01/26 06:12:30 jinmei Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * Copyright (c) 1982, 1986, 1988, 1990, 1993
35 * The Regents of the University of California. All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by the University of
48 * California, Berkeley and its contributors.
49 * 4. Neither the name of the University nor the names of its contributors
50 * may be used to endorse or promote products derived from this software
51 * without specific prior written permission.
53 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65 * @(#)ip_output.c 8.3 (Berkeley) 1/21/94
69 #include <sys/param.h>
70 #include <sys/malloc.h>
72 #include <sys/errno.h>
73 #include <sys/protosw.h>
74 #include <sys/socket.h>
75 #include <sys/socketvar.h>
76 #include <sys/systm.h>
77 #include <sys/kernel.h>
79 #include <sys/kauth.h>
82 #include <net/route.h>
84 #include <netinet/in.h>
85 #include <netinet/in_var.h>
86 #include <netinet/ip_var.h>
87 #include <netinet6/in6_var.h>
88 #include <netinet/ip6.h>
89 #include <netinet/icmp6.h>
90 #include <netinet6/ip6_var.h>
91 #include <netinet/in_pcb.h>
92 #include <netinet6/nd6.h>
95 #include <netinet6/ipsec.h>
97 #include <netinet6/ipsec6.h>
99 #include <netkey/key.h>
100 extern int ipsec_bypass
;
101 extern lck_mtx_t
*sadb_mutex
;
102 extern lck_mtx_t
*nd6_mutex
;
105 #include <netinet6/ip6_fw.h>
107 #include <net/net_osdep.h>
109 #include <netinet/kpi_ipfilter_var.h>
112 static MALLOC_DEFINE(M_IPMOPTS
, "ip6_moptions", "internet multicast options");
116 extern u_long route_generation
;
119 struct mbuf
*ip6e_ip6
;
120 struct mbuf
*ip6e_hbh
;
121 struct mbuf
*ip6e_dest1
;
122 struct mbuf
*ip6e_rthdr
;
123 struct mbuf
*ip6e_dest2
;
126 static int ip6_pcbopts(struct ip6_pktopts
**, struct mbuf
*,
127 struct socket
*, struct sockopt
*sopt
);
128 static int ip6_setmoptions(int, struct inpcb
*, struct mbuf
*);
129 static int ip6_getmoptions(int, struct ip6_moptions
*, struct mbuf
**);
130 static int ip6_copyexthdr(struct mbuf
**, caddr_t
, int);
131 static int ip6_insertfraghdr(struct mbuf
*, struct mbuf
*, int,
133 static int ip6_insert_jumboopt(struct ip6_exthdrs
*, u_int32_t
);
134 static int ip6_splithdr(struct mbuf
*, struct ip6_exthdrs
*);
136 extern int ip_createmoptions(struct ip_moptions
**imop
);
137 extern int ip_addmembership(struct ip_moptions
*imo
, struct ip_mreq
*mreq
);
138 extern int ip_dropmembership(struct ip_moptions
*imo
, struct ip_mreq
*mreq
);
139 extern lck_mtx_t
*ip6_mutex
;
142 * IP6 output. The packet in mbuf chain m contains a skeletal IP6
143 * header (with pri, len, nxt, hlim, src, dst).
144 * This function may modify ver and hlim only.
145 * The mbuf chain containing the packet will be freed.
146 * The mbuf opt, if present, will not be freed.
148 * type of "mtu": rt_rmx.rmx_mtu is u_long, ifnet.ifr_mtu is int, and
149 * nd_ifinfo.linkmtu is u_int32_t. so we use u_long to hold largest one,
150 * which is rt_rmx.rmx_mtu.
155 struct ip6_pktopts
*opt
,
156 struct route_in6
*ro
,
158 struct ip6_moptions
*im6o
,
159 struct ifnet
**ifpp
, /* XXX: just for statistics */
162 struct ip6_hdr
*ip6
, *mhip6
;
163 struct ifnet
*ifp
, *origifp
;
165 int hlen
, tlen
, len
, off
;
166 struct route_in6 ip6route
;
167 struct sockaddr_in6
*dst
;
169 struct in6_ifaddr
*ia
= NULL
;
171 u_int32_t optlen
= 0, plen
= 0, unfragpartlen
= 0;
172 struct ip6_exthdrs exthdrs
;
173 struct in6_addr finaldst
;
174 struct route_in6
*ro_pmtu
= NULL
;
177 ipfilter_t inject_filter_ref
;
180 int needipsectun
= 0;
181 struct socket
*so
= NULL
;
182 struct secpolicy
*sp
= NULL
;
185 lck_mtx_lock(ip6_mutex
);
186 /* for AH processing. stupid to have "socket" variable in IP layer... */
187 if (ipsec_bypass
== 0)
189 so
= ipsec_getsocket(m
);
190 (void)ipsec_setsocket(m
, NULL
);
194 ip6
= mtod(m
, struct ip6_hdr
*);
195 inject_filter_ref
= ipf_get_inject_filter(m
);
197 #define MAKE_EXTHDR(hp, mp) \
200 struct ip6_ext *eh = (struct ip6_ext *)(hp); \
201 error = ip6_copyexthdr((mp), (caddr_t)(hp), \
202 ((eh)->ip6e_len + 1) << 3); \
208 bzero(&exthdrs
, sizeof(exthdrs
));
211 /* Hop-by-Hop options header */
212 MAKE_EXTHDR(opt
->ip6po_hbh
, &exthdrs
.ip6e_hbh
);
213 /* Destination options header(1st part) */
214 MAKE_EXTHDR(opt
->ip6po_dest1
, &exthdrs
.ip6e_dest1
);
216 MAKE_EXTHDR(opt
->ip6po_rthdr
, &exthdrs
.ip6e_rthdr
);
217 /* Destination options header(2nd part) */
218 MAKE_EXTHDR(opt
->ip6po_dest2
, &exthdrs
.ip6e_dest2
);
222 if (ipsec_bypass
!= 0)
225 lck_mtx_lock(sadb_mutex
);
226 /* get a security policy for this packet */
228 sp
= ipsec6_getpolicybyaddr(m
, IPSEC_DIR_OUTBOUND
, 0, &error
);
230 sp
= ipsec6_getpolicybysock(m
, IPSEC_DIR_OUTBOUND
, so
, &error
);
233 ipsec6stat
.out_inval
++;
234 lck_mtx_unlock(sadb_mutex
);
241 switch (sp
->policy
) {
242 case IPSEC_POLICY_DISCARD
:
244 * This packet is just discarded.
246 ipsec6stat
.out_polvio
++;
247 lck_mtx_unlock(sadb_mutex
);
250 case IPSEC_POLICY_BYPASS
:
251 case IPSEC_POLICY_NONE
:
252 /* no need to do IPsec. */
256 case IPSEC_POLICY_IPSEC
:
257 if (sp
->req
== NULL
) {
258 /* acquire a policy */
259 error
= key_spdacquire(sp
);
260 lck_mtx_unlock(sadb_mutex
);
266 case IPSEC_POLICY_ENTRUST
:
268 printf("ip6_output: Invalid policy found. %d\n", sp
->policy
);
270 lck_mtx_unlock(sadb_mutex
);
275 * Calculate the total length of the extension header chain.
276 * Keep the length of the unfragmentable part for fragmentation.
279 if (exthdrs
.ip6e_hbh
) optlen
+= exthdrs
.ip6e_hbh
->m_len
;
280 if (exthdrs
.ip6e_dest1
) optlen
+= exthdrs
.ip6e_dest1
->m_len
;
281 if (exthdrs
.ip6e_rthdr
) optlen
+= exthdrs
.ip6e_rthdr
->m_len
;
282 unfragpartlen
= optlen
+ sizeof(struct ip6_hdr
);
283 /* NOTE: we don't add AH/ESP length here. do that later. */
284 if (exthdrs
.ip6e_dest2
) optlen
+= exthdrs
.ip6e_dest2
->m_len
;
287 * If we need IPsec, or there is at least one extension header,
288 * separate IP6 header from the payload.
290 if ((needipsec
|| optlen
) && !hdrsplit
) {
291 if ((error
= ip6_splithdr(m
, &exthdrs
)) != 0) {
295 m
= exthdrs
.ip6e_ip6
;
300 ip6
= mtod(m
, struct ip6_hdr
*);
302 /* adjust mbuf packet header length */
303 m
->m_pkthdr
.len
+= optlen
;
304 plen
= m
->m_pkthdr
.len
- sizeof(*ip6
);
306 /* If this is a jumbo payload, insert a jumbo payload option. */
307 if (plen
> IPV6_MAXPACKET
) {
309 if ((error
= ip6_splithdr(m
, &exthdrs
)) != 0) {
313 m
= exthdrs
.ip6e_ip6
;
317 ip6
= mtod(m
, struct ip6_hdr
*);
318 if ((error
= ip6_insert_jumboopt(&exthdrs
, plen
)) != 0)
322 ip6
->ip6_plen
= htons(plen
);
325 * Concatenate headers and fill in next header fields.
326 * Here we have, on "m"
328 * and we insert headers accordingly. Finally, we should be getting:
329 * IPv6 hbh dest1 rthdr ah* [esp* dest2 payload]
331 * during the header composing process, "m" points to IPv6 header.
332 * "mprev" points to an extension header prior to esp.
335 u_char
*nexthdrp
= &ip6
->ip6_nxt
;
336 struct mbuf
*mprev
= m
;
339 * we treat dest2 specially. this makes IPsec processing
340 * much easier. the goal here is to make mprev point the
341 * mbuf prior to dest2.
343 * result: IPv6 dest2 payload
344 * m and mprev will point to IPv6 header.
346 if (exthdrs
.ip6e_dest2
) {
348 panic("assumption failed: hdr not split");
349 exthdrs
.ip6e_dest2
->m_next
= m
->m_next
;
350 m
->m_next
= exthdrs
.ip6e_dest2
;
351 *mtod(exthdrs
.ip6e_dest2
, u_char
*) = ip6
->ip6_nxt
;
352 ip6
->ip6_nxt
= IPPROTO_DSTOPTS
;
355 #define MAKE_CHAIN(m, mp, p, i)\
359 panic("assumption failed: hdr not split"); \
360 *mtod((m), u_char *) = *(p);\
362 p = mtod((m), u_char *);\
363 (m)->m_next = (mp)->m_next;\
369 * result: IPv6 hbh dest1 rthdr dest2 payload
370 * m will point to IPv6 header. mprev will point to the
371 * extension header prior to dest2 (rthdr in the above case).
373 MAKE_CHAIN(exthdrs
.ip6e_hbh
, mprev
,
374 nexthdrp
, IPPROTO_HOPOPTS
);
375 MAKE_CHAIN(exthdrs
.ip6e_dest1
, mprev
,
376 nexthdrp
, IPPROTO_DSTOPTS
);
377 MAKE_CHAIN(exthdrs
.ip6e_rthdr
, mprev
,
378 nexthdrp
, IPPROTO_ROUTING
);
380 if (!TAILQ_EMPTY(&ipv6_filters
)) {
381 struct ipfilter
*filter
;
382 int seen
= (inject_filter_ref
== 0);
384 struct ipf_pktopts
*ippo
= 0, ipf_pktopts
;
386 if (im6o
!= NULL
&& IN6_IS_ADDR_MULTICAST(&ip6
->ip6_dst
)) {
388 ippo
->ippo_flags
= IPPOF_MCAST_OPTS
;
389 ippo
->ippo_mcast_ifnet
= im6o
->im6o_multicast_ifp
;
390 ippo
->ippo_mcast_ttl
= im6o
->im6o_multicast_hlim
;
391 ippo
->ippo_mcast_loop
= im6o
->im6o_multicast_loop
;
394 /* Hack: embed the scope_id in the destination */
395 if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_dst
) &&
396 (ip6
->ip6_dst
.s6_addr16
[1] == 0) && (ro
!= NULL
)) {
398 ip6
->ip6_dst
.s6_addr16
[1] = htons(ro
->ro_dst
.sin6_scope_id
);
401 lck_mtx_unlock(ip6_mutex
);
403 TAILQ_FOREACH(filter
, &ipv6_filters
, ipf_link
) {
405 * No need to proccess packet twice if we've
409 if ((struct ipfilter
*)inject_filter_ref
== filter
)
411 } else if (filter
->ipf_filter
.ipf_output
) {
414 result
= filter
->ipf_filter
.ipf_output(filter
->ipf_filter
.cookie
, (mbuf_t
*)&m
, ippo
);
415 if (result
== EJUSTRETURN
) {
417 locked
= 1; /* Don't want to take lock to unlock it right away */
422 locked
= 1; /* Don't want to take lock to unlock it right away */
428 lck_mtx_lock(ip6_mutex
);
430 /* Hack: cleanup embedded scope_id if we put it there */
432 ip6
->ip6_dst
.s6_addr16
[1] = 0;
440 * pointers after IPsec headers are not valid any more.
441 * other pointers need a great care too.
442 * (IPsec routines should not mangle mbufs prior to AH/ESP)
444 exthdrs
.ip6e_dest2
= NULL
;
447 struct ip6_rthdr
*rh
= NULL
;
449 struct ipsec_output_state state
;
451 if (exthdrs
.ip6e_rthdr
) {
452 rh
= mtod(exthdrs
.ip6e_rthdr
, struct ip6_rthdr
*);
453 segleft_org
= rh
->ip6r_segleft
;
454 rh
->ip6r_segleft
= 0;
457 bzero(&state
, sizeof(state
));
459 lck_mtx_unlock(ip6_mutex
);
460 lck_mtx_lock(sadb_mutex
);
461 error
= ipsec6_output_trans(&state
, nexthdrp
, mprev
, sp
, flags
,
463 lck_mtx_unlock(sadb_mutex
);
464 lck_mtx_lock(ip6_mutex
);
467 /* mbuf is already reclaimed in ipsec6_output_trans. */
477 printf("ip6_output (ipsec): error code %d\n", error
);
480 /* don't show these error codes to the user */
486 if (exthdrs
.ip6e_rthdr
) {
487 /* ah6_output doesn't modify mbuf chain */
488 rh
->ip6r_segleft
= segleft_org
;
496 * If there is a routing header, replace destination address field
497 * with the first hop of the routing header.
499 if (exthdrs
.ip6e_rthdr
) {
500 struct ip6_rthdr
*rh
=
501 (struct ip6_rthdr
*)(mtod(exthdrs
.ip6e_rthdr
,
502 struct ip6_rthdr
*));
503 struct ip6_rthdr0
*rh0
;
505 finaldst
= ip6
->ip6_dst
;
506 switch (rh
->ip6r_type
) {
507 case IPV6_RTHDR_TYPE_0
:
508 rh0
= (struct ip6_rthdr0
*)rh
;
509 ip6
->ip6_dst
= rh0
->ip6r0_addr
[0];
510 bcopy((caddr_t
)&rh0
->ip6r0_addr
[1],
511 (caddr_t
)&rh0
->ip6r0_addr
[0],
512 sizeof(struct in6_addr
)*(rh0
->ip6r0_segleft
- 1)
514 rh0
->ip6r0_addr
[rh0
->ip6r0_segleft
- 1] = finaldst
;
516 default: /* is it possible? */
522 /* Source address validation */
523 if (IN6_IS_ADDR_UNSPECIFIED(&ip6
->ip6_src
) &&
524 (flags
& IPV6_DADOUTPUT
) == 0) {
526 ip6stat
.ip6s_badscope
++;
529 if (IN6_IS_ADDR_MULTICAST(&ip6
->ip6_src
)) {
531 ip6stat
.ip6s_badscope
++;
535 ip6stat
.ip6s_localout
++;
542 bzero((caddr_t
)ro
, sizeof(*ro
));
545 if (opt
&& opt
->ip6po_rthdr
)
546 ro
= &opt
->ip6po_route
;
547 dst
= (struct sockaddr_in6
*)&ro
->ro_dst
;
549 * If there is a cached route,
550 * check that it is to the same destination
551 * and is still up. If not, free it and try again.
553 if (ro
->ro_rt
&& ((ro
->ro_rt
->rt_flags
& RTF_UP
) == 0 ||
554 dst
->sin6_family
!= AF_INET6
||
555 !IN6_ARE_ADDR_EQUAL(&dst
->sin6_addr
, &ip6
->ip6_dst
) ||
556 ro
->ro_rt
->generation_id
!= route_generation
)) {
558 ro
->ro_rt
= (struct rtentry
*)0;
560 if (ro
->ro_rt
== 0) {
561 bzero(dst
, sizeof(*dst
));
562 dst
->sin6_family
= AF_INET6
;
563 dst
->sin6_len
= sizeof(struct sockaddr_in6
);
564 dst
->sin6_addr
= ip6
->ip6_dst
;
566 /* XXX: sin6_scope_id should already be fixed at this point */
567 if (IN6_IS_SCOPE_LINKLOCAL(&dst
->sin6_addr
))
568 dst
->sin6_scope_id
= ntohs(dst
->sin6_addr
.s6_addr16
[1]);
572 if (needipsec
&& needipsectun
) {
573 struct ipsec_output_state state
;
576 * All the extension headers will become inaccessible
577 * (since they can be encrypted).
578 * Don't panic, we need no more updates to extension headers
579 * on inner IPv6 packet (since they are now encapsulated).
581 * IPv6 [ESP|AH] IPv6 [extension headers] payload
583 bzero(&exthdrs
, sizeof(exthdrs
));
584 exthdrs
.ip6e_ip6
= m
;
586 bzero(&state
, sizeof(state
));
588 state
.ro
= (struct route
*)ro
;
589 state
.dst
= (struct sockaddr
*)dst
;
590 lck_mtx_unlock(ip6_mutex
);
591 lck_mtx_lock(sadb_mutex
);
592 error
= ipsec6_output_tunnel(&state
, sp
, flags
);
593 lck_mtx_unlock(sadb_mutex
);
594 lck_mtx_lock(ip6_mutex
);
596 ro
= (struct route_in6
*)state
.ro
;
597 dst
= (struct sockaddr_in6
*)state
.dst
;
599 /* mbuf is already reclaimed in ipsec6_output_tunnel. */
610 printf("ip6_output (ipsec): error code %d\n", error
);
613 /* don't show these error codes to the user */
617 lck_mtx_unlock(sadb_mutex
);
621 exthdrs
.ip6e_ip6
= m
;
625 if (!IN6_IS_ADDR_MULTICAST(&ip6
->ip6_dst
)) {
628 #define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa))
629 #define sin6tosa(sin6) ((struct sockaddr *)(sin6))
631 * interface selection comes here
632 * if an interface is specified from an upper layer,
635 lck_mtx_lock(rt_mtx
);
636 if (ro
->ro_rt
== 0) {
638 * non-bsdi always clone routes, if parent is
641 rtalloc_ign_locked((struct route
*)ro
, 0UL);
643 if (ro
->ro_rt
== 0) {
644 ip6stat
.ip6s_noroute
++;
645 error
= EHOSTUNREACH
;
646 lck_mtx_unlock(rt_mtx
);
647 /* XXX in6_ifstat_inc(ifp, ifs6_out_discard); */
650 ia
= ifatoia6(ro
->ro_rt
->rt_ifa
);
651 ifp
= ro
->ro_rt
->rt_ifp
;
653 if (ro
->ro_rt
->rt_flags
& RTF_GATEWAY
)
654 dst
= (struct sockaddr_in6
*)ro
->ro_rt
->rt_gateway
;
655 lck_mtx_unlock(rt_mtx
);
656 m
->m_flags
&= ~(M_BCAST
| M_MCAST
); /* just in case */
658 in6_ifstat_inc(ifp
, ifs6_out_request
);
661 * Check if the outgoing interface conflicts with
662 * the interface specified by ifi6_ifindex (if specified).
663 * Note that loopback interface is always okay.
664 * (this may happen when we are sending a packet to one of
665 * our own addresses.)
667 if (opt
&& opt
->ip6po_pktinfo
668 && opt
->ip6po_pktinfo
->ipi6_ifindex
) {
669 if (!(ifp
->if_flags
& IFF_LOOPBACK
)
670 && ifp
->if_index
!= opt
->ip6po_pktinfo
->ipi6_ifindex
) {
671 ip6stat
.ip6s_noroute
++;
672 in6_ifstat_inc(ifp
, ifs6_out_discard
);
673 error
= EHOSTUNREACH
;
678 if (opt
&& opt
->ip6po_hlim
!= -1)
679 ip6
->ip6_hlim
= opt
->ip6po_hlim
& 0xff;
682 struct in6_multi
*in6m
;
684 m
->m_flags
= (m
->m_flags
& ~M_BCAST
) | M_MCAST
;
687 * See if the caller provided any multicast options
691 ip6
->ip6_hlim
= im6o
->im6o_multicast_hlim
;
692 if (im6o
->im6o_multicast_ifp
!= NULL
)
693 ifp
= im6o
->im6o_multicast_ifp
;
695 ip6
->ip6_hlim
= ip6_defmcasthlim
;
698 * See if the caller provided the outgoing interface
699 * as an ancillary data.
700 * Boundary check for ifindex is assumed to be already done.
702 if (opt
&& opt
->ip6po_pktinfo
&& opt
->ip6po_pktinfo
->ipi6_ifindex
)
703 ifp
= ifindex2ifnet
[opt
->ip6po_pktinfo
->ipi6_ifindex
];
706 * If the destination is a node-local scope multicast,
707 * the packet should be loop-backed only.
709 if (IN6_IS_ADDR_MC_NODELOCAL(&ip6
->ip6_dst
)) {
711 * If the outgoing interface is already specified,
712 * it should be a loopback interface.
714 if (ifp
&& (ifp
->if_flags
& IFF_LOOPBACK
) == 0) {
715 ip6stat
.ip6s_badscope
++;
716 error
= ENETUNREACH
; /* XXX: better error? */
717 /* XXX correct ifp? */
718 in6_ifstat_inc(ifp
, ifs6_out_discard
);
725 if (opt
&& opt
->ip6po_hlim
!= -1)
726 ip6
->ip6_hlim
= opt
->ip6po_hlim
& 0xff;
729 * If caller did not provide an interface lookup a
730 * default in the routing table. This is either a
731 * default for the speicfied group (i.e. a host
732 * route), or a multicast default (a route for the
736 lck_mtx_lock(rt_mtx
);
737 if (ro
->ro_rt
== 0) {
738 ro
->ro_rt
= rtalloc1_locked((struct sockaddr
*)
739 &ro
->ro_dst
, 0, 0UL);
741 if (ro
->ro_rt
== 0) {
742 ip6stat
.ip6s_noroute
++;
743 lck_mtx_unlock(rt_mtx
);
744 error
= EHOSTUNREACH
;
745 /* XXX in6_ifstat_inc(ifp, ifs6_out_discard) */
748 ia
= ifatoia6(ro
->ro_rt
->rt_ifa
);
749 ifp
= ro
->ro_rt
->rt_ifp
;
751 lck_mtx_unlock(rt_mtx
);
754 if ((flags
& IPV6_FORWARDING
) == 0)
755 in6_ifstat_inc(ifp
, ifs6_out_request
);
756 in6_ifstat_inc(ifp
, ifs6_out_mcast
);
759 * Confirm that the outgoing interface supports multicast.
761 if ((ifp
->if_flags
& IFF_MULTICAST
) == 0) {
762 ip6stat
.ip6s_noroute
++;
763 in6_ifstat_inc(ifp
, ifs6_out_discard
);
767 ifnet_lock_shared(ifp
);
768 IN6_LOOKUP_MULTI(ip6
->ip6_dst
, ifp
, in6m
);
769 ifnet_lock_done(ifp
);
771 (im6o
== NULL
|| im6o
->im6o_multicast_loop
)) {
773 * If we belong to the destination multicast group
774 * on the outgoing interface, and the caller did not
775 * forbid loopback, loop back a copy.
777 ip6_mloopback(ifp
, m
, dst
);
780 * If we are acting as a multicast router, perform
781 * multicast forwarding as if the packet had just
782 * arrived on the interface to which we are about
783 * to send. The multicast forwarding function
784 * recursively calls this function, using the
785 * IPV6_FORWARDING flag to prevent infinite recursion.
787 * Multicasts that are looped back by ip6_mloopback(),
788 * above, will be forwarded by the ip6_input() routine,
791 if (ip6_mrouter
&& (flags
& IPV6_FORWARDING
) == 0) {
792 if (ip6_mforward(ip6
, ifp
, m
) != NULL
) {
799 * Multicasts with a hoplimit of zero may be looped back,
800 * above, but must not be transmitted on a network.
801 * Also, multicasts addressed to the loopback interface
802 * are not sent -- the above call to ip6_mloopback() will
803 * loop back a copy if this host actually belongs to the
804 * destination group on the loopback interface.
806 if (ip6
->ip6_hlim
== 0 || (ifp
->if_flags
& IFF_LOOPBACK
)) {
813 * Fill the outgoing inteface to tell the upper layer
814 * to increment per-interface statistics.
820 * Determine path MTU.
823 /* The first hop and the final destination may differ. */
824 struct sockaddr_in6
*sin6_fin
=
825 (struct sockaddr_in6
*)&ro_pmtu
->ro_dst
;
826 if (ro_pmtu
->ro_rt
&& ((ro
->ro_rt
->rt_flags
& RTF_UP
) == 0 ||
827 !IN6_ARE_ADDR_EQUAL(&sin6_fin
->sin6_addr
,
829 rtfree(ro_pmtu
->ro_rt
);
830 ro_pmtu
->ro_rt
= (struct rtentry
*)0;
832 if (ro_pmtu
->ro_rt
== 0) {
833 bzero(sin6_fin
, sizeof(*sin6_fin
));
834 sin6_fin
->sin6_family
= AF_INET6
;
835 sin6_fin
->sin6_len
= sizeof(struct sockaddr_in6
);
836 sin6_fin
->sin6_addr
= finaldst
;
838 rtalloc((struct route
*)ro_pmtu
);
841 if (ro_pmtu
->ro_rt
!= NULL
) {
842 u_int32_t ifmtu
= nd_ifinfo
[ifp
->if_index
].linkmtu
;
844 mtu
= ro_pmtu
->ro_rt
->rt_rmx
.rmx_mtu
;
845 if (mtu
> ifmtu
|| mtu
== 0) {
847 * The MTU on the route is larger than the MTU on
848 * the interface! This shouldn't happen, unless the
849 * MTU of the interface has been changed after the
850 * interface was brought up. Change the MTU in the
851 * route to match the interface MTU (as long as the
852 * field isn't locked).
854 * if MTU on the route is 0, we need to fix the MTU.
855 * this case happens with path MTU discovery timeouts.
858 if ((ro_pmtu
->ro_rt
->rt_rmx
.rmx_locks
& RTV_MTU
) == 0)
859 ro_pmtu
->ro_rt
->rt_rmx
.rmx_mtu
= mtu
; /* XXX */
862 mtu
= nd_ifinfo
[ifp
->if_index
].linkmtu
;
866 * advanced API (IPV6_USE_MIN_MTU) overrides mtu setting
868 if ((flags
& IPV6_MINMTU
) != 0 && mtu
> IPV6_MMTU
)
871 /* Fake scoped addresses */
872 if ((ifp
->if_flags
& IFF_LOOPBACK
) != 0) {
874 * If source or destination address is a scoped address, and
875 * the packet is going to be sent to a loopback interface,
876 * we should keep the original interface.
880 * XXX: this is a very experimental and temporary solution.
881 * We eventually have sockaddr_in6 and use the sin6_scope_id
882 * field of the structure here.
883 * We rely on the consistency between two scope zone ids
884 * of source and destination, which should already be assured.
885 * Larger scopes than link will be supported in the future.
888 if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_src
))
889 origifp
= ifindex2ifnet
[ntohs(ip6
->ip6_src
.s6_addr16
[1])];
890 else if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_dst
))
891 origifp
= ifindex2ifnet
[ntohs(ip6
->ip6_dst
.s6_addr16
[1])];
893 * XXX: origifp can be NULL even in those two cases above.
894 * For example, if we remove the (only) link-local address
895 * from the loopback interface, and try to send a link-local
896 * address without link-id information. Then the source
897 * address is ::1, and the destination address is the
898 * link-local address with its s6_addr16[1] being zero.
899 * What is worse, if the packet goes to the loopback interface
900 * by a default rejected route, the null pointer would be
901 * passed to looutput, and the kernel would hang.
902 * The following last resort would prevent such disaster.
909 #ifndef SCOPEDROUTING
911 * clear embedded scope identifiers if necessary.
912 * in6_clearscope will touch the addresses only when necessary.
914 in6_clearscope(&ip6
->ip6_src
);
915 in6_clearscope(&ip6
->ip6_dst
);
919 * Check with the firewall...
921 if (ip6_fw_enable
&& ip6_fw_chk_ptr
) {
923 m
->m_pkthdr
.rcvif
= NULL
; /* XXX */
924 /* If ipfw says divert, we have to just drop packet */
925 if (ip6_fw_chk_ptr(&ip6
, ifp
, &port
, &m
)) {
936 * If the outgoing packet contains a hop-by-hop options header,
937 * it must be examined and processed even by the source node.
938 * (RFC 2460, section 4.)
940 if (exthdrs
.ip6e_hbh
) {
941 struct ip6_hbh
*hbh
= mtod(exthdrs
.ip6e_hbh
, struct ip6_hbh
*);
942 u_int32_t dummy1
; /* XXX unused */
943 u_int32_t dummy2
; /* XXX unused */
946 if ((hbh
->ip6h_len
+ 1) << 3 > exthdrs
.ip6e_hbh
->m_len
)
947 panic("ip6e_hbh is not continuous");
950 * XXX: if we have to send an ICMPv6 error to the sender,
951 * we need the M_LOOP flag since icmp6_error() expects
952 * the IPv6 and the hop-by-hop options header are
953 * continuous unless the flag is set.
955 m
->m_flags
|= M_LOOP
;
956 m
->m_pkthdr
.rcvif
= ifp
;
957 if (ip6_process_hopopts(m
,
958 (u_int8_t
*)(hbh
+ 1),
959 ((hbh
->ip6h_len
+ 1) << 3) -
960 sizeof(struct ip6_hbh
),
961 &dummy1
, &dummy2
) < 0) {
962 /* m was already freed at this point */
963 error
= EINVAL
;/* better error? */
966 m
->m_flags
&= ~M_LOOP
; /* XXX */
967 m
->m_pkthdr
.rcvif
= NULL
;
971 * Send the packet to the outgoing interface.
972 * If necessary, do IPv6 fragmentation before sending.
974 tlen
= m
->m_pkthdr
.len
;
978 * On any link that cannot convey a 1280-octet packet in one piece,
979 * link-specific fragmentation and reassembly must be provided at
980 * a layer below IPv6. [RFC 2460, sec.5]
981 * Thus if the interface has ability of link-level fragmentation,
982 * we can just send the packet even if the packet size is
983 * larger than the link's MTU.
984 * XXX: IFF_FRAGMENTABLE (or such) flag has not been defined yet...
987 || ifp
->if_flags
& IFF_FRAGMENTABLE
991 /* Record statistics for this interface address. */
992 if (ia
&& !(flags
& IPV6_FORWARDING
)) {
994 ia
->ia_ifa
.if_opackets
++;
995 ia
->ia_ifa
.if_obytes
+= m
->m_pkthdr
.len
;
999 /* clean ipsec history once it goes out of the node */
1003 error
= nd6_output(ifp
, origifp
, m
, dst
, ro
->ro_rt
, 1);
1005 } else if (mtu
< IPV6_MMTU
) {
1007 * note that path MTU is never less than IPV6_MMTU
1008 * (see icmp6_input).
1011 in6_ifstat_inc(ifp
, ifs6_out_fragfail
);
1013 } else if (ip6
->ip6_plen
== 0) { /* jumbo payload cannot be fragmented */
1015 in6_ifstat_inc(ifp
, ifs6_out_fragfail
);
1018 struct mbuf
**mnext
, *m_frgpart
;
1019 struct ip6_frag
*ip6f
;
1020 u_int32_t id
= htonl(ip6_id
++);
1024 * Too large for the destination or interface;
1025 * fragment if possible.
1026 * Must be able to put at least 8 bytes per fragment.
1028 hlen
= unfragpartlen
;
1029 if (mtu
> IPV6_MAXPACKET
)
1030 mtu
= IPV6_MAXPACKET
;
1032 len
= (mtu
- hlen
- sizeof(struct ip6_frag
)) & ~7;
1035 in6_ifstat_inc(ifp
, ifs6_out_fragfail
);
1039 mnext
= &m
->m_nextpkt
;
1042 * Change the next header field of the last header in the
1043 * unfragmentable part.
1045 if (exthdrs
.ip6e_rthdr
) {
1046 nextproto
= *mtod(exthdrs
.ip6e_rthdr
, u_char
*);
1047 *mtod(exthdrs
.ip6e_rthdr
, u_char
*) = IPPROTO_FRAGMENT
;
1048 } else if (exthdrs
.ip6e_dest1
) {
1049 nextproto
= *mtod(exthdrs
.ip6e_dest1
, u_char
*);
1050 *mtod(exthdrs
.ip6e_dest1
, u_char
*) = IPPROTO_FRAGMENT
;
1051 } else if (exthdrs
.ip6e_hbh
) {
1052 nextproto
= *mtod(exthdrs
.ip6e_hbh
, u_char
*);
1053 *mtod(exthdrs
.ip6e_hbh
, u_char
*) = IPPROTO_FRAGMENT
;
1055 nextproto
= ip6
->ip6_nxt
;
1056 ip6
->ip6_nxt
= IPPROTO_FRAGMENT
;
1060 * Loop through length of segment after first fragment,
1061 * make new header and copy data of each part and link onto
1065 for (off
= hlen
; off
< tlen
; off
+= len
) {
1066 MGETHDR(m
, M_DONTWAIT
, MT_HEADER
);
1069 ip6stat
.ip6s_odropped
++;
1072 m
->m_pkthdr
.rcvif
= NULL
;
1073 m
->m_flags
= m0
->m_flags
& M_COPYFLAGS
;
1075 mnext
= &m
->m_nextpkt
;
1076 m
->m_data
+= max_linkhdr
;
1077 mhip6
= mtod(m
, struct ip6_hdr
*);
1079 m
->m_len
= sizeof(*mhip6
);
1080 error
= ip6_insertfraghdr(m0
, m
, hlen
, &ip6f
);
1082 ip6stat
.ip6s_odropped
++;
1085 ip6f
->ip6f_offlg
= htons((u_short
)((off
- hlen
) & ~7));
1086 if (off
+ len
>= tlen
)
1089 ip6f
->ip6f_offlg
|= IP6F_MORE_FRAG
;
1090 mhip6
->ip6_plen
= htons((u_short
)(len
+ hlen
+
1092 sizeof(struct ip6_hdr
)));
1093 if ((m_frgpart
= m_copy(m0
, off
, len
)) == 0) {
1095 ip6stat
.ip6s_odropped
++;
1098 m_cat(m
, m_frgpart
);
1099 m
->m_pkthdr
.len
= len
+ hlen
+ sizeof(*ip6f
);
1100 m
->m_pkthdr
.rcvif
= 0;
1101 m
->m_pkthdr
.socket_id
= m0
->m_pkthdr
.socket_id
;
1102 ip6f
->ip6f_reserved
= 0;
1103 ip6f
->ip6f_ident
= id
;
1104 ip6f
->ip6f_nxt
= nextproto
;
1105 ip6stat
.ip6s_ofragments
++;
1106 in6_ifstat_inc(ifp
, ifs6_out_fragcreat
);
1109 in6_ifstat_inc(ifp
, ifs6_out_fragok
);
1113 * Remove leading garbages.
1119 for (m0
= m
; m
; m
= m0
) {
1123 /* Record statistics for this interface address. */
1126 ia
->ia_ifa
.if_opackets
++;
1127 ia
->ia_ifa
.if_obytes
+= m
->m_pkthdr
.len
;
1131 /* clean ipsec history once it goes out of the node */
1134 error
= nd6_output(ifp
, origifp
, m
, dst
, ro
->ro_rt
, 1);
1141 ip6stat
.ip6s_fragmented
++;
1145 lck_mtx_unlock(ip6_mutex
);
1146 if (ro
== &ip6route
&& ro
->ro_rt
) { /* brace necessary for rtfree */
1148 } else if (ro_pmtu
== &ip6route
&& ro_pmtu
->ro_rt
) {
1149 rtfree(ro_pmtu
->ro_rt
);
1154 lck_mtx_lock(sadb_mutex
);
1156 lck_mtx_unlock(sadb_mutex
);
1163 m_freem(exthdrs
.ip6e_hbh
); /* m_freem will check if mbuf is 0 */
1164 m_freem(exthdrs
.ip6e_dest1
);
1165 m_freem(exthdrs
.ip6e_rthdr
);
1166 m_freem(exthdrs
.ip6e_dest2
);
1174 ip6_copyexthdr(mp
, hdr
, hlen
)
1181 if (hlen
> MCLBYTES
)
1182 return(ENOBUFS
); /* XXX */
1184 MGET(m
, M_DONTWAIT
, MT_DATA
);
1189 MCLGET(m
, M_DONTWAIT
);
1190 if ((m
->m_flags
& M_EXT
) == 0) {
1197 bcopy(hdr
, mtod(m
, caddr_t
), hlen
);
1204 * Insert jumbo payload option.
1207 ip6_insert_jumboopt(exthdrs
, plen
)
1208 struct ip6_exthdrs
*exthdrs
;
1215 #define JUMBOOPTLEN 8 /* length of jumbo payload option and padding */
1218 * If there is no hop-by-hop options header, allocate new one.
1219 * If there is one but it doesn't have enough space to store the
1220 * jumbo payload option, allocate a cluster to store the whole options.
1221 * Otherwise, use it to store the options.
1223 if (exthdrs
->ip6e_hbh
== 0) {
1224 MGET(mopt
, M_DONTWAIT
, MT_DATA
);
1227 mopt
->m_len
= JUMBOOPTLEN
;
1228 optbuf
= mtod(mopt
, u_char
*);
1229 optbuf
[1] = 0; /* = ((JUMBOOPTLEN) >> 3) - 1 */
1230 exthdrs
->ip6e_hbh
= mopt
;
1232 struct ip6_hbh
*hbh
;
1234 mopt
= exthdrs
->ip6e_hbh
;
1235 if (M_TRAILINGSPACE(mopt
) < JUMBOOPTLEN
) {
1238 * - exthdrs->ip6e_hbh is not referenced from places
1239 * other than exthdrs.
1240 * - exthdrs->ip6e_hbh is not an mbuf chain.
1242 int oldoptlen
= mopt
->m_len
;
1246 * XXX: give up if the whole (new) hbh header does
1247 * not fit even in an mbuf cluster.
1249 if (oldoptlen
+ JUMBOOPTLEN
> MCLBYTES
)
1253 * As a consequence, we must always prepare a cluster
1256 MGET(n
, M_DONTWAIT
, MT_DATA
);
1258 MCLGET(n
, M_DONTWAIT
);
1259 if ((n
->m_flags
& M_EXT
) == 0) {
1266 n
->m_len
= oldoptlen
+ JUMBOOPTLEN
;
1267 bcopy(mtod(mopt
, caddr_t
), mtod(n
, caddr_t
),
1269 optbuf
= mtod(n
, caddr_t
) + oldoptlen
;
1271 mopt
= exthdrs
->ip6e_hbh
= n
;
1273 optbuf
= mtod(mopt
, u_char
*) + mopt
->m_len
;
1274 mopt
->m_len
+= JUMBOOPTLEN
;
1276 optbuf
[0] = IP6OPT_PADN
;
1280 * Adjust the header length according to the pad and
1281 * the jumbo payload option.
1283 hbh
= mtod(mopt
, struct ip6_hbh
*);
1284 hbh
->ip6h_len
+= (JUMBOOPTLEN
>> 3);
1287 /* fill in the option. */
1288 optbuf
[2] = IP6OPT_JUMBO
;
1290 v
= (u_int32_t
)htonl(plen
+ JUMBOOPTLEN
);
1291 bcopy(&v
, &optbuf
[4], sizeof(u_int32_t
));
1293 /* finally, adjust the packet header length */
1294 exthdrs
->ip6e_ip6
->m_pkthdr
.len
+= JUMBOOPTLEN
;
1301 * Insert fragment header and copy unfragmentable header portions.
1304 ip6_insertfraghdr(m0
, m
, hlen
, frghdrp
)
1305 struct mbuf
*m0
, *m
;
1307 struct ip6_frag
**frghdrp
;
1309 struct mbuf
*n
, *mlast
;
1311 if (hlen
> sizeof(struct ip6_hdr
)) {
1312 n
= m_copym(m0
, sizeof(struct ip6_hdr
),
1313 hlen
- sizeof(struct ip6_hdr
), M_DONTWAIT
);
1320 /* Search for the last mbuf of unfragmentable part. */
1321 for (mlast
= n
; mlast
->m_next
; mlast
= mlast
->m_next
)
1324 if ((mlast
->m_flags
& M_EXT
) == 0 &&
1325 M_TRAILINGSPACE(mlast
) >= sizeof(struct ip6_frag
)) {
1326 /* use the trailing space of the last mbuf for the fragment hdr */
1328 (struct ip6_frag
*)(mtod(mlast
, caddr_t
) + mlast
->m_len
);
1329 mlast
->m_len
+= sizeof(struct ip6_frag
);
1330 m
->m_pkthdr
.len
+= sizeof(struct ip6_frag
);
1332 /* allocate a new mbuf for the fragment header */
1335 MGET(mfrg
, M_DONTWAIT
, MT_DATA
);
1338 mfrg
->m_len
= sizeof(struct ip6_frag
);
1339 *frghdrp
= mtod(mfrg
, struct ip6_frag
*);
1340 mlast
->m_next
= mfrg
;
1346 extern int load_ipfw();
1349 * IP6 socket option processing.
1352 ip6_ctloutput(so
, sopt
)
1354 struct sockopt
*sopt
;
1357 struct inpcb
*in6p
= sotoinpcb(so
);
1359 int level
, op
, optname
;
1363 level
= error
= optval
= 0;
1365 panic("ip6_ctloutput: arg soopt is NULL");
1367 level
= sopt
->sopt_level
;
1368 op
= sopt
->sopt_dir
;
1369 optname
= sopt
->sopt_name
;
1370 optlen
= sopt
->sopt_valsize
;
1374 privileged
= (p
== 0 || proc_suser(p
)) ? 0 : 1;
1376 if (level
== IPPROTO_IPV6
) {
1381 case IPV6_PKTOPTIONS
:
1385 if (sopt
->sopt_valsize
> MCLBYTES
) {
1389 error
= soopt_getm(sopt
, &m
); /* XXX */
1392 error
= soopt_mcopyin(sopt
, m
); /* XXX */
1395 error
= ip6_pcbopts(&in6p
->in6p_outputopts
,
1397 m_freem(m
); /* XXX */
1402 * Use of some Hop-by-Hop options or some
1403 * Destination options, might require special
1404 * privilege. That is, normal applications
1405 * (without special privilege) might be forbidden
1406 * from setting certain options in outgoing packets,
1407 * and might never see certain options in received
1408 * packets. [RFC 2292 Section 6]
1409 * KAME specific note:
1410 * KAME prevents non-privileged users from sending or
1411 * receiving ANY hbh/dst options in order to avoid
1412 * overhead of parsing options in the kernel.
1414 case IPV6_UNICAST_HOPS
:
1419 if (optlen
!= sizeof(int)) {
1423 error
= sooptcopyin(sopt
, &optval
,
1424 sizeof optval
, sizeof optval
);
1429 case IPV6_UNICAST_HOPS
:
1430 if (optval
< -1 || optval
>= 256)
1433 /* -1 = kernel default */
1434 in6p
->in6p_hops
= optval
;
1436 if ((in6p
->in6p_vflag
&
1438 in6p
->inp_ip_ttl
= optval
;
1441 #define OPTSET(bit) \
1444 in6p->in6p_flags |= (bit); \
1446 in6p->in6p_flags &= ~(bit); \
1448 #define OPTBIT(bit) (in6p->in6p_flags & (bit) ? 1 : 0)
1451 in6p
->in6p_cksum
= optval
;
1460 * make setsockopt(IPV6_V6ONLY)
1461 * available only prior to bind(2).
1462 * see ipng mailing list, Jun 22 2001.
1464 if (in6p
->in6p_lport
||
1465 !IN6_IS_ADDR_UNSPECIFIED(&in6p
->in6p_laddr
))
1470 OPTSET(IN6P_IPV6_V6ONLY
);
1472 in6p
->in6p_vflag
&= ~INP_IPV4
;
1474 in6p
->in6p_vflag
|= INP_IPV4
;
1485 if (optlen
!= sizeof(int)) {
1489 error
= sooptcopyin(sopt
, &optval
,
1490 sizeof optval
, sizeof optval
);
1495 OPTSET(IN6P_PKTINFO
);
1498 OPTSET(IN6P_HOPLIMIT
);
1502 * Check super-user privilege.
1503 * See comments for IPV6_RECVHOPOPTS.
1507 OPTSET(IN6P_HOPOPTS
);
1512 OPTSET(IN6P_DSTOPTS
|IN6P_RTHDRDSTOPTS
); /* XXX */
1521 case IPV6_MULTICAST_IF
:
1522 case IPV6_MULTICAST_HOPS
:
1523 case IPV6_MULTICAST_LOOP
:
1524 case IPV6_JOIN_GROUP
:
1525 case IPV6_LEAVE_GROUP
:
1528 if (sopt
->sopt_valsize
> MLEN
) {
1533 MGET(m
, sopt
->sopt_p
? M_WAIT
: M_DONTWAIT
, MT_HEADER
);
1538 m
->m_len
= sopt
->sopt_valsize
;
1539 error
= sooptcopyin(sopt
, mtod(m
, char *),
1540 m
->m_len
, m
->m_len
);
1541 error
= ip6_setmoptions(sopt
->sopt_name
, in6p
, m
);
1546 case IPV6_PORTRANGE
:
1547 error
= sooptcopyin(sopt
, &optval
,
1548 sizeof optval
, sizeof optval
);
1553 case IPV6_PORTRANGE_DEFAULT
:
1554 in6p
->in6p_flags
&= ~(IN6P_LOWPORT
);
1555 in6p
->in6p_flags
&= ~(IN6P_HIGHPORT
);
1558 case IPV6_PORTRANGE_HIGH
:
1559 in6p
->in6p_flags
&= ~(IN6P_LOWPORT
);
1560 in6p
->in6p_flags
|= IN6P_HIGHPORT
;
1563 case IPV6_PORTRANGE_LOW
:
1564 in6p
->in6p_flags
&= ~(IN6P_HIGHPORT
);
1565 in6p
->in6p_flags
|= IN6P_LOWPORT
;
1575 case IPV6_IPSEC_POLICY
:
1581 if (sopt
->sopt_valsize
> MCLBYTES
) {
1585 if ((error
= soopt_getm(sopt
, &m
)) != 0) /* XXX */
1587 if ((error
= soopt_mcopyin(sopt
, m
)) != 0) /* XXX */
1590 req
= mtod(m
, caddr_t
);
1593 lck_mtx_lock(sadb_mutex
);
1594 error
= ipsec6_set_policy(in6p
, optname
, req
,
1596 lck_mtx_unlock(sadb_mutex
);
1600 #endif /* KAME IPSEC */
1607 if (ip6_fw_ctl_ptr
== NULL
&& load_ipfw() != 0)
1610 error
= (*ip6_fw_ctl_ptr
)(sopt
);
1615 error
= ENOPROTOOPT
;
1623 case IPV6_PKTOPTIONS
:
1624 if (in6p
->in6p_options
) {
1626 m
= m_copym(in6p
->in6p_options
,
1627 0, M_COPYALL
, M_WAIT
);
1628 error
= soopt_mcopyout(sopt
, m
);
1632 sopt
->sopt_valsize
= 0;
1635 case IPV6_UNICAST_HOPS
:
1640 case IPV6_PORTRANGE
:
1643 case IPV6_UNICAST_HOPS
:
1644 optval
= in6p
->in6p_hops
;
1648 optval
= in6p
->in6p_cksum
;
1652 optval
= OPTBIT(IN6P_FAITH
);
1656 optval
= OPTBIT(IN6P_IPV6_V6ONLY
);
1659 case IPV6_PORTRANGE
:
1662 flags
= in6p
->in6p_flags
;
1663 if (flags
& IN6P_HIGHPORT
)
1664 optval
= IPV6_PORTRANGE_HIGH
;
1665 else if (flags
& IN6P_LOWPORT
)
1666 optval
= IPV6_PORTRANGE_LOW
;
1672 error
= sooptcopyout(sopt
, &optval
,
1681 if ((optname
== IPV6_HOPOPTS
||
1682 optname
== IPV6_DSTOPTS
) &&
1687 optval
= OPTBIT(IN6P_PKTINFO
);
1690 optval
= OPTBIT(IN6P_HOPLIMIT
);
1695 optval
= OPTBIT(IN6P_HOPOPTS
);
1698 optval
= OPTBIT(IN6P_RTHDR
);
1703 optval
= OPTBIT(IN6P_DSTOPTS
|IN6P_RTHDRDSTOPTS
);
1706 error
= sooptcopyout(sopt
, &optval
,
1710 case IPV6_MULTICAST_IF
:
1711 case IPV6_MULTICAST_HOPS
:
1712 case IPV6_MULTICAST_LOOP
:
1713 case IPV6_JOIN_GROUP
:
1714 case IPV6_LEAVE_GROUP
:
1717 error
= ip6_getmoptions(sopt
->sopt_name
,
1718 in6p
->in6p_moptions
, &m
);
1720 error
= sooptcopyout(sopt
,
1721 mtod(m
, char *), m
->m_len
);
1727 case IPV6_IPSEC_POLICY
:
1731 struct mbuf
*m
= NULL
;
1732 struct mbuf
**mp
= &m
;
1734 if (sopt
->sopt_valsize
> MCLBYTES
) {
1738 error
= soopt_getm(sopt
, &m
); /* XXX */
1741 error
= soopt_mcopyin(sopt
, m
); /* XXX */
1745 req
= mtod(m
, caddr_t
);
1748 lck_mtx_lock(sadb_mutex
);
1749 error
= ipsec6_get_policy(in6p
, req
, len
, mp
);
1750 lck_mtx_unlock(sadb_mutex
);
1752 error
= soopt_mcopyout(sopt
, m
); /*XXX*/
1753 if (error
== 0 && m
)
1757 #endif /* KAME IPSEC */
1761 if (ip6_fw_ctl_ptr
== NULL
&& load_ipfw() != 0)
1764 error
= (*ip6_fw_ctl_ptr
)(sopt
);
1769 error
= ENOPROTOOPT
;
1781 * Set up IP6 options in pcb for insertion in output packets or
1782 * specifying behavior of outgoing packets.
1785 ip6_pcbopts(pktopt
, m
, so
, sopt
)
1786 struct ip6_pktopts
**pktopt
;
1789 struct sockopt
*sopt
;
1791 struct ip6_pktopts
*opt
= *pktopt
;
1793 struct proc
*p
= sopt
->sopt_p
;
1796 /* turn off any old options. */
1799 if (opt
->ip6po_pktinfo
|| opt
->ip6po_nexthop
||
1800 opt
->ip6po_hbh
|| opt
->ip6po_dest1
|| opt
->ip6po_dest2
||
1801 opt
->ip6po_rhinfo
.ip6po_rhi_rthdr
)
1802 printf("ip6_pcbopts: all specified options are cleared.\n");
1804 ip6_clearpktopts(opt
, 1, -1);
1806 opt
= _MALLOC(sizeof(*opt
), M_IP6OPT
, M_WAITOK
);
1809 if (!m
|| m
->m_len
== 0) {
1811 * Only turning off any previous options, regardless of
1812 * whether the opt is just created or given.
1815 FREE(opt
, M_IP6OPT
);
1819 /* set options specified by user. */
1820 if (p
&& !proc_suser(p
))
1822 if ((error
= ip6_setpktoptions(m
, opt
, priv
, 1)) != 0) {
1823 ip6_clearpktopts(opt
, 1, -1); /* XXX: discard all options */
1824 FREE(opt
, M_IP6OPT
);
1832 * initialize ip6_pktopts. beware that there are non-zero default values in
1836 init_ip6pktopts(opt
)
1837 struct ip6_pktopts
*opt
;
1840 bzero(opt
, sizeof(*opt
));
1841 opt
->ip6po_hlim
= -1; /* -1 means default hop limit */
1845 ip6_clearpktopts(pktopt
, needfree
, optname
)
1846 struct ip6_pktopts
*pktopt
;
1847 int needfree
, optname
;
1852 if (optname
== -1) {
1853 if (needfree
&& pktopt
->ip6po_pktinfo
)
1854 FREE(pktopt
->ip6po_pktinfo
, M_IP6OPT
);
1855 pktopt
->ip6po_pktinfo
= NULL
;
1858 pktopt
->ip6po_hlim
= -1;
1859 if (optname
== -1) {
1860 if (needfree
&& pktopt
->ip6po_nexthop
)
1861 FREE(pktopt
->ip6po_nexthop
, M_IP6OPT
);
1862 pktopt
->ip6po_nexthop
= NULL
;
1864 if (optname
== -1) {
1865 if (needfree
&& pktopt
->ip6po_hbh
)
1866 FREE(pktopt
->ip6po_hbh
, M_IP6OPT
);
1867 pktopt
->ip6po_hbh
= NULL
;
1869 if (optname
== -1) {
1870 if (needfree
&& pktopt
->ip6po_dest1
)
1871 FREE(pktopt
->ip6po_dest1
, M_IP6OPT
);
1872 pktopt
->ip6po_dest1
= NULL
;
1874 if (optname
== -1) {
1875 if (needfree
&& pktopt
->ip6po_rhinfo
.ip6po_rhi_rthdr
)
1876 FREE(pktopt
->ip6po_rhinfo
.ip6po_rhi_rthdr
, M_IP6OPT
);
1877 pktopt
->ip6po_rhinfo
.ip6po_rhi_rthdr
= NULL
;
1878 if (pktopt
->ip6po_route
.ro_rt
) {
1879 rtfree(pktopt
->ip6po_route
.ro_rt
);
1880 pktopt
->ip6po_route
.ro_rt
= NULL
;
1883 if (optname
== -1) {
1884 if (needfree
&& pktopt
->ip6po_dest2
)
1885 FREE(pktopt
->ip6po_dest2
, M_IP6OPT
);
1886 pktopt
->ip6po_dest2
= NULL
;
1890 #define PKTOPT_EXTHDRCPY(type) \
1894 (((struct ip6_ext *)src->type)->ip6e_len + 1) << 3;\
1895 dst->type = _MALLOC(hlen, M_IP6OPT, canwait);\
1896 if (dst->type == NULL && canwait == M_NOWAIT)\
1898 bcopy(src->type, dst->type, hlen);\
1902 struct ip6_pktopts
*
1903 ip6_copypktopts(src
, canwait
)
1904 struct ip6_pktopts
*src
;
1907 struct ip6_pktopts
*dst
;
1910 printf("ip6_clearpktopts: invalid argument\n");
1914 dst
= _MALLOC(sizeof(*dst
), M_IP6OPT
, canwait
);
1915 if (dst
== NULL
&& canwait
== M_NOWAIT
)
1917 bzero(dst
, sizeof(*dst
));
1919 dst
->ip6po_hlim
= src
->ip6po_hlim
;
1920 if (src
->ip6po_pktinfo
) {
1921 dst
->ip6po_pktinfo
= _MALLOC(sizeof(*dst
->ip6po_pktinfo
),
1923 if (dst
->ip6po_pktinfo
== NULL
&& canwait
== M_NOWAIT
)
1925 *dst
->ip6po_pktinfo
= *src
->ip6po_pktinfo
;
1927 if (src
->ip6po_nexthop
) {
1928 dst
->ip6po_nexthop
= _MALLOC(src
->ip6po_nexthop
->sa_len
,
1930 if (dst
->ip6po_nexthop
== NULL
&& canwait
== M_NOWAIT
)
1932 bcopy(src
->ip6po_nexthop
, dst
->ip6po_nexthop
,
1933 src
->ip6po_nexthop
->sa_len
);
1935 PKTOPT_EXTHDRCPY(ip6po_hbh
);
1936 PKTOPT_EXTHDRCPY(ip6po_dest1
);
1937 PKTOPT_EXTHDRCPY(ip6po_dest2
);
1938 PKTOPT_EXTHDRCPY(ip6po_rthdr
); /* not copy the cached route */
1942 if (dst
->ip6po_pktinfo
) FREE(dst
->ip6po_pktinfo
, M_IP6OPT
);
1943 if (dst
->ip6po_nexthop
) FREE(dst
->ip6po_nexthop
, M_IP6OPT
);
1944 if (dst
->ip6po_hbh
) FREE(dst
->ip6po_hbh
, M_IP6OPT
);
1945 if (dst
->ip6po_dest1
) FREE(dst
->ip6po_dest1
, M_IP6OPT
);
1946 if (dst
->ip6po_dest2
) FREE(dst
->ip6po_dest2
, M_IP6OPT
);
1947 if (dst
->ip6po_rthdr
) FREE(dst
->ip6po_rthdr
, M_IP6OPT
);
1948 FREE(dst
, M_IP6OPT
);
1951 #undef PKTOPT_EXTHDRCPY
1954 ip6_freepcbopts(pktopt
)
1955 struct ip6_pktopts
*pktopt
;
1960 ip6_clearpktopts(pktopt
, 1, -1);
1962 FREE(pktopt
, M_IP6OPT
);
1966 * Set the IP6 multicast options in response to user setsockopt().
1975 u_int loop
, ifindex
;
1976 struct ipv6_mreq
*mreq
;
1978 struct ip6_moptions
**im6op
= &in6p
->in6p_moptions
;
1979 struct ip6_moptions
*im6o
= *im6op
;
1980 struct ip_moptions
*imo
;
1981 struct route_in6 ro
;
1982 struct sockaddr_in6
*dst
;
1983 struct in6_multi_mship
*imm
;
1984 struct proc
*p
= current_proc(); /* XXX */
1988 * No multicast option buffer attached to the pcb;
1989 * allocate one and initialize to default values.
1991 im6o
= (struct ip6_moptions
*)
1992 _MALLOC(sizeof(*im6o
), M_IPMOPTS
, M_WAITOK
);
1997 im6o
->im6o_multicast_ifp
= NULL
;
1998 im6o
->im6o_multicast_hlim
= ip6_defmcasthlim
;
1999 im6o
->im6o_multicast_loop
= IPV6_DEFAULT_MULTICAST_LOOP
;
2000 LIST_INIT(&im6o
->im6o_memberships
);
2003 if (in6p
->inp_moptions
== NULL
) {
2005 * No IPv4 multicast option buffer attached to the pcb;
2006 * call ip_createmoptions to allocate one and initialize
2007 * to default values.
2009 error
= ip_createmoptions(&in6p
->inp_moptions
);
2013 imo
= in6p
->inp_moptions
;
2017 case IPV6_MULTICAST_IF
:
2019 * Select the interface for outgoing multicast packets.
2021 if (m
== NULL
|| m
->m_len
!= sizeof(u_int
)) {
2025 bcopy(mtod(m
, u_int
*), &ifindex
, sizeof(ifindex
));
2026 if (ifindex
< 0 || if_index
< ifindex
) {
2027 error
= ENXIO
; /* XXX EINVAL? */
2030 ifp
= ifindex2ifnet
[ifindex
];
2031 if (ifp
== NULL
|| (ifp
->if_flags
& IFF_MULTICAST
) == 0) {
2032 error
= EADDRNOTAVAIL
;
2035 im6o
->im6o_multicast_ifp
= ifp
;
2036 imo
->imo_multicast_ifp
= ifp
;
2039 case IPV6_MULTICAST_HOPS
:
2042 * Set the IP6 hoplimit for outgoing multicast packets.
2045 if (m
== NULL
|| m
->m_len
!= sizeof(int)) {
2049 bcopy(mtod(m
, u_int
*), &optval
, sizeof(optval
));
2050 if (optval
< -1 || optval
>= 256)
2052 else if (optval
== -1) {
2053 im6o
->im6o_multicast_hlim
= ip6_defmcasthlim
;
2054 imo
->imo_multicast_ttl
= IP_DEFAULT_MULTICAST_TTL
;
2056 im6o
->im6o_multicast_hlim
= optval
;
2057 imo
->imo_multicast_ttl
= optval
;
2062 case IPV6_MULTICAST_LOOP
:
2064 * Set the loopback flag for outgoing multicast packets.
2065 * Must be zero or one.
2067 if (m
== NULL
|| m
->m_len
!= sizeof(u_int
)) {
2071 bcopy(mtod(m
, u_int
*), &loop
, sizeof(loop
));
2076 im6o
->im6o_multicast_loop
= loop
;
2077 imo
->imo_multicast_loop
= loop
;
2080 case IPV6_JOIN_GROUP
:
2082 * Add a multicast group membership.
2083 * Group must be a valid IP6 multicast address.
2085 if (m
== NULL
|| m
->m_len
!= sizeof(struct ipv6_mreq
)) {
2089 mreq
= mtod(m
, struct ipv6_mreq
*);
2091 * If the interface is specified, validate it.
2093 if (mreq
->ipv6mr_interface
< 0
2094 || if_index
< mreq
->ipv6mr_interface
) {
2095 error
= ENXIO
; /* XXX EINVAL? */
2099 if (IN6_IS_ADDR_UNSPECIFIED(&mreq
->ipv6mr_multiaddr
)) {
2101 * We use the unspecified address to specify to accept
2102 * all multicast addresses. Only super user is allowed
2105 if (suser(kauth_cred_get(), 0))
2110 } else if (IN6_IS_ADDR_V4MAPPED(&mreq
->ipv6mr_multiaddr
)) {
2111 struct ip_mreq v4req
;
2113 v4req
.imr_multiaddr
.s_addr
= mreq
->ipv6mr_multiaddr
.s6_addr32
[3];
2114 v4req
.imr_interface
.s_addr
= INADDR_ANY
;
2116 /* Find an IPv4 address on the specified interface. */
2117 if (mreq
->ipv6mr_interface
!= 0) {
2118 struct in_ifaddr
*ifa
;
2120 ifp
= ifindex2ifnet
[mreq
->ipv6mr_interface
];
2122 lck_mtx_lock(rt_mtx
);
2123 TAILQ_FOREACH(ifa
, &in_ifaddrhead
, ia_link
) {
2124 if (ifa
->ia_ifp
== ifp
) {
2125 v4req
.imr_interface
= IA_SIN(ifa
)->sin_addr
;
2129 lck_mtx_unlock(rt_mtx
);
2131 if (v4req
.imr_multiaddr
.s_addr
== 0) {
2132 /* Interface has no IPv4 address. */
2138 error
= ip_addmembership(imo
, &v4req
);
2140 } else if (!IN6_IS_ADDR_MULTICAST(&mreq
->ipv6mr_multiaddr
)) {
2145 * If no interface was explicitly specified, choose an
2146 * appropriate one according to the given multicast address.
2148 if (mreq
->ipv6mr_interface
== 0) {
2150 * If the multicast address is in node-local scope,
2151 * the interface should be a loopback interface.
2152 * Otherwise, look up the routing table for the
2153 * address, and choose the outgoing interface.
2154 * XXX: is it a good approach?
2156 if (IN6_IS_ADDR_MC_NODELOCAL(&mreq
->ipv6mr_multiaddr
)) {
2160 dst
= (struct sockaddr_in6
*)&ro
.ro_dst
;
2161 bzero(dst
, sizeof(*dst
));
2162 dst
->sin6_len
= sizeof(struct sockaddr_in6
);
2163 dst
->sin6_family
= AF_INET6
;
2164 dst
->sin6_addr
= mreq
->ipv6mr_multiaddr
;
2165 rtalloc((struct route
*)&ro
);
2166 if (ro
.ro_rt
== NULL
) {
2167 error
= EADDRNOTAVAIL
;
2170 ifp
= ro
.ro_rt
->rt_ifp
;
2174 ifp
= ifindex2ifnet
[mreq
->ipv6mr_interface
];
2177 * See if we found an interface, and confirm that it
2178 * supports multicast
2180 if (ifp
== NULL
|| (ifp
->if_flags
& IFF_MULTICAST
) == 0) {
2181 error
= EADDRNOTAVAIL
;
2185 * Put interface index into the multicast address,
2186 * if the address has link-local scope.
2188 if (IN6_IS_ADDR_MC_LINKLOCAL(&mreq
->ipv6mr_multiaddr
)) {
2189 mreq
->ipv6mr_multiaddr
.s6_addr16
[1]
2190 = htons(mreq
->ipv6mr_interface
);
2193 * See if the membership already exists.
2195 lck_mtx_lock(nd6_mutex
);
2196 for (imm
= im6o
->im6o_memberships
.lh_first
;
2197 imm
!= NULL
; imm
= imm
->i6mm_chain
.le_next
)
2198 if (imm
->i6mm_maddr
->in6m_ifp
== ifp
&&
2199 IN6_ARE_ADDR_EQUAL(&imm
->i6mm_maddr
->in6m_addr
,
2200 &mreq
->ipv6mr_multiaddr
))
2204 lck_mtx_unlock(nd6_mutex
);
2208 * Everything looks good; add a new record to the multicast
2209 * address list for the given interface.
2211 imm
= _MALLOC(sizeof(*imm
), M_IPMADDR
, M_WAITOK
);
2214 lck_mtx_unlock(nd6_mutex
);
2217 if ((imm
->i6mm_maddr
=
2218 in6_addmulti(&mreq
->ipv6mr_multiaddr
, ifp
, &error
, 1)) == NULL
) {
2219 FREE(imm
, M_IPMADDR
);
2220 lck_mtx_unlock(nd6_mutex
);
2223 LIST_INSERT_HEAD(&im6o
->im6o_memberships
, imm
, i6mm_chain
);
2224 lck_mtx_unlock(nd6_mutex
);
2227 case IPV6_LEAVE_GROUP
:
2229 * Drop a multicast group membership.
2230 * Group must be a valid IP6 multicast address.
2232 if (m
== NULL
|| m
->m_len
!= sizeof(struct ipv6_mreq
)) {
2236 mreq
= mtod(m
, struct ipv6_mreq
*);
2238 * If an interface address was specified, get a pointer
2239 * to its ifnet structure.
2241 if (mreq
->ipv6mr_interface
< 0
2242 || if_index
< mreq
->ipv6mr_interface
) {
2243 error
= ENXIO
; /* XXX EINVAL? */
2246 ifp
= ifindex2ifnet
[mreq
->ipv6mr_interface
];
2248 if (IN6_IS_ADDR_UNSPECIFIED(&mreq
->ipv6mr_multiaddr
)) {
2249 if (suser(kauth_cred_get(), 0)) {
2253 } else if (IN6_IS_ADDR_V4MAPPED(&mreq
->ipv6mr_multiaddr
)) {
2254 struct ip_mreq v4req
;
2256 v4req
.imr_multiaddr
.s_addr
= mreq
->ipv6mr_multiaddr
.s6_addr32
[3];
2257 v4req
.imr_interface
.s_addr
= INADDR_ANY
;
2260 struct in_ifaddr
*ifa
;
2262 lck_mtx_lock(rt_mtx
);
2263 TAILQ_FOREACH(ifa
, &in_ifaddrhead
, ia_link
) {
2264 if (ifa
->ia_ifp
== ifp
) {
2265 v4req
.imr_interface
= IA_SIN(ifa
)->sin_addr
;
2269 lck_mtx_unlock(rt_mtx
);
2272 error
= ip_dropmembership(imo
, &v4req
);
2274 } else if (!IN6_IS_ADDR_MULTICAST(&mreq
->ipv6mr_multiaddr
)) {
2279 * Put interface index into the multicast address,
2280 * if the address has link-local scope.
2282 if (IN6_IS_ADDR_MC_LINKLOCAL(&mreq
->ipv6mr_multiaddr
)) {
2283 mreq
->ipv6mr_multiaddr
.s6_addr16
[1]
2284 = htons(mreq
->ipv6mr_interface
);
2287 * Find the membership in the membership list.
2289 lck_mtx_lock(nd6_mutex
);
2290 for (imm
= im6o
->im6o_memberships
.lh_first
;
2291 imm
!= NULL
; imm
= imm
->i6mm_chain
.le_next
) {
2293 imm
->i6mm_maddr
->in6m_ifp
== ifp
) &&
2294 IN6_ARE_ADDR_EQUAL(&imm
->i6mm_maddr
->in6m_addr
,
2295 &mreq
->ipv6mr_multiaddr
))
2299 /* Unable to resolve interface */
2300 error
= EADDRNOTAVAIL
;
2301 lck_mtx_unlock(nd6_mutex
);
2305 * Give up the multicast address record to which the
2306 * membership points.
2308 LIST_REMOVE(imm
, i6mm_chain
);
2309 in6_delmulti(imm
->i6mm_maddr
, 1);
2310 lck_mtx_unlock(nd6_mutex
);
2311 FREE(imm
, M_IPMADDR
);
2320 * If all options have default values, no need to keep the mbuf.
2322 lck_mtx_lock(nd6_mutex
);
2323 if (im6o
->im6o_multicast_ifp
== NULL
&&
2324 im6o
->im6o_multicast_hlim
== ip6_defmcasthlim
&&
2325 im6o
->im6o_multicast_loop
== IPV6_DEFAULT_MULTICAST_LOOP
&&
2326 im6o
->im6o_memberships
.lh_first
== NULL
) {
2327 FREE(*im6op
, M_IPMOPTS
);
2330 if (imo
->imo_multicast_ifp
== NULL
&&
2331 imo
->imo_multicast_vif
== -1 &&
2332 imo
->imo_multicast_ttl
== IP_DEFAULT_MULTICAST_TTL
&&
2333 imo
->imo_multicast_loop
== IP_DEFAULT_MULTICAST_LOOP
&&
2334 imo
->imo_num_memberships
== 0) {
2335 ip_freemoptions(imo
);
2336 in6p
->inp_moptions
= 0;
2338 lck_mtx_unlock(nd6_mutex
);
2344 * Return the IP6 multicast options in response to user getsockopt().
2347 ip6_getmoptions(optname
, im6o
, mp
)
2349 struct ip6_moptions
*im6o
;
2352 u_int
*hlim
, *loop
, *ifindex
;
2354 *mp
= m_get(M_WAIT
, MT_HEADER
); /*XXX*/
2358 case IPV6_MULTICAST_IF
:
2359 ifindex
= mtod(*mp
, u_int
*);
2360 (*mp
)->m_len
= sizeof(u_int
);
2361 if (im6o
== NULL
|| im6o
->im6o_multicast_ifp
== NULL
)
2364 *ifindex
= im6o
->im6o_multicast_ifp
->if_index
;
2367 case IPV6_MULTICAST_HOPS
:
2368 hlim
= mtod(*mp
, u_int
*);
2369 (*mp
)->m_len
= sizeof(u_int
);
2371 *hlim
= ip6_defmcasthlim
;
2373 *hlim
= im6o
->im6o_multicast_hlim
;
2376 case IPV6_MULTICAST_LOOP
:
2377 loop
= mtod(*mp
, u_int
*);
2378 (*mp
)->m_len
= sizeof(u_int
);
2380 *loop
= ip6_defmcasthlim
;
2382 *loop
= im6o
->im6o_multicast_loop
;
2391 * Discard the IP6 multicast options.
2394 ip6_freemoptions(im6o
)
2395 struct ip6_moptions
*im6o
;
2397 struct in6_multi_mship
*imm
;
2402 lck_mtx_lock(nd6_mutex
);
2403 while ((imm
= im6o
->im6o_memberships
.lh_first
) != NULL
) {
2404 LIST_REMOVE(imm
, i6mm_chain
);
2405 if (imm
->i6mm_maddr
)
2406 in6_delmulti(imm
->i6mm_maddr
, 1);
2407 FREE(imm
, M_IPMADDR
);
2409 lck_mtx_unlock(nd6_mutex
);
2410 FREE(im6o
, M_IPMOPTS
);
2414 * Set IPv6 outgoing packet options based on advanced API.
2417 ip6_setpktoptions(control
, opt
, priv
, needcopy
)
2418 struct mbuf
*control
;
2419 struct ip6_pktopts
*opt
;
2422 struct cmsghdr
*cm
= 0;
2424 if (control
== 0 || opt
== 0)
2427 init_ip6pktopts(opt
);
2430 * XXX: Currently, we assume all the optional information is stored
2433 if (control
->m_next
)
2436 for (; control
->m_len
; control
->m_data
+= CMSG_ALIGN(cm
->cmsg_len
),
2437 control
->m_len
-= CMSG_ALIGN(cm
->cmsg_len
)) {
2438 cm
= mtod(control
, struct cmsghdr
*);
2439 if (cm
->cmsg_len
== 0 || cm
->cmsg_len
> control
->m_len
)
2441 if (cm
->cmsg_level
!= IPPROTO_IPV6
)
2445 * XXX should check if RFC2292 API is mixed with 2292bis API
2447 switch (cm
->cmsg_type
) {
2449 if (cm
->cmsg_len
!= CMSG_LEN(sizeof(struct in6_pktinfo
)))
2452 /* XXX: Is it really WAITOK? */
2453 opt
->ip6po_pktinfo
=
2454 _MALLOC(sizeof(struct in6_pktinfo
),
2455 M_IP6OPT
, M_WAITOK
);
2456 bcopy(CMSG_DATA(cm
), opt
->ip6po_pktinfo
,
2457 sizeof(struct in6_pktinfo
));
2459 opt
->ip6po_pktinfo
=
2460 (struct in6_pktinfo
*)CMSG_DATA(cm
);
2461 if (opt
->ip6po_pktinfo
->ipi6_ifindex
&&
2462 IN6_IS_ADDR_LINKLOCAL(&opt
->ip6po_pktinfo
->ipi6_addr
))
2463 opt
->ip6po_pktinfo
->ipi6_addr
.s6_addr16
[1] =
2464 htons(opt
->ip6po_pktinfo
->ipi6_ifindex
);
2466 if (opt
->ip6po_pktinfo
->ipi6_ifindex
> if_index
2467 || opt
->ip6po_pktinfo
->ipi6_ifindex
< 0) {
2472 * Check if the requested source address is indeed a
2473 * unicast address assigned to the node, and can be
2474 * used as the packet's source address.
2476 if (!IN6_IS_ADDR_UNSPECIFIED(&opt
->ip6po_pktinfo
->ipi6_addr
)) {
2477 struct in6_ifaddr
*ia6
;
2478 struct sockaddr_in6 sin6
;
2480 bzero(&sin6
, sizeof(sin6
));
2481 sin6
.sin6_len
= sizeof(sin6
);
2482 sin6
.sin6_family
= AF_INET6
;
2484 opt
->ip6po_pktinfo
->ipi6_addr
;
2485 ia6
= (struct in6_ifaddr
*)ifa_ifwithaddr(sin6tosa(&sin6
));
2487 (ia6
->ia6_flags
& (IN6_IFF_ANYCAST
|
2488 IN6_IFF_NOTREADY
)) != 0) {
2489 if (ia6
) ifafree(&ia6
->ia_ifa
);
2490 return(EADDRNOTAVAIL
);
2492 ifafree(&ia6
->ia_ifa
);
2498 if (cm
->cmsg_len
!= CMSG_LEN(sizeof(int)))
2501 opt
->ip6po_hlim
= *(int *)CMSG_DATA(cm
);
2502 if (opt
->ip6po_hlim
< -1 || opt
->ip6po_hlim
> 255)
2510 if (cm
->cmsg_len
< sizeof(u_char
) ||
2511 /* check if cmsg_len is large enough for sa_len */
2512 cm
->cmsg_len
< CMSG_LEN(*CMSG_DATA(cm
)))
2516 opt
->ip6po_nexthop
=
2517 _MALLOC(*CMSG_DATA(cm
),
2518 M_IP6OPT
, M_WAITOK
);
2519 bcopy(CMSG_DATA(cm
),
2523 opt
->ip6po_nexthop
=
2524 (struct sockaddr
*)CMSG_DATA(cm
);
2529 struct ip6_hbh
*hbh
;
2532 if (cm
->cmsg_len
< CMSG_LEN(sizeof(struct ip6_hbh
)))
2534 hbh
= (struct ip6_hbh
*)CMSG_DATA(cm
);
2535 hbhlen
= (hbh
->ip6h_len
+ 1) << 3;
2536 if (cm
->cmsg_len
!= CMSG_LEN(hbhlen
))
2541 _MALLOC(hbhlen
, M_IP6OPT
, M_WAITOK
);
2542 bcopy(hbh
, opt
->ip6po_hbh
, hbhlen
);
2544 opt
->ip6po_hbh
= hbh
;
2550 struct ip6_dest
*dest
, **newdest
;
2553 if (cm
->cmsg_len
< CMSG_LEN(sizeof(struct ip6_dest
)))
2555 dest
= (struct ip6_dest
*)CMSG_DATA(cm
);
2556 destlen
= (dest
->ip6d_len
+ 1) << 3;
2557 if (cm
->cmsg_len
!= CMSG_LEN(destlen
))
2561 * The old advacned API is ambiguous on this
2562 * point. Our approach is to determine the
2563 * position based according to the existence
2564 * of a routing header. Note, however, that
2565 * this depends on the order of the extension
2566 * headers in the ancillary data; the 1st part
2567 * of the destination options header must
2568 * appear before the routing header in the
2569 * ancillary data, too.
2570 * RFC2292bis solved the ambiguity by
2571 * introducing separate cmsg types.
2573 if (opt
->ip6po_rthdr
== NULL
)
2574 newdest
= &opt
->ip6po_dest1
;
2576 newdest
= &opt
->ip6po_dest2
;
2579 *newdest
= _MALLOC(destlen
, M_IP6OPT
, M_WAITOK
);
2580 bcopy(dest
, *newdest
, destlen
);
2589 struct ip6_rthdr
*rth
;
2592 if (cm
->cmsg_len
< CMSG_LEN(sizeof(struct ip6_rthdr
)))
2594 rth
= (struct ip6_rthdr
*)CMSG_DATA(cm
);
2595 rthlen
= (rth
->ip6r_len
+ 1) << 3;
2596 if (cm
->cmsg_len
!= CMSG_LEN(rthlen
))
2599 switch (rth
->ip6r_type
) {
2600 case IPV6_RTHDR_TYPE_0
:
2601 /* must contain one addr */
2602 if (rth
->ip6r_len
== 0)
2604 /* length must be even */
2605 if (rth
->ip6r_len
% 2)
2607 if (rth
->ip6r_len
/ 2 != rth
->ip6r_segleft
)
2611 return(EINVAL
); /* not supported */
2615 opt
->ip6po_rthdr
= _MALLOC(rthlen
, M_IP6OPT
,
2617 bcopy(rth
, opt
->ip6po_rthdr
, rthlen
);
2619 opt
->ip6po_rthdr
= rth
;
2625 return(ENOPROTOOPT
);
2633 * Routine called from ip6_output() to loop back a copy of an IP6 multicast
2634 * packet to the input queue of a specified interface. Note that this
2635 * calls the output routine of the loopback "driver", but with an interface
2636 * pointer that might NOT be &loif -- easier than replicating that code here.
2642 struct sockaddr_in6
*dst
)
2645 struct ip6_hdr
*ip6
;
2647 copym
= m_copy(m
, 0, M_COPYALL
);
2652 * Make sure to deep-copy IPv6 header portion in case the data
2653 * is in an mbuf cluster, so that we can safely override the IPv6
2654 * header portion later.
2656 if ((copym
->m_flags
& M_EXT
) != 0 ||
2657 copym
->m_len
< sizeof(struct ip6_hdr
)) {
2658 copym
= m_pullup(copym
, sizeof(struct ip6_hdr
));
2664 if (copym
->m_len
< sizeof(*ip6
)) {
2670 ip6
= mtod(copym
, struct ip6_hdr
*);
2671 #ifndef SCOPEDROUTING
2673 * clear embedded scope identifiers if necessary.
2674 * in6_clearscope will touch the addresses only when necessary.
2676 in6_clearscope(&ip6
->ip6_src
);
2677 in6_clearscope(&ip6
->ip6_dst
);
2682 /* Makes sure the HW checksum flags are cleaned before sending the packet */
2684 copym
->m_pkthdr
.rcvif
= 0;
2685 copym
->m_pkthdr
.csum_data
= 0;
2686 copym
->m_pkthdr
.csum_flags
= 0;
2689 copym
->m_pkthdr
.rcvif
= ifp
;
2690 lck_mtx_unlock(ip6_mutex
);
2691 dlil_output(lo_ifp
, PF_INET6
, copym
, 0, (struct sockaddr
*)dst
, 0);
2692 lck_mtx_lock(ip6_mutex
);
2696 (void)if_simloop(ifp
, copym
, dst
->sin6_family
, NULL
);
2701 * Chop IPv6 header off from the payload.
2704 ip6_splithdr(m
, exthdrs
)
2706 struct ip6_exthdrs
*exthdrs
;
2709 struct ip6_hdr
*ip6
;
2711 ip6
= mtod(m
, struct ip6_hdr
*);
2712 if (m
->m_len
> sizeof(*ip6
)) {
2713 MGETHDR(mh
, M_DONTWAIT
, MT_HEADER
);
2718 M_COPY_PKTHDR(mh
, m
);
2719 MH_ALIGN(mh
, sizeof(*ip6
));
2720 m
->m_flags
&= ~M_PKTHDR
;
2721 m
->m_len
-= sizeof(*ip6
);
2722 m
->m_data
+= sizeof(*ip6
);
2725 m
->m_len
= sizeof(*ip6
);
2726 bcopy((caddr_t
)ip6
, mtod(m
, caddr_t
), sizeof(*ip6
));
2728 exthdrs
->ip6e_ip6
= m
;
2733 * Compute IPv6 extension header length.
2737 struct in6pcb
*in6p
;
2741 if (!in6p
->in6p_outputopts
)
2746 (((struct ip6_ext *)(x)) ? (((struct ip6_ext *)(x))->ip6e_len + 1) << 3 : 0)
2748 len
+= elen(in6p
->in6p_outputopts
->ip6po_hbh
);
2749 if (in6p
->in6p_outputopts
->ip6po_rthdr
)
2750 /* dest1 is valid with rthdr only */
2751 len
+= elen(in6p
->in6p_outputopts
->ip6po_dest1
);
2752 len
+= elen(in6p
->in6p_outputopts
->ip6po_rthdr
);
2753 len
+= elen(in6p
->in6p_outputopts
->ip6po_dest2
);