ip_mroute.h revision 1.13 1 1.13 perry /* $NetBSD: ip_mroute.h,v 1.13 1998/02/10 01:26:57 perry Exp $ */
2 1.6 cgd
3 1.1 hpeyerl /*
4 1.9 mycroft * Definitions for IP multicast forwarding.
5 1.1 hpeyerl *
6 1.1 hpeyerl * Written by David Waitzman, BBN Labs, August 1988.
7 1.1 hpeyerl * Modified by Steve Deering, Stanford, February 1989.
8 1.9 mycroft * Modified by Ajit Thyagarajan, PARC, August 1993.
9 1.9 mycroft * Modified by Ajit Thyagarajan, PARC, August 1994.
10 1.1 hpeyerl *
11 1.9 mycroft * MROUTING Revision: 1.2
12 1.1 hpeyerl */
13 1.1 hpeyerl
14 1.13 perry #ifndef _NETINET_IP_MROUTE_H_
15 1.13 perry #define _NETINET_IP_MROUTE_H_
16 1.13 perry
17 1.9 mycroft #include <sys/queue.h>
18 1.1 hpeyerl
19 1.1 hpeyerl /*
20 1.9 mycroft * Multicast Routing set/getsockopt commands.
21 1.1 hpeyerl */
22 1.9 mycroft #define MRT_INIT 100 /* initialize forwarder */
23 1.9 mycroft #define MRT_DONE 101 /* shut down forwarder */
24 1.9 mycroft #define MRT_ADD_VIF 102 /* create virtual interface */
25 1.9 mycroft #define MRT_DEL_VIF 103 /* delete virtual interface */
26 1.9 mycroft #define MRT_ADD_MFC 104 /* insert forwarding cache entry */
27 1.9 mycroft #define MRT_DEL_MFC 105 /* delete forwarding cache entry */
28 1.9 mycroft #define MRT_VERSION 106 /* get kernel version number */
29 1.9 mycroft #define MRT_ASSERT 107 /* enable PIM assert processing */
30 1.1 hpeyerl
31 1.1 hpeyerl
32 1.1 hpeyerl /*
33 1.1 hpeyerl * Types and macros for handling bitmaps with one bit per virtual interface.
34 1.1 hpeyerl */
35 1.1 hpeyerl #define MAXVIFS 32
36 1.8 cgd typedef u_int32_t vifbitmap_t;
37 1.9 mycroft typedef u_int16_t vifi_t; /* type of a vif index */
38 1.1 hpeyerl
39 1.9 mycroft #define VIFM_SET(n, m) ((m) |= (1 << (n)))
40 1.9 mycroft #define VIFM_CLR(n, m) ((m) &= ~(1 << (n)))
41 1.9 mycroft #define VIFM_ISSET(n, m) ((m) & (1 << (n)))
42 1.9 mycroft #define VIFM_SETALL(m) ((m) = 0xffffffff)
43 1.9 mycroft #define VIFM_CLRALL(m) ((m) = 0x00000000)
44 1.9 mycroft #define VIFM_COPY(mfrom, mto) ((mto) = (mfrom))
45 1.9 mycroft #define VIFM_SAME(m1, m2) ((m1) == (m2))
46 1.1 hpeyerl
47 1.9 mycroft #define VIFF_TUNNEL 0x1 /* vif represents a tunnel end-point */
48 1.9 mycroft #define VIFF_SRCRT 0x2 /* tunnel uses IP src routing */
49 1.1 hpeyerl
50 1.1 hpeyerl /*
51 1.9 mycroft * Argument structure for MRT_ADD_VIF.
52 1.9 mycroft * (MRT_DEL_VIF takes a single vifi_t argument.)
53 1.1 hpeyerl */
54 1.1 hpeyerl struct vifctl {
55 1.9 mycroft vifi_t vifc_vifi; /* the index of the vif to be added */
56 1.9 mycroft u_int8_t vifc_flags; /* VIFF_ flags defined below */
57 1.9 mycroft u_int8_t vifc_threshold; /* min ttl required to forward on vif */
58 1.9 mycroft u_int32_t vifc_rate_limit; /* max rate */
59 1.9 mycroft struct in_addr vifc_lcl_addr;/* local interface address */
60 1.9 mycroft struct in_addr vifc_rmt_addr;/* remote address (tunnels only) */
61 1.1 hpeyerl };
62 1.1 hpeyerl
63 1.1 hpeyerl /*
64 1.9 mycroft * Argument structure for MRT_ADD_MFC and MRT_DEL_MFC.
65 1.9 mycroft * (mfcc_tos to be added at a future point)
66 1.1 hpeyerl */
67 1.9 mycroft struct mfcctl {
68 1.9 mycroft struct in_addr mfcc_origin; /* ip origin of mcasts */
69 1.9 mycroft struct in_addr mfcc_mcastgrp; /* multicast group associated */
70 1.9 mycroft vifi_t mfcc_parent; /* incoming vif */
71 1.9 mycroft u_int8_t mfcc_ttls[MAXVIFS]; /* forwarding ttls on vifs */
72 1.1 hpeyerl };
73 1.9 mycroft
74 1.1 hpeyerl /*
75 1.9 mycroft * Argument structure used by mrouted to get src-grp pkt counts.
76 1.1 hpeyerl */
77 1.9 mycroft struct sioc_sg_req {
78 1.9 mycroft struct in_addr src;
79 1.9 mycroft struct in_addr grp;
80 1.9 mycroft u_long pktcnt;
81 1.9 mycroft u_long bytecnt;
82 1.9 mycroft u_long wrong_if;
83 1.1 hpeyerl };
84 1.9 mycroft
85 1.1 hpeyerl /*
86 1.9 mycroft * Argument structure used by mrouted to get vif pkt counts.
87 1.1 hpeyerl */
88 1.9 mycroft struct sioc_vif_req {
89 1.9 mycroft vifi_t vifi; /* vif number */
90 1.9 mycroft u_long icount; /* input packet count on vif */
91 1.9 mycroft u_long ocount; /* output packet count on vif */
92 1.9 mycroft u_long ibytes; /* input byte count on vif */
93 1.9 mycroft u_long obytes; /* output byte count on vif */
94 1.1 hpeyerl };
95 1.1 hpeyerl
96 1.1 hpeyerl
97 1.1 hpeyerl /*
98 1.1 hpeyerl * The kernel's multicast routing statistics.
99 1.1 hpeyerl */
100 1.1 hpeyerl struct mrtstat {
101 1.9 mycroft u_long mrts_mfc_lookups; /* # forw. cache hash table hits */
102 1.9 mycroft u_long mrts_mfc_misses; /* # forw. cache hash table misses */
103 1.9 mycroft u_long mrts_upcalls; /* # calls to mrouted */
104 1.1 hpeyerl u_long mrts_no_route; /* no route for packet's origin */
105 1.1 hpeyerl u_long mrts_bad_tunnel; /* malformed tunnel options */
106 1.1 hpeyerl u_long mrts_cant_tunnel; /* no room for tunnel options */
107 1.5 brezak u_long mrts_wrong_if; /* arrived on wrong interface */
108 1.9 mycroft u_long mrts_upq_ovflw; /* upcall Q overflow */
109 1.9 mycroft u_long mrts_cache_cleanups; /* # entries with no upcalls */
110 1.9 mycroft u_long mrts_drop_sel; /* pkts dropped selectively */
111 1.9 mycroft u_long mrts_q_overflow; /* pkts dropped - Q overflow */
112 1.9 mycroft u_long mrts_pkt2large; /* pkts dropped - size > BKT SIZE */
113 1.9 mycroft u_long mrts_upq_sockfull; /* upcalls dropped - socket full */
114 1.9 mycroft };
115 1.9 mycroft
116 1.9 mycroft
117 1.9 mycroft #ifdef _KERNEL
118 1.9 mycroft
119 1.9 mycroft /*
120 1.9 mycroft * The kernel's virtual-interface structure.
121 1.9 mycroft */
122 1.9 mycroft struct vif {
123 1.12 mycroft struct mbuf *tbf_q, **tbf_t; /* packet queue */
124 1.12 mycroft struct timeval tbf_last_pkt_t; /* arr. time of last pkt */
125 1.12 mycroft u_int32_t tbf_n_tok; /* no of tokens in bucket */
126 1.12 mycroft u_int32_t tbf_q_len; /* length of queue at this vif */
127 1.12 mycroft u_int32_t tbf_max_q_len; /* max. queue length */
128 1.12 mycroft
129 1.9 mycroft u_int8_t v_flags; /* VIFF_ flags defined above */
130 1.9 mycroft u_int8_t v_threshold; /* min ttl required to forward on vif */
131 1.9 mycroft u_int32_t v_rate_limit; /* max rate */
132 1.9 mycroft struct in_addr v_lcl_addr; /* local interface address */
133 1.9 mycroft struct in_addr v_rmt_addr; /* remote address (tunnels only) */
134 1.9 mycroft struct ifnet *v_ifp; /* pointer to interface */
135 1.9 mycroft u_long v_pkt_in; /* # pkts in on interface */
136 1.9 mycroft u_long v_pkt_out; /* # pkts out on interface */
137 1.9 mycroft u_long v_bytes_in; /* # bytes in on interface */
138 1.9 mycroft u_long v_bytes_out; /* # bytes out on interface */
139 1.9 mycroft struct route v_route; /* cached route if this is a tunnel */
140 1.9 mycroft #ifdef RSVP_ISI
141 1.9 mycroft int v_rsvp_on; /* # RSVP listening on this vif */
142 1.9 mycroft struct socket *v_rsvpd; /* # RSVPD daemon */
143 1.9 mycroft #endif /* RSVP_ISI */
144 1.9 mycroft };
145 1.9 mycroft
146 1.9 mycroft /*
147 1.9 mycroft * The kernel's multicast forwarding cache entry structure.
148 1.9 mycroft * (A field for the type of service (mfc_tos) is to be added
149 1.9 mycroft * at a future point.)
150 1.9 mycroft */
151 1.9 mycroft struct mfc {
152 1.9 mycroft LIST_ENTRY(mfc) mfc_hash;
153 1.9 mycroft struct in_addr mfc_origin; /* ip origin of mcasts */
154 1.9 mycroft struct in_addr mfc_mcastgrp; /* multicast group associated */
155 1.9 mycroft vifi_t mfc_parent; /* incoming vif */
156 1.9 mycroft u_int8_t mfc_ttls[MAXVIFS]; /* forwarding ttls on vifs */
157 1.9 mycroft u_long mfc_pkt_cnt; /* pkt count for src-grp */
158 1.9 mycroft u_long mfc_byte_cnt; /* byte count for src-grp */
159 1.9 mycroft u_long mfc_wrong_if; /* wrong if for src-grp */
160 1.9 mycroft int mfc_expire; /* time to clean entry up */
161 1.9 mycroft struct timeval mfc_last_assert; /* last time I sent an assert */
162 1.9 mycroft struct rtdetq *mfc_stall; /* pkts waiting for route */
163 1.9 mycroft };
164 1.9 mycroft
165 1.9 mycroft /*
166 1.9 mycroft * Structure used to communicate from kernel to multicast router.
167 1.9 mycroft * (Note the convenient similarity to an IP packet.)
168 1.9 mycroft */
169 1.9 mycroft struct igmpmsg {
170 1.9 mycroft u_int32_t unused1;
171 1.9 mycroft u_int32_t unused2;
172 1.9 mycroft u_int8_t im_msgtype; /* what type of message */
173 1.9 mycroft #define IGMPMSG_NOCACHE 1
174 1.9 mycroft #define IGMPMSG_WRONGVIF 2
175 1.9 mycroft u_int8_t im_mbz; /* must be zero */
176 1.9 mycroft u_int8_t im_vif; /* vif rec'd on */
177 1.9 mycroft u_int8_t unused3;
178 1.9 mycroft struct in_addr im_src, im_dst;
179 1.9 mycroft };
180 1.9 mycroft
181 1.9 mycroft /*
182 1.9 mycroft * Argument structure used for pkt info. while upcall is made.
183 1.9 mycroft */
184 1.9 mycroft struct rtdetq {
185 1.9 mycroft struct mbuf *m; /* a copy of the packet */
186 1.9 mycroft struct ifnet *ifp; /* interface pkt came in on */
187 1.9 mycroft #ifdef UPCALL_TIMING
188 1.9 mycroft struct timeval t; /* timestamp */
189 1.9 mycroft #endif /* UPCALL_TIMING */
190 1.9 mycroft struct rtdetq *next;
191 1.9 mycroft };
192 1.9 mycroft
193 1.9 mycroft #define MFCTBLSIZ 256
194 1.9 mycroft #define MAX_UPQ 4 /* max. no of pkts in upcall Q */
195 1.9 mycroft
196 1.9 mycroft /*
197 1.9 mycroft * Token bucket filter code
198 1.9 mycroft */
199 1.9 mycroft #define MAX_BKT_SIZE 10000 /* 10K bytes size */
200 1.9 mycroft #define MAXQSIZE 10 /* max. no of pkts in token queue */
201 1.9 mycroft
202 1.12 mycroft
203 1.11 mycroft int ip_mrouter_set __P((struct socket *, int, struct mbuf **));
204 1.11 mycroft int ip_mrouter_get __P((struct socket *, int, struct mbuf **));
205 1.11 mycroft int mrt_ioctl __P((struct socket *, u_long, caddr_t));
206 1.10 christos int ip_mrouter_done __P((void));
207 1.10 christos void reset_vif __P((struct vif *));
208 1.10 christos #ifdef RSVP_ISI
209 1.10 christos int ip_mforward __P((struct mbuf *, struct ifnet *, struct ip_moptions *));
210 1.10 christos int legal_vif_num __P((int));
211 1.10 christos int ip_rsvp_vif_init __P((struct socket *, struct mbuf *));
212 1.10 christos int ip_rsvp_vif_done __P((struct socket *, struct mbuf *));
213 1.10 christos void ip_rsvp_force_done __P((struct socket *));
214 1.10 christos void rsvp_input __P((struct mbuf *, struct ifnet *));
215 1.10 christos #else
216 1.10 christos int ip_mforward __P((struct mbuf *, struct ifnet *));
217 1.10 christos #endif
218 1.10 christos void ipip_input __P((struct mbuf *, ...));
219 1.9 mycroft
220 1.7 jtc #endif /* _KERNEL */
221 1.13 perry
222 1.13 perry #endif /* _NETINET_IP_MROUTE_H_ */
223