1 1.101 andvar /* $NetBSD: in6.h,v 1.101 2021/07/31 10:12:04 andvar Exp $ */ 2 1.25 itojun /* $KAME: in6.h,v 1.83 2001/03/29 02:55:07 jinmei Exp $ */ 3 1.5 thorpej 4 1.2 itojun /* 5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 6 1.2 itojun * All rights reserved. 7 1.14 itojun * 8 1.2 itojun * Redistribution and use in source and binary forms, with or without 9 1.2 itojun * modification, are permitted provided that the following conditions 10 1.2 itojun * are met: 11 1.2 itojun * 1. Redistributions of source code must retain the above copyright 12 1.2 itojun * notice, this list of conditions and the following disclaimer. 13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright 14 1.2 itojun * notice, this list of conditions and the following disclaimer in the 15 1.2 itojun * documentation and/or other materials provided with the distribution. 16 1.2 itojun * 3. Neither the name of the project nor the names of its contributors 17 1.2 itojun * may be used to endorse or promote products derived from this software 18 1.2 itojun * without specific prior written permission. 19 1.14 itojun * 20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 1.2 itojun * SUCH DAMAGE. 31 1.2 itojun */ 32 1.2 itojun 33 1.2 itojun /* 34 1.2 itojun * Copyright (c) 1982, 1986, 1990, 1993 35 1.2 itojun * The Regents of the University of California. All rights reserved. 36 1.2 itojun * 37 1.2 itojun * Redistribution and use in source and binary forms, with or without 38 1.2 itojun * modification, are permitted provided that the following conditions 39 1.2 itojun * are met: 40 1.2 itojun * 1. Redistributions of source code must retain the above copyright 41 1.2 itojun * notice, this list of conditions and the following disclaimer. 42 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright 43 1.2 itojun * notice, this list of conditions and the following disclaimer in the 44 1.2 itojun * documentation and/or other materials provided with the distribution. 45 1.43 agc * 3. Neither the name of the University nor the names of its contributors 46 1.2 itojun * may be used to endorse or promote products derived from this software 47 1.2 itojun * without specific prior written permission. 48 1.2 itojun * 49 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 50 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 51 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 52 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 53 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 54 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 55 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 56 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 57 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 58 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 59 1.2 itojun * SUCH DAMAGE. 60 1.2 itojun * 61 1.2 itojun * @(#)in.h 8.3 (Berkeley) 1/3/94 62 1.2 itojun */ 63 1.10 itojun 64 1.48 elad #ifndef _NETINET6_IN6_H_ 65 1.48 elad #define _NETINET6_IN6_H_ 66 1.48 elad 67 1.71 joerg #include <sys/featuretest.h> 68 1.71 joerg 69 1.10 itojun #ifndef __KAME_NETINET_IN_H_INCLUDED_ 70 1.25 itojun #error "do not include netinet6/in6.h directly, include netinet/in.h. see RFC2553" 71 1.10 itojun #endif 72 1.2 itojun 73 1.54 rpaulo #include <sys/socket.h> 74 1.94 christos #include <sys/endian.h> /* ntohl */ 75 1.54 rpaulo 76 1.2 itojun /* 77 1.2 itojun * Identification of the network protocol stack 78 1.24 itojun * for *BSD-current/release: http://www.kame.net/dev/cvsweb.cgi/kame/COVERAGE 79 1.24 itojun * has the table of implementation/integration differences. 80 1.2 itojun */ 81 1.2 itojun #define __KAME__ 82 1.23 itojun #define __KAME_VERSION "NetBSD-current" 83 1.2 itojun 84 1.2 itojun /* 85 1.2 itojun * Local port number conventions: 86 1.2 itojun * 87 1.2 itojun * Ports < IPPORT_RESERVED are reserved for privileged processes (e.g. root), 88 1.2 itojun * unless a kernel is compiled with IPNOPRIVPORTS defined. 89 1.2 itojun * 90 1.2 itojun * When a user does a bind(2) or connect(2) with a port number of zero, 91 1.2 itojun * a non-conflicting local port address is chosen. 92 1.2 itojun * 93 1.18 itojun * The default range is IPPORT_ANONMIN to IPPORT_ANONMAX, although 94 1.2 itojun * that is settable by sysctl(3); net.inet.ip.anonportmin and 95 1.2 itojun * net.inet.ip.anonportmax respectively. 96 1.2 itojun * 97 1.2 itojun * A user may set the IPPROTO_IP option IP_PORTRANGE to change this 98 1.2 itojun * default assignment range. 99 1.2 itojun * 100 1.2 itojun * The value IP_PORTRANGE_DEFAULT causes the default behavior. 101 1.2 itojun * 102 1.2 itojun * The value IP_PORTRANGE_HIGH is the same as IP_PORTRANGE_DEFAULT, 103 1.2 itojun * and exists only for FreeBSD compatibility purposes. 104 1.2 itojun * 105 1.2 itojun * The value IP_PORTRANGE_LOW changes the range to the "low" are 106 1.2 itojun * that is (by convention) restricted to privileged processes. 107 1.2 itojun * This convention is based on "vouchsafe" principles only. 108 1.2 itojun * It is only secure if you trust the remote host to restrict these ports. 109 1.2 itojun * The range is IPPORT_RESERVEDMIN to IPPORT_RESERVEDMAX. 110 1.2 itojun */ 111 1.2 itojun 112 1.42 bjh21 #if defined(_NETBSD_SOURCE) 113 1.2 itojun #define IPV6PORT_RESERVED 1024 114 1.2 itojun #define IPV6PORT_ANONMIN 49152 115 1.2 itojun #define IPV6PORT_ANONMAX 65535 116 1.2 itojun #define IPV6PORT_RESERVEDMIN 600 117 1.2 itojun #define IPV6PORT_RESERVEDMAX (IPV6PORT_RESERVED-1) 118 1.37 kleink #endif 119 1.2 itojun 120 1.2 itojun /* 121 1.2 itojun * IPv6 address 122 1.2 itojun */ 123 1.4 kleink struct in6_addr { 124 1.2 itojun union { 125 1.38 kleink __uint8_t __u6_addr8[16]; 126 1.38 kleink __uint16_t __u6_addr16[8]; 127 1.38 kleink uint32_t __u6_addr32[4]; 128 1.4 kleink } __u6_addr; /* 128-bit IP6 address */ 129 1.96 kamil }; 130 1.2 itojun 131 1.7 itojun #define s6_addr __u6_addr.__u6_addr8 132 1.29 itojun #ifdef _KERNEL /* XXX nonstandard */ 133 1.7 itojun #define s6_addr8 __u6_addr.__u6_addr8 134 1.7 itojun #define s6_addr16 __u6_addr.__u6_addr16 135 1.4 kleink #define s6_addr32 __u6_addr.__u6_addr32 136 1.7 itojun #endif 137 1.2 itojun 138 1.2 itojun #define INET6_ADDRSTRLEN 46 139 1.2 itojun 140 1.2 itojun /* 141 1.2 itojun * Socket address for IPv6 142 1.2 itojun */ 143 1.42 bjh21 #if defined(_NETBSD_SOURCE) 144 1.2 itojun #define SIN6_LEN 145 1.4 kleink #endif 146 1.2 itojun struct sockaddr_in6 { 147 1.38 kleink uint8_t sin6_len; /* length of this struct(socklen_t)*/ 148 1.16 kleink sa_family_t sin6_family; /* AF_INET6 (sa_family_t) */ 149 1.35 kleink in_port_t sin6_port; /* Transport layer port */ 150 1.38 kleink uint32_t sin6_flowinfo; /* IP6 flow information */ 151 1.2 itojun struct in6_addr sin6_addr; /* IP6 address */ 152 1.38 kleink uint32_t sin6_scope_id; /* scope zone index */ 153 1.2 itojun }; 154 1.2 itojun 155 1.2 itojun /* 156 1.2 itojun * Local definition for masks 157 1.2 itojun */ 158 1.29 itojun #ifdef _KERNEL /* XXX nonstandard */ 159 1.7 itojun #define IN6MASK0 {{{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }}} 160 1.7 itojun #define IN6MASK32 {{{ 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, \ 161 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}} 162 1.7 itojun #define IN6MASK64 {{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \ 163 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}} 164 1.7 itojun #define IN6MASK96 {{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \ 165 1.7 itojun 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 }}} 166 1.7 itojun #define IN6MASK128 {{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \ 167 1.7 itojun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }}} 168 1.7 itojun #endif 169 1.2 itojun 170 1.2 itojun #ifdef _KERNEL 171 1.22 itojun extern const struct sockaddr_in6 sa6_any; 172 1.22 itojun 173 1.2 itojun extern const struct in6_addr in6mask0; 174 1.2 itojun extern const struct in6_addr in6mask32; 175 1.2 itojun extern const struct in6_addr in6mask64; 176 1.2 itojun extern const struct in6_addr in6mask96; 177 1.2 itojun extern const struct in6_addr in6mask128; 178 1.2 itojun #endif /* _KERNEL */ 179 1.2 itojun 180 1.2 itojun /* 181 1.2 itojun * Macros started with IPV6_ADDR is KAME local 182 1.2 itojun */ 183 1.29 itojun #ifdef _KERNEL /* XXX nonstandard */ 184 1.2 itojun #if BYTE_ORDER == BIG_ENDIAN 185 1.2 itojun #define IPV6_ADDR_INT32_ONE 1 186 1.2 itojun #define IPV6_ADDR_INT32_TWO 2 187 1.2 itojun #define IPV6_ADDR_INT32_MNL 0xff010000 188 1.2 itojun #define IPV6_ADDR_INT32_MLL 0xff020000 189 1.2 itojun #define IPV6_ADDR_INT32_SMP 0x0000ffff 190 1.2 itojun #define IPV6_ADDR_INT16_ULL 0xfe80 191 1.2 itojun #define IPV6_ADDR_INT16_USL 0xfec0 192 1.2 itojun #define IPV6_ADDR_INT16_MLL 0xff02 193 1.2 itojun #elif BYTE_ORDER == LITTLE_ENDIAN 194 1.2 itojun #define IPV6_ADDR_INT32_ONE 0x01000000 195 1.2 itojun #define IPV6_ADDR_INT32_TWO 0x02000000 196 1.2 itojun #define IPV6_ADDR_INT32_MNL 0x000001ff 197 1.2 itojun #define IPV6_ADDR_INT32_MLL 0x000002ff 198 1.2 itojun #define IPV6_ADDR_INT32_SMP 0xffff0000 199 1.2 itojun #define IPV6_ADDR_INT16_ULL 0x80fe 200 1.2 itojun #define IPV6_ADDR_INT16_USL 0xc0fe 201 1.2 itojun #define IPV6_ADDR_INT16_MLL 0x02ff 202 1.2 itojun #endif 203 1.7 itojun #endif 204 1.2 itojun 205 1.2 itojun /* 206 1.2 itojun * Definition of some useful macros to handle IP6 addresses 207 1.2 itojun */ 208 1.7 itojun #define IN6ADDR_ANY_INIT \ 209 1.7 itojun {{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 210 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}} 211 1.7 itojun #define IN6ADDR_LOOPBACK_INIT \ 212 1.7 itojun {{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 213 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}} 214 1.7 itojun #define IN6ADDR_NODELOCAL_ALLNODES_INIT \ 215 1.7 itojun {{{ 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 216 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}} 217 1.7 itojun #define IN6ADDR_LINKLOCAL_ALLNODES_INIT \ 218 1.7 itojun {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 219 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}} 220 1.2 itojun #define IN6ADDR_LINKLOCAL_ALLROUTERS_INIT \ 221 1.7 itojun {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 222 1.7 itojun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}} 223 1.2 itojun 224 1.2 itojun extern const struct in6_addr in6addr_any; 225 1.2 itojun extern const struct in6_addr in6addr_loopback; 226 1.2 itojun extern const struct in6_addr in6addr_nodelocal_allnodes; 227 1.2 itojun extern const struct in6_addr in6addr_linklocal_allnodes; 228 1.2 itojun extern const struct in6_addr in6addr_linklocal_allrouters; 229 1.2 itojun 230 1.7 itojun #define IN6_ARE_ADDR_EQUAL(a, b) \ 231 1.14 itojun (memcmp(&(a)->s6_addr[0], &(b)->s6_addr[0], sizeof(struct in6_addr)) == 0) 232 1.2 itojun 233 1.2 itojun /* 234 1.2 itojun * Unspecified 235 1.2 itojun */ 236 1.2 itojun #define IN6_IS_ADDR_UNSPECIFIED(a) \ 237 1.67 seanb ((a)->__u6_addr.__u6_addr32[0] == 0 && \ 238 1.67 seanb (a)->__u6_addr.__u6_addr32[1] == 0 && \ 239 1.67 seanb (a)->__u6_addr.__u6_addr32[2] == 0 && \ 240 1.67 seanb (a)->__u6_addr.__u6_addr32[3] == 0) 241 1.2 itojun 242 1.2 itojun /* 243 1.2 itojun * Loopback 244 1.2 itojun */ 245 1.2 itojun #define IN6_IS_ADDR_LOOPBACK(a) \ 246 1.67 seanb ((a)->__u6_addr.__u6_addr32[0] == 0 && \ 247 1.67 seanb (a)->__u6_addr.__u6_addr32[1] == 0 && \ 248 1.67 seanb (a)->__u6_addr.__u6_addr32[2] == 0 && \ 249 1.67 seanb (a)->__u6_addr.__u6_addr32[3] == ntohl(1)) 250 1.2 itojun 251 1.2 itojun /* 252 1.2 itojun * IPv4 compatible 253 1.2 itojun */ 254 1.2 itojun #define IN6_IS_ADDR_V4COMPAT(a) \ 255 1.67 seanb ((a)->__u6_addr.__u6_addr32[0] == 0 && \ 256 1.67 seanb (a)->__u6_addr.__u6_addr32[1] == 0 && \ 257 1.67 seanb (a)->__u6_addr.__u6_addr32[2] == 0 && \ 258 1.67 seanb (a)->__u6_addr.__u6_addr32[3] != 0 && \ 259 1.67 seanb (a)->__u6_addr.__u6_addr32[3] != ntohl(1)) 260 1.2 itojun 261 1.2 itojun /* 262 1.2 itojun * Mapped 263 1.2 itojun */ 264 1.2 itojun #define IN6_IS_ADDR_V4MAPPED(a) \ 265 1.67 seanb ((a)->__u6_addr.__u6_addr32[0] == 0 && \ 266 1.67 seanb (a)->__u6_addr.__u6_addr32[1] == 0 && \ 267 1.67 seanb (a)->__u6_addr.__u6_addr32[2] == ntohl(0x0000ffff)) 268 1.2 itojun 269 1.2 itojun /* 270 1.2 itojun * KAME Scope Values 271 1.2 itojun */ 272 1.2 itojun 273 1.29 itojun #ifdef _KERNEL /* XXX nonstandard */ 274 1.2 itojun #define IPV6_ADDR_SCOPE_NODELOCAL 0x01 275 1.51 rpaulo #define IPV6_ADDR_SCOPE_INTFACELOCAL 0x01 276 1.2 itojun #define IPV6_ADDR_SCOPE_LINKLOCAL 0x02 277 1.2 itojun #define IPV6_ADDR_SCOPE_SITELOCAL 0x05 278 1.2 itojun #define IPV6_ADDR_SCOPE_ORGLOCAL 0x08 /* just used in this file */ 279 1.2 itojun #define IPV6_ADDR_SCOPE_GLOBAL 0x0e 280 1.7 itojun #else 281 1.7 itojun #define __IPV6_ADDR_SCOPE_NODELOCAL 0x01 282 1.7 itojun #define __IPV6_ADDR_SCOPE_LINKLOCAL 0x02 283 1.7 itojun #define __IPV6_ADDR_SCOPE_SITELOCAL 0x05 284 1.7 itojun #define __IPV6_ADDR_SCOPE_ORGLOCAL 0x08 /* just used in this file */ 285 1.7 itojun #define __IPV6_ADDR_SCOPE_GLOBAL 0x0e 286 1.7 itojun #endif 287 1.2 itojun 288 1.2 itojun /* 289 1.2 itojun * Unicast Scope 290 1.7 itojun * Note that we must check topmost 10 bits only, not 16 bits (see RFC2373). 291 1.2 itojun */ 292 1.2 itojun #define IN6_IS_ADDR_LINKLOCAL(a) \ 293 1.7 itojun (((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0x80)) 294 1.2 itojun #define IN6_IS_ADDR_SITELOCAL(a) \ 295 1.7 itojun (((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0xc0)) 296 1.2 itojun 297 1.2 itojun /* 298 1.2 itojun * Multicast 299 1.2 itojun */ 300 1.7 itojun #define IN6_IS_ADDR_MULTICAST(a) ((a)->s6_addr[0] == 0xff) 301 1.2 itojun 302 1.29 itojun #ifdef _KERNEL /* XXX nonstandard */ 303 1.7 itojun #define IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f) 304 1.7 itojun #else 305 1.7 itojun #define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f) 306 1.7 itojun #endif 307 1.2 itojun 308 1.2 itojun /* 309 1.2 itojun * Multicast Scope 310 1.2 itojun */ 311 1.29 itojun #ifdef _KERNEL /* refers nonstandard items */ 312 1.2 itojun #define IN6_IS_ADDR_MC_NODELOCAL(a) \ 313 1.2 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 314 1.2 itojun (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_NODELOCAL)) 315 1.51 rpaulo #define IN6_IS_ADDR_MC_INTFACELOCAL(a) \ 316 1.51 rpaulo (IN6_IS_ADDR_MULTICAST(a) && \ 317 1.51 rpaulo (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_INTFACELOCAL)) 318 1.2 itojun #define IN6_IS_ADDR_MC_LINKLOCAL(a) \ 319 1.2 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 320 1.2 itojun (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_LINKLOCAL)) 321 1.2 itojun #define IN6_IS_ADDR_MC_SITELOCAL(a) \ 322 1.2 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 323 1.2 itojun (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_SITELOCAL)) 324 1.2 itojun #define IN6_IS_ADDR_MC_ORGLOCAL(a) \ 325 1.2 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 326 1.2 itojun (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_ORGLOCAL)) 327 1.2 itojun #define IN6_IS_ADDR_MC_GLOBAL(a) \ 328 1.2 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 329 1.2 itojun (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_GLOBAL)) 330 1.7 itojun #else 331 1.7 itojun #define IN6_IS_ADDR_MC_NODELOCAL(a) \ 332 1.7 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 333 1.7 itojun (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_NODELOCAL)) 334 1.7 itojun #define IN6_IS_ADDR_MC_LINKLOCAL(a) \ 335 1.7 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 336 1.7 itojun (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_LINKLOCAL)) 337 1.7 itojun #define IN6_IS_ADDR_MC_SITELOCAL(a) \ 338 1.7 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 339 1.7 itojun (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_SITELOCAL)) 340 1.7 itojun #define IN6_IS_ADDR_MC_ORGLOCAL(a) \ 341 1.7 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 342 1.7 itojun (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_ORGLOCAL)) 343 1.7 itojun #define IN6_IS_ADDR_MC_GLOBAL(a) \ 344 1.7 itojun (IN6_IS_ADDR_MULTICAST(a) && \ 345 1.7 itojun (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_GLOBAL)) 346 1.7 itojun #endif 347 1.2 itojun 348 1.29 itojun #ifdef _KERNEL /* nonstandard */ 349 1.2 itojun /* 350 1.2 itojun * KAME Scope 351 1.2 itojun */ 352 1.2 itojun #define IN6_IS_SCOPE_LINKLOCAL(a) \ 353 1.2 itojun ((IN6_IS_ADDR_LINKLOCAL(a)) || \ 354 1.2 itojun (IN6_IS_ADDR_MC_LINKLOCAL(a))) 355 1.41 itojun 356 1.53 dyoung #define IN6_IS_SCOPE_EMBEDDABLE(__a) \ 357 1.53 dyoung (IN6_IS_SCOPE_LINKLOCAL(__a) || IN6_IS_ADDR_MC_INTFACELOCAL(__a)) 358 1.53 dyoung 359 1.41 itojun #define IFA6_IS_DEPRECATED(a) \ 360 1.41 itojun ((a)->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME && \ 361 1.85 ozaki (u_int32_t)((time_uptime - (a)->ia6_updatetime)) > \ 362 1.41 itojun (a)->ia6_lifetime.ia6t_pltime) 363 1.41 itojun #define IFA6_IS_INVALID(a) \ 364 1.41 itojun ((a)->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME && \ 365 1.85 ozaki (u_int32_t)((time_uptime - (a)->ia6_updatetime)) > \ 366 1.41 itojun (a)->ia6_lifetime.ia6t_vltime) 367 1.7 itojun #endif 368 1.2 itojun 369 1.2 itojun /* 370 1.2 itojun * Options for use with [gs]etsockopt at the IPV6 level. 371 1.2 itojun * First word of comment is data type; bool is stored in int. 372 1.2 itojun */ 373 1.57 cbiere /* no hdrincl */ 374 1.57 cbiere #if 0 375 1.57 cbiere /* These are deprecated non-standard options which are no longer supported. */ 376 1.2 itojun #define IPV6_OPTIONS 1 /* buf/ip6_opts; set/get IP6 options */ 377 1.2 itojun #define IPV6_RECVOPTS 5 /* bool; receive all IP6 opts w/dgram */ 378 1.2 itojun #define IPV6_RECVRETOPTS 6 /* bool; receive IP6 opts for response */ 379 1.2 itojun #define IPV6_RECVDSTADDR 7 /* bool; receive IP6 dst addr w/dgram */ 380 1.2 itojun #define IPV6_RETOPTS 8 /* ip6_opts; set/get IP6 options */ 381 1.57 cbiere #endif 382 1.57 cbiere #define IPV6_SOCKOPT_RESERVED1 3 /* reserved for future use */ 383 1.57 cbiere #define IPV6_UNICAST_HOPS 4 /* int; IP6 hops */ 384 1.27 itojun #define IPV6_MULTICAST_IF 9 /* u_int; set/get IP6 multicast i/f */ 385 1.27 itojun #define IPV6_MULTICAST_HOPS 10 /* int; set/get IP6 multicast hops */ 386 1.27 itojun #define IPV6_MULTICAST_LOOP 11 /* u_int; set/get IP6 multicast loopback */ 387 1.79 christos /* The join and leave membership option numbers need to match with the v4 ones */ 388 1.2 itojun #define IPV6_JOIN_GROUP 12 /* ip6_mreq; join a group membership */ 389 1.2 itojun #define IPV6_LEAVE_GROUP 13 /* ip6_mreq; leave a group membership */ 390 1.2 itojun #define IPV6_PORTRANGE 14 /* int; range to choose for unspec port */ 391 1.42 bjh21 #if defined(_NETBSD_SOURCE) 392 1.70 christos #define IPV6_PORTALGO 17 /* int; port selection algo (rfc6056) */ 393 1.2 itojun #define ICMP6_FILTER 18 /* icmp6_filter; icmp6 filter */ 394 1.36 kleink #endif 395 1.54 rpaulo /* RFC2292 options */ 396 1.54 rpaulo #ifdef _KERNEL 397 1.54 rpaulo #define IPV6_2292PKTINFO 19 /* bool; send/recv if, src/dst addr */ 398 1.54 rpaulo #define IPV6_2292HOPLIMIT 20 /* bool; hop limit */ 399 1.54 rpaulo #define IPV6_2292NEXTHOP 21 /* bool; next hop addr */ 400 1.54 rpaulo #define IPV6_2292HOPOPTS 22 /* bool; hop-by-hop option */ 401 1.58 seanb #define IPV6_2292DSTOPTS 23 /* bool; destination option */ 402 1.54 rpaulo #define IPV6_2292RTHDR 24 /* bool; routing header */ 403 1.54 rpaulo #define IPV6_2292PKTOPTIONS 25 /* buf/cmsghdr; set/get IPv6 options */ 404 1.54 rpaulo #endif 405 1.2 itojun #define IPV6_CHECKSUM 26 /* int; checksum offset for raw socket */ 406 1.30 itojun #define IPV6_V6ONLY 27 /* bool; make AF_INET6 sockets v6 only */ 407 1.2 itojun 408 1.2 itojun #define IPV6_IPSEC_POLICY 28 /* struct; get/set security policy */ 409 1.7 itojun #define IPV6_FAITH 29 /* bool; accept FAITH'ed connections */ 410 1.54 rpaulo 411 1.54 rpaulo /* new socket options introduced in RFC3542 */ 412 1.54 rpaulo #define IPV6_RTHDRDSTOPTS 35 /* ip6_dest; send dst option before rthdr */ 413 1.54 rpaulo 414 1.54 rpaulo #define IPV6_RECVPKTINFO 36 /* bool; recv if, dst addr */ 415 1.54 rpaulo #define IPV6_RECVHOPLIMIT 37 /* bool; recv hop limit */ 416 1.54 rpaulo #define IPV6_RECVRTHDR 38 /* bool; recv routing header */ 417 1.54 rpaulo #define IPV6_RECVHOPOPTS 39 /* bool; recv hop-by-hop option */ 418 1.54 rpaulo #define IPV6_RECVDSTOPTS 40 /* bool; recv dst option after rthdr */ 419 1.54 rpaulo #ifdef _KERNEL 420 1.54 rpaulo #define IPV6_RECVRTHDRDSTOPTS 41 /* bool; recv dst option before rthdr */ 421 1.54 rpaulo #endif 422 1.45 itojun #define IPV6_USE_MIN_MTU 42 /* bool; send packets at the minimum MTU */ 423 1.54 rpaulo #define IPV6_RECVPATHMTU 43 /* bool; notify an according MTU */ 424 1.54 rpaulo #define IPV6_PATHMTU 44 /* mtuinfo; get the current path MTU (sopt), 425 1.54 rpaulo 4 bytes int; MTU notification (cmsg) */ 426 1.54 rpaulo 427 1.54 rpaulo /* more new socket options introduced in RFC3542 */ 428 1.54 rpaulo #define IPV6_PKTINFO 46 /* in6_pktinfo; send if, src addr */ 429 1.54 rpaulo #define IPV6_HOPLIMIT 47 /* int; send hop limit */ 430 1.54 rpaulo #define IPV6_NEXTHOP 48 /* sockaddr; next hop addr */ 431 1.54 rpaulo #define IPV6_HOPOPTS 49 /* ip6_hbh; send hop-by-hop option */ 432 1.101 andvar #define IPV6_DSTOPTS 50 /* ip6_dest; send dst option before rthdr */ 433 1.54 rpaulo #define IPV6_RTHDR 51 /* ip6_rthdr; send routing header */ 434 1.54 rpaulo 435 1.54 rpaulo #define IPV6_RECVTCLASS 57 /* bool; recv traffic class values */ 436 1.54 rpaulo #ifdef _KERNEL 437 1.54 rpaulo #define IPV6_OTCLASS 58 /* u_int8_t; send traffic class value */ 438 1.54 rpaulo #endif 439 1.54 rpaulo 440 1.54 rpaulo #define IPV6_TCLASS 61 /* int; send traffic class value */ 441 1.54 rpaulo #define IPV6_DONTFRAG 62 /* bool; disable IPv6 fragmentation */ 442 1.82 roy #define IPV6_PREFER_TEMPADDR 63 /* int; prefer temporary address as 443 1.101 andvar * the source address */ 444 1.100 christos #define IPV6_BINDANY 64 /* bool: allow bind to any address */ 445 1.20 itojun /* to define items, should talk with KAME guys first, for *BSD compatibility */ 446 1.2 itojun 447 1.2 itojun #define IPV6_RTHDR_LOOSE 0 /* this hop need not be a neighbor. XXX old spec */ 448 1.2 itojun #define IPV6_RTHDR_STRICT 1 /* this hop must be a neighbor. XXX old spec */ 449 1.2 itojun #define IPV6_RTHDR_TYPE_0 0 /* IPv6 routing header type 0 */ 450 1.2 itojun 451 1.2 itojun /* 452 1.2 itojun * Defaults and limits for options 453 1.2 itojun */ 454 1.2 itojun #define IPV6_DEFAULT_MULTICAST_HOPS 1 /* normally limit m'casts to 1 hop */ 455 1.2 itojun #define IPV6_DEFAULT_MULTICAST_LOOP 1 /* normally hear sends if a member */ 456 1.2 itojun 457 1.2 itojun /* 458 1.2 itojun * Argument structure for IPV6_JOIN_GROUP and IPV6_LEAVE_GROUP. 459 1.2 itojun */ 460 1.2 itojun struct ipv6_mreq { 461 1.2 itojun struct in6_addr ipv6mr_multiaddr; 462 1.15 danw unsigned int ipv6mr_interface; 463 1.2 itojun }; 464 1.2 itojun 465 1.2 itojun /* 466 1.2 itojun * IPV6_PKTINFO: Packet information(RFC2292 sec 5) 467 1.2 itojun */ 468 1.2 itojun struct in6_pktinfo { 469 1.15 danw struct in6_addr ipi6_addr; /* src/dst IPv6 address */ 470 1.15 danw unsigned int ipi6_ifindex; /* send/recv interface index */ 471 1.2 itojun }; 472 1.2 itojun 473 1.2 itojun /* 474 1.54 rpaulo * Control structure for IPV6_RECVPATHMTU socket option. 475 1.54 rpaulo */ 476 1.54 rpaulo struct ip6_mtuinfo { 477 1.54 rpaulo struct sockaddr_in6 ip6m_addr; /* or sockaddr_storage? */ 478 1.55 rpaulo uint32_t ip6m_mtu; 479 1.54 rpaulo }; 480 1.54 rpaulo 481 1.54 rpaulo /* 482 1.2 itojun * Argument for IPV6_PORTRANGE: 483 1.2 itojun * - which range to search when port is unspecified at bind() or connect() 484 1.2 itojun */ 485 1.2 itojun #define IPV6_PORTRANGE_DEFAULT 0 /* default range */ 486 1.2 itojun #define IPV6_PORTRANGE_HIGH 1 /* "high" - request firewall bypass */ 487 1.2 itojun #define IPV6_PORTRANGE_LOW 2 /* "low" - vouchsafe security */ 488 1.2 itojun 489 1.42 bjh21 #if defined(_NETBSD_SOURCE) 490 1.2 itojun /* 491 1.2 itojun * Definitions for inet6 sysctl operations. 492 1.2 itojun * 493 1.2 itojun * Third level is protocol number. 494 1.2 itojun * Fourth level is desired variable within that protocol. 495 1.2 itojun */ 496 1.2 itojun /* 497 1.2 itojun * Names for IP sysctl objects 498 1.2 itojun */ 499 1.2 itojun #define IPV6CTL_FORWARDING 1 /* act as router */ 500 1.2 itojun #define IPV6CTL_SENDREDIRECTS 2 /* may send redirects when forwarding*/ 501 1.2 itojun #define IPV6CTL_DEFHLIM 3 /* default Hop-Limit */ 502 1.90 maxv /* IPV6CTL_DEFMTU=4, never implemented */ 503 1.2 itojun #define IPV6CTL_FORWSRCRT 5 /* forward source-routed dgrams */ 504 1.2 itojun #define IPV6CTL_STATS 6 /* stats */ 505 1.2 itojun #define IPV6CTL_MRTSTATS 7 /* multicast forwarding stats */ 506 1.2 itojun #define IPV6CTL_MRTPROTO 8 /* multicast routing protocol */ 507 1.2 itojun #define IPV6CTL_MAXFRAGPACKETS 9 /* max packets reassembly queue */ 508 1.2 itojun #define IPV6CTL_SOURCECHECK 10 /* verify source route and intf */ 509 1.89 maxv #define IPV6CTL_SOURCECHECK_LOGINT 11 /* minimum logging interval */ 510 1.99 roy /* 12 was IPV6CTL_ACCEPT_RTADV */ 511 1.2 itojun #define IPV6CTL_KEEPFAITH 13 512 1.2 itojun #define IPV6CTL_LOG_INTERVAL 14 513 1.2 itojun #define IPV6CTL_HDRNESTLIMIT 15 514 1.2 itojun #define IPV6CTL_DAD_COUNT 16 515 1.2 itojun #define IPV6CTL_AUTO_FLOWLABEL 17 516 1.2 itojun #define IPV6CTL_DEFMCASTHLIM 18 517 1.2 itojun #define IPV6CTL_GIF_HLIM 19 /* default HLIM for gif encap packet */ 518 1.2 itojun #define IPV6CTL_KAME_VERSION 20 519 1.7 itojun #define IPV6CTL_USE_DEPRECATED 21 /* use deprecated addr (RFC2462 5.5.4) */ 520 1.99 roy /* 22 was IPV6CTL_RR_PRUNE */ 521 1.33 itojun /* 23: reserved */ 522 1.28 itojun #define IPV6CTL_V6ONLY 24 523 1.19 itojun /* 25 to 27: reserved */ 524 1.19 itojun #define IPV6CTL_ANONPORTMIN 28 /* minimum ephemeral port */ 525 1.19 itojun #define IPV6CTL_ANONPORTMAX 29 /* maximum ephemeral port */ 526 1.19 itojun #define IPV6CTL_LOWPORTMIN 30 /* minimum reserved port */ 527 1.19 itojun #define IPV6CTL_LOWPORTMAX 31 /* maximum reserved port */ 528 1.77 roy /* 32 to 34: reserved */ 529 1.77 roy #define IPV6CTL_AUTO_LINKLOCAL 35 /* automatic link-local addr assign */ 530 1.86 christos /* 36 to 37: reserved */ 531 1.86 christos #define IPV6CTL_ADDRCTLPOLICY 38 /* get/set address selection policy */ 532 1.51 rpaulo #define IPV6CTL_USE_DEFAULTZONE 39 /* use default scope zone */ 533 1.51 rpaulo /* 40: reserved */ 534 1.40 itojun #define IPV6CTL_MAXFRAGS 41 /* max fragments */ 535 1.78 rmind #define IPV6CTL_IFQ 42 /* IPv6 packet input queue */ 536 1.99 roy /* 43 was IPV6CTL_RTADV_MAXROUTES */ 537 1.99 roy /* 44 was IPV6CTL_RTADV_NUMROUTES */ 538 1.97 knakahar #define IPV6CTL_GIF_PMTU 45 /* gif(4) Path MTU setting */ 539 1.98 knakahar #define IPV6CTL_IPSEC_HLIM 46 /* default HLIM for ipsecif encap packet */ 540 1.98 knakahar #define IPV6CTL_IPSEC_PMTU 47 /* ipsecif(4) Path MTU setting */ 541 1.42 bjh21 #endif /* _NETBSD_SOURCE */ 542 1.2 itojun 543 1.2 itojun #ifdef _KERNEL 544 1.2 itojun struct cmsghdr; 545 1.26 thorpej 546 1.26 thorpej /* 547 1.26 thorpej * in6_cksum_phdr: 548 1.26 thorpej * 549 1.26 thorpej * Compute significant parts of the IPv6 checksum pseudo-header 550 1.26 thorpej * for use in a delayed TCP/UDP checksum calculation. 551 1.26 thorpej * 552 1.26 thorpej * Args: 553 1.26 thorpej * 554 1.26 thorpej * src Source IPv6 address 555 1.26 thorpej * dst Destination IPv6 address 556 1.26 thorpej * len htonl(proto-hdr-len) 557 1.26 thorpej * nxt htonl(next-proto-number) 558 1.26 thorpej * 559 1.26 thorpej * NOTE: We expect the src and dst addresses to be 16-bit 560 1.26 thorpej * aligned! 561 1.26 thorpej */ 562 1.66 perry static __inline u_int16_t __unused 563 1.26 thorpej in6_cksum_phdr(const struct in6_addr *src, const struct in6_addr *dst, 564 1.26 thorpej u_int32_t len, u_int32_t nxt) 565 1.26 thorpej { 566 1.26 thorpej u_int32_t sum = 0; 567 1.26 thorpej const u_int16_t *w; 568 1.26 thorpej 569 1.32 perry /*LINTED*/ 570 1.32 perry w = (const u_int16_t *) src; 571 1.26 thorpej sum += w[0]; 572 1.26 thorpej if (!IN6_IS_SCOPE_LINKLOCAL(src)) 573 1.26 thorpej sum += w[1]; 574 1.26 thorpej sum += w[2]; sum += w[3]; sum += w[4]; sum += w[5]; 575 1.41 itojun sum += w[6]; sum += w[7]; 576 1.26 thorpej 577 1.32 perry /*LINTED*/ 578 1.32 perry w = (const u_int16_t *) dst; 579 1.26 thorpej sum += w[0]; 580 1.26 thorpej if (!IN6_IS_SCOPE_LINKLOCAL(dst)) 581 1.26 thorpej sum += w[1]; 582 1.26 thorpej sum += w[2]; sum += w[3]; sum += w[4]; sum += w[5]; 583 1.26 thorpej sum += w[6]; sum += w[7]; 584 1.26 thorpej 585 1.26 thorpej sum += (u_int16_t)(len >> 16) + (u_int16_t)(len /*& 0xffff*/); 586 1.26 thorpej 587 1.26 thorpej sum += (u_int16_t)(nxt >> 16) + (u_int16_t)(nxt /*& 0xffff*/); 588 1.26 thorpej 589 1.26 thorpej sum = (u_int16_t)(sum >> 16) + (u_int16_t)(sum /*& 0xffff*/); 590 1.26 thorpej 591 1.26 thorpej if (sum > 0xffff) 592 1.26 thorpej sum -= 0xffff; 593 1.26 thorpej 594 1.26 thorpej return (sum); 595 1.26 thorpej } 596 1.2 itojun 597 1.49 christos struct mbuf; 598 1.49 christos struct ifnet; 599 1.60 dyoung int sockaddr_in6_cmp(const struct sockaddr *, const struct sockaddr *); 600 1.68 dyoung struct sockaddr *sockaddr_in6_externalize(struct sockaddr *, socklen_t, 601 1.68 dyoung const struct sockaddr *); 602 1.64 dyoung int in6_cksum(struct mbuf *, u_int8_t, u_int32_t, u_int32_t); 603 1.64 dyoung int in6_localaddr(const struct in6_addr *); 604 1.64 dyoung int in6_addrscope(const struct in6_addr *); 605 1.64 dyoung struct in6_ifaddr *in6_ifawithifp(struct ifnet *, struct in6_addr *); 606 1.73 roy extern void in6_if_link_up(struct ifnet *); 607 1.73 roy extern void in6_if_link_down(struct ifnet *); 608 1.84 roy extern void in6_if_link_state_change(struct ifnet *, int); 609 1.64 dyoung extern void in6_if_up(struct ifnet *); 610 1.72 roy extern void in6_if_down(struct ifnet *); 611 1.64 dyoung extern void addrsel_policy_init(void); 612 1.11 darrenr extern u_char ip6_protox[]; 613 1.2 itojun 614 1.88 knakahar struct ip6_hdr; 615 1.88 knakahar int in6_tunnel_validate(const struct ip6_hdr *, const struct in6_addr *, 616 1.88 knakahar const struct in6_addr *); 617 1.88 knakahar 618 1.2 itojun #define satosin6(sa) ((struct sockaddr_in6 *)(sa)) 619 1.59 dyoung #define satocsin6(sa) ((const struct sockaddr_in6 *)(sa)) 620 1.2 itojun #define sin6tosa(sin6) ((struct sockaddr *)(sin6)) 621 1.60 dyoung #define sin6tocsa(sin6) ((const struct sockaddr *)(sin6)) 622 1.2 itojun #define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa)) 623 1.60 dyoung 624 1.91 christos static __inline void 625 1.60 dyoung sockaddr_in6_init1(struct sockaddr_in6 *sin6, const struct in6_addr *addr, 626 1.60 dyoung in_port_t port, uint32_t flowinfo, uint32_t scope_id) 627 1.60 dyoung { 628 1.60 dyoung sin6->sin6_port = port; 629 1.60 dyoung sin6->sin6_flowinfo = flowinfo; 630 1.60 dyoung sin6->sin6_addr = *addr; 631 1.60 dyoung sin6->sin6_scope_id = scope_id; 632 1.60 dyoung } 633 1.60 dyoung 634 1.91 christos static __inline void 635 1.60 dyoung sockaddr_in6_init(struct sockaddr_in6 *sin6, const struct in6_addr *addr, 636 1.60 dyoung in_port_t port, uint32_t flowinfo, uint32_t scope_id) 637 1.60 dyoung { 638 1.60 dyoung sin6->sin6_family = AF_INET6; 639 1.60 dyoung sin6->sin6_len = sizeof(*sin6); 640 1.60 dyoung sockaddr_in6_init1(sin6, addr, port, flowinfo, scope_id); 641 1.60 dyoung } 642 1.60 dyoung 643 1.91 christos static __inline struct sockaddr * 644 1.60 dyoung sockaddr_in6_alloc(const struct in6_addr *addr, in_port_t port, 645 1.60 dyoung uint32_t flowinfo, uint32_t scope_id, int flags) 646 1.60 dyoung { 647 1.60 dyoung struct sockaddr *sa; 648 1.60 dyoung 649 1.62 dyoung if ((sa = sockaddr_alloc(AF_INET6, sizeof(struct sockaddr_in6), 650 1.62 dyoung flags)) == NULL) 651 1.60 dyoung return NULL; 652 1.60 dyoung 653 1.60 dyoung sockaddr_in6_init1(satosin6(sa), addr, port, flowinfo, scope_id); 654 1.60 dyoung 655 1.60 dyoung return sa; 656 1.60 dyoung } 657 1.2 itojun #endif /* _KERNEL */ 658 1.2 itojun 659 1.42 bjh21 #if defined(_NETBSD_SOURCE) 660 1.38 kleink 661 1.38 kleink #include <machine/ansi.h> 662 1.38 kleink 663 1.38 kleink #ifdef _BSD_SIZE_T_ 664 1.38 kleink typedef _BSD_SIZE_T_ size_t; 665 1.38 kleink #define _SIZE_T 666 1.38 kleink #undef _BSD_SIZE_T_ 667 1.38 kleink #endif 668 1.38 kleink 669 1.38 kleink #include <sys/cdefs.h> 670 1.38 kleink 671 1.2 itojun __BEGIN_DECLS 672 1.2 itojun struct cmsghdr; 673 1.2 itojun 674 1.87 rtr void in6_in_2_v4mapin6(const struct in_addr *, struct in6_addr *); 675 1.65 dyoung void in6_sin6_2_sin(struct sockaddr_in *, struct sockaddr_in6 *); 676 1.83 rjs void in6_sin_2_v4mapsin6(const struct sockaddr_in *, struct sockaddr_in6 *); 677 1.65 dyoung void in6_sin6_2_sin_in_sock(struct sockaddr *); 678 1.65 dyoung void in6_sin_2_v4mapsin6_in_sock(struct sockaddr **); 679 1.65 dyoung 680 1.75 christos #define INET6_IS_ADDR_LINKLOCAL 1 681 1.75 christos #define INET6_IS_ADDR_MC_LINKLOCAL 2 682 1.75 christos #define INET6_IS_ADDR_SITELOCAL 4 683 1.74 christos void inet6_getscopeid(struct sockaddr_in6 *, int); 684 1.74 christos void inet6_putscopeid(struct sockaddr_in6 *, int); 685 1.74 christos 686 1.65 dyoung extern int inet6_option_space(int); 687 1.65 dyoung extern int inet6_option_init(void *, struct cmsghdr **, int); 688 1.65 dyoung extern int inet6_option_append(struct cmsghdr *, const uint8_t *, 689 1.65 dyoung int, int); 690 1.65 dyoung extern uint8_t *inet6_option_alloc(struct cmsghdr *, int, int, int); 691 1.65 dyoung extern int inet6_option_next(const struct cmsghdr *, uint8_t **); 692 1.65 dyoung extern int inet6_option_find(const struct cmsghdr *, uint8_t **, int); 693 1.65 dyoung 694 1.65 dyoung extern size_t inet6_rthdr_space(int, int); 695 1.65 dyoung extern struct cmsghdr *inet6_rthdr_init(void *, int); 696 1.65 dyoung extern int inet6_rthdr_add(struct cmsghdr *, const struct in6_addr *, 697 1.65 dyoung unsigned int); 698 1.65 dyoung extern int inet6_rthdr_lasthop(struct cmsghdr *, unsigned int); 699 1.2 itojun #if 0 /* not implemented yet */ 700 1.65 dyoung extern int inet6_rthdr_reverse(const struct cmsghdr *, struct cmsghdr *); 701 1.2 itojun #endif 702 1.65 dyoung extern int inet6_rthdr_segments(const struct cmsghdr *); 703 1.65 dyoung extern struct in6_addr *inet6_rthdr_getaddr(struct cmsghdr *, int); 704 1.65 dyoung extern int inet6_rthdr_getflags(const struct cmsghdr *, int); 705 1.65 dyoung 706 1.65 dyoung extern int inet6_opt_init(void *, socklen_t); 707 1.65 dyoung extern int inet6_opt_append(void *, socklen_t, int, uint8_t, 708 1.65 dyoung socklen_t, uint8_t, void **); 709 1.65 dyoung extern int inet6_opt_finish(void *, socklen_t, int); 710 1.65 dyoung extern int inet6_opt_set_val(void *, int, void *, socklen_t); 711 1.65 dyoung 712 1.65 dyoung extern int inet6_opt_next(void *, socklen_t, int, uint8_t *, 713 1.65 dyoung socklen_t *, void **); 714 1.65 dyoung extern int inet6_opt_find(void *, socklen_t, int, uint8_t, 715 1.65 dyoung socklen_t *, void **); 716 1.65 dyoung extern int inet6_opt_get_val(void *, int, void *, socklen_t); 717 1.65 dyoung extern socklen_t inet6_rth_space(int, int); 718 1.65 dyoung extern void *inet6_rth_init(void *, socklen_t, int, int); 719 1.65 dyoung extern int inet6_rth_add(void *, const struct in6_addr *); 720 1.65 dyoung extern int inet6_rth_reverse(const void *, void *); 721 1.65 dyoung extern int inet6_rth_segments(const void *); 722 1.65 dyoung extern struct in6_addr *inet6_rth_getaddr(const void *, int); 723 1.2 itojun __END_DECLS 724 1.42 bjh21 #endif /* _NETBSD_SOURCE */ 725 1.2 itojun 726 1.80 christos #if defined(_KERNEL) || defined(_TEST) 727 1.80 christos int in6_print(char *, size_t, const struct in6_addr *); 728 1.81 christos #define IN6_PRINT(b, a) (in6_print((b), sizeof(b), (a)), (b)) 729 1.80 christos int sin6_print(char *, size_t, const void *); 730 1.80 christos #endif 731 1.80 christos 732 1.2 itojun #endif /* !_NETINET6_IN6_H_ */ 733