in6.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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 _UAPI_LINUX_IN6_H
  21. #define _UAPI_LINUX_IN6_H
  22. #include <linux/types.h>
  23. /*
  24. * IPv6 address structure
  25. */
  26. struct in6_addr {
  27. union {
  28. __u8 u6_addr8[16];
  29. __be16 u6_addr16[8];
  30. __be32 u6_addr32[4];
  31. } in6_u;
  32. #define s6_addr in6_u.u6_addr8
  33. #define s6_addr16 in6_u.u6_addr16
  34. #define s6_addr32 in6_u.u6_addr32
  35. };
  36. struct sockaddr_in6 {
  37. unsigned short int sin6_family; /* AF_INET6 */
  38. __be16 sin6_port; /* Transport layer port # */
  39. __be32 sin6_flowinfo; /* IPv6 flow information */
  40. struct in6_addr sin6_addr; /* IPv6 address */
  41. __u32 sin6_scope_id; /* scope id (new in RFC2553) */
  42. };
  43. struct ipv6_mreq {
  44. /* IPv6 multicast address of group */
  45. struct in6_addr ipv6mr_multiaddr;
  46. /* local IPv6 address of interface */
  47. int ipv6mr_ifindex;
  48. };
  49. #define ipv6mr_acaddr ipv6mr_multiaddr
  50. struct in6_flowlabel_req {
  51. struct in6_addr flr_dst;
  52. __be32 flr_label;
  53. __u8 flr_action;
  54. __u8 flr_share;
  55. __u16 flr_flags;
  56. __u16 flr_expires;
  57. __u16 flr_linger;
  58. __u32 __flr_pad;
  59. /* Options in format of IPV6_PKTOPTIONS */
  60. };
  61. #define IPV6_FL_A_GET 0
  62. #define IPV6_FL_A_PUT 1
  63. #define IPV6_FL_A_RENEW 2
  64. #define IPV6_FL_F_CREATE 1
  65. #define IPV6_FL_F_EXCL 2
  66. #define IPV6_FL_S_NONE 0
  67. #define IPV6_FL_S_EXCL 1
  68. #define IPV6_FL_S_PROCESS 2
  69. #define IPV6_FL_S_USER 3
  70. #define IPV6_FL_S_ANY 255
  71. /*
  72. * Bitmask constant declarations to help applications select out the
  73. * flow label and priority fields.
  74. *
  75. * Note that this are in host byte order while the flowinfo field of
  76. * sockaddr_in6 is in network byte order.
  77. */
  78. #define IPV6_FLOWINFO_FLOWLABEL 0x000fffff
  79. #define IPV6_FLOWINFO_PRIORITY 0x0ff00000
  80. /* These definitions are obsolete */
  81. #define IPV6_PRIORITY_UNCHARACTERIZED 0x0000
  82. #define IPV6_PRIORITY_FILLER 0x0100
  83. #define IPV6_PRIORITY_UNATTENDED 0x0200
  84. #define IPV6_PRIORITY_RESERVED1 0x0300
  85. #define IPV6_PRIORITY_BULK 0x0400
  86. #define IPV6_PRIORITY_RESERVED2 0x0500
  87. #define IPV6_PRIORITY_INTERACTIVE 0x0600
  88. #define IPV6_PRIORITY_CONTROL 0x0700
  89. #define IPV6_PRIORITY_8 0x0800
  90. #define IPV6_PRIORITY_9 0x0900
  91. #define IPV6_PRIORITY_10 0x0a00
  92. #define IPV6_PRIORITY_11 0x0b00
  93. #define IPV6_PRIORITY_12 0x0c00
  94. #define IPV6_PRIORITY_13 0x0d00
  95. #define IPV6_PRIORITY_14 0x0e00
  96. #define IPV6_PRIORITY_15 0x0f00
  97. /*
  98. * IPV6 extension headers
  99. */
  100. #define IPPROTO_HOPOPTS 0 /* IPv6 hop-by-hop options */
  101. #define IPPROTO_ROUTING 43 /* IPv6 routing header */
  102. #define IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
  103. #define IPPROTO_ICMPV6 58 /* ICMPv6 */
  104. #define IPPROTO_NONE 59 /* IPv6 no next header */
  105. #define IPPROTO_DSTOPTS 60 /* IPv6 destination options */
  106. #define IPPROTO_MH 135 /* IPv6 mobility header */
  107. /*
  108. * IPv6 TLV options.
  109. */
  110. #define IPV6_TLV_PAD1 0
  111. #define IPV6_TLV_PADN 1
  112. #define IPV6_TLV_ROUTERALERT 5
  113. #define IPV6_TLV_JUMBO 194
  114. #define IPV6_TLV_HAO 201 /* home address option */
  115. /*
  116. * IPV6 socket options
  117. */
  118. #define IPV6_ADDRFORM 1
  119. #define IPV6_2292PKTINFO 2
  120. #define IPV6_2292HOPOPTS 3
  121. #define IPV6_2292DSTOPTS 4
  122. #define IPV6_2292RTHDR 5
  123. #define IPV6_2292PKTOPTIONS 6
  124. #define IPV6_CHECKSUM 7
  125. #define IPV6_2292HOPLIMIT 8
  126. #define IPV6_NEXTHOP 9
  127. #define IPV6_AUTHHDR 10 /* obsolete */
  128. #define IPV6_FLOWINFO 11
  129. #define IPV6_UNICAST_HOPS 16
  130. #define IPV6_MULTICAST_IF 17
  131. #define IPV6_MULTICAST_HOPS 18
  132. #define IPV6_MULTICAST_LOOP 19
  133. #define IPV6_ADD_MEMBERSHIP 20
  134. #define IPV6_DROP_MEMBERSHIP 21
  135. #define IPV6_ROUTER_ALERT 22
  136. #define IPV6_MTU_DISCOVER 23
  137. #define IPV6_MTU 24
  138. #define IPV6_RECVERR 25
  139. #define IPV6_V6ONLY 26
  140. #define IPV6_JOIN_ANYCAST 27
  141. #define IPV6_LEAVE_ANYCAST 28
  142. /* IPV6_MTU_DISCOVER values */
  143. #define IPV6_PMTUDISC_DONT 0
  144. #define IPV6_PMTUDISC_WANT 1
  145. #define IPV6_PMTUDISC_DO 2
  146. #define IPV6_PMTUDISC_PROBE 3
  147. /* Flowlabel */
  148. #define IPV6_FLOWLABEL_MGR 32
  149. #define IPV6_FLOWINFO_SEND 33
  150. #define IPV6_IPSEC_POLICY 34
  151. #define IPV6_XFRM_POLICY 35
  152. /*
  153. * Multicast:
  154. * Following socket options are shared between IPv4 and IPv6.
  155. *
  156. * MCAST_JOIN_GROUP 42
  157. * MCAST_BLOCK_SOURCE 43
  158. * MCAST_UNBLOCK_SOURCE 44
  159. * MCAST_LEAVE_GROUP 45
  160. * MCAST_JOIN_SOURCE_GROUP 46
  161. * MCAST_LEAVE_SOURCE_GROUP 47
  162. * MCAST_MSFILTER 48
  163. */
  164. /*
  165. * Advanced API (RFC3542) (1)
  166. *
  167. * Note: IPV6_RECVRTHDRDSTOPTS does not exist. see net/ipv6/datagram.c.
  168. */
  169. #define IPV6_RECVPKTINFO 49
  170. #define IPV6_PKTINFO 50
  171. #define IPV6_RECVHOPLIMIT 51
  172. #define IPV6_HOPLIMIT 52
  173. #define IPV6_RECVHOPOPTS 53
  174. #define IPV6_HOPOPTS 54
  175. #define IPV6_RTHDRDSTOPTS 55
  176. #define IPV6_RECVRTHDR 56
  177. #define IPV6_RTHDR 57
  178. #define IPV6_RECVDSTOPTS 58
  179. #define IPV6_DSTOPTS 59
  180. #define IPV6_RECVPATHMTU 60
  181. #define IPV6_PATHMTU 61
  182. #define IPV6_DONTFRAG 62
  183. #if 0 /* not yet */
  184. #define IPV6_USE_MIN_MTU 63
  185. #endif
  186. /*
  187. * Netfilter (1)
  188. *
  189. * Following socket options are used in ip6_tables;
  190. * see include/linux/netfilter_ipv6/ip6_tables.h.
  191. *
  192. * IP6T_SO_SET_REPLACE / IP6T_SO_GET_INFO 64
  193. * IP6T_SO_SET_ADD_COUNTERS / IP6T_SO_GET_ENTRIES 65
  194. */
  195. /*
  196. * Advanced API (RFC3542) (2)
  197. */
  198. #define IPV6_RECVTCLASS 66
  199. #define IPV6_TCLASS 67
  200. /*
  201. * Netfilter (2)
  202. *
  203. * Following socket options are used in ip6_tables;
  204. * see include/linux/netfilter_ipv6/ip6_tables.h.
  205. *
  206. * IP6T_SO_GET_REVISION_MATCH 68
  207. * IP6T_SO_GET_REVISION_TARGET 69
  208. * IP6T_SO_ORIGINAL_DST 80
  209. */
  210. /* RFC5014: Source address selection */
  211. #define IPV6_ADDR_PREFERENCES 72
  212. #define IPV6_PREFER_SRC_TMP 0x0001
  213. #define IPV6_PREFER_SRC_PUBLIC 0x0002
  214. #define IPV6_PREFER_SRC_PUBTMP_DEFAULT 0x0100
  215. #define IPV6_PREFER_SRC_COA 0x0004
  216. #define IPV6_PREFER_SRC_HOME 0x0400
  217. #define IPV6_PREFER_SRC_CGA 0x0008
  218. #define IPV6_PREFER_SRC_NONCGA 0x0800
  219. /* RFC5082: Generalized Ttl Security Mechanism */
  220. #define IPV6_MINHOPCOUNT 73
  221. #define IPV6_ORIGDSTADDR 74
  222. #define IPV6_RECVORIGDSTADDR IPV6_ORIGDSTADDR
  223. #define IPV6_TRANSPARENT 75
  224. #define IPV6_UNICAST_IF 76
  225. /*
  226. * Multicast Routing:
  227. * see include/uapi/linux/mroute6.h.
  228. *
  229. * MRT6_BASE 200
  230. * ...
  231. * MRT6_MAX
  232. */
  233. #endif /* _UAPI_LINUX_IN6_H */