Advertisement
Guest User

Untitled

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