wireguard.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR MIT */
  2. /*
  3. * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
  4. *
  5. * Documentation
  6. * =============
  7. *
  8. * The below enums and macros are for interfacing with WireGuard, using generic
  9. * netlink, with family WG_GENL_NAME and version WG_GENL_VERSION. It defines two
  10. * methods: get and set. Note that while they share many common attributes,
  11. * these two functions actually accept a slightly different set of inputs and
  12. * outputs.
  13. *
  14. * WG_CMD_GET_DEVICE
  15. * -----------------
  16. *
  17. * May only be called via NLM_F_REQUEST | NLM_F_DUMP. The command should contain
  18. * one but not both of:
  19. *
  20. * WGDEVICE_A_IFINDEX: NLA_U32
  21. * WGDEVICE_A_IFNAME: NLA_NUL_STRING, maxlen IFNAMSIZ - 1
  22. *
  23. * The kernel will then return several messages (NLM_F_MULTI) containing the
  24. * following tree of nested items:
  25. *
  26. * WGDEVICE_A_IFINDEX: NLA_U32
  27. * WGDEVICE_A_IFNAME: NLA_NUL_STRING, maxlen IFNAMSIZ - 1
  28. * WGDEVICE_A_PRIVATE_KEY: NLA_EXACT_LEN, len WG_KEY_LEN
  29. * WGDEVICE_A_PUBLIC_KEY: NLA_EXACT_LEN, len WG_KEY_LEN
  30. * WGDEVICE_A_LISTEN_PORT: NLA_U16
  31. * WGDEVICE_A_FWMARK: NLA_U32
  32. * WGDEVICE_A_PEERS: NLA_NESTED
  33. * 0: NLA_NESTED
  34. * WGPEER_A_PUBLIC_KEY: NLA_EXACT_LEN, len WG_KEY_LEN
  35. * WGPEER_A_PRESHARED_KEY: NLA_EXACT_LEN, len WG_KEY_LEN
  36. * WGPEER_A_ENDPOINT: NLA_MIN_LEN(struct sockaddr), struct sockaddr_in or struct sockaddr_in6
  37. * WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL: NLA_U16
  38. * WGPEER_A_LAST_HANDSHAKE_TIME: NLA_EXACT_LEN, struct __kernel_timespec
  39. * WGPEER_A_RX_BYTES: NLA_U64
  40. * WGPEER_A_TX_BYTES: NLA_U64
  41. * WGPEER_A_ALLOWEDIPS: NLA_NESTED
  42. * 0: NLA_NESTED
  43. * WGALLOWEDIP_A_FAMILY: NLA_U16
  44. * WGALLOWEDIP_A_IPADDR: NLA_MIN_LEN(struct in_addr), struct in_addr or struct in6_addr
  45. * WGALLOWEDIP_A_CIDR_MASK: NLA_U8
  46. * 0: NLA_NESTED
  47. * ...
  48. * 0: NLA_NESTED
  49. * ...
  50. * ...
  51. * WGPEER_A_PROTOCOL_VERSION: NLA_U32
  52. * 0: NLA_NESTED
  53. * ...
  54. * ...
  55. *
  56. * It is possible that all of the allowed IPs of a single peer will not
  57. * fit within a single netlink message. In that case, the same peer will
  58. * be written in the following message, except it will only contain
  59. * WGPEER_A_PUBLIC_KEY and WGPEER_A_ALLOWEDIPS. This may occur several
  60. * times in a row for the same peer. It is then up to the receiver to
  61. * coalesce adjacent peers. Likewise, it is possible that all peers will
  62. * not fit within a single message. So, subsequent peers will be sent
  63. * in following messages, except those will only contain WGDEVICE_A_IFNAME
  64. * and WGDEVICE_A_PEERS. It is then up to the receiver to coalesce these
  65. * messages to form the complete list of peers.
  66. *
  67. * Since this is an NLA_F_DUMP command, the final message will always be
  68. * NLMSG_DONE, even if an error occurs. However, this NLMSG_DONE message
  69. * contains an integer error code. It is either zero or a negative error
  70. * code corresponding to the errno.
  71. *
  72. * WG_CMD_SET_DEVICE
  73. * -----------------
  74. *
  75. * May only be called via NLM_F_REQUEST. The command should contain the
  76. * following tree of nested items, containing one but not both of
  77. * WGDEVICE_A_IFINDEX and WGDEVICE_A_IFNAME:
  78. *
  79. * WGDEVICE_A_IFINDEX: NLA_U32
  80. * WGDEVICE_A_IFNAME: NLA_NUL_STRING, maxlen IFNAMSIZ - 1
  81. * WGDEVICE_A_FLAGS: NLA_U32, 0 or WGDEVICE_F_REPLACE_PEERS if all current
  82. * peers should be removed prior to adding the list below.
  83. * WGDEVICE_A_PRIVATE_KEY: len WG_KEY_LEN, all zeros to remove
  84. * WGDEVICE_A_LISTEN_PORT: NLA_U16, 0 to choose randomly
  85. * WGDEVICE_A_FWMARK: NLA_U32, 0 to disable
  86. * WGDEVICE_A_PEERS: NLA_NESTED
  87. * 0: NLA_NESTED
  88. * WGPEER_A_PUBLIC_KEY: len WG_KEY_LEN
  89. * WGPEER_A_FLAGS: NLA_U32, 0 and/or WGPEER_F_REMOVE_ME if the
  90. * specified peer should not exist at the end of the
  91. * operation, rather than added/updated and/or
  92. * WGPEER_F_REPLACE_ALLOWEDIPS if all current allowed
  93. * IPs of this peer should be removed prior to adding
  94. * the list below and/or WGPEER_F_UPDATE_ONLY if the
  95. * peer should only be set if it already exists.
  96. * WGPEER_A_PRESHARED_KEY: len WG_KEY_LEN, all zeros to remove
  97. * WGPEER_A_ENDPOINT: struct sockaddr_in or struct sockaddr_in6
  98. * WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL: NLA_U16, 0 to disable
  99. * WGPEER_A_ALLOWEDIPS: NLA_NESTED
  100. * 0: NLA_NESTED
  101. * WGALLOWEDIP_A_FAMILY: NLA_U16
  102. * WGALLOWEDIP_A_IPADDR: struct in_addr or struct in6_addr
  103. * WGALLOWEDIP_A_CIDR_MASK: NLA_U8
  104. * 0: NLA_NESTED
  105. * ...
  106. * 0: NLA_NESTED
  107. * ...
  108. * ...
  109. * WGPEER_A_PROTOCOL_VERSION: NLA_U32, should not be set or used at
  110. * all by most users of this API, as the
  111. * most recent protocol will be used when
  112. * this is unset. Otherwise, must be set
  113. * to 1.
  114. * 0: NLA_NESTED
  115. * ...
  116. * ...
  117. *
  118. * It is possible that the amount of configuration data exceeds that of
  119. * the maximum message length accepted by the kernel. In that case, several
  120. * messages should be sent one after another, with each successive one
  121. * filling in information not contained in the prior. Note that if
  122. * WGDEVICE_F_REPLACE_PEERS is specified in the first message, it probably
  123. * should not be specified in fragments that come after, so that the list
  124. * of peers is only cleared the first time but appended after. Likewise for
  125. * peers, if WGPEER_F_REPLACE_ALLOWEDIPS is specified in the first message
  126. * of a peer, it likely should not be specified in subsequent fragments.
  127. *
  128. * If an error occurs, NLMSG_ERROR will reply containing an errno.
  129. */
  130. #ifndef _WG_UAPI_WIREGUARD_H
  131. #define _WG_UAPI_WIREGUARD_H
  132. #define WG_GENL_NAME "wireguard"
  133. #define WG_GENL_VERSION 1
  134. #define WG_KEY_LEN 32
  135. enum wg_cmd {
  136. WG_CMD_GET_DEVICE,
  137. WG_CMD_SET_DEVICE,
  138. __WG_CMD_MAX
  139. };
  140. #define WG_CMD_MAX (__WG_CMD_MAX - 1)
  141. enum wgdevice_flag {
  142. WGDEVICE_F_REPLACE_PEERS = 1U << 0,
  143. __WGDEVICE_F_ALL = WGDEVICE_F_REPLACE_PEERS
  144. };
  145. enum wgdevice_attribute {
  146. WGDEVICE_A_UNSPEC,
  147. WGDEVICE_A_IFINDEX,
  148. WGDEVICE_A_IFNAME,
  149. WGDEVICE_A_PRIVATE_KEY,
  150. WGDEVICE_A_PUBLIC_KEY,
  151. WGDEVICE_A_FLAGS,
  152. WGDEVICE_A_LISTEN_PORT,
  153. WGDEVICE_A_FWMARK,
  154. WGDEVICE_A_PEERS,
  155. __WGDEVICE_A_LAST
  156. };
  157. #define WGDEVICE_A_MAX (__WGDEVICE_A_LAST - 1)
  158. enum wgpeer_flag {
  159. WGPEER_F_REMOVE_ME = 1U << 0,
  160. WGPEER_F_REPLACE_ALLOWEDIPS = 1U << 1,
  161. WGPEER_F_UPDATE_ONLY = 1U << 2,
  162. __WGPEER_F_ALL = WGPEER_F_REMOVE_ME | WGPEER_F_REPLACE_ALLOWEDIPS |
  163. WGPEER_F_UPDATE_ONLY
  164. };
  165. enum wgpeer_attribute {
  166. WGPEER_A_UNSPEC,
  167. WGPEER_A_PUBLIC_KEY,
  168. WGPEER_A_PRESHARED_KEY,
  169. WGPEER_A_FLAGS,
  170. WGPEER_A_ENDPOINT,
  171. WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
  172. WGPEER_A_LAST_HANDSHAKE_TIME,
  173. WGPEER_A_RX_BYTES,
  174. WGPEER_A_TX_BYTES,
  175. WGPEER_A_ALLOWEDIPS,
  176. WGPEER_A_PROTOCOL_VERSION,
  177. __WGPEER_A_LAST
  178. };
  179. #define WGPEER_A_MAX (__WGPEER_A_LAST - 1)
  180. enum wgallowedip_attribute {
  181. WGALLOWEDIP_A_UNSPEC,
  182. WGALLOWEDIP_A_FAMILY,
  183. WGALLOWEDIP_A_IPADDR,
  184. WGALLOWEDIP_A_CIDR_MASK,
  185. __WGALLOWEDIP_A_LAST
  186. };
  187. #define WGALLOWEDIP_A_MAX (__WGALLOWEDIP_A_LAST - 1)
  188. #endif /* _WG_UAPI_WIREGUARD_H */