in.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* Copyright (C) 1991-2016 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. <http://www.gnu.org/licenses/>. */
  14. /* Linux version. */
  15. #ifndef _NETINET_IN_H
  16. # error "Never use <bits/in.h> directly; include <netinet/in.h> instead."
  17. #endif
  18. /* If the application has already included linux/in6.h from a linux-based
  19. kernel then we will not define the IPv6 IPPROTO_* defines, in6_addr (nor the
  20. defines), sockaddr_in6, or ipv6_mreq. Same for in6_ptkinfo or ip6_mtuinfo
  21. in linux/ipv6.h. The ABI used by the linux-kernel and glibc match exactly.
  22. Neither the linux kernel nor glibc should break this ABI without coordination. */
  23. #if defined _UAPI_LINUX_IN6_H || defined _UAPI_IPV6_H
  24. /* This is not quite the same API since the kernel always defines s6_addr16 and
  25. s6_addr32. This is not a violation of POSIX since POSIX says "at least the
  26. following member" and that holds true. */
  27. # define __USE_KERNEL_IPV6_DEFS
  28. #endif
  29. /* Options for use with `getsockopt' and `setsockopt' at the IP level.
  30. The first word in the comment at the right is the data type used;
  31. "bool" means a boolean value stored in an `int'. */
  32. #define IP_OPTIONS 4 /* ip_opts; IP per-packet options. */
  33. #define IP_HDRINCL 3 /* int; Header is included with data. */
  34. #define IP_TOS 1 /* int; IP type of service and precedence. */
  35. #define IP_TTL 2 /* int; IP time to live. */
  36. #define IP_RECVOPTS 6 /* bool; Receive all IP options w/datagram. */
  37. /* For BSD compatibility. */
  38. #define IP_RECVRETOPTS IP_RETOPTS /* bool; Receive IP options for response. */
  39. #define IP_RETOPTS 7 /* ip_opts; Set/get IP per-packet options. */
  40. #define IP_MULTICAST_IF 32 /* in_addr; set/get IP multicast i/f */
  41. #define IP_MULTICAST_TTL 33 /* u_char; set/get IP multicast ttl */
  42. #define IP_MULTICAST_LOOP 34 /* i_char; set/get IP multicast loopback */
  43. #define IP_ADD_MEMBERSHIP 35 /* ip_mreq; add an IP group membership */
  44. #define IP_DROP_MEMBERSHIP 36 /* ip_mreq; drop an IP group membership */
  45. #define IP_UNBLOCK_SOURCE 37 /* ip_mreq_source: unblock data from source */
  46. #define IP_BLOCK_SOURCE 38 /* ip_mreq_source: block data from source */
  47. #define IP_ADD_SOURCE_MEMBERSHIP 39 /* ip_mreq_source: join source group */
  48. #define IP_DROP_SOURCE_MEMBERSHIP 40 /* ip_mreq_source: leave source group */
  49. #define IP_MSFILTER 41
  50. #ifdef __USE_MISC
  51. # define MCAST_JOIN_GROUP 42 /* group_req: join any-source group */
  52. # define MCAST_BLOCK_SOURCE 43 /* group_source_req: block from given group */
  53. # define MCAST_UNBLOCK_SOURCE 44 /* group_source_req: unblock from given group*/
  54. # define MCAST_LEAVE_GROUP 45 /* group_req: leave any-source group */
  55. # define MCAST_JOIN_SOURCE_GROUP 46 /* group_source_req: join source-spec gr */
  56. # define MCAST_LEAVE_SOURCE_GROUP 47 /* group_source_req: leave source-spec gr*/
  57. # define MCAST_MSFILTER 48
  58. # define IP_MULTICAST_ALL 49
  59. # define IP_UNICAST_IF 50
  60. # define MCAST_EXCLUDE 0
  61. # define MCAST_INCLUDE 1
  62. #endif
  63. #define IP_ROUTER_ALERT 5 /* bool */
  64. #define IP_PKTINFO 8 /* bool */
  65. #define IP_PKTOPTIONS 9
  66. #define IP_PMTUDISC 10 /* obsolete name? */
  67. #define IP_MTU_DISCOVER 10 /* int; see below */
  68. #define IP_RECVERR 11 /* bool */
  69. #define IP_RECVTTL 12 /* bool */
  70. #define IP_RECVTOS 13 /* bool */
  71. #define IP_MTU 14 /* int */
  72. #define IP_FREEBIND 15
  73. #define IP_IPSEC_POLICY 16
  74. #define IP_XFRM_POLICY 17
  75. #define IP_PASSSEC 18
  76. #define IP_TRANSPARENT 19
  77. #define IP_MULTICAST_ALL 49 /* bool */
  78. /* TProxy original addresses */
  79. #define IP_ORIGDSTADDR 20
  80. #define IP_RECVORIGDSTADDR IP_ORIGDSTADDR
  81. #define IP_MINTTL 21
  82. #define IP_NODEFRAG 22
  83. #define IP_CHECKSUM 23
  84. #define IP_BIND_ADDRESS_NO_PORT 24
  85. /* IP_MTU_DISCOVER arguments. */
  86. #define IP_PMTUDISC_DONT 0 /* Never send DF frames. */
  87. #define IP_PMTUDISC_WANT 1 /* Use per route hints. */
  88. #define IP_PMTUDISC_DO 2 /* Always DF. */
  89. #define IP_PMTUDISC_PROBE 3 /* Ignore dst pmtu. */
  90. /* Always use interface mtu (ignores dst pmtu) but don't set DF flag.
  91. Also incoming ICMP frag_needed notifications will be ignored on
  92. this socket to prevent accepting spoofed ones. */
  93. #define IP_PMTUDISC_INTERFACE 4
  94. /* Like IP_PMTUDISC_INTERFACE but allow packets to be fragmented. */
  95. #define IP_PMTUDISC_OMIT 5
  96. #define IP_MULTICAST_IF 32
  97. #define IP_MULTICAST_TTL 33
  98. #define IP_MULTICAST_LOOP 34
  99. #define IP_ADD_MEMBERSHIP 35
  100. #define IP_DROP_MEMBERSHIP 36
  101. #define IP_UNBLOCK_SOURCE 37
  102. #define IP_BLOCK_SOURCE 38
  103. #define IP_ADD_SOURCE_MEMBERSHIP 39
  104. #define IP_DROP_SOURCE_MEMBERSHIP 40
  105. #define IP_MSFILTER 41
  106. #define IP_MULTICAST_ALL 49
  107. #define IP_UNICAST_IF 50
  108. /* To select the IP level. */
  109. #define SOL_IP 0
  110. #define IP_DEFAULT_MULTICAST_TTL 1
  111. #define IP_DEFAULT_MULTICAST_LOOP 1
  112. #define IP_MAX_MEMBERSHIPS 20
  113. #ifdef __USE_MISC
  114. /* Structure used to describe IP options for IP_OPTIONS and IP_RETOPTS.
  115. The `ip_dst' field is used for the first-hop gateway when using a
  116. source route (this gets put into the header proper). */
  117. struct ip_opts
  118. {
  119. struct in_addr ip_dst; /* First hop; zero without source route. */
  120. char ip_opts[40]; /* Actually variable in size. */
  121. };
  122. /* Like `struct ip_mreq' but including interface specification by index. */
  123. struct ip_mreqn
  124. {
  125. struct in_addr imr_multiaddr; /* IP multicast address of group */
  126. struct in_addr imr_address; /* local IP address of interface */
  127. int imr_ifindex; /* Interface index */
  128. };
  129. /* Structure used for IP_PKTINFO. */
  130. struct in_pktinfo
  131. {
  132. int ipi_ifindex; /* Interface index */
  133. struct in_addr ipi_spec_dst; /* Routing destination address */
  134. struct in_addr ipi_addr; /* Header destination address */
  135. };
  136. #endif
  137. /* Options for use with `getsockopt' and `setsockopt' at the IPv6 level.
  138. The first word in the comment at the right is the data type used;
  139. "bool" means a boolean value stored in an `int'. */
  140. #define IPV6_ADDRFORM 1
  141. #define IPV6_2292PKTINFO 2
  142. #define IPV6_2292HOPOPTS 3
  143. #define IPV6_2292DSTOPTS 4
  144. #define IPV6_2292RTHDR 5
  145. #define IPV6_2292PKTOPTIONS 6
  146. #define IPV6_CHECKSUM 7
  147. #define IPV6_2292HOPLIMIT 8
  148. #define SCM_SRCRT IPV6_RXSRCRT
  149. #define IPV6_NEXTHOP 9
  150. #define IPV6_AUTHHDR 10
  151. #define IPV6_UNICAST_HOPS 16
  152. #define IPV6_MULTICAST_IF 17
  153. #define IPV6_MULTICAST_HOPS 18
  154. #define IPV6_MULTICAST_LOOP 19
  155. #define IPV6_JOIN_GROUP 20
  156. #define IPV6_LEAVE_GROUP 21
  157. #define IPV6_ROUTER_ALERT 22
  158. #define IPV6_MTU_DISCOVER 23
  159. #define IPV6_MTU 24
  160. #define IPV6_RECVERR 25
  161. #define IPV6_V6ONLY 26
  162. #define IPV6_JOIN_ANYCAST 27
  163. #define IPV6_LEAVE_ANYCAST 28
  164. #define IPV6_IPSEC_POLICY 34
  165. #define IPV6_XFRM_POLICY 35
  166. /* Advanced API (RFC3542) (1). */
  167. #define IPV6_RECVPKTINFO 49
  168. #define IPV6_PKTINFO 50
  169. #define IPV6_RECVHOPLIMIT 51
  170. #define IPV6_HOPLIMIT 52
  171. #define IPV6_RECVHOPOPTS 53
  172. #define IPV6_HOPOPTS 54
  173. #define IPV6_RTHDRDSTOPTS 55
  174. #define IPV6_RECVRTHDR 56
  175. #define IPV6_RTHDR 57
  176. #define IPV6_RECVDSTOPTS 58
  177. #define IPV6_DSTOPTS 59
  178. #define IPV6_RECVPATHMTU 60
  179. #define IPV6_PATHMTU 61
  180. #define IPV6_DONTFRAG 62
  181. /* Advanced API (RFC3542) (2). */
  182. #define IPV6_RECVTCLASS 66
  183. #define IPV6_TCLASS 67
  184. /* Obsolete synonyms for the above. */
  185. #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
  186. #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
  187. #define IPV6_RXHOPOPTS IPV6_HOPOPTS
  188. #define IPV6_RXDSTOPTS IPV6_DSTOPTS
  189. /* IPV6_MTU_DISCOVER values. */
  190. #define IPV6_PMTUDISC_DONT 0 /* Never send DF frames. */
  191. #define IPV6_PMTUDISC_WANT 1 /* Use per route hints. */
  192. #define IPV6_PMTUDISC_DO 2 /* Always DF. */
  193. #define IPV6_PMTUDISC_PROBE 3 /* Ignore dst pmtu. */
  194. #define IPV6_PMTUDISC_INTERFACE 4 /* See IP_PMTUDISC_INTERFACE. */
  195. #define IPV6_PMTUDISC_OMIT 5 /* See IP_PMTUDISC_OMIT. */
  196. /* Socket level values for IPv6. */
  197. #define SOL_IPV6 41
  198. #define SOL_ICMPV6 58
  199. /* Routing header options for IPv6. */
  200. #define IPV6_RTHDR_LOOSE 0 /* Hop doesn't need to be neighbour. */
  201. #define IPV6_RTHDR_STRICT 1 /* Hop must be a neighbour. */
  202. #define IPV6_RTHDR_TYPE_0 0 /* IPv6 Routing header type 0. */