]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet/ip_mroute.c
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
30 * support for mandatory and extensible security protections. This notice
31 * is included in support of clause 2.2 (b) of the Apple Public License,
35 * IP multicast forwarding procedures
37 * Written by David Waitzman, BBN Labs, August 1988.
38 * Modified by Steve Deering, Stanford, February 1989.
39 * Modified by Mark J. Steiglitz, Stanford, May, 1991
40 * Modified by Van Jacobson, LBL, January 1993
41 * Modified by Ajit Thyagarajan, PARC, August 1993
42 * Modified by Bill Fenner, PARC, April 1995
44 * MROUTING Revision: 3.5
45 * $FreeBSD: src/sys/netinet/ip_mroute.c,v 1.56.2.2 2001/07/19 06:37:26 kris Exp $
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/protosw.h>
57 #include <sys/kernel.h>
58 #include <sys/sockio.h>
59 #include <sys/syslog.h>
61 #include <machine/endian.h>
64 #include <net/route.h>
65 #include <net/kpi_protocol.h>
66 #include <netinet/in.h>
67 #include <netinet/in_systm.h>
68 #include <netinet/ip.h>
69 #include <netinet/ip_var.h>
70 #include <netinet/in_var.h>
71 #include <netinet/igmp.h>
72 #include <netinet/ip_mroute.h>
73 #include <netinet/udp.h>
76 #include <security/mac_framework.h>
81 extern u_int32_t
_ip_mcast_src(int vifi
);
82 extern int _ip_mforward(struct ip
*ip
, struct ifnet
*ifp
,
83 struct mbuf
*m
, struct ip_moptions
*imo
);
84 extern int _ip_mrouter_done(void);
85 extern int _ip_mrouter_get(struct socket
*so
, struct sockopt
*sopt
);
86 extern int _ip_mrouter_set(struct socket
*so
, struct sockopt
*sopt
);
87 extern int _mrt_ioctl(int req
, caddr_t data
, struct proc
*p
);
90 * Dummy routines and globals used when multicast routing is not compiled in.
93 struct socket
*ip_mrouter
= NULL
;
97 _ip_mrouter_set(__unused
struct socket
*so
,
98 __unused
struct sockopt
*sopt
)
103 int (*ip_mrouter_set
)(struct socket
*, struct sockopt
*) = _ip_mrouter_set
;
107 _ip_mrouter_get(__unused
struct socket
*so
,
108 __unused sockopt
*sopt
)
113 int (*ip_mrouter_get
)(struct socket
*, struct sockopt
*) = _ip_mrouter_get
;
116 _ip_mrouter_done(void)
121 int (*ip_mrouter_done
)(void) = _ip_mrouter_done
;
124 _ip_mforward(__unused
struct ip
*ip
, __unused
struct ifnet
*ifp
,
125 __unused
struct mbuf
*m
, __unused ip_moptions
*imo
)
130 int (*ip_mforward
)(struct ip
*, struct ifnet
*, struct mbuf
*,
131 struct ip_moptions
*) = _ip_mforward
;
134 _mrt_ioctl(__unused
int req
, __unused caddr_t data
, __unused
struct proc
*p
)
139 int (*mrt_ioctl
)(int, caddr_t
, struct proc
*) = _mrt_ioctl
;
142 rsvp_input(struct mbuf
*m
, int iphlen
) /* XXX must fixup manually */
144 /* Can still get packets with rsvp_on = 0 if there is a local member
145 * of the group to which the RSVP packet is addressed. But in this
146 * case we want to throw the packet away.
153 if (ip_rsvpd
!= NULL
) {
155 printf("rsvp_input: Sending packet up old-style socket\n");
156 rip_input(m
, iphlen
);
159 /* Drop the packet */
163 void ipip_input(struct mbuf
*m
, int iphlen
) { /* XXX must fixup manually */
164 rip_input(m
, iphlen
);
167 int (*legal_vif_num
)(int) = 0;
170 * This should never be called, since IP_MULTICAST_VIF should fail, but
171 * just in case it does get called, the code a little lower in ip_output
172 * will assign the packet a local address.
175 _ip_mcast_src(int vifi
) { return INADDR_ANY
; }
176 u_int32_t (*ip_mcast_src
)(int) = _ip_mcast_src
;
179 ip_rsvp_vif_init(so
, sopt
)
181 struct sockopt
*sopt
;
187 ip_rsvp_vif_done(so
, sopt
)
189 struct sockopt
*sopt
;
195 ip_rsvp_force_done(so
)
203 #define M_HASCL(m) ((m)->m_flags & M_EXT)
205 #define INSIZ sizeof(struct in_addr)
206 #define same(a1, a2) \
207 (bcmp((caddr_t)(a1), (caddr_t)(a2), INSIZ) == 0)
211 * Globals. All but ip_mrouter and ip_mrtproto could be static,
212 * except for netstat or debugging purposes.
215 struct socket
*ip_mrouter
= NULL
;
216 static struct mrtstat mrtstat
;
217 #else /* MROUTE_LKM */
218 extern void X_ipip_input(struct mbuf
*m
, int iphlen
);
219 extern struct mrtstat mrtstat
;
220 static int ip_mrtproto
;
223 #define NO_RTE_FOUND 0x1
224 #define RTE_FOUND 0x2
226 static struct mfc
*mfctable
[CONFIG_MFCTBLSIZ
];
227 static u_char nexpire
[CONFIG_MFCTBLSIZ
];
228 static struct vif viftable
[CONFIG_MAXVIFS
];
229 static u_int mrtdebug
= 0; /* debug level */
230 #define DEBUG_MFC 0x02
231 #define DEBUG_FORWARD 0x04
232 #define DEBUG_EXPIRE 0x08
233 #define DEBUG_XMIT 0x10
234 static u_int tbfdebug
= 0; /* tbf debug level */
235 static u_int rsvpdebug
= 0; /* rsvp debug level */
237 #define EXPIRE_TIMEOUT (hz / 4) /* 4x / second */
238 #define UPCALL_EXPIRE 6 /* number of timeouts */
241 * Define the token bucket filter structures
242 * tbftable -> each vif has one of these for storing info
245 static struct tbf tbftable
[CONFIG_MAXVIFS
];
246 #define TBF_REPROCESS (hz / 100) /* 100x / second */
249 * 'Interfaces' associated with decapsulator (so we can tell
250 * packets that went through it from ones that get reflected
251 * by a broken gateway). These interfaces are never linked into
252 * the system ifnet list & no routes point to them. I.e., packets
253 * can't be sent this way. They only exist as a placeholder for
254 * multicast source verification.
256 static struct ifnet multicast_decap_if
[CONFIG_MAXVIFS
];
259 #define ENCAP_PROTO IPPROTO_IPIP /* 4 */
261 /* prototype IP hdr for encapsulated packets */
262 static struct ip multicast_encap_iphdr
= {
263 #if BYTE_ORDER == LITTLE_ENDIAN
264 sizeof(struct ip
) >> 2, IPVERSION
,
266 IPVERSION
, sizeof(struct ip
) >> 2,
269 sizeof(struct ip
), /* total length */
272 ENCAP_TTL
, ENCAP_PROTO
,
280 static vifi_t numvifs
= 0;
281 static int have_encap_tunnel
= 0;
284 * one-back cache used by ipip_input to locate a tunnel's vif
285 * given a datagram's src ip address.
287 static u_int32_t last_encap_src
;
288 static struct vif
*last_encap_vif
;
290 static u_int32_t
X_ip_mcast_src(int vifi
);
291 static int X_ip_mforward(struct ip
*ip
, struct ifnet
*ifp
, struct mbuf
*m
, struct ip_moptions
*imo
);
292 static int X_ip_mrouter_done(void);
293 static int X_ip_mrouter_get(struct socket
*so
, struct sockopt
*m
);
294 static int X_ip_mrouter_set(struct socket
*so
, struct sockopt
*m
);
295 static int X_legal_vif_num(int vif
);
296 static int X_mrt_ioctl(int cmd
, caddr_t data
);
298 static int get_sg_cnt(struct sioc_sg_req
*);
299 static int get_vif_cnt(struct sioc_vif_req
*);
300 static int ip_mrouter_init(struct socket
*, int);
301 static int add_vif(struct vifctl
*);
302 static int del_vif(vifi_t
);
303 static int add_mfc(struct mfcctl
*);
304 static int del_mfc(struct mfcctl
*);
305 static int socket_send(struct socket
*, struct mbuf
*, struct sockaddr_in
*);
306 static int set_assert(int);
307 static void expire_upcalls(void *);
308 static int ip_mdq(struct mbuf
*, struct ifnet
*, struct mfc
*,
310 static void phyint_send(struct ip
*, struct vif
*, struct mbuf
*);
311 static void encap_send(struct ip
*, struct vif
*, struct mbuf
*);
312 static void tbf_control(struct vif
*, struct mbuf
*, struct ip
*, u_int32_t
);
313 static void tbf_queue(struct vif
*, struct mbuf
*);
314 static void tbf_process_q(struct vif
*);
315 static void tbf_reprocess_q(void *);
316 static int tbf_dq_sel(struct vif
*, struct ip
*);
317 static void tbf_send_packet(struct vif
*, struct mbuf
*);
318 static void tbf_update_tokens(struct vif
*);
319 static int priority(struct vif
*, struct ip
*);
320 void multiencap_decap(struct mbuf
*);
323 * whether or not special PIM assert processing is enabled.
325 static int pim_assert
;
327 * Rate limit for assert notification messages, in usec
329 #define ASSERT_MSG_TIME 3000000
332 * Hash function for a source, group entry
334 #define MFCHASH(a, g) MFCHASHMOD(((a) >> 20) ^ ((a) >> 10) ^ (a) ^ \
335 ((g) >> 20) ^ ((g) >> 10) ^ (g))
338 * Find a route for a given origin IP address and Multicast group address
339 * Type of service parameter to be added in the future!!!
342 #define MFCFIND(o, g, rt) { \
343 struct mfc *_rt = mfctable[MFCHASH(o,g)]; \
345 ++mrtstat.mrts_mfc_lookups; \
347 if ((_rt->mfc_origin.s_addr == o) && \
348 (_rt->mfc_mcastgrp.s_addr == g) && \
349 (_rt->mfc_stall == NULL)) { \
353 _rt = _rt->mfc_next; \
356 ++mrtstat.mrts_mfc_misses; \
362 * Macros to compute elapsed time efficiently
363 * Borrowed from Van Jacobson's scheduling code
365 #define TV_DELTA(a, b, delta) { \
368 delta = (a).tv_usec - (b).tv_usec; \
369 if ((xxs = (a).tv_sec - (b).tv_sec)) { \
378 delta += (1000000 * xxs); \
383 #define TV_LT(a, b) (((a).tv_usec < (b).tv_usec && \
384 (a).tv_sec <= (b).tv_sec) || (a).tv_sec < (b).tv_sec)
387 u_int32_t upcall_data
[51];
388 static void collate(struct timeval
*);
389 #endif /* UPCALL_TIMING */
393 * Handle MRT setsockopt commands to modify the multicast routing tables.
396 X_ip_mrouter_set(struct socket
*so
, struct sockopt
*sopt
)
403 if (so
!= ip_mrouter
&& sopt
->sopt_name
!= MRT_INIT
)
407 switch (sopt
->sopt_name
) {
409 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
413 error
= ip_mrouter_init(so
, optval
);
417 error
= ip_mrouter_done();
421 error
= sooptcopyin(sopt
, &vifc
, sizeof vifc
, sizeof vifc
);
424 error
= add_vif(&vifc
);
428 error
= sooptcopyin(sopt
, &vifi
, sizeof vifi
, sizeof vifi
);
431 error
= del_vif(vifi
);
436 error
= sooptcopyin(sopt
, &mfc
, sizeof mfc
, sizeof mfc
);
439 if (sopt
->sopt_name
== MRT_ADD_MFC
)
440 error
= add_mfc(&mfc
);
442 error
= del_mfc(&mfc
);
446 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
460 #if !defined(MROUTE_LKM) || !MROUTE_LKM
461 int (*ip_mrouter_set
)(struct socket
*, struct sockopt
*) = X_ip_mrouter_set
;
465 * Handle MRT getsockopt commands
468 X_ip_mrouter_get(__unused
struct socket
*so
, struct sockopt
*sopt
)
471 static int vers
= 0x0305; /* !!! why is this here? XXX */
473 switch (sopt
->sopt_name
) {
475 error
= sooptcopyout(sopt
, &vers
, sizeof vers
);
479 error
= sooptcopyout(sopt
, &pim_assert
, sizeof pim_assert
);
488 #if !defined(MROUTE_LKM) || !MROUTE_LKM
489 int (*ip_mrouter_get
)(struct socket
*, struct sockopt
*) = X_ip_mrouter_get
;
493 * Handle ioctl commands to obtain information from the cache
496 X_mrt_ioctl(int cmd
, caddr_t data
)
501 case (SIOCGETVIFCNT
):
502 return (get_vif_cnt((struct sioc_vif_req
*)data
));
505 return (get_sg_cnt((struct sioc_sg_req
*)data
));
514 #if !defined(MROUTE_LKM) || !MROUTE_LKM
515 int (*mrt_ioctl
)(int, caddr_t
) = X_mrt_ioctl
;
519 * returns the packet, byte, rpf-failure count for the source group provided
522 get_sg_cnt(struct sioc_sg_req
*req
)
526 MFCFIND(req
->src
.s_addr
, req
->grp
.s_addr
, rt
);
528 req
->pktcnt
= rt
->mfc_pkt_cnt
;
529 req
->bytecnt
= rt
->mfc_byte_cnt
;
530 req
->wrong_if
= rt
->mfc_wrong_if
;
532 req
->pktcnt
= req
->bytecnt
= req
->wrong_if
= 0xffffffff;
538 * returns the input and output packet and byte counts on the vif provided
541 get_vif_cnt(struct sioc_vif_req
*req
)
543 vifi_t vifi
= req
->vifi
;
545 if (vifi
>= numvifs
) return EINVAL
;
547 req
->icount
= viftable
[vifi
].v_pkt_in
;
548 req
->ocount
= viftable
[vifi
].v_pkt_out
;
549 req
->ibytes
= viftable
[vifi
].v_bytes_in
;
550 req
->obytes
= viftable
[vifi
].v_bytes_out
;
556 * Enable multicast routing
559 ip_mrouter_init(struct socket
*so
, int vers
)
562 log(LOG_DEBUG
,"ip_mrouter_init: so_type = %d, pr_protocol = %d\n",
563 so
->so_type
, so
->so_proto
->pr_protocol
);
565 if (so
->so_type
!= SOCK_RAW
||
566 so
->so_proto
->pr_protocol
!= IPPROTO_IGMP
) return EOPNOTSUPP
;
571 if (ip_mrouter
!= NULL
) return EADDRINUSE
;
575 bzero((caddr_t
)mfctable
, sizeof(mfctable
));
576 bzero((caddr_t
)nexpire
, sizeof(nexpire
));
580 timeout(expire_upcalls
, (caddr_t
)NULL
, EXPIRE_TIMEOUT
);
583 log(LOG_DEBUG
, "ip_mrouter_init\n");
589 * Disable multicast routing
592 X_ip_mrouter_done(void)
602 * For each phyint in use, disable promiscuous reception of all IP
605 for (vifi
= 0; vifi
< numvifs
; vifi
++) {
606 if (viftable
[vifi
].v_lcl_addr
.s_addr
!= 0 &&
607 !(viftable
[vifi
].v_flags
& VIFF_TUNNEL
)) {
608 ((struct sockaddr_in
*)&(ifr
.ifr_addr
))->sin_family
= AF_INET
;
609 ((struct sockaddr_in
*)&(ifr
.ifr_addr
))->sin_addr
.s_addr
611 ifp
= viftable
[vifi
].v_ifp
;
615 bzero((caddr_t
)tbftable
, sizeof(tbftable
));
616 bzero((caddr_t
)viftable
, sizeof(viftable
));
620 untimeout(expire_upcalls
, (caddr_t
)NULL
);
623 * Free all multicast forwarding cache entries.
625 for (i
= 0; i
< CONFIG_MFCTBLSIZ
; i
++) {
626 for (rt
= mfctable
[i
]; rt
!= NULL
; ) {
627 struct mfc
*nr
= rt
->mfc_next
;
629 for (rte
= rt
->mfc_stall
; rte
!= NULL
; ) {
630 struct rtdetq
*n
= rte
->next
;
633 FREE(rte
, M_MRTABLE
);
641 bzero((caddr_t
)mfctable
, sizeof(mfctable
));
644 * Reset de-encapsulation cache
647 last_encap_vif
= NULL
;
648 have_encap_tunnel
= 0;
653 log(LOG_DEBUG
, "ip_mrouter_done\n");
658 #if !defined(MROUTE_LKM) || !MROUTE_LKM
659 int (*ip_mrouter_done
)(void) = X_ip_mrouter_done
;
663 * Set PIM assert processing global
668 if ((i
!= 1) && (i
!= 0))
677 * Add a vif to the vif table
680 add_vif(struct vifctl
*vifcp
)
682 struct vif
*vifp
= viftable
+ vifcp
->vifc_vifi
;
683 static struct sockaddr_in sin
= { sizeof sin
, AF_INET
,
684 0 , {0}, {0,0,0,0,0,0,0,0,} };
688 struct tbf
*v_tbf
= tbftable
+ vifcp
->vifc_vifi
;
690 if (vifcp
->vifc_vifi
>= CONFIG_MAXVIFS
) return EINVAL
;
691 if (vifp
->v_lcl_addr
.s_addr
!= 0) return EADDRINUSE
;
693 /* Find the interface with an address in AF_INET family */
694 sin
.sin_addr
= vifcp
->vifc_lcl_addr
;
695 ifa
= ifa_ifwithaddr((struct sockaddr
*)&sin
);
696 if (ifa
== 0) return EADDRNOTAVAIL
;
701 if (vifcp
->vifc_flags
& VIFF_TUNNEL
) {
702 if ((vifcp
->vifc_flags
& VIFF_SRCRT
) == 0) {
704 * An encapsulating tunnel is wanted. Tell ipip_input() to
705 * start paying attention to encapsulated packets.
707 if (have_encap_tunnel
== 0) {
708 have_encap_tunnel
= 1;
709 for (s
= 0; s
< CONFIG_MAXVIFS
; ++s
) {
710 multicast_decap_if
[s
].if_name
= "mdecap";
711 multicast_decap_if
[s
].if_unit
= s
;
712 multicast_decap_if
[s
].if_family
= APPLE_IF_FAM_MDECAP
;
716 * Set interface to fake encapsulator interface
718 ifp
= &multicast_decap_if
[vifcp
->vifc_vifi
];
720 * Prepare cached route entry
722 bzero(&vifp
->v_route
, sizeof(vifp
->v_route
));
724 log(LOG_ERR
, "source routed tunnels not supported\n");
728 /* Make sure the interface supports multicast */
729 if ((ifp
->if_flags
& IFF_MULTICAST
) == 0)
732 /* Enable promiscuous reception of all IP multicasts from the if */
733 error
= if_allmulti(ifp
, 1);
738 /* define parameters for the tbf structure */
740 GET_TIME(vifp
->v_tbf
->tbf_last_pkt_t
);
741 vifp
->v_tbf
->tbf_n_tok
= 0;
742 vifp
->v_tbf
->tbf_q_len
= 0;
743 vifp
->v_tbf
->tbf_max_q_len
= MAXQSIZE
;
744 vifp
->v_tbf
->tbf_q
= vifp
->v_tbf
->tbf_t
= NULL
;
746 vifp
->v_flags
= vifcp
->vifc_flags
;
747 vifp
->v_threshold
= vifcp
->vifc_threshold
;
748 vifp
->v_lcl_addr
= vifcp
->vifc_lcl_addr
;
749 vifp
->v_rmt_addr
= vifcp
->vifc_rmt_addr
;
751 /* scaling up here allows division by 1024 in critical code */
752 vifp
->v_rate_limit
= vifcp
->vifc_rate_limit
* 1024 / 1000;
754 vifp
->v_rsvpd
= NULL
;
755 /* initialize per vif pkt counters */
758 vifp
->v_bytes_in
= 0;
759 vifp
->v_bytes_out
= 0;
761 /* Adjust numvifs up if the vifi is higher than numvifs */
762 if (numvifs
<= vifcp
->vifc_vifi
) numvifs
= vifcp
->vifc_vifi
+ 1;
765 log(LOG_DEBUG
, "add_vif #%d, lcladdr %lx, %s %lx, thresh %x, rate %d\n",
767 (u_int32_t
)ntohl(vifcp
->vifc_lcl_addr
.s_addr
),
768 (vifcp
->vifc_flags
& VIFF_TUNNEL
) ? "rmtaddr" : "mask",
769 (u_int32_t
)ntohl(vifcp
->vifc_rmt_addr
.s_addr
),
770 vifcp
->vifc_threshold
,
771 vifcp
->vifc_rate_limit
);
777 * Delete a vif from the vif table
782 struct vif
*vifp
= &viftable
[vifi
];
787 if (vifi
>= numvifs
) return EINVAL
;
788 if (vifp
->v_lcl_addr
.s_addr
== 0) return EADDRNOTAVAIL
;
790 if (!(vifp
->v_flags
& VIFF_TUNNEL
)) {
791 ((struct sockaddr_in
*)&(ifr
.ifr_addr
))->sin_family
= AF_INET
;
792 ((struct sockaddr_in
*)&(ifr
.ifr_addr
))->sin_addr
.s_addr
= INADDR_ANY
;
797 if (vifp
== last_encap_vif
) {
803 * Free packets queued at the interface
805 while (vifp
->v_tbf
->tbf_q
) {
806 m
= vifp
->v_tbf
->tbf_q
;
807 vifp
->v_tbf
->tbf_q
= m
->m_act
;
811 bzero((caddr_t
)vifp
->v_tbf
, sizeof(*(vifp
->v_tbf
)));
812 bzero((caddr_t
)vifp
, sizeof (*vifp
));
815 log(LOG_DEBUG
, "del_vif %d, numvifs %d\n", vifi
, numvifs
);
817 /* Adjust numvifs down */
818 for (vifi
= numvifs
; vifi
> 0; vifi
--)
819 if (viftable
[vifi
-1].v_lcl_addr
.s_addr
!= 0) break;
829 add_mfc(struct mfcctl
*mfccp
)
837 MFCFIND(mfccp
->mfcc_origin
.s_addr
, mfccp
->mfcc_mcastgrp
.s_addr
, rt
);
839 /* If an entry already exists, just update the fields */
841 if (mrtdebug
& DEBUG_MFC
)
842 log(LOG_DEBUG
,"add_mfc update o %lx g %lx p %x\n",
843 (u_int32_t
)ntohl(mfccp
->mfcc_origin
.s_addr
),
844 (u_int32_t
)ntohl(mfccp
->mfcc_mcastgrp
.s_addr
),
847 rt
->mfc_parent
= mfccp
->mfcc_parent
;
848 for (i
= 0; i
< numvifs
; i
++)
849 rt
->mfc_ttls
[i
] = mfccp
->mfcc_ttls
[i
];
854 * Find the entry for which the upcall was made and update
856 hash
= MFCHASH(mfccp
->mfcc_origin
.s_addr
, mfccp
->mfcc_mcastgrp
.s_addr
);
857 for (rt
= mfctable
[hash
], nstl
= 0; rt
; rt
= rt
->mfc_next
) {
859 if ((rt
->mfc_origin
.s_addr
== mfccp
->mfcc_origin
.s_addr
) &&
860 (rt
->mfc_mcastgrp
.s_addr
== mfccp
->mfcc_mcastgrp
.s_addr
) &&
861 (rt
->mfc_stall
!= NULL
)) {
864 log(LOG_ERR
, "add_mfc %s o %lx g %lx p %x dbx %p\n",
865 "multiple kernel entries",
866 (u_int32_t
)ntohl(mfccp
->mfcc_origin
.s_addr
),
867 (u_int32_t
)ntohl(mfccp
->mfcc_mcastgrp
.s_addr
),
868 mfccp
->mfcc_parent
, (void *)rt
->mfc_stall
);
870 if (mrtdebug
& DEBUG_MFC
)
871 log(LOG_DEBUG
,"add_mfc o %lx g %lx p %x dbg %p\n",
872 (u_int32_t
)ntohl(mfccp
->mfcc_origin
.s_addr
),
873 (u_int32_t
)ntohl(mfccp
->mfcc_mcastgrp
.s_addr
),
874 mfccp
->mfcc_parent
, (void *)rt
->mfc_stall
);
876 rt
->mfc_origin
= mfccp
->mfcc_origin
;
877 rt
->mfc_mcastgrp
= mfccp
->mfcc_mcastgrp
;
878 rt
->mfc_parent
= mfccp
->mfcc_parent
;
879 for (i
= 0; i
< numvifs
; i
++)
880 rt
->mfc_ttls
[i
] = mfccp
->mfcc_ttls
[i
];
881 /* initialize pkt counters per src-grp */
883 rt
->mfc_byte_cnt
= 0;
884 rt
->mfc_wrong_if
= 0;
885 rt
->mfc_last_assert
.tv_sec
= rt
->mfc_last_assert
.tv_usec
= 0;
887 rt
->mfc_expire
= 0; /* Don't clean this guy up */
890 /* free packets Qed at the end of this entry */
891 for (rte
= rt
->mfc_stall
; rte
!= NULL
; ) {
892 struct rtdetq
*n
= rte
->next
;
894 ip_mdq(rte
->m
, rte
->ifp
, rt
, -1);
898 #endif /* UPCALL_TIMING */
899 FREE(rte
, M_MRTABLE
);
902 rt
->mfc_stall
= NULL
;
907 * It is possible that an entry is being inserted without an upcall
910 if (mrtdebug
& DEBUG_MFC
)
911 log(LOG_DEBUG
,"add_mfc no upcall h %lu o %lx g %lx p %x\n",
912 hash
, (u_int32_t
)ntohl(mfccp
->mfcc_origin
.s_addr
),
913 (u_int32_t
)ntohl(mfccp
->mfcc_mcastgrp
.s_addr
),
916 for (rt
= mfctable
[hash
]; rt
!= NULL
; rt
= rt
->mfc_next
) {
918 if ((rt
->mfc_origin
.s_addr
== mfccp
->mfcc_origin
.s_addr
) &&
919 (rt
->mfc_mcastgrp
.s_addr
== mfccp
->mfcc_mcastgrp
.s_addr
)) {
921 rt
->mfc_origin
= mfccp
->mfcc_origin
;
922 rt
->mfc_mcastgrp
= mfccp
->mfcc_mcastgrp
;
923 rt
->mfc_parent
= mfccp
->mfcc_parent
;
924 for (i
= 0; i
< numvifs
; i
++)
925 rt
->mfc_ttls
[i
] = mfccp
->mfcc_ttls
[i
];
926 /* initialize pkt counters per src-grp */
928 rt
->mfc_byte_cnt
= 0;
929 rt
->mfc_wrong_if
= 0;
930 rt
->mfc_last_assert
.tv_sec
= rt
->mfc_last_assert
.tv_usec
= 0;
937 /* no upcall, so make a new entry */
938 rt
= (struct mfc
*) _MALLOC(sizeof(*rt
), M_MRTABLE
, M_NOWAIT
);
943 /* insert new entry at head of hash chain */
944 rt
->mfc_origin
= mfccp
->mfcc_origin
;
945 rt
->mfc_mcastgrp
= mfccp
->mfcc_mcastgrp
;
946 rt
->mfc_parent
= mfccp
->mfcc_parent
;
947 for (i
= 0; i
< numvifs
; i
++)
948 rt
->mfc_ttls
[i
] = mfccp
->mfcc_ttls
[i
];
949 /* initialize pkt counters per src-grp */
951 rt
->mfc_byte_cnt
= 0;
952 rt
->mfc_wrong_if
= 0;
953 rt
->mfc_last_assert
.tv_sec
= rt
->mfc_last_assert
.tv_usec
= 0;
955 rt
->mfc_stall
= NULL
;
957 /* link into table */
958 rt
->mfc_next
= mfctable
[hash
];
967 * collect delay statistics on the upcalls
970 collate(struct timeval
*t
)
980 TV_DELTA(tp
, *t
, delta
);
989 #endif /* UPCALL_TIMING */
992 * Delete an mfc entry
995 del_mfc(struct mfcctl
*mfccp
)
997 struct in_addr origin
;
998 struct in_addr mcastgrp
;
1003 origin
= mfccp
->mfcc_origin
;
1004 mcastgrp
= mfccp
->mfcc_mcastgrp
;
1005 hash
= MFCHASH(origin
.s_addr
, mcastgrp
.s_addr
);
1007 if (mrtdebug
& DEBUG_MFC
)
1008 log(LOG_DEBUG
,"del_mfc orig %lx mcastgrp %lx\n",
1009 (u_int32_t
)ntohl(origin
.s_addr
), (u_int32_t
)ntohl(mcastgrp
.s_addr
));
1011 nptr
= &mfctable
[hash
];
1012 while ((rt
= *nptr
) != NULL
) {
1013 if (origin
.s_addr
== rt
->mfc_origin
.s_addr
&&
1014 mcastgrp
.s_addr
== rt
->mfc_mcastgrp
.s_addr
&&
1015 rt
->mfc_stall
== NULL
)
1018 nptr
= &rt
->mfc_next
;
1021 return EADDRNOTAVAIL
;
1024 *nptr
= rt
->mfc_next
;
1025 FREE(rt
, M_MRTABLE
);
1031 * Send a message to mrouted on the multicast routing socket
1034 socket_send(struct socket
*s
, struct mbuf
*mm
, struct sockaddr_in
*src
)
1038 if (sbappendaddr(&s
->so_rcv
,
1039 (struct sockaddr
*)src
,
1040 mm
, (struct mbuf
*)0, NULL
) != 0) {
1042 socket_unlock(s
, 1);
1046 socket_unlock(s
, 1);
1052 * IP multicast forwarding function. This function assumes that the packet
1053 * pointed to by "ip" has arrived on (or is about to be sent to) the interface
1054 * pointed to by "ifp", and the packet is to be relayed to other networks
1055 * that have members of the packet's destination IP multicast group.
1057 * The packet is returned unscathed to the caller, unless it is
1058 * erroneous, in which case a non-zero return value tells the caller to
1062 #define IP_HDR_LEN 20 /* # bytes of fixed IP header (excluding options) */
1063 #define TUNNEL_LEN 12 /* # bytes of IP option for tunnel encapsulation */
1066 X_ip_mforward(struct ip
*ip
, struct ifnet
*ifp
, struct mbuf
*m
,
1067 struct ip_moptions
*imo
)
1071 static struct sockaddr_in k_igmpsrc
= { sizeof k_igmpsrc
, AF_INET
,
1072 0 , {0}, {0,0,0,0,0,0,0,0,} };
1073 static int srctun
= 0;
1078 if (mrtdebug
& DEBUG_FORWARD
)
1079 log(LOG_DEBUG
, "ip_mforward: src %lx, dst %lx, ifp %p\n",
1080 (u_int32_t
)ntohl(ip
->ip_src
.s_addr
), (u_int32_t
)ntohl(ip
->ip_dst
.s_addr
),
1083 if (ip
->ip_hl
< (IP_HDR_LEN
+ TUNNEL_LEN
) >> 2 ||
1084 (ipoptions
= (u_char
*)(ip
+ 1))[1] != IPOPT_LSRR
) {
1086 * Packet arrived via a physical interface or
1087 * an encapsulated tunnel.
1091 * Packet arrived through a source-route tunnel.
1092 * Source-route tunnels are no longer supported.
1094 if ((srctun
++ % 1000) == 0)
1096 "ip_mforward: received source-routed packet from %lx\n",
1097 (u_int32_t
)ntohl(ip
->ip_src
.s_addr
));
1102 if ((imo
) && ((vifi
= imo
->imo_multicast_vif
) < numvifs
)) {
1103 if (ip
->ip_ttl
< 255)
1104 ip
->ip_ttl
++; /* compensate for -1 in *_send routines */
1105 if (rsvpdebug
&& ip
->ip_p
== IPPROTO_RSVP
) {
1106 vifp
= viftable
+ vifi
;
1107 printf("Sending IPPROTO_RSVP from %x to %x on vif %d (%s%s%d)\n",
1108 ntohl(ip
->ip_src
.s_addr
), ntohl(ip
->ip_dst
.s_addr
), vifi
,
1109 (vifp
->v_flags
& VIFF_TUNNEL
) ? "tunnel on " : "",
1110 vifp
->v_ifp
->if_name
, vifp
->v_ifp
->if_unit
);
1112 return (ip_mdq(m
, ifp
, NULL
, vifi
));
1114 if (rsvpdebug
&& ip
->ip_p
== IPPROTO_RSVP
) {
1115 printf("Warning: IPPROTO_RSVP from %x to %x without vif option\n",
1116 ntohl(ip
->ip_src
.s_addr
), ntohl(ip
->ip_dst
.s_addr
));
1118 printf("In fact, no options were specified at all\n");
1122 * Don't forward a packet with time-to-live of zero or one,
1123 * or a packet destined to a local-only group.
1125 if (ip
->ip_ttl
<= 1 ||
1126 ntohl(ip
->ip_dst
.s_addr
) <= INADDR_MAX_LOCAL_GROUP
)
1130 * Determine forwarding vifs from the forwarding cache table
1132 MFCFIND(ip
->ip_src
.s_addr
, ip
->ip_dst
.s_addr
, rt
);
1134 /* Entry exists, so forward if necessary */
1136 return (ip_mdq(m
, ifp
, rt
, -1));
1139 * If we don't have a route for packet's origin,
1140 * Make a copy of the packet &
1141 * send message to routing daemon
1147 int hlen
= ip
->ip_hl
<< 2;
1154 mrtstat
.mrts_no_route
++;
1155 if (mrtdebug
& (DEBUG_FORWARD
| DEBUG_MFC
))
1156 log(LOG_DEBUG
, "ip_mforward: no rte s %lx g %lx\n",
1157 (u_int32_t
)ntohl(ip
->ip_src
.s_addr
),
1158 (u_int32_t
)ntohl(ip
->ip_dst
.s_addr
));
1161 * Allocate mbufs early so that we don't do extra work if we are
1162 * just going to fail anyway. Make sure to pullup the header so
1163 * that other people can't step on it.
1165 rte
= (struct rtdetq
*) _MALLOC((sizeof *rte
), M_MRTABLE
, M_NOWAIT
);
1169 mb0
= m_copy(m
, 0, M_COPYALL
);
1170 if (mb0
&& (M_HASCL(mb0
) || mb0
->m_len
< hlen
))
1171 mb0
= m_pullup(mb0
, hlen
);
1173 FREE(rte
, M_MRTABLE
);
1177 /* is there an upcall waiting for this packet? */
1178 hash
= MFCHASH(ip
->ip_src
.s_addr
, ip
->ip_dst
.s_addr
);
1179 for (rt
= mfctable
[hash
]; rt
; rt
= rt
->mfc_next
) {
1180 if ((ip
->ip_src
.s_addr
== rt
->mfc_origin
.s_addr
) &&
1181 (ip
->ip_dst
.s_addr
== rt
->mfc_mcastgrp
.s_addr
) &&
1182 (rt
->mfc_stall
!= NULL
))
1190 /* no upcall, so make a new entry */
1191 rt
= (struct mfc
*) _MALLOC(sizeof(*rt
), M_MRTABLE
, M_NOWAIT
);
1193 FREE(rte
, M_MRTABLE
);
1197 /* Make a copy of the header to send to the user level process */
1198 mm
= m_copy(mb0
, 0, hlen
);
1200 FREE(rte
, M_MRTABLE
);
1202 FREE(rt
, M_MRTABLE
);
1207 * Send message to routing daemon to install
1208 * a route into the kernel table
1210 k_igmpsrc
.sin_addr
= ip
->ip_src
;
1212 im
= mtod(mm
, struct igmpmsg
*);
1213 im
->im_msgtype
= IGMPMSG_NOCACHE
;
1216 mrtstat
.mrts_upcalls
++;
1218 if (socket_send(ip_mrouter
, mm
, &k_igmpsrc
) < 0) {
1219 log(LOG_WARNING
, "ip_mforward: ip_mrouter socket queue full\n");
1220 ++mrtstat
.mrts_upq_sockfull
;
1221 FREE(rte
, M_MRTABLE
);
1223 FREE(rt
, M_MRTABLE
);
1227 /* insert new entry at head of hash chain */
1228 rt
->mfc_origin
.s_addr
= ip
->ip_src
.s_addr
;
1229 rt
->mfc_mcastgrp
.s_addr
= ip
->ip_dst
.s_addr
;
1230 rt
->mfc_expire
= UPCALL_EXPIRE
;
1232 for (i
= 0; i
< numvifs
; i
++)
1233 rt
->mfc_ttls
[i
] = 0;
1234 rt
->mfc_parent
= -1;
1236 /* link into table */
1237 rt
->mfc_next
= mfctable
[hash
];
1238 mfctable
[hash
] = rt
;
1239 rt
->mfc_stall
= rte
;
1242 /* determine if q has overflowed */
1246 for (p
= &rt
->mfc_stall
; *p
!= NULL
; p
= &(*p
)->next
)
1249 if (npkts
> MAX_UPQ
) {
1250 mrtstat
.mrts_upq_ovflw
++;
1251 FREE(rte
, M_MRTABLE
);
1256 /* Add this entry to the end of the queue */
1271 #if !defined(MROUTE_LKM) || !MROUTE_LKM
1272 int (*ip_mforward
)(struct ip
*, struct ifnet
*, struct mbuf
*,
1273 struct ip_moptions
*) = X_ip_mforward
;
1277 * Clean up the cache entry if upcall is not serviced
1280 expire_upcalls(__unused
void *unused
)
1283 struct mfc
*mfc
, **nptr
;
1286 for (i
= 0; i
< CONFIG_MFCTBLSIZ
; i
++) {
1287 if (nexpire
[i
] == 0)
1289 nptr
= &mfctable
[i
];
1290 for (mfc
= *nptr
; mfc
!= NULL
; mfc
= *nptr
) {
1292 * Skip real cache entries
1293 * Make sure it wasn't marked to not expire (shouldn't happen)
1296 if (mfc
->mfc_stall
!= NULL
&&
1297 mfc
->mfc_expire
!= 0 &&
1298 --mfc
->mfc_expire
== 0) {
1299 if (mrtdebug
& DEBUG_EXPIRE
)
1300 log(LOG_DEBUG
, "expire_upcalls: expiring (%lx %lx)\n",
1301 (u_int32_t
)ntohl(mfc
->mfc_origin
.s_addr
),
1302 (u_int32_t
)ntohl(mfc
->mfc_mcastgrp
.s_addr
));
1304 * drop all the packets
1305 * free the mbuf with the pkt, if, timing info
1307 for (rte
= mfc
->mfc_stall
; rte
; ) {
1308 struct rtdetq
*n
= rte
->next
;
1311 FREE(rte
, M_MRTABLE
);
1314 ++mrtstat
.mrts_cache_cleanups
;
1317 *nptr
= mfc
->mfc_next
;
1318 FREE(mfc
, M_MRTABLE
);
1320 nptr
= &mfc
->mfc_next
;
1324 timeout(expire_upcalls
, (caddr_t
)NULL
, EXPIRE_TIMEOUT
);
1328 * Packet forwarding routine once entry in the cache is made
1331 ip_mdq(struct mbuf
*m
, struct ifnet
*ifp
, struct mfc
*rt
,
1334 struct ip
*ip
= mtod(m
, struct ip
*);
1337 int plen
= ip
->ip_len
;
1340 * Macro to send packet on vif. Since RSVP packets don't get counted on
1341 * input, they shouldn't get counted on output, so statistics keeping is
1344 #define MC_SEND(ip,vifp,m) { \
1345 if ((vifp)->v_flags & VIFF_TUNNEL) \
1346 encap_send((ip), (vifp), (m)); \
1348 phyint_send((ip), (vifp), (m)); \
1352 * If xmt_vif is not -1, send on only the requested vif.
1354 * (since vifi_t is u_short, -1 becomes MAXUSHORT, which > numvifs.)
1356 if (xmt_vif
< numvifs
) {
1357 MC_SEND(ip
, viftable
+ xmt_vif
, m
);
1362 * Don't forward if it didn't arrive from the parent vif for its origin.
1364 vifi
= rt
->mfc_parent
;
1365 if ((vifi
>= numvifs
) || (viftable
[vifi
].v_ifp
!= ifp
)) {
1366 /* came in the wrong interface */
1367 if (mrtdebug
& DEBUG_FORWARD
)
1368 log(LOG_DEBUG
, "wrong if: ifp %p vifi %d vififp %p\n",
1369 (void *)ifp
, vifi
, (void *)viftable
[vifi
].v_ifp
);
1370 ++mrtstat
.mrts_wrong_if
;
1373 * If we are doing PIM assert processing, and we are forwarding
1374 * packets on this interface, and it is a broadcast medium
1375 * interface (and not a tunnel), send a message to the routing daemon.
1377 if (pim_assert
&& rt
->mfc_ttls
[vifi
] &&
1378 (ifp
->if_flags
& IFF_BROADCAST
) &&
1379 !(viftable
[vifi
].v_flags
& VIFF_TUNNEL
)) {
1380 struct sockaddr_in k_igmpsrc
;
1383 int hlen
= ip
->ip_hl
<< 2;
1389 TV_DELTA(rt
->mfc_last_assert
, now
, delta
);
1391 if (delta
> ASSERT_MSG_TIME
) {
1392 mm
= m_copy(m
, 0, hlen
);
1393 if (mm
&& (M_HASCL(mm
) || mm
->m_len
< hlen
))
1394 mm
= m_pullup(mm
, hlen
);
1399 rt
->mfc_last_assert
= now
;
1401 im
= mtod(mm
, struct igmpmsg
*);
1402 im
->im_msgtype
= IGMPMSG_WRONGVIF
;
1406 k_igmpsrc
.sin_addr
= im
->im_src
;
1408 socket_send(ip_mrouter
, mm
, &k_igmpsrc
);
1414 /* If I sourced this packet, it counts as output, else it was input. */
1415 if (ip
->ip_src
.s_addr
== viftable
[vifi
].v_lcl_addr
.s_addr
) {
1416 viftable
[vifi
].v_pkt_out
++;
1417 viftable
[vifi
].v_bytes_out
+= plen
;
1419 viftable
[vifi
].v_pkt_in
++;
1420 viftable
[vifi
].v_bytes_in
+= plen
;
1423 rt
->mfc_byte_cnt
+= plen
;
1426 * For each vif, decide if a copy of the packet should be forwarded.
1428 * - the ttl exceeds the vif's threshold
1429 * - there are group members downstream on interface
1431 for (vifp
= viftable
, vifi
= 0; vifi
< numvifs
; vifp
++, vifi
++)
1432 if ((rt
->mfc_ttls
[vifi
] > 0) &&
1433 (ip
->ip_ttl
> rt
->mfc_ttls
[vifi
])) {
1435 vifp
->v_bytes_out
+= plen
;
1436 MC_SEND(ip
, vifp
, m
);
1443 * check if a vif number is legal/ok. This is used by ip_output, to export
1447 X_legal_vif_num(int vif
)
1449 if (vif
>= 0 && vif
< numvifs
)
1455 #if !defined(MROUTE_LKM) || !MROUTE_LKM
1456 int (*legal_vif_num
)(int) = X_legal_vif_num
;
1460 * Return the local address used by this vif
1463 X_ip_mcast_src(int vifi
)
1465 if (vifi
>= 0 && vifi
< numvifs
)
1466 return viftable
[vifi
].v_lcl_addr
.s_addr
;
1471 #if !defined(MROUTE_LKM) || !MROUTE_LKM
1472 u_int32_t (*ip_mcast_src
)(int) = X_ip_mcast_src
;
1476 phyint_send(struct ip
*ip
, struct vif
*vifp
, struct mbuf
*m
)
1478 struct mbuf
*mb_copy
;
1479 int hlen
= ip
->ip_hl
<< 2;
1482 * Make a new reference to the packet; make sure that
1483 * the IP header is actually copied, not just referenced,
1484 * so that ip_output() only scribbles on the copy.
1486 mb_copy
= m_copy(m
, 0, M_COPYALL
);
1487 if (mb_copy
&& (M_HASCL(mb_copy
) || mb_copy
->m_len
< hlen
))
1488 mb_copy
= m_pullup(mb_copy
, hlen
);
1489 if (mb_copy
== NULL
)
1492 if (vifp
->v_rate_limit
== 0)
1493 tbf_send_packet(vifp
, mb_copy
);
1495 tbf_control(vifp
, mb_copy
, mtod(mb_copy
, struct ip
*), ip
->ip_len
);
1499 encap_send(struct ip
*ip
, struct vif
*vifp
, struct mbuf
*m
)
1501 struct mbuf
*mb_copy
;
1503 int i
, len
= ip
->ip_len
;
1506 * copy the old packet & pullup its IP header into the
1507 * new mbuf so we can modify it. Try to fill the new
1508 * mbuf since if we don't the ethernet driver will.
1510 MGETHDR(mb_copy
, M_DONTWAIT
, MT_HEADER
);
1511 if (mb_copy
== NULL
)
1514 mac_mbuf_label_associate_multicast_encap(m
, vifp
->v_ifp
, mb_copy
);
1516 mb_copy
->m_data
+= max_linkhdr
;
1517 mb_copy
->m_len
= sizeof(multicast_encap_iphdr
);
1519 if ((mb_copy
->m_next
= m_copy(m
, 0, M_COPYALL
)) == NULL
) {
1523 i
= MHLEN
- M_LEADINGSPACE(mb_copy
);
1526 mb_copy
= m_pullup(mb_copy
, i
);
1527 if (mb_copy
== NULL
)
1529 mb_copy
->m_pkthdr
.len
= len
+ sizeof(multicast_encap_iphdr
);
1532 * fill in the encapsulating IP header.
1534 ip_copy
= mtod(mb_copy
, struct ip
*);
1535 *ip_copy
= multicast_encap_iphdr
;
1537 ip_copy
->ip_id
= ip_randomid();
1539 ip_copy
->ip_id
= htons(ip_id
++);
1541 ip_copy
->ip_len
+= len
;
1542 ip_copy
->ip_src
= vifp
->v_lcl_addr
;
1543 ip_copy
->ip_dst
= vifp
->v_rmt_addr
;
1546 * turn the encapsulated IP header back into a valid one.
1548 ip
= (struct ip
*)((caddr_t
)ip_copy
+ sizeof(multicast_encap_iphdr
));
1551 #if BYTE_ORDER != BIG_ENDIAN
1557 mb_copy
->m_data
+= sizeof(multicast_encap_iphdr
);
1558 ip
->ip_sum
= in_cksum(mb_copy
, ip
->ip_hl
<< 2);
1559 mb_copy
->m_data
-= sizeof(multicast_encap_iphdr
);
1561 if (vifp
->v_rate_limit
== 0)
1562 tbf_send_packet(vifp
, mb_copy
);
1564 tbf_control(vifp
, mb_copy
, ip
, ip_copy
->ip_len
);
1568 * De-encapsulate a packet and feed it back through ip input (this
1569 * routine is called whenever IP gets a packet with proto type
1570 * ENCAP_PROTO and a local destination address).
1574 X_ipip_input(struct mbuf
*m
, int iphlen
)
1576 ipip_input(struct mbuf
*m
, int iphlen
)
1579 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
1580 struct ip
*ip
= mtod(m
, struct ip
*);
1581 int hlen
= ip
->ip_hl
<< 2;
1584 if (!have_encap_tunnel
) {
1585 rip_input(m
, iphlen
);
1589 * dump the packet if it's not to a multicast destination or if
1590 * we don't have an encapsulating tunnel with the source.
1591 * Note: This code assumes that the remote site IP address
1592 * uniquely identifies the tunnel (i.e., that this site has
1593 * at most one tunnel with the remote site).
1595 if (! IN_MULTICAST(ntohl(((struct ip
*)((char *)ip
+ hlen
))->ip_dst
.s_addr
))) {
1596 ++mrtstat
.mrts_bad_tunnel
;
1600 if (ip
->ip_src
.s_addr
!= last_encap_src
) {
1604 vife
= vifp
+ numvifs
;
1605 last_encap_src
= ip
->ip_src
.s_addr
;
1607 for ( ; vifp
< vife
; ++vifp
)
1608 if (vifp
->v_rmt_addr
.s_addr
== ip
->ip_src
.s_addr
) {
1609 if ((vifp
->v_flags
& (VIFF_TUNNEL
|VIFF_SRCRT
))
1611 last_encap_vif
= vifp
;
1615 if ((vifp
= last_encap_vif
) == 0) {
1617 mrtstat
.mrts_cant_tunnel
++; /*XXX*/
1620 log(LOG_DEBUG
, "ip_mforward: no tunnel with %lx\n",
1621 (u_int32_t
)ntohl(ip
->ip_src
.s_addr
));
1626 if (hlen
> IP_HDR_LEN
)
1627 ip_stripoptions(m
, (struct mbuf
*) 0);
1628 m
->m_data
+= IP_HDR_LEN
;
1629 m
->m_len
-= IP_HDR_LEN
;
1630 m
->m_pkthdr
.len
-= IP_HDR_LEN
;
1631 m
->m_pkthdr
.rcvif
= ifp
;
1633 proto_inject(PF_INET
, m
);
1637 * Token bucket filter module
1641 tbf_control(struct vif
*vifp
, struct mbuf
*m
, struct ip
*ip
,
1644 struct tbf
*t
= vifp
->v_tbf
;
1646 if (p_len
> MAX_BKT_SIZE
) {
1647 /* drop if packet is too large */
1648 mrtstat
.mrts_pkt2large
++;
1653 tbf_update_tokens(vifp
);
1655 /* if there are enough tokens,
1656 * and the queue is empty,
1657 * send this packet out
1660 if (t
->tbf_q_len
== 0) {
1661 /* queue empty, send packet if enough tokens */
1662 if (p_len
<= t
->tbf_n_tok
) {
1663 t
->tbf_n_tok
-= p_len
;
1664 tbf_send_packet(vifp
, m
);
1666 /* queue packet and timeout till later */
1668 timeout(tbf_reprocess_q
, (caddr_t
)vifp
, TBF_REPROCESS
);
1670 } else if (t
->tbf_q_len
< t
->tbf_max_q_len
) {
1671 /* finite queue length, so queue pkts and process queue */
1673 tbf_process_q(vifp
);
1675 /* queue length too much, try to dq and queue and process */
1676 if (!tbf_dq_sel(vifp
, ip
)) {
1677 mrtstat
.mrts_q_overflow
++;
1682 tbf_process_q(vifp
);
1689 * adds a packet to the queue at the interface
1692 tbf_queue(struct vif
*vifp
, struct mbuf
*m
)
1694 struct tbf
*t
= vifp
->v_tbf
;
1696 if (t
->tbf_t
== NULL
) {
1697 /* Queue was empty */
1700 /* Insert at tail */
1701 t
->tbf_t
->m_act
= m
;
1704 /* Set new tail pointer */
1708 /* Make sure we didn't get fed a bogus mbuf */
1710 panic("tbf_queue: m_act");
1719 * processes the queue at the interface
1722 tbf_process_q(struct vif
*vifp
)
1726 struct tbf
*t
= vifp
->v_tbf
;
1728 /* loop through the queue at the interface and send as many packets
1731 while (t
->tbf_q_len
> 0) {
1734 len
= mtod(m
, struct ip
*)->ip_len
;
1736 /* determine if the packet can be sent */
1737 if (len
<= t
->tbf_n_tok
) {
1739 * reduce no of tokens, dequeue the packet,
1742 t
->tbf_n_tok
-= len
;
1744 t
->tbf_q
= m
->m_act
;
1745 if (--t
->tbf_q_len
== 0)
1749 tbf_send_packet(vifp
, m
);
1756 tbf_reprocess_q(void *xvifp
)
1758 struct vif
*vifp
= xvifp
;
1760 if (ip_mrouter
== NULL
) {
1764 tbf_update_tokens(vifp
);
1766 tbf_process_q(vifp
);
1768 if (vifp
->v_tbf
->tbf_q_len
)
1769 timeout(tbf_reprocess_q
, (caddr_t
)vifp
, TBF_REPROCESS
);
1772 /* function that will selectively discard a member of the queue
1773 * based on the precedence value and the priority
1776 tbf_dq_sel(struct vif
*vifp
, struct ip
*ip
)
1779 struct mbuf
*m
, *last
;
1781 struct tbf
*t
= vifp
->v_tbf
;
1783 p
= priority(vifp
, ip
);
1787 while ((m
= *np
) != NULL
) {
1788 if (p
> priority(vifp
, mtod(m
, struct ip
*))) {
1790 /* If we're removing the last packet, fix the tail pointer */
1794 /* it's impossible for the queue to be empty, but
1795 * we check anyway. */
1796 if (--t
->tbf_q_len
== 0)
1798 mrtstat
.mrts_drop_sel
++;
1808 tbf_send_packet(struct vif
*vifp
, struct mbuf
*m
)
1810 struct ip_moptions imo
;
1812 static struct route ro
;
1814 if (vifp
->v_flags
& VIFF_TUNNEL
) {
1815 /* If tunnel options */
1816 ip_output(m
, (struct mbuf
*)0, &vifp
->v_route
,
1817 IP_FORWARDING
, (struct ip_moptions
*)0, NULL
);
1819 imo
.imo_multicast_ifp
= vifp
->v_ifp
;
1820 imo
.imo_multicast_ttl
= mtod(m
, struct ip
*)->ip_ttl
- 1;
1821 imo
.imo_multicast_loop
= 1;
1822 imo
.imo_multicast_vif
= -1;
1825 * Re-entrancy should not be a problem here, because
1826 * the packets that we send out and are looped back at us
1827 * should get rejected because they appear to come from
1828 * the loopback interface, thus preventing looping.
1830 error
= ip_output(m
, (struct mbuf
*)0, &ro
,
1831 IP_FORWARDING
, &imo
, NULL
);
1833 if (mrtdebug
& DEBUG_XMIT
)
1834 log(LOG_DEBUG
, "phyint_send on vif %d err %d\n",
1835 vifp
- viftable
, error
);
1839 /* determine the current time and then
1840 * the elapsed time (between the last time and time now)
1841 * in milliseconds & update the no. of tokens in the bucket
1844 tbf_update_tokens(struct vif
*vifp
)
1848 struct tbf
*t
= vifp
->v_tbf
;
1852 TV_DELTA(tp
, t
->tbf_last_pkt_t
, tm
);
1855 * This formula is actually
1856 * "time in seconds" * "bytes/second".
1858 * (tm / 1000000) * (v_rate_limit * 1000 * (1000/1024) / 8)
1860 * The (1000/1024) was introduced in add_vif to optimize
1861 * this divide into a shift.
1863 t
->tbf_n_tok
+= tm
* vifp
->v_rate_limit
/ 1024 / 8;
1864 t
->tbf_last_pkt_t
= tp
;
1866 if (t
->tbf_n_tok
> MAX_BKT_SIZE
)
1867 t
->tbf_n_tok
= MAX_BKT_SIZE
;
1871 priority(__unused
struct vif
*vifp
, struct ip
*ip
)
1875 /* temporary hack; may add general packet classifier some day */
1878 * The UDP port space is divided up into four priority ranges:
1879 * [0, 16384) : unclassified - lowest priority
1880 * [16384, 32768) : audio - highest priority
1881 * [32768, 49152) : whiteboard - medium priority
1882 * [49152, 65536) : video - low priority
1884 if (ip
->ip_p
== IPPROTO_UDP
) {
1885 struct udphdr
*udp
= (struct udphdr
*)(((char *)ip
) + (ip
->ip_hl
<< 2));
1886 switch (ntohs(udp
->uh_dport
) & 0xc000) {
1901 log(LOG_DEBUG
, "port %x prio%d\n", ntohs(udp
->uh_dport
), prio
);
1909 * End of token bucket filter modifications
1913 ip_rsvp_vif_init(struct socket
*so
, struct sockopt
*sopt
)
1918 printf("ip_rsvp_vif_init: so_type = %d, pr_protocol = %d\n",
1919 so
->so_type
, so
->so_proto
->pr_protocol
);
1921 if (so
->so_type
!= SOCK_RAW
|| so
->so_proto
->pr_protocol
!= IPPROTO_RSVP
)
1925 error
= sooptcopyin(sopt
, &i
, sizeof i
, sizeof i
);
1930 printf("ip_rsvp_vif_init: vif = %d rsvp_on = %d\n", i
, rsvp_on
);
1933 if (!legal_vif_num(i
)) {
1934 return EADDRNOTAVAIL
;
1937 /* Check if socket is available. */
1938 if (viftable
[i
].v_rsvpd
!= NULL
) {
1942 viftable
[i
].v_rsvpd
= so
;
1943 /* This may seem silly, but we need to be sure we don't over-increment
1944 * the RSVP counter, in case something slips up.
1946 if (!viftable
[i
].v_rsvp_on
) {
1947 viftable
[i
].v_rsvp_on
= 1;
1955 ip_rsvp_vif_done(struct socket
*so
, struct sockopt
*sopt
)
1960 printf("ip_rsvp_vif_done: so_type = %d, pr_protocol = %d\n",
1961 so
->so_type
, so
->so_proto
->pr_protocol
);
1963 if (so
->so_type
!= SOCK_RAW
||
1964 so
->so_proto
->pr_protocol
!= IPPROTO_RSVP
)
1967 error
= sooptcopyin(sopt
, &i
, sizeof i
, sizeof i
);
1972 if (!legal_vif_num(i
)) {
1973 return EADDRNOTAVAIL
;
1977 printf("ip_rsvp_vif_done: v_rsvpd = %p so = %p\n",
1978 viftable
[i
].v_rsvpd
, so
);
1980 viftable
[i
].v_rsvpd
= NULL
;
1982 * This may seem silly, but we need to be sure we don't over-decrement
1983 * the RSVP counter, in case something slips up.
1985 if (viftable
[i
].v_rsvp_on
) {
1986 viftable
[i
].v_rsvp_on
= 0;
1994 ip_rsvp_force_done(struct socket
*so
)
1998 /* Don't bother if it is not the right type of socket. */
1999 if (so
->so_type
!= SOCK_RAW
|| so
->so_proto
->pr_protocol
!= IPPROTO_RSVP
)
2002 /* The socket may be attached to more than one vif...this
2003 * is perfectly legal.
2005 for (vifi
= 0; vifi
< numvifs
; vifi
++) {
2006 if (viftable
[vifi
].v_rsvpd
== so
) {
2007 viftable
[vifi
].v_rsvpd
= NULL
;
2008 /* This may seem silly, but we need to be sure we don't
2009 * over-decrement the RSVP counter, in case something slips up.
2011 if (viftable
[vifi
].v_rsvp_on
) {
2012 viftable
[vifi
].v_rsvp_on
= 0;
2022 rsvp_input(struct mbuf
*m
, int iphlen
)
2025 struct ip
*ip
= mtod(m
, struct ip
*);
2026 static struct sockaddr_in rsvp_src
= { sizeof rsvp_src
, AF_INET
,
2027 0 , {0}, {0,0,0,0,0,0,0,0,} };
2031 printf("rsvp_input: rsvp_on %d\n",rsvp_on
);
2033 /* Can still get packets with rsvp_on = 0 if there is a local member
2034 * of the group to which the RSVP packet is addressed. But in this
2035 * case we want to throw the packet away.
2043 printf("rsvp_input: check vifs\n");
2046 if (!(m
->m_flags
& M_PKTHDR
))
2047 panic("rsvp_input no hdr");
2050 ifp
= m
->m_pkthdr
.rcvif
;
2051 /* Find which vif the packet arrived on. */
2052 for (vifi
= 0; vifi
< numvifs
; vifi
++)
2053 if (viftable
[vifi
].v_ifp
== ifp
)
2056 if (vifi
== numvifs
|| viftable
[vifi
].v_rsvpd
== NULL
) {
2058 * If the old-style non-vif-associated socket is set,
2059 * then use it. Otherwise, drop packet since there
2060 * is no specific socket for this vif.
2062 if (ip_rsvpd
!= NULL
) {
2064 printf("rsvp_input: Sending packet up old-style socket\n");
2065 rip_input(m
, iphlen
); /* xxx */
2067 if (rsvpdebug
&& vifi
== numvifs
)
2068 printf("rsvp_input: Can't find vif for packet.\n");
2069 else if (rsvpdebug
&& viftable
[vifi
].v_rsvpd
== NULL
)
2070 printf("rsvp_input: No socket defined for vif %d\n",vifi
);
2075 rsvp_src
.sin_addr
= ip
->ip_src
;
2078 printf("rsvp_input: m->m_len = %d, sbspace() = %d\n",
2079 m
->m_len
,sbspace(&(viftable
[vifi
].v_rsvpd
->so_rcv
)));
2081 if (socket_send(viftable
[vifi
].v_rsvpd
, m
, &rsvp_src
) < 0) {
2083 printf("rsvp_input: Failed to append to socket\n");
2086 printf("rsvp_input: send packet up\n");
2092 #include <sys/conf.h>
2093 #include <sys/exec.h>
2094 #include <sys/sysent.h>
2095 #include <sys/lkm.h>
2097 MOD_MISC("ip_mroute_mod")
2100 ip_mroute_mod_handle(struct lkm_table
*lkmtp
, int cmd
)
2103 struct lkm_misc
*args
= lkmtp
->private.lkm_misc
;
2107 static int (*old_ip_mrouter_cmd
)();
2108 static int (*old_ip_mrouter_done
)();
2109 static int (*old_ip_mforward
)();
2110 static int (*old_mrt_ioctl
)();
2111 static void (*old_proto4_input
)();
2112 static int (*old_legal_vif_num
)();
2113 extern struct protosw inetsw
[];
2116 if(lkmexists(lkmtp
) || ip_mrtproto
)
2118 old_ip_mrouter_cmd
= ip_mrouter_cmd
;
2119 ip_mrouter_cmd
= X_ip_mrouter_cmd
;
2120 old_ip_mrouter_done
= ip_mrouter_done
;
2121 ip_mrouter_done
= X_ip_mrouter_done
;
2122 old_ip_mforward
= ip_mforward
;
2123 ip_mforward
= X_ip_mforward
;
2124 old_mrt_ioctl
= mrt_ioctl
;
2125 mrt_ioctl
= X_mrt_ioctl
;
2126 old_proto4_input
= ip_protox
[ENCAP_PROTO
]->pr_input
;
2127 ip_protox
[ENCAP_PROTO
]->pr_input
= X_ipip_input
;
2128 old_legal_vif_num
= legal_vif_num
;
2129 legal_vif_num
= X_legal_vif_num
;
2130 ip_mrtproto
= IGMP_DVMRP
;
2132 printf("\nIP multicast routing loaded\n");
2139 ip_mrouter_cmd
= old_ip_mrouter_cmd
;
2140 ip_mrouter_done
= old_ip_mrouter_done
;
2141 ip_mforward
= old_ip_mforward
;
2142 mrt_ioctl
= old_mrt_ioctl
;
2143 ip_protox
[ENCAP_PROTO
]->pr_input
= old_proto4_input
;
2144 legal_vif_num
= old_legal_vif_num
;
2157 ip_mroute_mod(struct lkm_table
*lkmtp
, int cmd
, int ver
) {
2158 DISPATCH(lkmtp
, cmd
, ver
, ip_mroute_mod_handle
, ip_mroute_mod_handle
,
2162 #endif /* MROUTE_LKM */
2163 #endif /* MROUTING */