in6.h 7.3 KB

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