]> The Tcpdump Group git mirrors - tcpdump/blob - icmp6.h
Document the "any" interface, and note that captures on it won't be done
[tcpdump] / icmp6.h
1 /* @(#) $Header: /tcpdump/master/tcpdump/icmp6.h,v 1.4 2000-12-17 23:13:32 guy Exp $ (LBL) */
2 /* $NetBSD: icmp6.h,v 1.13 2000/08/03 16:30:37 itojun Exp $ */
3 /* $KAME: icmp6.h,v 1.22 2000/08/03 15:25:16 jinmei Exp $ */
4
5 /*
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34 /*
35 * Copyright (c) 1982, 1986, 1993
36 * The Regents of the University of California. All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93
67 */
68
69 #ifndef _NETINET_ICMP6_H_
70 #define _NETINET_ICMP6_H_
71
72 struct icmp6_hdr {
73 u_int8_t icmp6_type; /* type field */
74 u_int8_t icmp6_code; /* code field */
75 u_int16_t icmp6_cksum; /* checksum field */
76 union {
77 u_int32_t icmp6_un_data32[1]; /* type-specific field */
78 u_int16_t icmp6_un_data16[2]; /* type-specific field */
79 u_int8_t icmp6_un_data8[4]; /* type-specific field */
80 } icmp6_dataun;
81 };
82
83 #define icmp6_data32 icmp6_dataun.icmp6_un_data32
84 #define icmp6_data16 icmp6_dataun.icmp6_un_data16
85 #define icmp6_data8 icmp6_dataun.icmp6_un_data8
86 #define icmp6_pptr icmp6_data32[0] /* parameter prob */
87 #define icmp6_mtu icmp6_data32[0] /* packet too big */
88 #define icmp6_id icmp6_data16[0] /* echo request/reply */
89 #define icmp6_seq icmp6_data16[1] /* echo request/reply */
90 #define icmp6_maxdelay icmp6_data16[0] /* mcast group membership */
91
92 #define ICMP6_DST_UNREACH 1 /* dest unreachable, codes: */
93 #define ICMP6_PACKET_TOO_BIG 2 /* packet too big */
94 #define ICMP6_TIME_EXCEEDED 3 /* time exceeded, code: */
95 #define ICMP6_PARAM_PROB 4 /* ip6 header bad */
96
97 #define ICMP6_ECHO_REQUEST 128 /* echo service */
98 #define ICMP6_ECHO_REPLY 129 /* echo reply */
99 #define ICMP6_MEMBERSHIP_QUERY 130 /* group membership query */
100 #define MLD6_LISTENER_QUERY 130 /* multicast listener query */
101 #define ICMP6_MEMBERSHIP_REPORT 131 /* group membership report */
102 #define MLD6_LISTENER_REPORT 131 /* multicast listener report */
103 #define ICMP6_MEMBERSHIP_REDUCTION 132 /* group membership termination */
104 #define MLD6_LISTENER_DONE 132 /* multicast listener done */
105
106 #define ND_ROUTER_SOLICIT 133 /* router solicitation */
107 #define ND_ROUTER_ADVERT 134 /* router advertisment */
108 #define ND_NEIGHBOR_SOLICIT 135 /* neighbor solicitation */
109 #define ND_NEIGHBOR_ADVERT 136 /* neighbor advertisment */
110 #define ND_REDIRECT 137 /* redirect */
111
112 #define ICMP6_ROUTER_RENUMBERING 138 /* router renumbering */
113
114 #define ICMP6_WRUREQUEST 139 /* who are you request */
115 #define ICMP6_WRUREPLY 140 /* who are you reply */
116 #define ICMP6_FQDN_QUERY 139 /* FQDN query */
117 #define ICMP6_FQDN_REPLY 140 /* FQDN reply */
118 #define ICMP6_NI_QUERY 139 /* node information request */
119 #define ICMP6_NI_REPLY 140 /* node information reply */
120
121 /* The definitions below are experimental. TBA */
122 #define MLD6_MTRACE_RESP 141 /* mtrace response(to sender) */
123 #define MLD6_MTRACE 142 /* mtrace messages */
124
125 #define ICMP6_MAXTYPE 142
126
127 #define ICMP6_DST_UNREACH_NOROUTE 0 /* no route to destination */
128 #define ICMP6_DST_UNREACH_ADMIN 1 /* administratively prohibited */
129 #define ICMP6_DST_UNREACH_NOTNEIGHBOR 2 /* not a neighbor(obsolete) */
130 #define ICMP6_DST_UNREACH_BEYONDSCOPE 2 /* beyond scope of source address */
131 #define ICMP6_DST_UNREACH_ADDR 3 /* address unreachable */
132 #define ICMP6_DST_UNREACH_NOPORT 4 /* port unreachable */
133
134 #define ICMP6_TIME_EXCEED_TRANSIT 0 /* ttl==0 in transit */
135 #define ICMP6_TIME_EXCEED_REASSEMBLY 1 /* ttl==0 in reass */
136
137 #define ICMP6_PARAMPROB_HEADER 0 /* erroneous header field */
138 #define ICMP6_PARAMPROB_NEXTHEADER 1 /* unrecognized next header */
139 #define ICMP6_PARAMPROB_OPTION 2 /* unrecognized option */
140
141 #define ICMP6_INFOMSG_MASK 0x80 /* all informational messages */
142
143 #define ICMP6_NI_SUBJ_IPV6 0 /* Query Subject is an IPv6 address */
144 #define ICMP6_NI_SUBJ_FQDN 1 /* Query Subject is a Domain name */
145 #define ICMP6_NI_SUBJ_IPV4 2 /* Query Subject is an IPv4 address */
146
147 #define ICMP6_NI_SUCCESS 0 /* node information successful reply */
148 #define ICMP6_NI_REFUSED 1 /* node information request is refused */
149 #define ICMP6_NI_UNKNOWN 2 /* unknown Qtype */
150
151 #define ICMP6_ROUTER_RENUMBERING_COMMAND 0 /* rr command */
152 #define ICMP6_ROUTER_RENUMBERING_RESULT 1 /* rr result */
153 #define ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET 255 /* rr seq num reset */
154
155 /* Used in kernel only */
156 #define ND_REDIRECT_ONLINK 0 /* redirect to an on-link node */
157 #define ND_REDIRECT_ROUTER 1 /* redirect to a better router */
158
159 /*
160 * Multicast Listener Discovery
161 */
162 struct mld6_hdr {
163 struct icmp6_hdr mld6_hdr;
164 struct in6_addr mld6_addr; /* multicast address */
165 };
166
167 #define mld6_type mld6_hdr.icmp6_type
168 #define mld6_code mld6_hdr.icmp6_code
169 #define mld6_cksum mld6_hdr.icmp6_cksum
170 #define mld6_maxdelay mld6_hdr.icmp6_data16[0]
171 #define mld6_reserved mld6_hdr.icmp6_data16[1]
172
173 /*
174 * Neighbor Discovery
175 */
176
177 struct nd_router_solicit { /* router solicitation */
178 struct icmp6_hdr nd_rs_hdr;
179 /* could be followed by options */
180 };
181
182 #define nd_rs_type nd_rs_hdr.icmp6_type
183 #define nd_rs_code nd_rs_hdr.icmp6_code
184 #define nd_rs_cksum nd_rs_hdr.icmp6_cksum
185 #define nd_rs_reserved nd_rs_hdr.icmp6_data32[0]
186
187 struct nd_router_advert { /* router advertisement */
188 struct icmp6_hdr nd_ra_hdr;
189 u_int32_t nd_ra_reachable; /* reachable time */
190 u_int32_t nd_ra_retransmit; /* retransmit timer */
191 /* could be followed by options */
192 };
193
194 #define nd_ra_type nd_ra_hdr.icmp6_type
195 #define nd_ra_code nd_ra_hdr.icmp6_code
196 #define nd_ra_cksum nd_ra_hdr.icmp6_cksum
197 #define nd_ra_curhoplimit nd_ra_hdr.icmp6_data8[0]
198 #define nd_ra_flags_reserved nd_ra_hdr.icmp6_data8[1]
199 #define ND_RA_FLAG_MANAGED 0x80
200 #define ND_RA_FLAG_OTHER 0x40
201 #define nd_ra_router_lifetime nd_ra_hdr.icmp6_data16[1]
202
203 struct nd_neighbor_solicit { /* neighbor solicitation */
204 struct icmp6_hdr nd_ns_hdr;
205 struct in6_addr nd_ns_target; /*target address */
206 /* could be followed by options */
207 };
208
209 #define nd_ns_type nd_ns_hdr.icmp6_type
210 #define nd_ns_code nd_ns_hdr.icmp6_code
211 #define nd_ns_cksum nd_ns_hdr.icmp6_cksum
212 #define nd_ns_reserved nd_ns_hdr.icmp6_data32[0]
213
214 struct nd_neighbor_advert { /* neighbor advertisement */
215 struct icmp6_hdr nd_na_hdr;
216 struct in6_addr nd_na_target; /* target address */
217 /* could be followed by options */
218 };
219
220 #define nd_na_type nd_na_hdr.icmp6_type
221 #define nd_na_code nd_na_hdr.icmp6_code
222 #define nd_na_cksum nd_na_hdr.icmp6_cksum
223 #define nd_na_flags_reserved nd_na_hdr.icmp6_data32[0]
224 /* netowkr endian */
225 #define ND_NA_FLAG_ROUTER ((u_int32_t)htonl(0x80000000))
226 #define ND_NA_FLAG_SOLICITED ((u_int32_t)htonl(0x40000000))
227 #define ND_NA_FLAG_OVERRIDE ((u_int32_t)htonl(0x20000000))
228
229 struct nd_redirect { /* redirect */
230 struct icmp6_hdr nd_rd_hdr;
231 struct in6_addr nd_rd_target; /* target address */
232 struct in6_addr nd_rd_dst; /* destination address */
233 /* could be followed by options */
234 };
235
236 #define nd_rd_type nd_rd_hdr.icmp6_type
237 #define nd_rd_code nd_rd_hdr.icmp6_code
238 #define nd_rd_cksum nd_rd_hdr.icmp6_cksum
239 #define nd_rd_reserved nd_rd_hdr.icmp6_data32[0]
240
241 struct nd_opt_hdr { /* Neighbor discovery option header */
242 u_int8_t nd_opt_type;
243 u_int8_t nd_opt_len;
244 /* followed by option specific data*/
245 };
246
247 #define ND_OPT_SOURCE_LINKADDR 1
248 #define ND_OPT_TARGET_LINKADDR 2
249 #define ND_OPT_PREFIX_INFORMATION 3
250 #define ND_OPT_REDIRECTED_HEADER 4
251 #define ND_OPT_MTU 5
252 #define ND_OPT_ADVINT 7
253
254 struct nd_opt_prefix_info { /* prefix information */
255 u_int8_t nd_opt_pi_type;
256 u_int8_t nd_opt_pi_len;
257 u_int8_t nd_opt_pi_prefix_len;
258 u_int8_t nd_opt_pi_flags_reserved;
259 u_int32_t nd_opt_pi_valid_time;
260 u_int32_t nd_opt_pi_preferred_time;
261 u_int32_t nd_opt_pi_reserved2;
262 struct in6_addr nd_opt_pi_prefix;
263 };
264
265 #define ND_OPT_PI_FLAG_ONLINK 0x80
266 #define ND_OPT_PI_FLAG_AUTO 0x40
267 #define ND_OPT_PI_FLAG_ROUTER 0x20 /*2292bis*/
268
269 struct nd_opt_rd_hdr { /* redirected header */
270 u_int8_t nd_opt_rh_type;
271 u_int8_t nd_opt_rh_len;
272 u_int16_t nd_opt_rh_reserved1;
273 u_int32_t nd_opt_rh_reserved2;
274 /* followed by IP header and data */
275 };
276
277 struct nd_opt_mtu { /* MTU option */
278 u_int8_t nd_opt_mtu_type;
279 u_int8_t nd_opt_mtu_len;
280 u_int16_t nd_opt_mtu_reserved;
281 u_int32_t nd_opt_mtu_mtu;
282 };
283
284 struct nd_opt_advint { /* Advertisement interval option */
285 u_int8_t nd_opt_advint_type;
286 u_int8_t nd_opt_advint_len;
287 u_int16_t nd_opt_advint_reserved;
288 u_int32_t nd_opt_advint_advint;
289 };
290
291 /*
292 * icmp6 namelookup
293 */
294
295 struct icmp6_namelookup {
296 struct icmp6_hdr icmp6_nl_hdr;
297 u_int8_t icmp6_nl_nonce[8];
298 int32_t icmp6_nl_ttl;
299 #if 0
300 u_int8_t icmp6_nl_len;
301 u_int8_t icmp6_nl_name[3];
302 #endif
303 /* could be followed by options */
304 };
305
306 /*
307 * icmp6 node information
308 */
309 struct icmp6_nodeinfo {
310 struct icmp6_hdr icmp6_ni_hdr;
311 u_int8_t icmp6_ni_nonce[8];
312 /* could be followed by reply data */
313 };
314
315 #define ni_type icmp6_ni_hdr.icmp6_type
316 #define ni_code icmp6_ni_hdr.icmp6_code
317 #define ni_cksum icmp6_ni_hdr.icmp6_cksum
318 #define ni_qtype icmp6_ni_hdr.icmp6_data16[0]
319 #define ni_flags icmp6_ni_hdr.icmp6_data16[1]
320
321 #define NI_QTYPE_NOOP 0 /* NOOP */
322 #define NI_QTYPE_SUPTYPES 1 /* Supported Qtypes */
323 #define NI_QTYPE_FQDN 2 /* FQDN (draft 04) */
324 #define NI_QTYPE_DNSNAME 2 /* DNS Name */
325 #define NI_QTYPE_NODEADDR 3 /* Node Addresses */
326 #define NI_QTYPE_IPV4ADDR 4 /* IPv4 Addresses */
327
328 /* network endian */
329 #define NI_SUPTYPE_FLAG_COMPRESS ((u_int16_t)htons(0x1))
330 #define NI_FQDN_FLAG_VALIDTTL ((u_int16_t)htons(0x1))
331
332 /* network endian */
333 #define NI_NODEADDR_FLAG_TRUNCATE ((u_int16_t)htons(0x1))
334 #define NI_NODEADDR_FLAG_ALL ((u_int16_t)htons(0x2))
335 #define NI_NODEADDR_FLAG_COMPAT ((u_int16_t)htons(0x4))
336 #define NI_NODEADDR_FLAG_LINKLOCAL ((u_int16_t)htons(0x8))
337 #define NI_NODEADDR_FLAG_SITELOCAL ((u_int16_t)htons(0x10))
338 #define NI_NODEADDR_FLAG_GLOBAL ((u_int16_t)htons(0x20))
339 #define NI_NODEADDR_FLAG_ANYCAST ((u_int16_t)htons(0x40)) /* just experimental. not in spec */
340
341 struct ni_reply_fqdn {
342 u_int32_t ni_fqdn_ttl; /* TTL */
343 u_int8_t ni_fqdn_namelen; /* length in octets of the FQDN */
344 u_int8_t ni_fqdn_name[3]; /* XXX: alignment */
345 };
346
347 /*
348 * Router Renumbering. as router-renum-08.txt
349 */
350 struct icmp6_router_renum { /* router renumbering header */
351 struct icmp6_hdr rr_hdr;
352 u_int8_t rr_segnum;
353 u_int8_t rr_flags;
354 u_int16_t rr_maxdelay;
355 u_int32_t rr_reserved;
356 };
357 #define ICMP6_RR_FLAGS_TEST 0x80
358 #define ICMP6_RR_FLAGS_REQRESULT 0x40
359 #define ICMP6_RR_FLAGS_ALLIF 0x20
360 #define ICMP6_RR_FLAGS_SPECSITE 0x10
361 #define ICMP6_RR_FLAGS_PREVDONE 0x08
362
363 #define rr_type rr_hdr.icmp6_type
364 #define rr_code rr_hdr.icmp6_code
365 #define rr_cksum rr_hdr.icmp6_cksum
366 #define rr_seqnum rr_hdr.icmp6_data32[0]
367
368 struct rr_pco_match { /* match prefix part */
369 u_int8_t rpm_code;
370 u_int8_t rpm_len;
371 u_int8_t rpm_ordinal;
372 u_int8_t rpm_matchlen;
373 u_int8_t rpm_minlen;
374 u_int8_t rpm_maxlen;
375 u_int16_t rpm_reserved;
376 struct in6_addr rpm_prefix;
377 };
378
379 #define RPM_PCO_ADD 1
380 #define RPM_PCO_CHANGE 2
381 #define RPM_PCO_SETGLOBAL 3
382 #define RPM_PCO_MAX 4
383
384 struct rr_pco_use { /* use prefix part */
385 u_int8_t rpu_uselen;
386 u_int8_t rpu_keeplen;
387 u_int8_t rpu_ramask;
388 u_int8_t rpu_raflags;
389 u_int32_t rpu_vltime;
390 u_int32_t rpu_pltime;
391 u_int32_t rpu_flags;
392 struct in6_addr rpu_prefix;
393 };
394 #define ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x80
395 #define ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x40
396
397 /* network endian */
398 #define ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME ((u_int32_t)htonl(0x80000000))
399 #define ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME ((u_int32_t)htonl(0x40000000))
400
401 struct rr_result { /* router renumbering result message */
402 u_int16_t rrr_flags;
403 u_int8_t rrr_ordinal;
404 u_int8_t rrr_matchedlen;
405 u_int32_t rrr_ifid;
406 struct in6_addr rrr_prefix;
407 };
408 /* network endian */
409 #define ICMP6_RR_RESULT_FLAGS_OOB ((u_int16_t)htons(0x0002))
410 #define ICMP6_RR_RESULT_FLAGS_FORBIDDEN ((u_int16_t)htons(0x0001))
411
412 #endif /* not _NETINET_ICMP6_H_ */