in.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. /* Copyright (C) 1991-2020 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #ifndef _NETINET_IN_H
  15. #define _NETINET_IN_H 1
  16. #include <features.h>
  17. #include <bits/stdint-uintn.h>
  18. #include <sys/socket.h>
  19. #include <bits/types.h>
  20. __BEGIN_DECLS
  21. /* Internet address. */
  22. typedef uint32_t in_addr_t;
  23. struct in_addr
  24. {
  25. in_addr_t s_addr;
  26. };
  27. /* Get system-specific definitions. */
  28. #include <bits/in.h>
  29. /* Standard well-defined IP protocols. */
  30. enum
  31. {
  32. IPPROTO_IP = 0, /* Dummy protocol for TCP. */
  33. #define IPPROTO_IP IPPROTO_IP
  34. IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
  35. #define IPPROTO_ICMP IPPROTO_ICMP
  36. IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
  37. #define IPPROTO_IGMP IPPROTO_IGMP
  38. IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
  39. #define IPPROTO_IPIP IPPROTO_IPIP
  40. IPPROTO_TCP = 6, /* Transmission Control Protocol. */
  41. #define IPPROTO_TCP IPPROTO_TCP
  42. IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
  43. #define IPPROTO_EGP IPPROTO_EGP
  44. IPPROTO_PUP = 12, /* PUP protocol. */
  45. #define IPPROTO_PUP IPPROTO_PUP
  46. IPPROTO_UDP = 17, /* User Datagram Protocol. */
  47. #define IPPROTO_UDP IPPROTO_UDP
  48. IPPROTO_IDP = 22, /* XNS IDP protocol. */
  49. #define IPPROTO_IDP IPPROTO_IDP
  50. IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
  51. #define IPPROTO_TP IPPROTO_TP
  52. IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
  53. #define IPPROTO_DCCP IPPROTO_DCCP
  54. IPPROTO_IPV6 = 41, /* IPv6 header. */
  55. #define IPPROTO_IPV6 IPPROTO_IPV6
  56. IPPROTO_RSVP = 46, /* Reservation Protocol. */
  57. #define IPPROTO_RSVP IPPROTO_RSVP
  58. IPPROTO_GRE = 47, /* General Routing Encapsulation. */
  59. #define IPPROTO_GRE IPPROTO_GRE
  60. IPPROTO_ESP = 50, /* encapsulating security payload. */
  61. #define IPPROTO_ESP IPPROTO_ESP
  62. IPPROTO_AH = 51, /* authentication header. */
  63. #define IPPROTO_AH IPPROTO_AH
  64. IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
  65. #define IPPROTO_MTP IPPROTO_MTP
  66. IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
  67. #define IPPROTO_BEETPH IPPROTO_BEETPH
  68. IPPROTO_ENCAP = 98, /* Encapsulation Header. */
  69. #define IPPROTO_ENCAP IPPROTO_ENCAP
  70. IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
  71. #define IPPROTO_PIM IPPROTO_PIM
  72. IPPROTO_COMP = 108, /* Compression Header Protocol. */
  73. #define IPPROTO_COMP IPPROTO_COMP
  74. IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
  75. #define IPPROTO_SCTP IPPROTO_SCTP
  76. IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
  77. #define IPPROTO_UDPLITE IPPROTO_UDPLITE
  78. IPPROTO_MPLS = 137, /* MPLS in IP. */
  79. #define IPPROTO_MPLS IPPROTO_MPLS
  80. IPPROTO_RAW = 255, /* Raw IP packets. */
  81. #define IPPROTO_RAW IPPROTO_RAW
  82. IPPROTO_MAX
  83. };
  84. /* If __USE_KERNEL_IPV6_DEFS is 1 then the user has included the kernel
  85. network headers first and we should use those ABI-identical definitions
  86. instead of our own, otherwise 0. */
  87. #if !__USE_KERNEL_IPV6_DEFS
  88. enum
  89. {
  90. IPPROTO_HOPOPTS = 0, /* IPv6 Hop-by-Hop options. */
  91. #define IPPROTO_HOPOPTS IPPROTO_HOPOPTS
  92. IPPROTO_ROUTING = 43, /* IPv6 routing header. */
  93. #define IPPROTO_ROUTING IPPROTO_ROUTING
  94. IPPROTO_FRAGMENT = 44, /* IPv6 fragmentation header. */
  95. #define IPPROTO_FRAGMENT IPPROTO_FRAGMENT
  96. IPPROTO_ICMPV6 = 58, /* ICMPv6. */
  97. #define IPPROTO_ICMPV6 IPPROTO_ICMPV6
  98. IPPROTO_NONE = 59, /* IPv6 no next header. */
  99. #define IPPROTO_NONE IPPROTO_NONE
  100. IPPROTO_DSTOPTS = 60, /* IPv6 destination options. */
  101. #define IPPROTO_DSTOPTS IPPROTO_DSTOPTS
  102. IPPROTO_MH = 135 /* IPv6 mobility header. */
  103. #define IPPROTO_MH IPPROTO_MH
  104. };
  105. #endif /* !__USE_KERNEL_IPV6_DEFS */
  106. /* Type to represent a port. */
  107. typedef uint16_t in_port_t;
  108. /* Standard well-known ports. */
  109. enum
  110. {
  111. IPPORT_ECHO = 7, /* Echo service. */
  112. IPPORT_DISCARD = 9, /* Discard transmissions service. */
  113. IPPORT_SYSTAT = 11, /* System status service. */
  114. IPPORT_DAYTIME = 13, /* Time of day service. */
  115. IPPORT_NETSTAT = 15, /* Network status service. */
  116. IPPORT_FTP = 21, /* File Transfer Protocol. */
  117. IPPORT_TELNET = 23, /* Telnet protocol. */
  118. IPPORT_SMTP = 25, /* Simple Mail Transfer Protocol. */
  119. IPPORT_TIMESERVER = 37, /* Timeserver service. */
  120. IPPORT_NAMESERVER = 42, /* Domain Name Service. */
  121. IPPORT_WHOIS = 43, /* Internet Whois service. */
  122. IPPORT_MTP = 57,
  123. IPPORT_TFTP = 69, /* Trivial File Transfer Protocol. */
  124. IPPORT_RJE = 77,
  125. IPPORT_FINGER = 79, /* Finger service. */
  126. IPPORT_TTYLINK = 87,
  127. IPPORT_SUPDUP = 95, /* SUPDUP protocol. */
  128. IPPORT_EXECSERVER = 512, /* execd service. */
  129. IPPORT_LOGINSERVER = 513, /* rlogind service. */
  130. IPPORT_CMDSERVER = 514,
  131. IPPORT_EFSSERVER = 520,
  132. /* UDP ports. */
  133. IPPORT_BIFFUDP = 512,
  134. IPPORT_WHOSERVER = 513,
  135. IPPORT_ROUTESERVER = 520,
  136. /* Ports less than this value are reserved for privileged processes. */
  137. IPPORT_RESERVED = 1024,
  138. /* Ports greater this value are reserved for (non-privileged) servers. */
  139. IPPORT_USERRESERVED = 5000
  140. };
  141. /* Definitions of the bits in an Internet address integer.
  142. On subnets, host and network parts are found according to
  143. the subnet mask, not these masks. */
  144. #define IN_CLASSA(a) ((((in_addr_t)(a)) & 0x80000000) == 0)
  145. #define IN_CLASSA_NET 0xff000000
  146. #define IN_CLASSA_NSHIFT 24
  147. #define IN_CLASSA_HOST (0xffffffff & ~IN_CLASSA_NET)
  148. #define IN_CLASSA_MAX 128
  149. #define IN_CLASSB(a) ((((in_addr_t)(a)) & 0xc0000000) == 0x80000000)
  150. #define IN_CLASSB_NET 0xffff0000
  151. #define IN_CLASSB_NSHIFT 16
  152. #define IN_CLASSB_HOST (0xffffffff & ~IN_CLASSB_NET)
  153. #define IN_CLASSB_MAX 65536
  154. #define IN_CLASSC(a) ((((in_addr_t)(a)) & 0xe0000000) == 0xc0000000)
  155. #define IN_CLASSC_NET 0xffffff00
  156. #define IN_CLASSC_NSHIFT 8
  157. #define IN_CLASSC_HOST (0xffffffff & ~IN_CLASSC_NET)
  158. #define IN_CLASSD(a) ((((in_addr_t)(a)) & 0xf0000000) == 0xe0000000)
  159. #define IN_MULTICAST(a) IN_CLASSD(a)
  160. #define IN_EXPERIMENTAL(a) ((((in_addr_t)(a)) & 0xe0000000) == 0xe0000000)
  161. #define IN_BADCLASS(a) ((((in_addr_t)(a)) & 0xf0000000) == 0xf0000000)
  162. /* Address to accept any incoming messages. */
  163. #define INADDR_ANY ((in_addr_t) 0x00000000)
  164. /* Address to send to all hosts. */
  165. #define INADDR_BROADCAST ((in_addr_t) 0xffffffff)
  166. /* Address indicating an error return. */
  167. #define INADDR_NONE ((in_addr_t) 0xffffffff)
  168. /* Network number for local host loopback. */
  169. #define IN_LOOPBACKNET 127
  170. /* Address to loopback in software to local host. */
  171. #ifndef INADDR_LOOPBACK
  172. # define INADDR_LOOPBACK ((in_addr_t) 0x7f000001) /* Inet 127.0.0.1. */
  173. #endif
  174. /* Defines for Multicast INADDR. */
  175. #define INADDR_UNSPEC_GROUP ((in_addr_t) 0xe0000000) /* 224.0.0.0 */
  176. #define INADDR_ALLHOSTS_GROUP ((in_addr_t) 0xe0000001) /* 224.0.0.1 */
  177. #define INADDR_ALLRTRS_GROUP ((in_addr_t) 0xe0000002) /* 224.0.0.2 */
  178. #define INADDR_ALLSNOOPERS_GROUP ((in_addr_t) 0xe000006a) /* 224.0.0.106 */
  179. #define INADDR_MAX_LOCAL_GROUP ((in_addr_t) 0xe00000ff) /* 224.0.0.255 */
  180. #if !__USE_KERNEL_IPV6_DEFS
  181. /* IPv6 address */
  182. struct in6_addr
  183. {
  184. union
  185. {
  186. uint8_t __u6_addr8[16];
  187. uint16_t __u6_addr16[8];
  188. uint32_t __u6_addr32[4];
  189. } __in6_u;
  190. #define s6_addr __in6_u.__u6_addr8
  191. #ifdef __USE_MISC
  192. # define s6_addr16 __in6_u.__u6_addr16
  193. # define s6_addr32 __in6_u.__u6_addr32
  194. #endif
  195. };
  196. #endif /* !__USE_KERNEL_IPV6_DEFS */
  197. extern const struct in6_addr in6addr_any; /* :: */
  198. extern const struct in6_addr in6addr_loopback; /* ::1 */
  199. #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }
  200. #define IN6ADDR_LOOPBACK_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
  201. #define INET_ADDRSTRLEN 16
  202. #define INET6_ADDRSTRLEN 46
  203. /* Structure describing an Internet socket address. */
  204. struct sockaddr_in
  205. {
  206. __SOCKADDR_COMMON (sin_);
  207. in_port_t sin_port; /* Port number. */
  208. struct in_addr sin_addr; /* Internet address. */
  209. /* Pad to size of `struct sockaddr'. */
  210. unsigned char sin_zero[sizeof (struct sockaddr)
  211. - __SOCKADDR_COMMON_SIZE
  212. - sizeof (in_port_t)
  213. - sizeof (struct in_addr)];
  214. };
  215. #if !__USE_KERNEL_IPV6_DEFS
  216. /* Ditto, for IPv6. */
  217. struct sockaddr_in6
  218. {
  219. __SOCKADDR_COMMON (sin6_);
  220. in_port_t sin6_port; /* Transport layer port # */
  221. uint32_t sin6_flowinfo; /* IPv6 flow information */
  222. struct in6_addr sin6_addr; /* IPv6 address */
  223. uint32_t sin6_scope_id; /* IPv6 scope-id */
  224. };
  225. #endif /* !__USE_KERNEL_IPV6_DEFS */
  226. #ifdef __USE_MISC
  227. /* IPv4 multicast request. */
  228. struct ip_mreq
  229. {
  230. /* IP multicast address of group. */
  231. struct in_addr imr_multiaddr;
  232. /* Local IP address of interface. */
  233. struct in_addr imr_interface;
  234. };
  235. struct ip_mreq_source
  236. {
  237. /* IP multicast address of group. */
  238. struct in_addr imr_multiaddr;
  239. /* IP address of interface. */
  240. struct in_addr imr_interface;
  241. /* IP address of source. */
  242. struct in_addr imr_sourceaddr;
  243. };
  244. #endif
  245. #if !__USE_KERNEL_IPV6_DEFS
  246. /* Likewise, for IPv6. */
  247. struct ipv6_mreq
  248. {
  249. /* IPv6 multicast address of group */
  250. struct in6_addr ipv6mr_multiaddr;
  251. /* local interface */
  252. unsigned int ipv6mr_interface;
  253. };
  254. #endif /* !__USE_KERNEL_IPV6_DEFS */
  255. #ifdef __USE_MISC
  256. /* Multicast group request. */
  257. struct group_req
  258. {
  259. /* Interface index. */
  260. uint32_t gr_interface;
  261. /* Group address. */
  262. struct sockaddr_storage gr_group;
  263. };
  264. struct group_source_req
  265. {
  266. /* Interface index. */
  267. uint32_t gsr_interface;
  268. /* Group address. */
  269. struct sockaddr_storage gsr_group;
  270. /* Source address. */
  271. struct sockaddr_storage gsr_source;
  272. };
  273. /* Full-state filter operations. */
  274. struct ip_msfilter
  275. {
  276. /* IP multicast address of group. */
  277. struct in_addr imsf_multiaddr;
  278. /* Local IP address of interface. */
  279. struct in_addr imsf_interface;
  280. /* Filter mode. */
  281. uint32_t imsf_fmode;
  282. /* Number of source addresses. */
  283. uint32_t imsf_numsrc;
  284. /* Source addresses. */
  285. struct in_addr imsf_slist[1];
  286. };
  287. #define IP_MSFILTER_SIZE(numsrc) (sizeof (struct ip_msfilter) \
  288. - sizeof (struct in_addr) \
  289. + (numsrc) * sizeof (struct in_addr))
  290. struct group_filter
  291. {
  292. /* Interface index. */
  293. uint32_t gf_interface;
  294. /* Group address. */
  295. struct sockaddr_storage gf_group;
  296. /* Filter mode. */
  297. uint32_t gf_fmode;
  298. /* Number of source addresses. */
  299. uint32_t gf_numsrc;
  300. /* Source addresses. */
  301. struct sockaddr_storage gf_slist[1];
  302. };
  303. #define GROUP_FILTER_SIZE(numsrc) (sizeof (struct group_filter) \
  304. - sizeof (struct sockaddr_storage) \
  305. + ((numsrc) \
  306. * sizeof (struct sockaddr_storage)))
  307. #endif
  308. /* Functions to convert between host and network byte order.
  309. Please note that these functions normally take `unsigned long int' or
  310. `unsigned short int' values as arguments and also return them. But
  311. this was a short-sighted decision since on different systems the types
  312. may have different representations but the values are always the same. */
  313. extern uint32_t ntohl (uint32_t __netlong) __THROW __attribute__ ((__const__));
  314. extern uint16_t ntohs (uint16_t __netshort)
  315. __THROW __attribute__ ((__const__));
  316. extern uint32_t htonl (uint32_t __hostlong)
  317. __THROW __attribute__ ((__const__));
  318. extern uint16_t htons (uint16_t __hostshort)
  319. __THROW __attribute__ ((__const__));
  320. #include <endian.h>
  321. /* Get machine dependent optimized versions of byte swapping functions. */
  322. #include <bits/byteswap.h>
  323. #include <bits/uintn-identity.h>
  324. #ifdef __OPTIMIZE__
  325. /* We can optimize calls to the conversion functions. Either nothing has
  326. to be done or we are using directly the byte-swapping functions which
  327. often can be inlined. */
  328. # if __BYTE_ORDER == __BIG_ENDIAN
  329. /* The host byte order is the same as network byte order,
  330. so these functions are all just identity. */
  331. # define ntohl(x) __uint32_identity (x)
  332. # define ntohs(x) __uint16_identity (x)
  333. # define htonl(x) __uint32_identity (x)
  334. # define htons(x) __uint16_identity (x)
  335. # else
  336. # if __BYTE_ORDER == __LITTLE_ENDIAN
  337. # define ntohl(x) __bswap_32 (x)
  338. # define ntohs(x) __bswap_16 (x)
  339. # define htonl(x) __bswap_32 (x)
  340. # define htons(x) __bswap_16 (x)
  341. # endif
  342. # endif
  343. #endif
  344. #ifdef __GNUC__
  345. # define IN6_IS_ADDR_UNSPECIFIED(a) \
  346. (__extension__ \
  347. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  348. __a->__in6_u.__u6_addr32[0] == 0 \
  349. && __a->__in6_u.__u6_addr32[1] == 0 \
  350. && __a->__in6_u.__u6_addr32[2] == 0 \
  351. && __a->__in6_u.__u6_addr32[3] == 0; }))
  352. # define IN6_IS_ADDR_LOOPBACK(a) \
  353. (__extension__ \
  354. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  355. __a->__in6_u.__u6_addr32[0] == 0 \
  356. && __a->__in6_u.__u6_addr32[1] == 0 \
  357. && __a->__in6_u.__u6_addr32[2] == 0 \
  358. && __a->__in6_u.__u6_addr32[3] == htonl (1); }))
  359. # define IN6_IS_ADDR_LINKLOCAL(a) \
  360. (__extension__ \
  361. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  362. (__a->__in6_u.__u6_addr32[0] & htonl (0xffc00000)) == htonl (0xfe800000); }))
  363. # define IN6_IS_ADDR_SITELOCAL(a) \
  364. (__extension__ \
  365. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  366. (__a->__in6_u.__u6_addr32[0] & htonl (0xffc00000)) == htonl (0xfec00000); }))
  367. # define IN6_IS_ADDR_V4MAPPED(a) \
  368. (__extension__ \
  369. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  370. __a->__in6_u.__u6_addr32[0] == 0 \
  371. && __a->__in6_u.__u6_addr32[1] == 0 \
  372. && __a->__in6_u.__u6_addr32[2] == htonl (0xffff); }))
  373. # define IN6_IS_ADDR_V4COMPAT(a) \
  374. (__extension__ \
  375. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  376. __a->__in6_u.__u6_addr32[0] == 0 \
  377. && __a->__in6_u.__u6_addr32[1] == 0 \
  378. && __a->__in6_u.__u6_addr32[2] == 0 \
  379. && ntohl (__a->__in6_u.__u6_addr32[3]) > 1; }))
  380. # define IN6_ARE_ADDR_EQUAL(a,b) \
  381. (__extension__ \
  382. ({ const struct in6_addr *__a = (const struct in6_addr *) (a); \
  383. const struct in6_addr *__b = (const struct in6_addr *) (b); \
  384. __a->__in6_u.__u6_addr32[0] == __b->__in6_u.__u6_addr32[0] \
  385. && __a->__in6_u.__u6_addr32[1] == __b->__in6_u.__u6_addr32[1] \
  386. && __a->__in6_u.__u6_addr32[2] == __b->__in6_u.__u6_addr32[2] \
  387. && __a->__in6_u.__u6_addr32[3] == __b->__in6_u.__u6_addr32[3]; }))
  388. #else
  389. # define IN6_IS_ADDR_UNSPECIFIED(a) \
  390. (((const uint32_t *) (a))[0] == 0 \
  391. && ((const uint32_t *) (a))[1] == 0 \
  392. && ((const uint32_t *) (a))[2] == 0 \
  393. && ((const uint32_t *) (a))[3] == 0)
  394. # define IN6_IS_ADDR_LOOPBACK(a) \
  395. (((const uint32_t *) (a))[0] == 0 \
  396. && ((const uint32_t *) (a))[1] == 0 \
  397. && ((const uint32_t *) (a))[2] == 0 \
  398. && ((const uint32_t *) (a))[3] == htonl (1))
  399. # define IN6_IS_ADDR_LINKLOCAL(a) \
  400. ((((const uint32_t *) (a))[0] & htonl (0xffc00000)) \
  401. == htonl (0xfe800000))
  402. # define IN6_IS_ADDR_SITELOCAL(a) \
  403. ((((const uint32_t *) (a))[0] & htonl (0xffc00000)) \
  404. == htonl (0xfec00000))
  405. # define IN6_IS_ADDR_V4MAPPED(a) \
  406. ((((const uint32_t *) (a))[0] == 0) \
  407. && (((const uint32_t *) (a))[1] == 0) \
  408. && (((const uint32_t *) (a))[2] == htonl (0xffff)))
  409. # define IN6_IS_ADDR_V4COMPAT(a) \
  410. ((((const uint32_t *) (a))[0] == 0) \
  411. && (((const uint32_t *) (a))[1] == 0) \
  412. && (((const uint32_t *) (a))[2] == 0) \
  413. && (ntohl (((const uint32_t *) (a))[3]) > 1))
  414. # define IN6_ARE_ADDR_EQUAL(a,b) \
  415. ((((const uint32_t *) (a))[0] == ((const uint32_t *) (b))[0]) \
  416. && (((const uint32_t *) (a))[1] == ((const uint32_t *) (b))[1]) \
  417. && (((const uint32_t *) (a))[2] == ((const uint32_t *) (b))[2]) \
  418. && (((const uint32_t *) (a))[3] == ((const uint32_t *) (b))[3]))
  419. #endif
  420. #define IN6_IS_ADDR_MULTICAST(a) (((const uint8_t *) (a))[0] == 0xff)
  421. #ifdef __USE_MISC
  422. /* Bind socket to a privileged IP port. */
  423. extern int bindresvport (int __sockfd, struct sockaddr_in *__sock_in) __THROW;
  424. /* The IPv6 version of this function. */
  425. extern int bindresvport6 (int __sockfd, struct sockaddr_in6 *__sock_in)
  426. __THROW;
  427. #endif
  428. #define IN6_IS_ADDR_MC_NODELOCAL(a) \
  429. (IN6_IS_ADDR_MULTICAST(a) \
  430. && ((((const uint8_t *) (a))[1] & 0xf) == 0x1))
  431. #define IN6_IS_ADDR_MC_LINKLOCAL(a) \
  432. (IN6_IS_ADDR_MULTICAST(a) \
  433. && ((((const uint8_t *) (a))[1] & 0xf) == 0x2))
  434. #define IN6_IS_ADDR_MC_SITELOCAL(a) \
  435. (IN6_IS_ADDR_MULTICAST(a) \
  436. && ((((const uint8_t *) (a))[1] & 0xf) == 0x5))
  437. #define IN6_IS_ADDR_MC_ORGLOCAL(a) \
  438. (IN6_IS_ADDR_MULTICAST(a) \
  439. && ((((const uint8_t *) (a))[1] & 0xf) == 0x8))
  440. #define IN6_IS_ADDR_MC_GLOBAL(a) \
  441. (IN6_IS_ADDR_MULTICAST(a) \
  442. && ((((const uint8_t *) (a))[1] & 0xf) == 0xe))
  443. #ifdef __USE_GNU
  444. struct cmsghdr; /* Forward declaration. */
  445. #if !__USE_KERNEL_IPV6_DEFS
  446. /* IPv6 packet information. */
  447. struct in6_pktinfo
  448. {
  449. struct in6_addr ipi6_addr; /* src/dst IPv6 address */
  450. unsigned int ipi6_ifindex; /* send/recv interface index */
  451. };
  452. /* IPv6 MTU information. */
  453. struct ip6_mtuinfo
  454. {
  455. struct sockaddr_in6 ip6m_addr; /* dst address including zone ID */
  456. uint32_t ip6m_mtu; /* path MTU in host byte order */
  457. };
  458. #endif /* !__USE_KERNEL_IPV6_DEFS */
  459. /* Obsolete hop-by-hop and Destination Options Processing (RFC 2292). */
  460. extern int inet6_option_space (int __nbytes)
  461. __THROW __attribute_deprecated__;
  462. extern int inet6_option_init (void *__bp, struct cmsghdr **__cmsgp,
  463. int __type) __THROW __attribute_deprecated__;
  464. extern int inet6_option_append (struct cmsghdr *__cmsg,
  465. const uint8_t *__typep, int __multx,
  466. int __plusy) __THROW __attribute_deprecated__;
  467. extern uint8_t *inet6_option_alloc (struct cmsghdr *__cmsg, int __datalen,
  468. int __multx, int __plusy)
  469. __THROW __attribute_deprecated__;
  470. extern int inet6_option_next (const struct cmsghdr *__cmsg,
  471. uint8_t **__tptrp)
  472. __THROW __attribute_deprecated__;
  473. extern int inet6_option_find (const struct cmsghdr *__cmsg,
  474. uint8_t **__tptrp, int __type)
  475. __THROW __attribute_deprecated__;
  476. /* Hop-by-Hop and Destination Options Processing (RFC 3542). */
  477. extern int inet6_opt_init (void *__extbuf, socklen_t __extlen) __THROW;
  478. extern int inet6_opt_append (void *__extbuf, socklen_t __extlen, int __offset,
  479. uint8_t __type, socklen_t __len, uint8_t __align,
  480. void **__databufp) __THROW;
  481. extern int inet6_opt_finish (void *__extbuf, socklen_t __extlen, int __offset)
  482. __THROW;
  483. extern int inet6_opt_set_val (void *__databuf, int __offset, void *__val,
  484. socklen_t __vallen) __THROW;
  485. extern int inet6_opt_next (void *__extbuf, socklen_t __extlen, int __offset,
  486. uint8_t *__typep, socklen_t *__lenp,
  487. void **__databufp) __THROW;
  488. extern int inet6_opt_find (void *__extbuf, socklen_t __extlen, int __offset,
  489. uint8_t __type, socklen_t *__lenp,
  490. void **__databufp) __THROW;
  491. extern int inet6_opt_get_val (void *__databuf, int __offset, void *__val,
  492. socklen_t __vallen) __THROW;
  493. /* Routing Header Option (RFC 3542). */
  494. extern socklen_t inet6_rth_space (int __type, int __segments) __THROW;
  495. extern void *inet6_rth_init (void *__bp, socklen_t __bp_len, int __type,
  496. int __segments) __THROW;
  497. extern int inet6_rth_add (void *__bp, const struct in6_addr *__addr) __THROW;
  498. extern int inet6_rth_reverse (const void *__in, void *__out) __THROW;
  499. extern int inet6_rth_segments (const void *__bp) __THROW;
  500. extern struct in6_addr *inet6_rth_getaddr (const void *__bp, int __index)
  501. __THROW;
  502. /* Multicast source filter support. */
  503. /* Get IPv4 source filter. */
  504. extern int getipv4sourcefilter (int __s, struct in_addr __interface_addr,
  505. struct in_addr __group, uint32_t *__fmode,
  506. uint32_t *__numsrc, struct in_addr *__slist)
  507. __THROW;
  508. /* Set IPv4 source filter. */
  509. extern int setipv4sourcefilter (int __s, struct in_addr __interface_addr,
  510. struct in_addr __group, uint32_t __fmode,
  511. uint32_t __numsrc,
  512. const struct in_addr *__slist)
  513. __THROW;
  514. /* Get source filter. */
  515. extern int getsourcefilter (int __s, uint32_t __interface_addr,
  516. const struct sockaddr *__group,
  517. socklen_t __grouplen, uint32_t *__fmode,
  518. uint32_t *__numsrc,
  519. struct sockaddr_storage *__slist) __THROW;
  520. /* Set source filter. */
  521. extern int setsourcefilter (int __s, uint32_t __interface_addr,
  522. const struct sockaddr *__group,
  523. socklen_t __grouplen, uint32_t __fmode,
  524. uint32_t __numsrc,
  525. const struct sockaddr_storage *__slist) __THROW;
  526. #endif /* use GNU */
  527. __END_DECLS
  528. #endif /* netinet/in.h */