ip6_var.h revision 1.46.12.2 1 /* $NetBSD: ip6_var.h,v 1.46.12.2 2008/03/24 07:16:24 keiichi Exp $ */
2 /* $KAME: ip6_var.h,v 1.33 2000/06/11 14:59:20 jinmei Exp $ */
3
4 /*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
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.
19 *
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
30 * SUCH DAMAGE.
31 */
32
33 /*
34 * Copyright (c) 1982, 1986, 1993
35 * The Regents of the University of California. All rights reserved.
36 *
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * SUCH DAMAGE.
60 *
61 * @(#)ip_var.h 8.1 (Berkeley) 6/10/93
62 */
63
64 #ifndef _NETINET6_IP6_VAR_H_
65 #define _NETINET6_IP6_VAR_H_
66
67 #include <net/route.h>
68
69 /*
70 * IP6 reassembly queue structure. Each fragment
71 * being reassembled is attached to one of these structures.
72 */
73 struct ip6q {
74 u_int32_t ip6q_head;
75 u_int16_t ip6q_len;
76 u_int8_t ip6q_nxt; /* ip6f_nxt in first fragment */
77 u_int8_t ip6q_hlim;
78 struct ip6asfrag *ip6q_down;
79 struct ip6asfrag *ip6q_up;
80 u_int32_t ip6q_ident;
81 u_int8_t ip6q_arrive;
82 u_int8_t ip6q_ttl;
83 struct in6_addr ip6q_src, ip6q_dst;
84 struct ip6q *ip6q_next;
85 struct ip6q *ip6q_prev;
86 int ip6q_unfrglen; /* len of unfragmentable part */
87 #ifdef notyet
88 u_char *ip6q_nxtp;
89 #endif
90 int ip6q_nfrag; /* # of fragments */
91 };
92
93 struct ip6asfrag {
94 u_int32_t ip6af_head;
95 u_int16_t ip6af_len;
96 u_int8_t ip6af_nxt;
97 u_int8_t ip6af_hlim;
98 /* must not override the above members during reassembling */
99 struct ip6asfrag *ip6af_down;
100 struct ip6asfrag *ip6af_up;
101 struct mbuf *ip6af_m;
102 int ip6af_offset; /* offset in ip6af_m to next header */
103 int ip6af_frglen; /* fragmentable part length */
104 int ip6af_off; /* fragment offset */
105 u_int16_t ip6af_mff; /* more fragment bit in frag off */
106 };
107
108 #define IP6_REASS_MBUF(ip6af) ((ip6af)->ip6af_m)
109
110 struct ip6_moptions {
111 struct ifnet *im6o_multicast_ifp; /* ifp for outgoing multicasts */
112 u_char im6o_multicast_hlim; /* hoplimit for outgoing multicasts */
113 u_char im6o_multicast_loop; /* 1 >= hear sends if a member */
114 LIST_HEAD(, in6_multi_mship) im6o_memberships;
115 };
116
117 /*
118 * Control options for outgoing packets
119 */
120
121 /* Routing header related info */
122 struct ip6po_rhinfo {
123 struct ip6_rthdr *ip6po_rhi_rthdr; /* Routing header */
124 struct route ip6po_rhi_route; /* Route to the 1st hop */
125 };
126 #define ip6po_rthdr ip6po_rhinfo.ip6po_rhi_rthdr
127 #define ip6po_route ip6po_rhinfo.ip6po_rhi_route
128 #define ip6po_rthdr2 ip6po_rhinfo2.ip6po_rhi_rthdr
129 #define ip6po_route2 ip6po_rhinfo2.ip6po_rhi_route
130
131 /* Nexthop related info */
132 struct ip6po_nhinfo {
133 struct sockaddr *ip6po_nhi_nexthop;
134 struct route ip6po_nhi_route; /* Route to the nexthop */
135 };
136 #define ip6po_nexthop ip6po_nhinfo.ip6po_nhi_nexthop
137 #define ip6po_nextroute ip6po_nhinfo.ip6po_nhi_route
138
139 struct ip6_pktopts {
140 int ip6po_hlim; /* Hoplimit for outgoing packets */
141 struct in6_pktinfo *ip6po_pktinfo; /* Outgoing IF/address information */
142 struct ip6po_nhinfo ip6po_nhinfo; /* Next-hop address information */
143 struct ip6_hbh *ip6po_hbh; /* Hop-by-Hop options header */
144 struct ip6_dest *ip6po_dest1; /* Destination options header(1st part) */
145 struct ip6po_rhinfo ip6po_rhinfo; /* Routing header related info. */
146 struct ip6po_rhinfo ip6po_rhinfo2; /* Routing header type 2 RFC3775 */
147 struct ip6_dest *ip6po_hoa; /* Home address option RFC3775 */
148 struct ip6_dest *ip6po_dest2; /* Destination options header(2nd part) */
149 int ip6po_tclass; /* traffic class */
150 int ip6po_minmtu; /* fragment vs PMTU discovery policy */
151 #define IP6PO_MINMTU_MCASTONLY -1 /* default; send at min MTU for multicast*/
152 #define IP6PO_MINMTU_DISABLE 0 /* always perform pmtu disc */
153 #define IP6PO_MINMTU_ALL 1 /* always send at min MTU */
154 int ip6po_flags;
155 #if 0 /* parameters in this block is obsolete. do not reuse the values. */
156 #define IP6PO_REACHCONF 0x01 /* upper-layer reachability confirmation. */
157 #define IP6PO_MINMTU 0x02 /* use minimum MTU (IPV6_USE_MIN_MTU) */
158 #endif
159 #define IP6PO_DONTFRAG 0x04 /* disable fragmentation (IPV6_DONTFRAG) */
160 #define IP6PO_USECOA 0x08 /* use care of address */
161 #define IP6PO_NOTUSEBCE 0x10 /* Don't use binding cache */
162 };
163
164 struct ip6stat {
165 u_quad_t ip6s_total; /* total packets received */
166 u_quad_t ip6s_tooshort; /* packet too short */
167 u_quad_t ip6s_toosmall; /* not enough data */
168 u_quad_t ip6s_fragments; /* fragments received */
169 u_quad_t ip6s_fragdropped; /* frags dropped(dups, out of space) */
170 u_quad_t ip6s_fragtimeout; /* fragments timed out */
171 u_quad_t ip6s_fragoverflow; /* fragments that exceeded limit */
172 u_quad_t ip6s_forward; /* packets forwarded */
173 u_quad_t ip6s_cantforward; /* packets rcvd for unreachable dest */
174 u_quad_t ip6s_redirectsent; /* packets forwarded on same net */
175 u_quad_t ip6s_delivered; /* datagrams delivered to upper level*/
176 u_quad_t ip6s_localout; /* total ip packets generated here */
177 u_quad_t ip6s_odropped; /* lost packets due to nobufs, etc. */
178 u_quad_t ip6s_reassembled; /* total packets reassembled ok */
179 u_quad_t ip6s_fragmented; /* datagrams successfully fragmented */
180 u_quad_t ip6s_ofragments; /* output fragments created */
181 u_quad_t ip6s_cantfrag; /* don't fragment flag was set, etc. */
182 u_quad_t ip6s_badoptions; /* error in option processing */
183 u_quad_t ip6s_noroute; /* packets discarded due to no route */
184 u_quad_t ip6s_badvers; /* ip6 version != 6 */
185 u_quad_t ip6s_rawout; /* total raw ip packets generated */
186 u_quad_t ip6s_badscope; /* scope error */
187 u_quad_t ip6s_notmember; /* don't join this multicast group */
188 u_quad_t ip6s_nxthist[256]; /* next header history */
189 u_quad_t ip6s_m1; /* one mbuf */
190 u_quad_t ip6s_m2m[32]; /* two or more mbuf */
191 u_quad_t ip6s_mext1; /* one ext mbuf */
192 u_quad_t ip6s_mext2m; /* two or more ext mbuf */
193 u_quad_t ip6s_exthdrtoolong; /* ext hdr are not continuous */
194 u_quad_t ip6s_nogif; /* no match gif found */
195 u_quad_t ip6s_toomanyhdr; /* discarded due to too many headers */
196
197 /*
198 * statistics for improvement of the source address selection
199 * algorithm:
200 * XXX: hardcoded 16 = # of ip6 multicast scope types + 1
201 */
202 /* number of times that address selection fails */
203 u_quad_t ip6s_sources_none;
204 /* number of times that an address on the outgoing I/F is chosen */
205 u_quad_t ip6s_sources_sameif[16];
206 /* number of times that an address on a non-outgoing I/F is chosen */
207 u_quad_t ip6s_sources_otherif[16];
208 /*
209 * number of times that an address that has the same scope
210 * from the destination is chosen.
211 */
212 u_quad_t ip6s_sources_samescope[16];
213 /*
214 * number of times that an address that has a different scope
215 * from the destination is chosen.
216 */
217 u_quad_t ip6s_sources_otherscope[16];
218 /* number of times that an deprecated address is chosen */
219 u_quad_t ip6s_sources_deprecated[16];
220
221 u_quad_t ip6s_forward_cachehit;
222 u_quad_t ip6s_forward_cachemiss;
223
224 u_quad_t ip6s_fastforward; /* packets fast forwarded */
225 u_quad_t ip6s_fastforwardflows; /* number of fast forward flows*/
226 };
227
228 #define IP6FLOW_HASHBITS 6 /* should not be a multiple of 8 */
229
230 /*
231 * Structure for an IPv6 flow (ip6_fastforward).
232 */
233 struct ip6flow {
234 LIST_ENTRY(ip6flow) ip6f_list; /* next in active list */
235 LIST_ENTRY(ip6flow) ip6f_hash; /* next ip6flow in bucket */
236 struct in6_addr ip6f_dst; /* destination address */
237 struct in6_addr ip6f_src; /* source address */
238 struct route ip6f_ro; /* associated route entry */
239 u_int32_t ip6f_flow; /* flow (tos) */
240 u_quad_t ip6f_uses; /* number of uses in this period */
241 u_quad_t ip6f_last_uses; /* number of uses in last period */
242 u_quad_t ip6f_dropped; /* ENOBUFS returned by if_output */
243 u_quad_t ip6f_forwarded; /* packets forwarded */
244 u_int ip6f_timer; /* lifetime timer */
245 time_t ip6f_start; /* creation time */
246 };
247
248 #ifdef _KERNEL
249 /*
250 * Auxiliary attributes of incoming IPv6 packets, which is initialized when we
251 * come into ip6_input().
252 * XXX do not make it a kitchen sink!
253 */
254 struct ip6aux {
255 u_int32_t ip6a_osrc_flags;
256 #define IP6A_SWAP 0x01 /* swapped home/care-of on packet */
257 #define IP6A_HASEEN 0x02 /* HA was present */
258
259 #define IP6A_ROUTEOPTIMIZED 0x10 /* route optimized packet */
260 #define IP6A_NOTUSEBC 0x20 /* do not requrie to lookup BC */
261 #define IP6A_TEMP_PROXYND_DEL 0x40 /* Marking for resuming proxy nd entry after sending sepcial BA */
262
263 /* ip6.ip6_src */
264 struct in6_addr ip6a_coa; /* care of address of the peer */
265
266 /* ip6.ip6_dst */
267 struct in6_addr ip6a_src;
268 uint32_t ip6a_src_scope_id;
269 int ip6a_src_flags;
270 };
271
272 /* flags passed to ip6_output as last parameter */
273 #define IPV6_UNSPECSRC 0x01 /* allow :: as the source address */
274 #define IPV6_FORWARDING 0x02 /* most of IPv6 header exists */
275 #define IPV6_MINMTU 0x04 /* use minimum MTU (IPV6_USE_MIN_MTU) */
276
277 #ifdef __NO_STRICT_ALIGNMENT
278 #define IP6_HDR_ALIGNED_P(ip) 1
279 #else
280 #define IP6_HDR_ALIGNED_P(ip) ((((vaddr_t) (ip)) & 3) == 0)
281 #endif
282
283 extern struct ip6stat ip6stat; /* statistics */
284 extern u_int32_t ip6_id; /* fragment identifier */
285 extern int ip6_defhlim; /* default hop limit */
286 extern int ip6_defmcasthlim; /* default multicast hop limit */
287 extern int ip6_forwarding; /* act as router? */
288 extern int ip6_sendredirect; /* send ICMPv6 redirect? */
289 extern int ip6_forward_srcrt; /* forward src-routed? */
290 extern int ip6_use_deprecated; /* allow deprecated addr as source */
291 extern int ip6_rr_prune; /* router renumbering prefix
292 * walk list every 5 sec. */
293 extern int ip6_mcast_pmtu; /* enable pMTU discovery for multicast? */
294 extern int ip6_v6only;
295
296 extern struct socket *ip6_mrouter; /* multicast routing daemon */
297 extern int ip6_sendredirects; /* send IP redirects when forwarding? */
298 extern int ip6_maxfragpackets; /* Maximum packets in reassembly queue */
299 extern int ip6_maxfrags; /* Maximum fragments in reassembly queue */
300 extern int ip6_sourcecheck; /* Verify source interface */
301 extern int ip6_sourcecheck_interval; /* Interval between log messages */
302 extern int ip6_accept_rtadv; /* Acts as a host not a router */
303 extern int ip6_keepfaith; /* Firewall Aided Internet Translator */
304 extern int ip6_log_interval;
305 extern time_t ip6_log_time;
306 extern int ip6_hdrnestlimit; /* upper limit of # of extension headers */
307 extern int ip6_dad_count; /* DupAddrDetectionTransmits */
308
309 extern int ip6_auto_flowlabel;
310 extern int ip6_auto_linklocal;
311
312 extern int ip6_anonportmin; /* minimum ephemeral port */
313 extern int ip6_anonportmax; /* maximum ephemeral port */
314 extern int ip6_lowportmin; /* minimum reserved port */
315 extern int ip6_lowportmax; /* maximum reserved port */
316
317 extern int ip6_use_tempaddr; /* whether to use temporary addresses. */
318 extern int ip6_prefer_tempaddr; /* whether to prefer temporary addresses
319 in the source address selection */
320 extern int ip6_use_defzone; /* whether to use the default scope zone
321 when unspecified */
322
323 #ifdef GATEWAY
324 extern int ip6_maxflows; /* maximum amount of flows for ip6ff */
325 extern int ip6_hashsize; /* size of hash table */
326 #endif
327
328 struct in6pcb;
329
330 int icmp6_ctloutput(int, struct socket *, int, int, struct mbuf **);
331
332 void ip6_init(void);
333 void ip6intr(void);
334 void ip6_input(struct mbuf *);
335 const struct ip6aux *ip6_getdstifaddr(struct mbuf *);
336 void ip6_freepcbopts(struct ip6_pktopts *);
337 void ip6_freemoptions(struct ip6_moptions *);
338 int ip6_unknown_opt(u_int8_t *, struct mbuf *, int);
339 u_int8_t *ip6_get_prevhdr(struct mbuf *, int);
340 int ip6_nexthdr(struct mbuf *, int, int, int *);
341 int ip6_lasthdr(struct mbuf *, int, int, int *);
342
343 struct m_tag *ip6_addaux(struct mbuf *);
344 struct m_tag *ip6_findaux(struct mbuf *);
345 void ip6_delaux(struct mbuf *);
346
347 int ip6_mforward(struct ip6_hdr *, struct ifnet *, struct mbuf *);
348 int ip6_process_hopopts(struct mbuf *, u_int8_t *, int, u_int32_t *,
349 u_int32_t *);
350 void ip6_savecontrol(struct in6pcb *, struct mbuf **, struct ip6_hdr *,
351 struct mbuf *);
352 void ip6_notify_pmtu(struct in6pcb *, const struct sockaddr_in6 *,
353 u_int32_t *);
354 int ip6_sysctl(int *, u_int, void *, size_t *, void *, size_t);
355
356 void ip6_forward(struct mbuf *, int);
357
358 void ip6_mloopback(struct ifnet *, struct mbuf *,
359 const struct sockaddr_in6 *);
360 int ip6_output(struct mbuf *, struct ip6_pktopts *,
361 struct route *, int,
362 struct ip6_moptions *, struct socket *,
363 struct ifnet **);
364 int ip6_ctloutput(int, struct socket *, int, int, struct mbuf **);
365 int ip6_raw_ctloutput(int, struct socket *, int, int, struct mbuf **);
366 void ip6_initpktopts(struct ip6_pktopts *);
367 int ip6_setpktopts(struct mbuf *, struct ip6_pktopts *,
368 struct ip6_pktopts *, int, int);
369 void ip6_clearpktopts(struct ip6_pktopts *, int);
370 struct ip6_pktopts *ip6_copypktopts(struct ip6_pktopts *, int);
371 int ip6_optlen(struct in6pcb *);
372
373 int route6_input(struct mbuf **, int *, int);
374
375 void frag6_init(void);
376 int frag6_input(struct mbuf **, int *, int);
377 void frag6_slowtimo(void);
378 void frag6_drain(void);
379
380 int ip6flow_init(int);
381 struct ip6flow *ip6flow_reap(int);
382 void ip6flow_create(const struct route *, struct mbuf *);
383 void ip6flow_slowtimo(void);
384 int ip6flow_invalidate_all(int);
385
386 void rip6_init(void);
387 int rip6_input(struct mbuf **, int *, int);
388 void rip6_ctlinput(int, const struct sockaddr *, void *);
389 int rip6_ctloutput(int, struct socket *, int, int, struct mbuf **);
390 int rip6_output(struct mbuf *, struct socket *, struct sockaddr_in6 *,
391 struct mbuf *);
392 int rip6_usrreq(struct socket *,
393 int, struct mbuf *, struct mbuf *, struct mbuf *, struct lwp *);
394
395 int dest6_input(struct mbuf **, int *, int);
396 int none_input(struct mbuf **, int *, int);
397
398 int dest6_mip6_hao __P((struct mbuf *, int, int));
399 #ifdef MOBILE_IPV6
400 int mip6_input __P((struct mbuf **, int *, int));
401 #endif /* MOBILE_IPV6 */
402
403 struct route;
404
405 struct in6_addr *in6_selectsrc(struct sockaddr_in6 *,
406 struct ip6_pktopts *, struct ip6_moptions *, struct route *,
407 struct in6_addr *, struct ifnet **, int *);
408 int in6_selectroute(struct sockaddr_in6 *, struct ip6_pktopts *,
409 struct ip6_moptions *, struct route *, struct ifnet **,
410 struct rtentry **, int);
411
412 u_int32_t ip6_randomid(void);
413 u_int32_t ip6_randomflowlabel(void);
414 #endif /* _KERNEL */
415
416 #endif /* !_NETINET6_IP6_VAR_H_ */
417