1 /* $FreeBSD: src/sys/netinet6/ip6_mroute.c,v 1.16.2.1 2002/12/18 21:39:40 suz Exp $ */
2 /* $KAME: ip6_mroute.c,v 1.58 2001/12/18 02:36:31 itojun Exp $ */
5 * Copyright (C) 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
33 /* BSDI ip_mroute.c,v 2.10 1996/11/14 00:29:52 jch Exp */
36 * IP multicast forwarding procedures
38 * Written by David Waitzman, BBN Labs, August 1988.
39 * Modified by Steve Deering, Stanford, February 1989.
40 * Modified by Mark J. Steiglitz, Stanford, May, 1991
41 * Modified by Van Jacobson, LBL, January 1993
42 * Modified by Ajit Thyagarajan, PARC, August 1993
43 * Modified by Bill Fenenr, PARC, April 1994
45 * MROUTING Revision: 3.5.1.2 + PIM-SMv2 (pimd) Support
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/malloc.h>
53 #include <sys/socket.h>
54 #include <sys/socketvar.h>
55 #include <sys/sockio.h>
56 #include <sys/protosw.h>
57 #include <sys/errno.h>
59 #include <sys/kernel.h>
60 #include <sys/syslog.h>
63 #include <net/route.h>
64 #include <net/raw_cb.h>
66 #include <netinet/in.h>
67 #include <netinet/in_var.h>
69 #include <netinet/ip6.h>
70 #include <netinet6/ip6_var.h>
71 #include <netinet6/ip6_mroute.h>
72 #include <netinet6/pim6.h>
73 #include <netinet6/pim6_var.h>
76 static MALLOC_DEFINE(M_MRTABLE
, "mf6c", "multicast forwarding cache entry");
79 #define M_HASCL(m) ((m)->m_flags & M_EXT)
81 static int ip6_mdq
__P((struct mbuf
*, struct ifnet
*, struct mf6c
*));
82 static void phyint_send
__P((struct ip6_hdr
*, struct mif6
*, struct mbuf
*));
84 static int set_pim6
__P((int *));
85 static int socket_send
__P((struct socket
*, struct mbuf
*,
86 struct sockaddr_in6
*));
87 static int register_send
__P((struct ip6_hdr
*, struct mif6
*,
91 * Globals. All but ip6_mrouter, ip6_mrtproto and mrt6stat could be static,
92 * except for netstat or debugging purposes.
94 struct socket
*ip6_mrouter
= NULL
;
95 int ip6_mrouter_ver
= 0;
96 int ip6_mrtproto
= IPPROTO_PIM
; /* for netstat only */
97 struct mrt6stat mrt6stat
;
99 #define NO_RTE_FOUND 0x1
100 #define RTE_FOUND 0x2
102 struct mf6c
*mf6ctable
[MF6CTBLSIZ
];
103 u_char n6expire
[MF6CTBLSIZ
];
104 static struct mif6 mif6table
[MAXMIFS
];
106 u_int mrt6debug
= 0; /* debug level */
107 #define DEBUG_MFC 0x02
108 #define DEBUG_FORWARD 0x04
109 #define DEBUG_EXPIRE 0x08
110 #define DEBUG_XMIT 0x10
111 #define DEBUG_REG 0x20
112 #define DEBUG_PIM 0x40
115 static void expire_upcalls
__P((void *));
116 static void expire_upcalls_funneled
__P((void *));
118 #define EXPIRE_TIMEOUT (hz / 4) /* 4x / second */
119 #define UPCALL_EXPIRE 6 /* number of timeouts */
123 extern struct socket
*ip_mrouter
;
127 static u_long lo_dl_tag
= 0;
129 * 'Interfaces' associated with decapsulator (so we can tell
130 * packets that went through it from ones that get reflected
131 * by a broken gateway). These interfaces are never linked into
132 * the system ifnet list & no routes point to them. I.e., packets
133 * can't be sent this way. They only exist as a placeholder for
134 * multicast source verification.
136 struct ifnet multicast_register_if
;
138 #define ENCAP_HOPS 64
143 static mifi_t nummifs
= 0;
144 static mifi_t reg_mif_num
= (mifi_t
)-1;
146 static struct pim6stat pim6stat
;
150 * Hash function for a source, group entry
152 #define MF6CHASH(a, g) MF6CHASHMOD((a).s6_addr32[0] ^ (a).s6_addr32[1] ^ \
153 (a).s6_addr32[2] ^ (a).s6_addr32[3] ^ \
154 (g).s6_addr32[0] ^ (g).s6_addr32[1] ^ \
155 (g).s6_addr32[2] ^ (g).s6_addr32[3])
158 * Find a route for a given origin IPv6 address and Multicast group address.
159 * Quality of service parameter to be added in the future!!!
162 #define MF6CFIND(o, g, rt) do { \
163 struct mf6c *_rt = mf6ctable[MF6CHASH(o,g)]; \
165 mrt6stat.mrt6s_mfc_lookups++; \
167 if (IN6_ARE_ADDR_EQUAL(&_rt->mf6c_origin.sin6_addr, &(o)) && \
168 IN6_ARE_ADDR_EQUAL(&_rt->mf6c_mcastgrp.sin6_addr, &(g)) && \
169 (_rt->mf6c_stall == NULL)) { \
173 _rt = _rt->mf6c_next; \
176 mrt6stat.mrt6s_mfc_misses++; \
181 * Macros to compute elapsed time efficiently
182 * Borrowed from Van Jacobson's scheduling code
184 #define TV_DELTA(a, b, delta) do { \
187 delta = (a).tv_usec - (b).tv_usec; \
188 if ((xxs = (a).tv_sec - (b).tv_sec)) { \
197 delta += (1000000 * xxs); \
202 #define TV_LT(a, b) (((a).tv_usec < (b).tv_usec && \
203 (a).tv_sec <= (b).tv_sec) || (a).tv_sec < (b).tv_sec)
206 #define UPCALL_MAX 50
207 u_long upcall_data
[UPCALL_MAX
+ 1];
208 static void collate();
209 #endif /* UPCALL_TIMING */
211 static int get_sg_cnt
__P((struct sioc_sg_req6
*));
212 static int get_mif6_cnt
__P((struct sioc_mif_req6
*));
213 static int ip6_mrouter_init
__P((struct socket
*, struct mbuf
*, int));
214 static int add_m6if
__P((struct mif6ctl
*));
215 static int del_m6if
__P((mifi_t
*));
216 static int add_m6fc
__P((struct mf6cctl
*));
217 static int del_m6fc
__P((struct mf6cctl
*));
220 static struct callout expire_upcalls_ch
;
223 * Handle MRT setsockopt commands to modify the multicast routing tables.
226 ip6_mrouter_set(so
, sopt
)
228 struct sockopt
*sopt
;
233 if (so
!= ip6_mrouter
&& sopt
->sopt_name
!= MRT6_INIT
)
236 if ((error
= soopt_getm(sopt
, &m
)) != 0) /* XXX */
238 if ((error
= soopt_mcopyin(sopt
, m
)) != 0) /* XXX */
241 switch (sopt
->sopt_name
) {
246 error
= ip6_mrouter_init(so
, m
, sopt
->sopt_name
);
249 error
= ip6_mrouter_done();
252 error
= add_m6if(mtod(m
, struct mif6ctl
*));
255 error
= del_m6if(mtod(m
, mifi_t
*));
258 error
= add_m6fc(mtod(m
, struct mf6cctl
*));
261 error
= del_m6fc(mtod(m
, struct mf6cctl
*));
264 error
= set_pim6(mtod(m
, int *));
276 * Handle MRT getsockopt commands
279 ip6_mrouter_get(so
, sopt
)
281 struct sockopt
*sopt
;
285 if (so
!= ip6_mrouter
) return EACCES
;
287 switch (sopt
->sopt_name
) {
289 error
= sooptcopyout(sopt
, &pim6
, sizeof(pim6
));
296 * Handle ioctl commands to obtain information from the cache
299 mrt6_ioctl(cmd
, data
)
306 case SIOCGETSGCNT_IN6
:
307 return(get_sg_cnt((struct sioc_sg_req6
*)data
));
308 break; /* for safety */
309 case SIOCGETMIFCNT_IN6
:
310 return(get_mif6_cnt((struct sioc_mif_req6
*)data
));
311 break; /* for safety */
320 * returns the packet, byte, rpf-failure count for the source group provided
324 struct sioc_sg_req6
*req
;
330 MF6CFIND(req
->src
.sin6_addr
, req
->grp
.sin6_addr
, rt
);
333 req
->pktcnt
= rt
->mf6c_pkt_cnt
;
334 req
->bytecnt
= rt
->mf6c_byte_cnt
;
335 req
->wrong_if
= rt
->mf6c_wrong_if
;
339 req
->pktcnt
= req
->bytecnt
= req
->wrong_if
= 0xffffffff;
346 * returns the input and output packet and byte counts on the mif provided
350 struct sioc_mif_req6
*req
;
352 mifi_t mifi
= req
->mifi
;
357 req
->icount
= mif6table
[mifi
].m6_pkt_in
;
358 req
->ocount
= mif6table
[mifi
].m6_pkt_out
;
359 req
->ibytes
= mif6table
[mifi
].m6_bytes_in
;
360 req
->obytes
= mif6table
[mifi
].m6_bytes_out
;
369 if ((*i
!= 1) && (*i
!= 0))
378 * Enable multicast routing
381 ip6_mrouter_init(so
, m
, cmd
)
391 "ip6_mrouter_init: so_type = %d, pr_protocol = %d\n",
392 so
->so_type
, so
->so_proto
->pr_protocol
);
395 if (so
->so_type
!= SOCK_RAW
||
396 so
->so_proto
->pr_protocol
!= IPPROTO_ICMPV6
)
399 if (!m
|| (m
->m_len
!= sizeof(int *)))
406 if (ip6_mrouter
!= NULL
) return EADDRINUSE
;
409 ip6_mrouter_ver
= cmd
;
411 bzero((caddr_t
)mf6ctable
, sizeof(mf6ctable
));
412 bzero((caddr_t
)n6expire
, sizeof(n6expire
));
414 pim6
= 0;/* used for stubbing out/in pim stuff */
417 callout_reset(&expire_upcalls_ch
, EXPIRE_TIMEOUT
,
418 expire_upcalls
, NULL
);
420 timeout(expire_upcalls_funneled
, (caddr_t
)NULL
, EXPIRE_TIMEOUT
);
425 log(LOG_DEBUG
, "ip6_mrouter_init\n");
432 * Disable multicast routing
440 struct in6_ifreq ifr
;
448 * For each phyint in use, disable promiscuous reception of all IPv6
454 * If there is still IPv4 multicast routing daemon,
455 * we remain interfaces to receive all muliticasted packets.
456 * XXX: there may be an interface in which the IPv4 multicast
457 * daemon is not interested...
463 for (mifi
= 0; mifi
< nummifs
; mifi
++) {
464 if (mif6table
[mifi
].m6_ifp
&&
465 !(mif6table
[mifi
].m6_flags
& MIFF_REGISTER
)) {
466 ifr
.ifr_addr
.sin6_family
= AF_INET6
;
467 ifr
.ifr_addr
.sin6_addr
= in6addr_any
;
468 ifp
= mif6table
[mifi
].m6_ifp
;
470 dlil_ioctl(0, ifp
, SIOCDELMULTI
,
473 (*ifp
->if_ioctl
)(ifp
, SIOCDELMULTI
,
480 bzero((caddr_t
)qtable
, sizeof(qtable
));
481 bzero((caddr_t
)tbftable
, sizeof(tbftable
));
483 bzero((caddr_t
)mif6table
, sizeof(mif6table
));
486 pim6
= 0; /* used to stub out/in pim specific code */
489 callout_stop(&expire_upcalls_ch
);
491 untimeout(expire_upcalls_funneled
, (caddr_t
)NULL
);
495 * Free all multicast forwarding cache entries.
497 for (i
= 0; i
< MF6CTBLSIZ
; i
++) {
502 for (rte
= rt
->mf6c_stall
; rte
!= NULL
; ) {
503 struct rtdetq
*n
= rte
->next
;
506 FREE(rte
, M_MRTABLE
);
511 FREE(frt
, M_MRTABLE
);
515 bzero((caddr_t
)mf6ctable
, sizeof(mf6ctable
));
518 * Reset de-encapsulation cache
529 log(LOG_DEBUG
, "ip6_mrouter_done\n");
535 static struct sockaddr_in6 sin6
= { sizeof(sin6
), AF_INET6
};
538 * Add a mif to the mif table
542 struct mif6ctl
*mifcp
;
548 struct tbf
*m_tbf
= tbftable
+ mifcp
->mif6c_mifi
;
551 if (mifcp
->mif6c_mifi
>= MAXMIFS
)
553 mifp
= mif6table
+ mifcp
->mif6c_mifi
;
555 return EADDRINUSE
; /* XXX: is it appropriate? */
556 if (mifcp
->mif6c_pifi
== 0 || mifcp
->mif6c_pifi
> if_index
)
558 ifp
= ifindex2ifnet
[mifcp
->mif6c_pifi
];
560 if (mifcp
->mif6c_flags
& MIFF_REGISTER
) {
561 if (reg_mif_num
== (mifi_t
)-1) {
562 multicast_register_if
.if_name
= "register_mif";
563 multicast_register_if
.if_flags
|= IFF_LOOPBACK
;
564 multicast_register_if
.if_index
= mifcp
->mif6c_mifi
;
565 reg_mif_num
= mifcp
->mif6c_mifi
;
568 ifp
= &multicast_register_if
;
572 /* Make sure the interface supports multicast */
573 if ((ifp
->if_flags
& IFF_MULTICAST
) == 0)
577 error
= if_allmulti(ifp
, 1);
584 mifp
->m6_flags
= mifcp
->mif6c_flags
;
587 /* scaling up here allows division by 1024 in critical code */
588 mifp
->m6_rate_limit
= mifcp
->mif6c_rate_limit
* 1024 / 1000;
590 /* initialize per mif pkt counters */
592 mifp
->m6_pkt_out
= 0;
593 mifp
->m6_bytes_in
= 0;
594 mifp
->m6_bytes_out
= 0;
597 /* Adjust nummifs up if the mifi is higher than nummifs */
598 if (nummifs
<= mifcp
->mif6c_mifi
)
599 nummifs
= mifcp
->mif6c_mifi
+ 1;
604 "add_mif #%d, phyint %s%d\n",
606 ifp
->if_name
, ifp
->if_unit
);
613 * Delete a mif from the mif table
619 struct mif6
*mifp
= mif6table
+ *mifip
;
624 if (*mifip
>= nummifs
)
626 if (mifp
->m6_ifp
== NULL
)
631 if (!(mifp
->m6_flags
& MIFF_REGISTER
)) {
633 * XXX: what if there is yet IPv4 multicast daemon
634 * using the interface?
642 bzero((caddr_t
)qtable
[*mifip
], sizeof(qtable
[*mifip
]));
643 bzero((caddr_t
)mifp
->m6_tbf
, sizeof(*(mifp
->m6_tbf
)));
645 bzero((caddr_t
)mifp
, sizeof (*mifp
));
647 /* Adjust nummifs down */
648 for (mifi
= nummifs
; mifi
> 0; mifi
--)
649 if (mif6table
[mifi
- 1].m6_ifp
)
657 log(LOG_DEBUG
, "del_m6if %d, nummifs %d\n", *mifip
, nummifs
);
668 struct mf6cctl
*mfccp
;
676 MF6CFIND(mfccp
->mf6cc_origin
.sin6_addr
,
677 mfccp
->mf6cc_mcastgrp
.sin6_addr
, rt
);
679 /* If an entry already exists, just update the fields */
682 if (mrt6debug
& DEBUG_MFC
)
684 "add_m6fc no upcall h %d o %s g %s p %x\n",
685 ip6_sprintf(&mfccp
->mf6cc_origin
.sin6_addr
),
686 ip6_sprintf(&mfccp
->mf6cc_mcastgrp
.sin6_addr
),
687 mfccp
->mf6cc_parent
);
691 rt
->mf6c_parent
= mfccp
->mf6cc_parent
;
692 rt
->mf6c_ifset
= mfccp
->mf6cc_ifset
;
698 * Find the entry for which the upcall was made and update
701 hash
= MF6CHASH(mfccp
->mf6cc_origin
.sin6_addr
,
702 mfccp
->mf6cc_mcastgrp
.sin6_addr
);
703 for (rt
= mf6ctable
[hash
], nstl
= 0; rt
; rt
= rt
->mf6c_next
) {
704 if (IN6_ARE_ADDR_EQUAL(&rt
->mf6c_origin
.sin6_addr
,
705 &mfccp
->mf6cc_origin
.sin6_addr
) &&
706 IN6_ARE_ADDR_EQUAL(&rt
->mf6c_mcastgrp
.sin6_addr
,
707 &mfccp
->mf6cc_mcastgrp
.sin6_addr
) &&
708 (rt
->mf6c_stall
!= NULL
)) {
712 "add_m6fc: %s o %s g %s p %x dbx %p\n",
713 "multiple kernel entries",
714 ip6_sprintf(&mfccp
->mf6cc_origin
.sin6_addr
),
715 ip6_sprintf(&mfccp
->mf6cc_mcastgrp
.sin6_addr
),
716 mfccp
->mf6cc_parent
, rt
->mf6c_stall
);
719 if (mrt6debug
& DEBUG_MFC
)
721 "add_m6fc o %s g %s p %x dbg %x\n",
722 ip6_sprintf(&mfccp
->mf6cc_origin
.sin6_addr
),
723 ip6_sprintf(&mfccp
->mf6cc_mcastgrp
.sin6_addr
),
724 mfccp
->mf6cc_parent
, rt
->mf6c_stall
);
727 rt
->mf6c_origin
= mfccp
->mf6cc_origin
;
728 rt
->mf6c_mcastgrp
= mfccp
->mf6cc_mcastgrp
;
729 rt
->mf6c_parent
= mfccp
->mf6cc_parent
;
730 rt
->mf6c_ifset
= mfccp
->mf6cc_ifset
;
731 /* initialize pkt counters per src-grp */
732 rt
->mf6c_pkt_cnt
= 0;
733 rt
->mf6c_byte_cnt
= 0;
734 rt
->mf6c_wrong_if
= 0;
736 rt
->mf6c_expire
= 0; /* Don't clean this guy up */
739 /* free packets Qed at the end of this entry */
740 for (rte
= rt
->mf6c_stall
; rte
!= NULL
; ) {
741 struct rtdetq
*n
= rte
->next
;
742 ip6_mdq(rte
->m
, rte
->ifp
, rt
);
746 #endif /* UPCALL_TIMING */
747 FREE(rte
, M_MRTABLE
);
750 rt
->mf6c_stall
= NULL
;
755 * It is possible that an entry is being inserted without an upcall
759 if (mrt6debug
& DEBUG_MFC
)
760 log(LOG_DEBUG
,"add_mfc no upcall h %d o %s g %s p %x\n",
762 ip6_sprintf(&mfccp
->mf6cc_origin
.sin6_addr
),
763 ip6_sprintf(&mfccp
->mf6cc_mcastgrp
.sin6_addr
),
764 mfccp
->mf6cc_parent
);
767 for (rt
= mf6ctable
[hash
]; rt
; rt
= rt
->mf6c_next
) {
769 if (IN6_ARE_ADDR_EQUAL(&rt
->mf6c_origin
.sin6_addr
,
770 &mfccp
->mf6cc_origin
.sin6_addr
)&&
771 IN6_ARE_ADDR_EQUAL(&rt
->mf6c_mcastgrp
.sin6_addr
,
772 &mfccp
->mf6cc_mcastgrp
.sin6_addr
)) {
774 rt
->mf6c_origin
= mfccp
->mf6cc_origin
;
775 rt
->mf6c_mcastgrp
= mfccp
->mf6cc_mcastgrp
;
776 rt
->mf6c_parent
= mfccp
->mf6cc_parent
;
777 rt
->mf6c_ifset
= mfccp
->mf6cc_ifset
;
778 /* initialize pkt counters per src-grp */
779 rt
->mf6c_pkt_cnt
= 0;
780 rt
->mf6c_byte_cnt
= 0;
781 rt
->mf6c_wrong_if
= 0;
789 /* no upcall, so make a new entry */
790 rt
= (struct mf6c
*)_MALLOC(sizeof(*rt
), M_MRTABLE
,
797 /* insert new entry at head of hash chain */
798 rt
->mf6c_origin
= mfccp
->mf6cc_origin
;
799 rt
->mf6c_mcastgrp
= mfccp
->mf6cc_mcastgrp
;
800 rt
->mf6c_parent
= mfccp
->mf6cc_parent
;
801 rt
->mf6c_ifset
= mfccp
->mf6cc_ifset
;
802 /* initialize pkt counters per src-grp */
803 rt
->mf6c_pkt_cnt
= 0;
804 rt
->mf6c_byte_cnt
= 0;
805 rt
->mf6c_wrong_if
= 0;
807 rt
->mf6c_stall
= NULL
;
809 /* link into table */
810 rt
->mf6c_next
= mf6ctable
[hash
];
811 mf6ctable
[hash
] = rt
;
820 * collect delay statistics on the upcalls
834 TV_DELTA(tp
, *t
, delta
);
843 #endif /* UPCALL_TIMING */
846 * Delete an mfc entry
850 struct mf6cctl
*mfccp
;
852 struct sockaddr_in6 origin
;
853 struct sockaddr_in6 mcastgrp
;
859 origin
= mfccp
->mf6cc_origin
;
860 mcastgrp
= mfccp
->mf6cc_mcastgrp
;
861 hash
= MF6CHASH(origin
.sin6_addr
, mcastgrp
.sin6_addr
);
864 if (mrt6debug
& DEBUG_MFC
)
865 log(LOG_DEBUG
,"del_m6fc orig %s mcastgrp %s\n",
866 ip6_sprintf(&origin
.sin6_addr
),
867 ip6_sprintf(&mcastgrp
.sin6_addr
));
872 nptr
= &mf6ctable
[hash
];
873 while ((rt
= *nptr
) != NULL
) {
874 if (IN6_ARE_ADDR_EQUAL(&origin
.sin6_addr
,
875 &rt
->mf6c_origin
.sin6_addr
) &&
876 IN6_ARE_ADDR_EQUAL(&mcastgrp
.sin6_addr
,
877 &rt
->mf6c_mcastgrp
.sin6_addr
) &&
878 rt
->mf6c_stall
== NULL
)
881 nptr
= &rt
->mf6c_next
;
885 return EADDRNOTAVAIL
;
888 *nptr
= rt
->mf6c_next
;
897 socket_send(s
, mm
, src
)
900 struct sockaddr_in6
*src
;
903 if (sbappendaddr(&s
->so_rcv
,
904 (struct sockaddr
*)src
,
905 mm
, (struct mbuf
*)0) != 0) {
915 * IPv6 multicast forwarding function. This function assumes that the packet
916 * pointed to by "ip6" has arrived on (or is about to be sent to) the interface
917 * pointed to by "ifp", and the packet is to be relayed to other networks
918 * that have members of the packet's destination IPv6 multicast group.
920 * The packet is returned unscathed to the caller, unless it is
921 * erroneous, in which case a non-zero return value tells the caller to
926 ip6_mforward(ip6
, ifp
, m
)
938 if (mrt6debug
& DEBUG_FORWARD
)
939 log(LOG_DEBUG
, "ip6_mforward: src %s, dst %s, ifindex %d\n",
940 ip6_sprintf(&ip6
->ip6_src
), ip6_sprintf(&ip6
->ip6_dst
),
945 * Don't forward a packet with Hop limit of zero or one,
946 * or a packet destined to a local-only group.
948 if (ip6
->ip6_hlim
<= 1 || IN6_IS_ADDR_MC_NODELOCAL(&ip6
->ip6_dst
) ||
949 IN6_IS_ADDR_MC_LINKLOCAL(&ip6
->ip6_dst
))
954 * Source address check: do not forward packets with unspecified
955 * source. It was discussed in July 2000, on ipngwg mailing list.
956 * This is rather more serious than unicast cases, because some
957 * MLD packets can be sent with the unspecified source address
958 * (although such packets must normally set 1 to the hop limit field).
960 if (IN6_IS_ADDR_UNSPECIFIED(&ip6
->ip6_src
)) {
961 ip6stat
.ip6s_cantforward
++;
962 if (ip6_log_time
+ ip6_log_interval
< time_second
) {
963 ip6_log_time
= time_second
;
966 "from %s to %s nxt %d received on %s\n",
967 ip6_sprintf(&ip6
->ip6_src
),
968 ip6_sprintf(&ip6
->ip6_dst
),
970 if_name(m
->m_pkthdr
.rcvif
));
976 * Determine forwarding mifs from the forwarding cache table
979 MF6CFIND(ip6
->ip6_src
, ip6
->ip6_dst
, rt
);
981 /* Entry exists, so forward if necessary */
984 return (ip6_mdq(m
, ifp
, rt
));
987 * If we don't have a route for packet's origin,
988 * Make a copy of the packet &
989 * send message to routing daemon
1000 #endif /* UPCALL_TIMING */
1002 mrt6stat
.mrt6s_no_route
++;
1004 if (mrt6debug
& (DEBUG_FORWARD
| DEBUG_MFC
))
1005 log(LOG_DEBUG
, "ip6_mforward: no rte s %s g %s\n",
1006 ip6_sprintf(&ip6
->ip6_src
),
1007 ip6_sprintf(&ip6
->ip6_dst
));
1011 * Allocate mbufs early so that we don't do extra work if we
1012 * are just going to fail anyway.
1014 rte
= (struct rtdetq
*)_MALLOC(sizeof(*rte
), M_MRTABLE
,
1020 mb0
= m_copy(m
, 0, M_COPYALL
);
1022 * Pullup packet header if needed before storing it,
1023 * as other references may modify it in the meantime.
1026 (M_HASCL(mb0
) || mb0
->m_len
< sizeof(struct ip6_hdr
)))
1027 mb0
= m_pullup(mb0
, sizeof(struct ip6_hdr
));
1029 FREE(rte
, M_MRTABLE
);
1034 /* is there an upcall waiting for this packet? */
1035 hash
= MF6CHASH(ip6
->ip6_src
, ip6
->ip6_dst
);
1036 for (rt
= mf6ctable
[hash
]; rt
; rt
= rt
->mf6c_next
) {
1037 if (IN6_ARE_ADDR_EQUAL(&ip6
->ip6_src
,
1038 &rt
->mf6c_origin
.sin6_addr
) &&
1039 IN6_ARE_ADDR_EQUAL(&ip6
->ip6_dst
,
1040 &rt
->mf6c_mcastgrp
.sin6_addr
) &&
1041 (rt
->mf6c_stall
!= NULL
))
1048 struct omrt6msg
*oim
;
1051 /* no upcall, so make a new entry */
1052 rt
= (struct mf6c
*)_MALLOC(sizeof(*rt
), M_MRTABLE
,
1055 FREE(rte
, M_MRTABLE
);
1061 * Make a copy of the header to send to the user
1064 mm
= m_copy(mb0
, 0, sizeof(struct ip6_hdr
));
1067 FREE(rte
, M_MRTABLE
);
1069 FREE(rt
, M_MRTABLE
);
1075 * Send message to routing daemon
1077 sin6
.sin6_addr
= ip6
->ip6_src
;
1083 switch (ip6_mrouter_ver
) {
1086 oim
= mtod(mm
, struct omrt6msg
*);
1087 oim
->im6_msgtype
= MRT6MSG_NOCACHE
;
1092 im
= mtod(mm
, struct mrt6msg
*);
1093 im
->im6_msgtype
= MRT6MSG_NOCACHE
;
1097 FREE(rte
, M_MRTABLE
);
1099 FREE(rt
, M_MRTABLE
);
1105 if (mrt6debug
& DEBUG_FORWARD
)
1107 "getting the iif info in the kernel\n");
1110 for (mifp
= mif6table
, mifi
= 0;
1111 mifi
< nummifs
&& mifp
->m6_ifp
!= ifp
;
1115 switch (ip6_mrouter_ver
) {
1118 oim
->im6_mif
= mifi
;
1126 if (socket_send(ip6_mrouter
, mm
, &sin6
) < 0) {
1127 log(LOG_WARNING
, "ip6_mforward: ip6_mrouter "
1128 "socket queue full\n");
1129 mrt6stat
.mrt6s_upq_sockfull
++;
1130 FREE(rte
, M_MRTABLE
);
1132 FREE(rt
, M_MRTABLE
);
1137 mrt6stat
.mrt6s_upcalls
++;
1139 /* insert new entry at head of hash chain */
1140 bzero(rt
, sizeof(*rt
));
1141 rt
->mf6c_origin
.sin6_family
= AF_INET6
;
1142 rt
->mf6c_origin
.sin6_len
= sizeof(struct sockaddr_in6
);
1143 rt
->mf6c_origin
.sin6_addr
= ip6
->ip6_src
;
1144 rt
->mf6c_mcastgrp
.sin6_family
= AF_INET6
;
1145 rt
->mf6c_mcastgrp
.sin6_len
= sizeof(struct sockaddr_in6
);
1146 rt
->mf6c_mcastgrp
.sin6_addr
= ip6
->ip6_dst
;
1147 rt
->mf6c_expire
= UPCALL_EXPIRE
;
1149 rt
->mf6c_parent
= MF6C_INCOMPLETE_PARENT
;
1151 /* link into table */
1152 rt
->mf6c_next
= mf6ctable
[hash
];
1153 mf6ctable
[hash
] = rt
;
1154 /* Add this entry to the end of the queue */
1155 rt
->mf6c_stall
= rte
;
1157 /* determine if q has overflowed */
1161 for (p
= &rt
->mf6c_stall
; *p
!= NULL
; p
= &(*p
)->next
)
1162 if (++npkts
> MAX_UPQ6
) {
1163 mrt6stat
.mrt6s_upq_ovflw
++;
1164 FREE(rte
, M_MRTABLE
);
1170 /* Add this entry to the end of the queue */
1179 #endif /* UPCALL_TIMING */
1188 expire_upcalls_funneled(unused
)
1192 boolean_t funnel_state
;
1193 funnel_state
= thread_funnel_set(network_flock
, TRUE
);
1195 expire_upcalls(unused
);
1197 (void) thread_funnel_set(network_flock
, FALSE
);
1202 * Clean up cache entries if upcalls are not serviced
1203 * Call from the Slow Timeout mechanism, every half second.
1206 expire_upcalls(unused
)
1210 struct mf6c
*mfc
, **nptr
;
1215 for (i
= 0; i
< MF6CTBLSIZ
; i
++) {
1216 if (n6expire
[i
] == 0)
1218 nptr
= &mf6ctable
[i
];
1219 while ((mfc
= *nptr
) != NULL
) {
1220 rte
= mfc
->mf6c_stall
;
1222 * Skip real cache entries
1223 * Make sure it wasn't marked to not expire (shouldn't happen)
1227 mfc
->mf6c_expire
!= 0 &&
1228 --mfc
->mf6c_expire
== 0) {
1230 if (mrt6debug
& DEBUG_EXPIRE
)
1231 log(LOG_DEBUG
, "expire_upcalls: expiring (%s %s)\n",
1232 ip6_sprintf(&mfc
->mf6c_origin
.sin6_addr
),
1233 ip6_sprintf(&mfc
->mf6c_mcastgrp
.sin6_addr
));
1236 * drop all the packets
1237 * free the mbuf with the pkt, if, timing info
1240 struct rtdetq
*n
= rte
->next
;
1242 FREE(rte
, M_MRTABLE
);
1244 } while (rte
!= NULL
);
1245 mrt6stat
.mrt6s_cache_cleanups
++;
1248 *nptr
= mfc
->mf6c_next
;
1249 FREE(mfc
, M_MRTABLE
);
1251 nptr
= &mfc
->mf6c_next
;
1258 callout_reset(&expire_upcalls_ch
, EXPIRE_TIMEOUT
,
1259 expire_upcalls
, NULL
);
1261 timeout(expire_upcalls_funneled
, (caddr_t
)NULL
, EXPIRE_TIMEOUT
);
1266 * Packet forwarding routine once entry in the cache is made
1274 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
1277 int plen
= m
->m_pkthdr
.len
;
1280 * Macro to send packet on mif. Since RSVP packets don't get counted on
1281 * input, they shouldn't get counted on output, so statistics keeping is
1285 #define MC6_SEND(ip6, mifp, m) do { \
1286 if ((mifp)->m6_flags & MIFF_REGISTER) \
1287 register_send((ip6), (mifp), (m)); \
1289 phyint_send((ip6), (mifp), (m)); \
1293 * Don't forward if it didn't arrive from the parent mif
1296 mifi
= rt
->mf6c_parent
;
1297 if ((mifi
>= nummifs
) || (mif6table
[mifi
].m6_ifp
!= ifp
)) {
1298 /* came in the wrong interface */
1300 if (mrt6debug
& DEBUG_FORWARD
)
1302 "wrong if: ifid %d mifi %d mififid %x\n",
1303 ifp
->if_index
, mifi
,
1304 mif6table
[mifi
].m6_ifp
->if_index
);
1306 mrt6stat
.mrt6s_wrong_if
++;
1307 rt
->mf6c_wrong_if
++;
1309 * If we are doing PIM processing, and we are forwarding
1310 * packets on this interface, send a message to the
1313 /* have to make sure this is a valid mif */
1314 if (mifi
< nummifs
&& mif6table
[mifi
].m6_ifp
)
1315 if (pim6
&& (m
->m_flags
& M_LOOP
) == 0) {
1317 * Check the M_LOOP flag to avoid an
1318 * unnecessary PIM assert.
1319 * XXX: M_LOOP is an ad-hoc hack...
1321 static struct sockaddr_in6 sin6
=
1322 { sizeof(sin6
), AF_INET6
};
1327 struct omrt6msg
*oim
;
1330 mm
= m_copy(m
, 0, sizeof(struct ip6_hdr
));
1333 mm
->m_len
< sizeof(struct ip6_hdr
)))
1334 mm
= m_pullup(mm
, sizeof(struct ip6_hdr
));
1342 switch (ip6_mrouter_ver
) {
1345 oim
= mtod(mm
, struct omrt6msg
*);
1346 oim
->im6_msgtype
= MRT6MSG_WRONGMIF
;
1351 im
= mtod(mm
, struct mrt6msg
*);
1352 im
->im6_msgtype
= MRT6MSG_WRONGMIF
;
1360 for (mifp
= mif6table
, iif
= 0;
1361 iif
< nummifs
&& mifp
&&
1362 mifp
->m6_ifp
!= ifp
;
1366 switch (ip6_mrouter_ver
) {
1370 sin6
.sin6_addr
= oim
->im6_src
;
1375 sin6
.sin6_addr
= im
->im6_src
;
1379 mrt6stat
.mrt6s_upcalls
++;
1381 if (socket_send(ip6_mrouter
, mm
, &sin6
) < 0) {
1384 log(LOG_WARNING
, "mdq, ip6_mrouter socket queue full\n");
1386 ++mrt6stat
.mrt6s_upq_sockfull
;
1388 } /* if socket Q full */
1391 } /* if wrong iif */
1393 /* If I sourced this packet, it counts as output, else it was input. */
1394 if (m
->m_pkthdr
.rcvif
== NULL
) {
1395 /* XXX: is rcvif really NULL when output?? */
1396 mif6table
[mifi
].m6_pkt_out
++;
1397 mif6table
[mifi
].m6_bytes_out
+= plen
;
1399 mif6table
[mifi
].m6_pkt_in
++;
1400 mif6table
[mifi
].m6_bytes_in
+= plen
;
1403 rt
->mf6c_byte_cnt
+= plen
;
1406 * For each mif, forward a copy of the packet if there are group
1407 * members downstream on the interface.
1409 for (mifp
= mif6table
, mifi
= 0; mifi
< nummifs
; mifp
++, mifi
++)
1410 if (IF_ISSET(mifi
, &rt
->mf6c_ifset
)) {
1412 * check if the outgoing packet is going to break
1414 * XXX For packets through PIM register tunnel
1415 * interface, we believe a routing daemon.
1417 if ((mif6table
[rt
->mf6c_parent
].m6_flags
&
1418 MIFF_REGISTER
) == 0 &&
1419 (mif6table
[mifi
].m6_flags
& MIFF_REGISTER
) == 0 &&
1420 (in6_addr2scopeid(ifp
, &ip6
->ip6_dst
) !=
1421 in6_addr2scopeid(mif6table
[mifi
].m6_ifp
,
1423 in6_addr2scopeid(ifp
, &ip6
->ip6_src
) !=
1424 in6_addr2scopeid(mif6table
[mifi
].m6_ifp
,
1426 ip6stat
.ip6s_badscope
++;
1431 mifp
->m6_bytes_out
+= plen
;
1432 MC6_SEND(ip6
, mifp
, m
);
1438 phyint_send(ip6
, mifp
, m
)
1439 struct ip6_hdr
*ip6
;
1443 struct mbuf
*mb_copy
;
1444 struct ifnet
*ifp
= mifp
->m6_ifp
;
1446 int s
= splnet(); /* needs to protect static "ro" below. */
1447 static struct route_in6 ro
;
1448 struct in6_multi
*in6m
;
1449 struct sockaddr_in6
*dst6
;
1452 * Make a new reference to the packet; make sure that
1453 * the IPv6 header is actually copied, not just referenced,
1454 * so that ip6_output() only scribbles on the copy.
1456 mb_copy
= m_copy(m
, 0, M_COPYALL
);
1458 (M_HASCL(mb_copy
) || mb_copy
->m_len
< sizeof(struct ip6_hdr
)))
1459 mb_copy
= m_pullup(mb_copy
, sizeof(struct ip6_hdr
));
1460 if (mb_copy
== NULL
) {
1464 /* set MCAST flag to the outgoing packet */
1465 mb_copy
->m_flags
|= M_MCAST
;
1468 * If we sourced the packet, call ip6_output since we may devide
1469 * the packet into fragments when the packet is too big for the
1470 * outgoing interface.
1471 * Otherwise, we can simply send the packet to the interface
1474 if (m
->m_pkthdr
.rcvif
== NULL
) {
1475 struct ip6_moptions im6o
;
1477 im6o
.im6o_multicast_ifp
= ifp
;
1478 /* XXX: ip6_output will override ip6->ip6_hlim */
1479 im6o
.im6o_multicast_hlim
= ip6
->ip6_hlim
;
1480 im6o
.im6o_multicast_loop
= 1;
1481 error
= ip6_output(mb_copy
, NULL
, &ro
,
1482 IPV6_FORWARDING
, &im6o
, NULL
);
1485 if (mrt6debug
& DEBUG_XMIT
)
1486 log(LOG_DEBUG
, "phyint_send on mif %d err %d\n",
1487 mifp
- mif6table
, error
);
1494 * If we belong to the destination multicast group
1495 * on the outgoing interface, loop back a copy.
1497 dst6
= (struct sockaddr_in6
*)&ro
.ro_dst
;
1498 IN6_LOOKUP_MULTI(ip6
->ip6_dst
, ifp
, in6m
);
1500 dst6
->sin6_len
= sizeof(struct sockaddr_in6
);
1501 dst6
->sin6_family
= AF_INET6
;
1502 dst6
->sin6_addr
= ip6
->ip6_dst
;
1503 ip6_mloopback(ifp
, m
, (struct sockaddr_in6
*)&ro
.ro_dst
);
1506 * Put the packet into the sending queue of the outgoing interface
1507 * if it would fit in the MTU of the interface.
1509 if (mb_copy
->m_pkthdr
.len
<= ifp
->if_mtu
|| ifp
->if_mtu
< IPV6_MMTU
) {
1510 dst6
->sin6_len
= sizeof(struct sockaddr_in6
);
1511 dst6
->sin6_family
= AF_INET6
;
1512 dst6
->sin6_addr
= ip6
->ip6_dst
;
1514 * We just call if_output instead of nd6_output here, since
1515 * we need no ND for a multicast forwarded packet...right?
1518 /* Make sure the HW checksum flags are cleaned before sending the packet */
1520 mb_copy
->m_pkthdr
.rcvif
= (struct ifnet
*)0;
1521 mb_copy
->m_pkthdr
.csum_data
= 0;
1522 mb_copy
->m_pkthdr
.csum_flags
= 0;
1524 error
= dlil_output(ifptodlt(ifp
, PF_INET6
), mb_copy
,
1525 NULL
, (struct sockaddr
*)&ro
.ro_dst
, 0);
1527 error
= (*ifp
->if_output
)(ifp
, mb_copy
,
1528 (struct sockaddr
*)&ro
.ro_dst
,
1532 if (mrt6debug
& DEBUG_XMIT
)
1533 log(LOG_DEBUG
, "phyint_send on mif %d err %d\n",
1534 mifp
- mif6table
, error
);
1538 icmp6_error(mb_copy
, ICMP6_PACKET_TOO_BIG
, 0, ifp
->if_mtu
);
1541 if (mrt6debug
& DEBUG_XMIT
)
1543 "phyint_send: packet too big on %s o %s g %s"
1544 " size %d(discarded)\n",
1546 ip6_sprintf(&ip6
->ip6_src
),
1547 ip6_sprintf(&ip6
->ip6_dst
),
1548 mb_copy
->m_pkthdr
.len
);
1549 #endif /* MRT6DEBUG */
1550 m_freem(mb_copy
); /* simply discard the packet */
1558 register_send(ip6
, mif
, m
)
1559 struct ip6_hdr
*ip6
;
1564 int i
, len
= m
->m_pkthdr
.len
;
1565 static struct sockaddr_in6 sin6
= { sizeof(sin6
), AF_INET6
};
1566 struct mrt6msg
*im6
;
1570 log(LOG_DEBUG
, "** IPv6 register_send **\n src %s dst %s\n",
1571 ip6_sprintf(&ip6
->ip6_src
), ip6_sprintf(&ip6
->ip6_dst
));
1573 ++pim6stat
.pim6s_snd_registers
;
1575 /* Make a copy of the packet to send to the user level process */
1576 MGETHDR(mm
, M_DONTWAIT
, MT_HEADER
);
1579 mm
->m_pkthdr
.rcvif
= NULL
;
1580 mm
->m_data
+= max_linkhdr
;
1581 mm
->m_len
= sizeof(struct ip6_hdr
);
1583 if ((mm
->m_next
= m_copy(m
, 0, M_COPYALL
)) == NULL
) {
1587 i
= MHLEN
- M_LEADINGSPACE(mm
);
1590 mm
= m_pullup(mm
, i
);
1595 /* TODO: check it! */
1596 mm
->m_pkthdr
.len
= len
+ sizeof(struct ip6_hdr
);
1599 * Send message to routing daemon
1601 sin6
.sin6_addr
= ip6
->ip6_src
;
1603 im6
= mtod(mm
, struct mrt6msg
*);
1604 im6
->im6_msgtype
= MRT6MSG_WHOLEPKT
;
1607 im6
->im6_mif
= mif
- mif6table
;
1609 /* iif info is not given for reg. encap.n */
1610 mrt6stat
.mrt6s_upcalls
++;
1612 if (socket_send(ip6_mrouter
, mm
, &sin6
) < 0) {
1616 "register_send: ip6_mrouter socket queue full\n");
1618 ++mrt6stat
.mrt6s_upq_sockfull
;
1625 * PIM sparse mode hook
1626 * Receives the pim control messages, and passes them up to the listening
1627 * socket, using rip6_input.
1628 * The only message processed is the REGISTER pim message; the pim header
1629 * is stripped off, and the inner packet is passed to register_mforward.
1632 pim6_input(mp
, offp
)
1636 struct pim
*pim
; /* pointer to a pim struct */
1637 struct ip6_hdr
*ip6
;
1639 struct mbuf
*m
= *mp
;
1644 ++pim6stat
.pim6s_rcv_total
;
1646 ip6
= mtod(m
, struct ip6_hdr
*);
1647 pimlen
= m
->m_pkthdr
.len
- *offp
;
1648 proto
= ip6
->ip6_nxt
;
1653 if (pimlen
< PIM_MINLEN
) {
1654 ++pim6stat
.pim6s_rcv_tooshort
;
1656 if (mrt6debug
& DEBUG_PIM
)
1657 log(LOG_DEBUG
,"pim6_input: PIM packet too short\n");
1660 return(IPPROTO_DONE
);
1664 * if the packet is at least as big as a REGISTER, go ahead
1665 * and grab the PIM REGISTER header size, to avoid another
1666 * possible m_pullup() later.
1668 * PIM_MINLEN == pimhdr + u_int32 == 8
1669 * PIM6_REG_MINLEN == pimhdr + reghdr + eip6hdr == 4 + 4 + 40
1671 minlen
= (pimlen
>= PIM6_REG_MINLEN
) ? PIM6_REG_MINLEN
: PIM_MINLEN
;
1674 * Make sure that the IP6 and PIM headers in contiguous memory, and
1675 * possibly the PIM REGISTER header
1677 #ifndef PULLDOWN_TEST
1678 IP6_EXTHDR_CHECK(m
, off
, minlen
, IPPROTO_DONE
);
1679 /* adjust pointer */
1680 ip6
= mtod(m
, struct ip6_hdr
*);
1682 /* adjust mbuf to point to the PIM header */
1683 pim
= (struct pim
*)((caddr_t
)ip6
+ off
);
1685 IP6_EXTHDR_GET(pim
, struct pim
*, m
, off
, minlen
);
1687 pim6stat
.pim6s_rcv_tooshort
++;
1688 return IPPROTO_DONE
;
1692 #define PIM6_CHECKSUM
1693 #ifdef PIM6_CHECKSUM
1698 * Validate checksum.
1699 * If PIM REGISTER, exclude the data packet
1701 if (pim
->pim_type
== PIM_REGISTER
)
1702 cksumlen
= PIM_MINLEN
;
1706 if (in6_cksum(m
, IPPROTO_PIM
, off
, cksumlen
)) {
1707 ++pim6stat
.pim6s_rcv_badsum
;
1709 if (mrt6debug
& DEBUG_PIM
)
1711 "pim6_input: invalid checksum\n");
1714 return(IPPROTO_DONE
);
1717 #endif /* PIM_CHECKSUM */
1719 /* PIM version check */
1720 if (pim
->pim_ver
!= PIM_VERSION
) {
1721 ++pim6stat
.pim6s_rcv_badversion
;
1724 "pim6_input: incorrect version %d, expecting %d\n",
1725 pim
->pim_ver
, PIM_VERSION
);
1728 return(IPPROTO_DONE
);
1731 if (pim
->pim_type
== PIM_REGISTER
) {
1733 * since this is a REGISTER, we'll make a copy of the register
1734 * headers ip6+pim+u_int32_t+encap_ip6, to be passed up to the
1737 static struct sockaddr_in6 dst
= { sizeof(dst
), AF_INET6
};
1740 struct ip6_hdr
*eip6
;
1744 ++pim6stat
.pim6s_rcv_registers
;
1746 if ((reg_mif_num
>= nummifs
) || (reg_mif_num
== (mifi_t
) -1)) {
1748 if (mrt6debug
& DEBUG_PIM
)
1750 "pim6_input: register mif not set: %d\n",
1754 return(IPPROTO_DONE
);
1757 reghdr
= (u_int32_t
*)(pim
+ 1);
1759 if ((ntohl(*reghdr
) & PIM_NULL_REGISTER
))
1760 goto pim6_input_to_daemon
;
1765 if (pimlen
< PIM6_REG_MINLEN
) {
1766 ++pim6stat
.pim6s_rcv_tooshort
;
1767 ++pim6stat
.pim6s_rcv_badregisters
;
1770 "pim6_input: register packet size too "
1771 "small %d from %s\n",
1772 pimlen
, ip6_sprintf(&ip6
->ip6_src
));
1775 return(IPPROTO_DONE
);
1778 eip6
= (struct ip6_hdr
*) (reghdr
+ 1);
1780 if (mrt6debug
& DEBUG_PIM
)
1782 "pim6_input[register], eip6: %s -> %s, "
1784 ip6_sprintf(&eip6
->ip6_src
),
1785 ip6_sprintf(&eip6
->ip6_dst
),
1786 ntohs(eip6
->ip6_plen
));
1789 /* verify the version number of the inner packet */
1790 if ((eip6
->ip6_vfc
& IPV6_VERSION_MASK
) != IPV6_VERSION
) {
1791 ++pim6stat
.pim6s_rcv_badregisters
;
1793 log(LOG_DEBUG
, "pim6_input: invalid IP version (%d) "
1794 "of the inner packet\n",
1795 (eip6
->ip6_vfc
& IPV6_VERSION
));
1798 return(IPPROTO_NONE
);
1801 /* verify the inner packet is destined to a mcast group */
1802 if (!IN6_IS_ADDR_MULTICAST(&eip6
->ip6_dst
)) {
1803 ++pim6stat
.pim6s_rcv_badregisters
;
1805 if (mrt6debug
& DEBUG_PIM
)
1807 "pim6_input: inner packet of register "
1808 "is not multicast %s\n",
1809 ip6_sprintf(&eip6
->ip6_dst
));
1812 return(IPPROTO_DONE
);
1816 * make a copy of the whole header to pass to the daemon later.
1818 mcp
= m_copy(m
, 0, off
+ PIM6_REG_MINLEN
);
1822 "pim6_input: pim register: "
1823 "could not copy register head\n");
1826 return(IPPROTO_DONE
);
1830 * forward the inner ip6 packet; point m_data at the inner ip6.
1832 m_adj(m
, off
+ PIM_MINLEN
);
1834 if (mrt6debug
& DEBUG_PIM
) {
1836 "pim6_input: forwarding decapsulated register: "
1837 "src %s, dst %s, mif %d\n",
1838 ip6_sprintf(&eip6
->ip6_src
),
1839 ip6_sprintf(&eip6
->ip6_dst
),
1847 dlil_find_dltag(APPLE_IF_FAM_LOOPBACK
, 0, PF_INET
, &lo_dl_tag
);
1850 dlil_output(lo_dl_tag
, m
, 0, (struct sockaddr
*)&dst
, 0);
1852 printf("Warning: pim6_input call to dlil_find_dltag failed!\n");
1856 rc
= if_simloop(mif6table
[reg_mif_num
].m6_ifp
, m
,
1857 dst
.sin6_family
, NULL
);
1860 /* prepare the register head to send to the mrouting daemon */
1865 * Pass the PIM message up to the daemon; if it is a register message
1866 * pass the 'head' only up to the daemon. This includes the
1867 * encapsulator ip6 header, pim header, register header and the
1868 * encapsulated ip6 header.
1870 pim6_input_to_daemon
:
1871 rip6_input(&m
, offp
);
1872 return(IPPROTO_DONE
);