in6.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * Types and definitions for AF_INET6
  3. * Linux INET6 implementation
  4. *
  5. * Authors:
  6. * Pedro Roque <roque@di.fc.ul.pt>
  7. *
  8. * Sources:
  9. * IPv6 Program Interfaces for BSD Systems
  10. * <draft-ietf-ipngwg-bsd-api-05.txt>
  11. *
  12. * Advanced Sockets API for IPv6
  13. * <draft-stevens-advanced-api-00.txt>
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License
  17. * as published by the Free Software Foundation; either version
  18. * 2 of the License, or (at your option) any later version.
  19. */
  20. #ifndef _LINUX_IN6_H
  21. #define _LINUX_IN6_H
  22. #include <linux/types.h>
  23. /*
  24. * IPv6 address structure
  25. */
  26. struct in6_addr
  27. {
  28. union
  29. {
  30. __u8 u6_addr8[16];
  31. __be16 u6_addr16[8];
  32. __be32 u6_addr32[4];
  33. } in6_u;
  34. #define s6_addr in6_u.u6_addr8
  35. #define s6_addr16 in6_u.u6_addr16
  36. #define s6_addr32 in6_u.u6_addr32
  37. };
  38. /* IPv6 Wildcard Address (::) and Loopback Address (::1) defined in RFC2553
  39. * NOTE: Be aware the IN6ADDR_* constants and in6addr_* externals are defined
  40. * in network byte order, not in host byte order as are the IPv4 equivalents
  41. */
  42. #ifdef __KERNEL__
  43. extern const struct in6_addr in6addr_any;
  44. #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }
  45. extern const struct in6_addr in6addr_loopback;
  46. #define IN6ADDR_LOOPBACK_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
  47. extern const struct in6_addr in6addr_linklocal_allnodes;
  48. #define IN6ADDR_LINKLOCAL_ALLNODES_INIT \
  49. { { { 0xff,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
  50. extern const struct in6_addr in6addr_linklocal_allrouters;
  51. #define IN6ADDR_LINKLOCAL_ALLROUTERS_INIT \
  52. { { { 0xff,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2 } } }
  53. #endif
  54. struct sockaddr_in6 {
  55. unsigned short int sin6_family; /* AF_INET6 */
  56. __be16 sin6_port; /* Transport layer port # */
  57. __be32 sin6_flowinfo; /* IPv6 flow information */
  58. struct in6_addr sin6_addr; /* IPv6 address */
  59. __u32 sin6_scope_id; /* scope id (new in RFC2553) */
  60. };
  61. struct ipv6_mreq {
  62. /* IPv6 multicast address of group */
  63. struct in6_addr ipv6mr_multiaddr;
  64. /* local IPv6 address of interface */
  65. int ipv6mr_ifindex;
  66. };
  67. #define ipv6mr_acaddr ipv6mr_multiaddr
  68. struct in6_flowlabel_req
  69. {
  70. struct in6_addr flr_dst;
  71. __be32 flr_label;
  72. __u8 flr_action;
  73. __u8 flr_share;
  74. __u16 flr_flags;
  75. __u16 flr_expires;
  76. __u16 flr_linger;
  77. __u32 __flr_pad;
  78. /* Options in format of IPV6_PKTOPTIONS */
  79. };
  80. #define IPV6_FL_A_GET 0
  81. #define IPV6_FL_A_PUT 1
  82. #define IPV6_FL_A_RENEW 2
  83. #define IPV6_FL_F_CREATE 1
  84. #define IPV6_FL_F_EXCL 2
  85. #define IPV6_FL_S_NONE 0
  86. #define IPV6_FL_S_EXCL 1
  87. #define IPV6_FL_S_PROCESS 2
  88. #define IPV6_FL_S_USER 3
  89. #define IPV6_FL_S_ANY 255
  90. /*
  91. * Bitmask constant declarations to help applications select out the
  92. * flow label and priority fields.
  93. *
  94. * Note that this are in host byte order while the flowinfo field of
  95. * sockaddr_in6 is in network byte order.
  96. */
  97. #define IPV6_FLOWINFO_FLOWLABEL 0x000fffff
  98. #define IPV6_FLOWINFO_PRIORITY 0x0ff00000
  99. /* These defintions are obsolete */
  100. #define IPV6_PRIORITY_UNCHARACTERIZED 0x0000
  101. #define IPV6_PRIORITY_FILLER 0x0100
  102. #define IPV6_PRIORITY_UNATTENDED 0x0200
  103. #define IPV6_PRIORITY_RESERVED1 0x0300
  104. #define IPV6_PRIORITY_BULK 0x0400
  105. #define IPV6_PRIORITY_RESERVED2 0x0500
  106. #define IPV6_PRIORITY_INTERACTIVE 0x0600
  107. #define IPV6_PRIORITY_CONTROL 0x0700
  108. #define IPV6_PRIORITY_8 0x0800
  109. #define IPV6_PRIORITY_9 0x0900
  110. #define IPV6_PRIORITY_10 0x0a00
  111. #define IPV6_PRIORITY_11 0x0b00
  112. #define IPV6_PRIORITY_12 0x0c00
  113. #define IPV6_PRIORITY_13 0x0d00
  114. #define IPV6_PRIORITY_14 0x0e00
  115. #define IPV6_PRIORITY_15 0x0f00
  116. /*
  117. * IPV6 extension headers
  118. */
  119. #define IPPROTO_HOPOPTS 0 /* IPv6 hop-by-hop options */
  120. #define IPPROTO_ROUTING 43 /* IPv6 routing header */
  121. #define IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
  122. #define IPPROTO_ICMPV6 58 /* ICMPv6 */
  123. #define IPPROTO_NONE 59 /* IPv6 no next header */
  124. #define IPPROTO_DSTOPTS 60 /* IPv6 destination options */
  125. #define IPPROTO_MH 135 /* IPv6 mobility header */
  126. /*
  127. * IPv6 TLV options.
  128. */
  129. #define IPV6_TLV_PAD0 0
  130. #define IPV6_TLV_PADN 1
  131. #define IPV6_TLV_ROUTERALERT 5
  132. #define IPV6_TLV_JUMBO 194
  133. #define IPV6_TLV_HAO 201 /* home address option */
  134. /*
  135. * IPV6 socket options
  136. */
  137. #define IPV6_ADDRFORM 1
  138. #define IPV6_2292PKTINFO 2
  139. #define IPV6_2292HOPOPTS 3
  140. #define IPV6_2292DSTOPTS 4
  141. #define IPV6_2292RTHDR 5
  142. #define IPV6_2292PKTOPTIONS 6
  143. #define IPV6_CHECKSUM 7
  144. #define IPV6_2292HOPLIMIT 8
  145. #define IPV6_NEXTHOP 9
  146. #define IPV6_AUTHHDR 10 /* obsolete */
  147. #define IPV6_FLOWINFO 11
  148. #define IPV6_UNICAST_HOPS 16
  149. #define IPV6_MULTICAST_IF 17
  150. #define IPV6_MULTICAST_HOPS 18
  151. #define IPV6_MULTICAST_LOOP 19
  152. #define IPV6_ADD_MEMBERSHIP 20
  153. #define IPV6_DROP_MEMBERSHIP 21
  154. #define IPV6_ROUTER_ALERT 22
  155. #define IPV6_MTU_DISCOVER 23
  156. #define IPV6_MTU 24
  157. #define IPV6_RECVERR 25
  158. #define IPV6_V6ONLY 26
  159. #define IPV6_JOIN_ANYCAST 27
  160. #define IPV6_LEAVE_ANYCAST 28
  161. /* IPV6_MTU_DISCOVER values */
  162. #define IPV6_PMTUDISC_DONT 0
  163. #define IPV6_PMTUDISC_WANT 1
  164. #define IPV6_PMTUDISC_DO 2
  165. #define IPV6_PMTUDISC_PROBE 3
  166. /* Flowlabel */
  167. #define IPV6_FLOWLABEL_MGR 32
  168. #define IPV6_FLOWINFO_SEND 33
  169. #define IPV6_IPSEC_POLICY 34
  170. #define IPV6_XFRM_POLICY 35
  171. /*
  172. * Multicast:
  173. * Following socket options are shared between IPv4 and IPv6.
  174. *
  175. * MCAST_JOIN_GROUP 42
  176. * MCAST_BLOCK_SOURCE 43
  177. * MCAST_UNBLOCK_SOURCE 44
  178. * MCAST_LEAVE_GROUP 45
  179. * MCAST_JOIN_SOURCE_GROUP 46
  180. * MCAST_LEAVE_SOURCE_GROUP 47
  181. * MCAST_MSFILTER 48
  182. */
  183. /*
  184. * Advanced API (RFC3542) (1)
  185. *
  186. * Note: IPV6_RECVRTHDRDSTOPTS does not exist. see net/ipv6/datagram.c.
  187. */
  188. #define IPV6_RECVPKTINFO 49
  189. #define IPV6_PKTINFO 50
  190. #define IPV6_RECVHOPLIMIT 51
  191. #define IPV6_HOPLIMIT 52
  192. #define IPV6_RECVHOPOPTS 53
  193. #define IPV6_HOPOPTS 54
  194. #define IPV6_RTHDRDSTOPTS 55
  195. #define IPV6_RECVRTHDR 56
  196. #define IPV6_RTHDR 57
  197. #define IPV6_RECVDSTOPTS 58
  198. #define IPV6_DSTOPTS 59
  199. #if 0 /* not yet */
  200. #define IPV6_RECVPATHMTU 60
  201. #define IPV6_PATHMTU 61
  202. #define IPV6_DONTFRAG 62
  203. #define IPV6_USE_MIN_MTU 63
  204. #endif
  205. /*
  206. * Netfilter (1)
  207. *
  208. * Following socket options are used in ip6_tables;
  209. * see include/linux/netfilter_ipv6/ip6_tables.h.
  210. *
  211. * IP6T_SO_SET_REPLACE / IP6T_SO_GET_INFO 64
  212. * IP6T_SO_SET_ADD_COUNTERS / IP6T_SO_GET_ENTRIES 65
  213. */
  214. /*
  215. * Advanced API (RFC3542) (2)
  216. */
  217. #define IPV6_RECVTCLASS 66
  218. #define IPV6_TCLASS 67
  219. /*
  220. * Netfilter (2)
  221. *
  222. * Following socket options are used in ip6_tables;
  223. * see include/linux/netfilter_ipv6/ip6_tables.h.
  224. *
  225. * IP6T_SO_GET_REVISION_MATCH 68
  226. * IP6T_SO_GET_REVISION_TARGET 69
  227. */
  228. /* RFC5014: Source address selection */
  229. #define IPV6_ADDR_PREFERENCES 72
  230. #define IPV6_PREFER_SRC_TMP 0x0001
  231. #define IPV6_PREFER_SRC_PUBLIC 0x0002
  232. #define IPV6_PREFER_SRC_PUBTMP_DEFAULT 0x0100
  233. #define IPV6_PREFER_SRC_COA 0x0004
  234. #define IPV6_PREFER_SRC_HOME 0x0400
  235. #define IPV6_PREFER_SRC_CGA 0x0008
  236. #define IPV6_PREFER_SRC_NONCGA 0x0800
  237. /*
  238. * Multicast Routing:
  239. * see include/linux/mroute6.h.
  240. *
  241. * MRT6_INIT 200
  242. * MRT6_DONE 201
  243. * MRT6_ADD_MIF 202
  244. * MRT6_DEL_MIF 203
  245. * MRT6_ADD_MFC 204
  246. * MRT6_DEL_MFC 205
  247. * MRT6_VERSION 206
  248. * MRT6_ASSERT 207
  249. * MRT6_PIM 208
  250. * (reserved) 209
  251. */
  252. #endif