Home | History | Annotate | Line # | Download | only in netinet6
ip6_mroute.h revision 1.2
      1 /*
      2  * Copyright (C) 1998 WIDE Project.
      3  * All rights reserved.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions
      7  * are met:
      8  * 1. Redistributions of source code must retain the above copyright
      9  *    notice, this list of conditions and the following disclaimer.
     10  * 2. Redistributions in binary form must reproduce the above copyright
     11  *    notice, this list of conditions and the following disclaimer in the
     12  *    documentation and/or other materials provided with the distribution.
     13  * 3. Neither the name of the project nor the names of its contributors
     14  *    may be used to endorse or promote products derived from this software
     15  *    without specific prior written permission.
     16  *
     17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27  * SUCH DAMAGE.
     28  */
     29 
     30 /*	BSDI ip_mroute.h,v 2.5 1996/10/11 16:01:48 pjd Exp	*/
     31 
     32 /*
     33  * Definitions for IP multicast forwarding.
     34  *
     35  * Written by David Waitzman, BBN Labs, August 1988.
     36  * Modified by Steve Deering, Stanford, February 1989.
     37  * Modified by Ajit Thyagarajan, PARC, August 1993.
     38  * Modified by Ajit Thyagarajan, PARC, August 1994.
     39  * Modified by Ahmed Helmy, USC, September 1996.
     40  *
     41  * MROUTING Revision: 1.2
     42  */
     43 
     44 #ifndef _NETINET6_IP6_MROUTE_H_
     45 #define _NETINET6_IP6_MROUTE_H_
     46 
     47 #ifdef __NetBSD__
     48 # ifdef _KERNEL
     49 #  define KERNEL
     50 # endif
     51 #endif
     52 
     53 /*
     54  * Multicast Routing set/getsockopt commands.
     55  */
     56 #define MRT6_INIT		100	/* initialize forwarder */
     57 #define MRT6_DONE		101	/* shut down forwarder */
     58 #define MRT6_ADD_MIF		102	/* add multicast interface */
     59 #define MRT6_DEL_MIF		103	/* delete multicast interface */
     60 #define MRT6_ADD_MFC		104	/* insert forwarding cache entry */
     61 #define MRT6_DEL_MFC		105	/* delete forwarding cache entry */
     62 #define MRT6_PIM                107     /* enable pim code */
     63 
     64 #if BSD >= 199103
     65 #define GET_TIME(t)	microtime(&t)
     66 #elif defined(sun)
     67 #define GET_TIME(t)	uniqtime(&t)
     68 #else
     69 #define GET_TIME(t)	((t) = time)
     70 #endif
     71 
     72 /*
     73  * Types and macros for handling bitmaps with one bit per multicast interface.
     74  */
     75 typedef u_short mifi_t;		/* type of a mif index */
     76 #define MAXMIFS		64
     77 
     78 #ifndef	IF_SETSIZE
     79 #define	IF_SETSIZE	256
     80 #endif
     81 
     82 typedef	long	if_mask;
     83 #define	NIFBITS	(sizeof(if_mask) * NBBY)	/* bits per mask */
     84 
     85 #ifndef howmany
     86 #define	howmany(x, y)	(((x) + ((y) - 1)) / (y))
     87 #endif
     88 
     89 typedef	struct if_set {
     90 	fd_mask	ifs_bits[howmany(IF_SETSIZE, NIFBITS)];
     91 } if_set;
     92 
     93 #define	IF_SET(n, p)	((p)->ifs_bits[(n)/NIFBITS] |= (1 << ((n) % NIFBITS)))
     94 #define	IF_CLR(n, p)	((p)->ifs_bits[(n)/NIFBITS] &= ~(1 << ((n) % NIFBITS)))
     95 #define	IF_ISSET(n, p)	((p)->ifs_bits[(n)/NIFBITS] & (1 << ((n) % NIFBITS)))
     96 #define	IF_COPY(f, t)	bcopy(f, t, sizeof(*(f)))
     97 #define	IF_ZERO(p)	bzero(p, sizeof(*(p)))
     98 
     99 /*
    100  * Argument structure for MRT6_ADD_IF.
    101  */
    102 struct mif6ctl {
    103 	mifi_t	    mif6c_mifi;	    	/* the index of the mif to be added  */
    104 	u_char	    mif6c_flags;     	/* MIFF_ flags defined below         */
    105 	u_short	    mif6c_pifi;		/* the index of the physical IF */
    106 #ifdef notyet
    107 	u_int	    mif6c_rate_limit;    /* max rate           		     */
    108 #endif
    109 };
    110 
    111 #define	MIFF_REGISTER	0x1	/* mif represents a register end-point */
    112 
    113 /*
    114  * Argument structure for MRT6_ADD_MFC and MRT6_DEL_MFC
    115  */
    116 struct mf6cctl {
    117 	struct sockaddr_in6 mf6cc_origin;	/* IPv6 origin of mcasts */
    118 	struct sockaddr_in6 mf6cc_mcastgrp; /* multicast group associated */
    119 	mifi_t		mf6cc_parent;	/* incoming ifindex */
    120 	struct if_set	mf6cc_ifset;	/* set of forwarding ifs */
    121 };
    122 
    123 /*
    124  * The kernel's multicast routing statistics.
    125  */
    126 #ifdef __bsdi__
    127 struct mrt6stat {
    128 	u_quad_t mrt6s_mfc_lookups;	/* # forw. cache hash table hits   */
    129 	u_quad_t mrt6s_mfc_misses;	/* # forw. cache hash table misses */
    130 	u_quad_t mrt6s_upcalls;		/* # calls to mrouted              */
    131 	u_quad_t mrt6s_no_route;	/* no route for packet's origin    */
    132 	u_quad_t mrt6s_bad_tunnel;	/* malformed tunnel options        */
    133 	u_quad_t mrt6s_cant_tunnel;	/* no room for tunnel options      */
    134 	u_quad_t mrt6s_wrong_if;	/* arrived on wrong interface	   */
    135 	u_quad_t mrt6s_upq_ovflw;	/* upcall Q overflow		   */
    136 	u_quad_t mrt6s_cache_cleanups;	/* # entries with no upcalls 	   */
    137 	u_quad_t mrt6s_drop_sel;     	/* pkts dropped selectively        */
    138 	u_quad_t mrt6s_q_overflow;    	/* pkts dropped - Q overflow       */
    139 	u_quad_t mrt6s_pkt2large;     	/* pkts dropped - size > BKT SIZE  */
    140 	u_quad_t mrt6s_upq_sockfull;	/* upcalls dropped - socket full   */
    141 };
    142 #else
    143 struct mrt6stat {
    144 	u_long mrt6s_mfc_lookups;	/* # forw. cache hash table hits   */
    145 	u_long mrt6s_mfc_misses;	/* # forw. cache hash table misses */
    146 	u_long mrt6s_upcalls;		/* # calls to mrouted              */
    147 	u_long mrt6s_no_route;		/* no route for packet's origin    */
    148 	u_long mrt6s_bad_tunnel;	/* malformed tunnel options        */
    149 	u_long mrt6s_cant_tunnel;	/* no room for tunnel options      */
    150 	u_long mrt6s_wrong_if;		/* arrived on wrong interface	   */
    151 	u_long mrt6s_upq_ovflw;		/* upcall Q overflow		   */
    152 	u_long mrt6s_cache_cleanups;	/* # entries with no upcalls 	   */
    153 	u_long mrt6s_drop_sel;     	/* pkts dropped selectively        */
    154 	u_long mrt6s_q_overflow;    	/* pkts dropped - Q overflow       */
    155 	u_long mrt6s_pkt2large;     	/* pkts dropped - size > BKT SIZE  */
    156 	u_long mrt6s_upq_sockfull;	/* upcalls dropped - socket full   */
    157 };
    158 #endif
    159 
    160 /*
    161  * Struct used to communicate from kernel to multicast router
    162  * note the convenient similarity to an IPv6 header.
    163  */
    164 struct mrt6msg {
    165 	u_long	    unused1;
    166 	u_char	    im6_msgtype;		/* what type of message	    */
    167 #define MRT6MSG_NOCACHE		1
    168 #define MRT6MSG_WRONGMIF	2
    169 #define MRT6MSG_WHOLEPKT	3		/* used for user level encap*/
    170 	u_char	    im6_mbz;			/* must be zero		    */
    171 	u_char	    im6_mif;			/* mif rec'd on		    */
    172 	u_char	    unused2;
    173 	struct in6_addr  im6_src, im6_dst;
    174 };
    175 
    176 /*
    177  * Argument structure used by mrouted to get src-grp pkt counts
    178  */
    179 struct sioc6_sg_req {
    180     struct in6_addr src;
    181     struct in6_addr grp;
    182     u_long pktcnt;
    183     u_long bytecnt;
    184     u_long wrong_if;
    185 };
    186 
    187 /*
    188  * Argument structure used by multicast routing daemon to get src-grp
    189  * packet counts
    190  */
    191 struct sioc_sg_req6 {
    192 	struct sockaddr_in6 src;
    193 	struct sockaddr_in6 grp;
    194 	u_long pktcnt;
    195 	u_long bytecnt;
    196 	u_long wrong_if;
    197 };
    198 
    199 /*
    200  * Argument structure used by mrouted to get mif pkt counts
    201  */
    202 struct sioc_mif_req6 {
    203 	mifi_t mifi;		/* mif number				*/
    204 	u_long icount;		/* Input packet count on mif		*/
    205 	u_long ocount;		/* Output packet count on mif		*/
    206 	u_long ibytes;		/* Input byte count on mif		*/
    207 	u_long obytes;		/* Output byte count on mif		*/
    208 };
    209 
    210 #ifdef KERNEL
    211 /*
    212  * The kernel's multicast-interface structure.
    213  */
    214 struct mif6 {
    215         u_char   	m6_flags;     	/* MIFF_ flags defined above         */
    216 	u_int      	m6_rate_limit; 	/* max rate			     */
    217 #ifdef notyet
    218 	struct tbf      *m6_tbf;      	/* token bucket structure at intf.   */
    219 #endif
    220 	struct in6_addr	m6_lcl_addr;   	/* local interface address           */
    221 	struct ifnet    *m6_ifp;     	/* pointer to interface              */
    222 	u_long		m6_pkt_in;	/* # pkts in on interface            */
    223 	u_long		m6_pkt_out;	/* # pkts out on interface           */
    224 	u_long		m6_bytes_in;	/* # bytes in on interface	     */
    225 	u_long		m6_bytes_out;	/* # bytes out on interface	     */
    226 	struct route_in6 m6_route;/* cached route if this is a tunnel */
    227 #ifdef notyet
    228 	u_int		m6_rsvp_on;	/* RSVP listening on this vif */
    229 	struct socket   *m6_rsvpd;	/* RSVP daemon socket */
    230 #endif
    231 };
    232 
    233 /*
    234  * The kernel's multicast forwarding cache entry structure
    235  */
    236 struct mf6c {
    237 	struct sockaddr_in6  mf6c_origin;	/* IPv6 origin of mcasts     */
    238 	struct sockaddr_in6  mf6c_mcastgrp;	/* multicast group associated*/
    239 	mifi_t	    	 mf6c_parent; 		/* incoming IF               */
    240 	struct if_set	 mf6c_ifset;		/* set of outgoing IFs */
    241 
    242 	u_long	    	mf6c_pkt_cnt;		/* pkt count for src-grp     */
    243 	u_long	    	mf6c_byte_cnt;		/* byte count for src-grp    */
    244 	u_long	    	mf6c_wrong_if;		/* wrong if for src-grp	     */
    245 	int	    	mf6c_expire;		/* time to clean entry up    */
    246 	struct timeval  mf6c_last_assert;	/* last time I sent an assert*/
    247 	struct rtdetq  *mf6c_stall;		/* pkts waiting for route */
    248 	struct mf6c    *mf6c_next;		/* hash table linkage */
    249 };
    250 
    251 #define MF6C_INCOMPLETE_PARENT ((mifi_t)-1)
    252 
    253 /*
    254  * Argument structure used for pkt info. while upcall is made
    255  */
    256 #ifndef _NETINET_IP_MROUTE_H_
    257 struct rtdetq {		/* XXX: rtdetq is also defined in ip_mroute.h */
    258     struct mbuf 	*m;		/* A copy of the packet	    	    */
    259     struct ifnet	*ifp;		/* Interface pkt came in on 	    */
    260 #ifdef UPCALL_TIMING
    261     struct timeval	t;		/* Timestamp */
    262 #endif /* UPCALL_TIMING */
    263     struct rtdetq	*next;
    264 };
    265 #endif /* _NETINET_IP_MROUTE_H_ */
    266 
    267 #define MF6CTBLSIZ	256
    268 #if (MF6CTBLSIZ & (MF6CTBLSIZ - 1)) == 0	  /* from sys:route.h */
    269 #define MF6CHASHMOD(h)	((h) & (MF6CTBLSIZ - 1))
    270 #else
    271 #define MF6CHASHMOD(h)	((h) % MF6CTBLSIZ)
    272 #endif
    273 
    274 #define MAX_UPQ6	4		/* max. no of pkts in upcall Q */
    275 
    276 int	ip6_mrouter_set __P((int, struct socket *, struct mbuf *));
    277 int	ip6_mrouter_get __P((int, struct socket *, struct mbuf **));
    278 int	ip6_mrouter_done __P((void));
    279 int	mrt6_ioctl __P((int, caddr_t));
    280 #endif /* KERNEL */
    281 
    282 #endif /* !_NETINET6_IP6_MROUTE_H_ */
    283