1 /* $KAME: ip6.h,v 1.18 2001/03/29 05:34:30 itojun Exp $ */ 2 3 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 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. Neither the name of the University nor the names of its contributors 47 * may be used to endorse or promote products derived from this software 48 * without specific prior written permission. 49 * 50 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 51 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 53 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 54 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 55 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 56 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 57 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 58 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 59 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 60 * SUCH DAMAGE. 61 */ 62 63 #ifndef _NETINET_IP6_H_ 64 #define _NETINET_IP6_H_ 65 66 /* 67 * Definition for internet protocol version 6. 68 * RFC 2460 69 */ 70 71 struct ip6_hdr { 72 union { 73 struct ip6_hdrctl { 74 u_int32_t ip6_un1_flow; /* 20 bits of flow-ID */ 75 u_int16_t ip6_un1_plen; /* payload length */ 76 u_int8_t ip6_un1_nxt; /* next header */ 77 u_int8_t ip6_un1_hlim; /* hop limit */ 78 } ip6_un1; 79 u_int8_t ip6_un2_vfc; /* 4 bits version, top 4 bits class */ 80 } ip6_ctlun; 81 struct in6_addr ip6_src; /* source address */ 82 struct in6_addr ip6_dst; /* destination address */ 83 } __packed; 84 85 #define ip6_vfc ip6_ctlun.ip6_un2_vfc 86 #define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow 87 #define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen 88 #define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt 89 #define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim 90 #define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim 91 92 #define IPV6_VERSION 0x60 93 #define IPV6_VERSION_MASK 0xf0 94 95 #if BYTE_ORDER == BIG_ENDIAN 96 #define IPV6_FLOWINFO_MASK 0x0fffffff /* flow info (28 bits) */ 97 #define IPV6_FLOWLABEL_MASK 0x000fffff /* flow label (20 bits) */ 98 #else 99 #if BYTE_ORDER == LITTLE_ENDIAN 100 #define IPV6_FLOWINFO_MASK 0xffffff0f /* flow info (28 bits) */ 101 #define IPV6_FLOWLABEL_MASK 0xffff0f00 /* flow label (20 bits) */ 102 #endif /* LITTLE_ENDIAN */ 103 #endif 104 #define IPV6_FLOWLABEL_LEN 20 105 106 #define IPV6_TRAFFIC_CLASS(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0xff) 107 #define IPV6_DSCP(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0xfc) 108 #define IPV6_ECN(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0x03) 109 110 /* 111 * Extension Headers 112 */ 113 114 struct ip6_ext { 115 u_int8_t ip6e_nxt; 116 u_int8_t ip6e_len; 117 } __packed; 118 119 /* Hop-by-Hop options header */ 120 /* XXX should we pad it to force alignment on an 8-byte boundary? */ 121 struct ip6_hbh { 122 u_int8_t ip6h_nxt; /* next header */ 123 u_int8_t ip6h_len; /* length in units of 8 octets */ 124 /* followed by options */ 125 } __packed; 126 127 /* Destination options header */ 128 /* XXX should we pad it to force alignment on an 8-byte boundary? */ 129 struct ip6_dest { 130 u_int8_t ip6d_nxt; /* next header */ 131 u_int8_t ip6d_len; /* length in units of 8 octets */ 132 /* followed by options */ 133 } __packed; 134 135 /* Option types and related macros */ 136 #define IP6OPT_PAD1 0x00 /* 00 0 00000 */ 137 #define IP6OPT_PADN 0x01 /* 00 0 00001 */ 138 #define IP6OPT_JUMBO 0xC2 /* 11 0 00010 = 194 */ 139 #define IP6OPT_NSAP_ADDR 0xC3 /* 11 0 00011 */ 140 #define IP6OPT_TUNNEL_LIMIT 0x04 /* 00 0 00100 */ 141 #ifndef _KERNEL 142 #define IP6OPT_RTALERT 0x05 /* 00 0 00101 (KAME definition) */ 143 #endif 144 #define IP6OPT_ROUTER_ALERT 0x05 /* 00 0 00101 (RFC3542, recommended) */ 145 146 #define IP6OPT_RTALERT_LEN 4 147 #define IP6OPT_RTALERT_MLD 0 /* Datagram contains an MLD message */ 148 #define IP6OPT_RTALERT_RSVP 1 /* Datagram contains an RSVP message */ 149 #define IP6OPT_RTALERT_ACTNET 2 /* contains an Active Networks msg */ 150 #define IP6OPT_MINLEN 2 151 152 #define IP6OPT_EID 0x8a /* 10 0 01010 */ 153 154 #define IP6OPT_TYPE(o) ((o) & 0xC0) 155 #define IP6OPT_TYPE_SKIP 0x00 156 #define IP6OPT_TYPE_DISCARD 0x40 157 #define IP6OPT_TYPE_FORCEICMP 0x80 158 #define IP6OPT_TYPE_ICMP 0xC0 159 160 #define IP6OPT_MUTABLE 0x20 161 162 /* IPv6 options: common part */ 163 struct ip6_opt { 164 u_int8_t ip6o_type; 165 u_int8_t ip6o_len; 166 } __packed; 167 168 /* Jumbo Payload Option */ 169 struct ip6_opt_jumbo { 170 u_int8_t ip6oj_type; 171 u_int8_t ip6oj_len; 172 u_int8_t ip6oj_jumbo_len[4]; 173 } __packed; 174 #define IP6OPT_JUMBO_LEN 6 175 176 /* NSAP Address Option */ 177 struct ip6_opt_nsap { 178 u_int8_t ip6on_type; 179 u_int8_t ip6on_len; 180 u_int8_t ip6on_src_nsap_len; 181 u_int8_t ip6on_dst_nsap_len; 182 /* followed by source NSAP */ 183 /* followed by destination NSAP */ 184 } __packed; 185 186 /* Tunnel Limit Option */ 187 struct ip6_opt_tunnel { 188 u_int8_t ip6ot_type; 189 u_int8_t ip6ot_len; 190 u_int8_t ip6ot_encap_limit; 191 } __packed; 192 193 /* Router Alert Option */ 194 struct ip6_opt_router { 195 u_int8_t ip6or_type; 196 u_int8_t ip6or_len; 197 u_int8_t ip6or_value[2]; 198 } __packed; 199 /* Router alert values (in network byte order) */ 200 #if BYTE_ORDER == BIG_ENDIAN 201 #define IP6_ALERT_MLD 0x0000 202 #define IP6_ALERT_RSVP 0x0001 203 #define IP6_ALERT_AN 0x0002 204 #else 205 #if BYTE_ORDER == LITTLE_ENDIAN 206 #define IP6_ALERT_MLD 0x0000 207 #define IP6_ALERT_RSVP 0x0100 208 #define IP6_ALERT_AN 0x0200 209 #endif /* LITTLE_ENDIAN */ 210 #endif 211 212 /* Routing header */ 213 struct ip6_rthdr { 214 u_int8_t ip6r_nxt; /* next header */ 215 u_int8_t ip6r_len; /* length in units of 8 octets */ 216 u_int8_t ip6r_type; /* routing type */ 217 u_int8_t ip6r_segleft; /* segments left */ 218 /* followed by routing type specific data */ 219 } __packed; 220 221 /* Type 0 Routing header, deprecated by RFC 5095. */ 222 struct ip6_rthdr0 { 223 u_int8_t ip6r0_nxt; /* next header */ 224 u_int8_t ip6r0_len; /* length in units of 8 octets */ 225 u_int8_t ip6r0_type; /* always zero */ 226 u_int8_t ip6r0_segleft; /* segments left */ 227 u_int32_t ip6r0_reserved; /* reserved field */ 228 /* followed by up to 127 struct in6_addr */ 229 } __packed; 230 231 /* Fragment header */ 232 struct ip6_frag { 233 u_int8_t ip6f_nxt; /* next header */ 234 u_int8_t ip6f_reserved; /* reserved field */ 235 u_int16_t ip6f_offlg; /* offset, reserved, and flag */ 236 u_int32_t ip6f_ident; /* identification */ 237 } __packed; 238 239 #if BYTE_ORDER == BIG_ENDIAN 240 #define IP6F_OFF_MASK 0xfff8 /* mask out offset from _offlg */ 241 #define IP6F_RESERVED_MASK 0x0006 /* reserved bits in ip6f_offlg */ 242 #define IP6F_MORE_FRAG 0x0001 /* more-fragments flag */ 243 #else /* BYTE_ORDER == LITTLE_ENDIAN */ 244 #define IP6F_OFF_MASK 0xf8ff /* mask out offset from _offlg */ 245 #define IP6F_RESERVED_MASK 0x0600 /* reserved bits in ip6f_offlg */ 246 #define IP6F_MORE_FRAG 0x0100 /* more-fragments flag */ 247 #endif /* BYTE_ORDER == LITTLE_ENDIAN */ 248 249 /* 250 * Internet implementation parameters. 251 */ 252 #define IPV6_MAXHLIM 255 /* maximum hoplimit */ 253 #define IPV6_DEFHLIM 64 /* default hlim */ 254 #define IPV6_DEFFRAGTTL 60000 /* Default fragment packets lifetime, in milliseconds */ 255 #define IPV6_HLIMDEC 1 /* subtracted when forwarding */ 256 257 #define IPV6_MMTU 1280 /* minimal MTU and reassembly. 1024 + 256 */ 258 #define IPV6_MAXPACKET 65535 /* ip6 max packet size without Jumbo payload*/ 259 #define IPV6_MAXOPTHDR 2048 /* max option header size, 256 64-bit words */ 260 261 #endif /* not _NETINET_IP6_H_ */ 262