utils.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * netlink/utils.h Utility Functions
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_UTILS_H_
  12. #define NETLINK_UTILS_H_
  13. #include <netlink/netlink.h>
  14. #include <netlink/list.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @name Probability Constants
  20. * @{
  21. */
  22. /**
  23. * Lower probability limit
  24. * @ingroup utils
  25. */
  26. #define NL_PROB_MIN 0x0
  27. /**
  28. * Upper probability limit nl_dump_type
  29. * @ingroup utils
  30. */
  31. #define NL_PROB_MAX 0xffffffff
  32. /** @} */
  33. enum {
  34. NL_BYTE_RATE,
  35. NL_BIT_RATE,
  36. };
  37. /* unit pretty-printing */
  38. extern double nl_cancel_down_bytes(unsigned long long, char **);
  39. extern double nl_cancel_down_bits(unsigned long long, char **);
  40. extern int nl_rate2str(unsigned long long, int, char *, size_t);
  41. extern double nl_cancel_down_us(uint32_t, char **);
  42. /* generic unit translations */
  43. extern long nl_size2int(const char *);
  44. extern char * nl_size2str(const size_t, char *, const size_t);
  45. extern long nl_prob2int(const char *);
  46. /* time translations */
  47. extern int nl_get_user_hz(void);
  48. extern int nl_get_psched_hz(void);
  49. extern uint32_t nl_us2ticks(uint32_t);
  50. extern uint32_t nl_ticks2us(uint32_t);
  51. extern int nl_str2msec(const char *, uint64_t *);
  52. extern char * nl_msec2str(uint64_t, char *, size_t);
  53. /* link layer protocol translations */
  54. extern char * nl_llproto2str(int, char *, size_t);
  55. extern int nl_str2llproto(const char *);
  56. /* ethernet protocol translations */
  57. extern char * nl_ether_proto2str(int, char *, size_t);
  58. extern int nl_str2ether_proto(const char *);
  59. /* IP protocol translations */
  60. extern char * nl_ip_proto2str(int, char *, size_t);
  61. extern int nl_str2ip_proto(const char *);
  62. /* Dumping helpers */
  63. extern void nl_new_line(struct nl_dump_params *);
  64. extern void nl_dump(struct nl_dump_params *, const char *, ...);
  65. extern void nl_dump_line(struct nl_dump_params *, const char *, ...);
  66. enum {
  67. NL_CAPABILITY_NONE,
  68. /**
  69. * rtnl_route_build_msg() no longer guesses the route scope
  70. * if explicitly set to RT_SCOPE_NOWHERE.
  71. * @ingroup utils
  72. */
  73. NL_CAPABILITY_ROUTE_BUILD_MSG_SET_SCOPE = 1,
  74. #define NL_CAPABILITY_ROUTE_BUILD_MSG_SET_SCOPE NL_CAPABILITY_ROUTE_BUILD_MSG_SET_SCOPE
  75. /**
  76. * rtnl_link_veth_get_peer() now returns a reference that is owned by the
  77. * caller and must be released by the caller with rtnl_link_put().
  78. */
  79. NL_CAPABILITY_ROUTE_LINK_VETH_GET_PEER_OWN_REFERENCE = 2,
  80. #define NL_CAPABILITY_ROUTE_LINK_VETH_GET_PEER_OWN_REFERENCE NL_CAPABILITY_ROUTE_LINK_VETH_GET_PEER_OWN_REFERENCE
  81. /**
  82. * rtnl_u32_add_action() and rtnl_basic_add_action() now grab a reference to act
  83. * caller are free to release its own
  84. */
  85. NL_CAPABILITY_ROUTE_LINK_CLS_ADD_ACT_OWN_REFERENCE = 3,
  86. #define NL_CAPABILITY_ROUTE_LINK_CLS_ADD_ACT_OWN_REFERENCE NL_CAPABILITY_ROUTE_LINK_CLS_ADD_ACT_OWN_REFERENCE
  87. /**
  88. * Indicate that the local port is unspecified until the user accesses
  89. * it (via nl_socket_get_local_port()) or until nl_connect(). More importantly,
  90. * if the port is left unspecified, nl_connect() will retry generating another
  91. * port when bind() fails with ADDRINUSE.
  92. */
  93. NL_CAPABILITY_NL_CONNECT_RETRY_GENERATE_PORT_ON_ADDRINUSE = 4,
  94. #define NL_CAPABILITY_NL_CONNECT_RETRY_GENERATE_PORT_ON_ADDRINUSE NL_CAPABILITY_NL_CONNECT_RETRY_GENERATE_PORT_ON_ADDRINUSE
  95. /**
  96. * Indicate that rtnl_link_get_kernel() fails with -NLE_OPNOTSUPP in case
  97. * of older kernals not supporting lookup by ifname. This changes behavior
  98. * from returning -NLE_INVAL to return -NLE_OPNOTSUPP.
  99. */
  100. NL_CAPABILITY_ROUTE_LINK_GET_KERNEL_FAIL_OPNOTSUPP = 5,
  101. #define NL_CAPABILITY_ROUTE_LINK_GET_KERNEL_FAIL_OPNOTSUPP NL_CAPABILITY_ROUTE_LINK_GET_KERNEL_FAIL_OPNOTSUPP
  102. /**
  103. * Also consider the a_cacheinfo field (ADDR_ATTR_CACHEINFO) that contains the
  104. * address timestamps and expiry when comparing struct rtnl_addr objects with
  105. * nl_object_diff().
  106. */
  107. NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO = 6,
  108. #define NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO
  109. /**
  110. * The library version is libnl3 3.2.26 or newer. This capability should never be backported.
  111. */
  112. NL_CAPABILITY_VERSION_3_2_26 = 7,
  113. #define NL_CAPABILITY_VERSION_3_2_26 NL_CAPABILITY_VERSION_3_2_26
  114. /**
  115. * nl_recv() fails with NLE_MSG_TRUNC if a message got truncated
  116. * with NL_MSG_PEEK disabled. Previously, the failed message was wrongly
  117. * discarded and the next message received.
  118. */
  119. NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK = 8,
  120. #define NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK
  121. /**
  122. * rtnl_link_build_change_request() and rtnl_link_change() would set ifi.ifi_flags but leave
  123. * ifi.ifi_change at zero. This was later fixed to set ifi.ifi_change to the flags that are actually
  124. * set in changes.
  125. */
  126. NL_CAPABILITY_LINK_BUILD_CHANGE_REQUEST_SET_CHANGE = 9,
  127. #define NL_CAPABILITY_LINK_BUILD_CHANGE_REQUEST_SET_CHANGE NL_CAPABILITY_LINK_BUILD_CHANGE_REQUEST_SET_CHANGE
  128. /**
  129. * Between 3.2.14 (64fcb47a36ec12d7e7f00605f6a8952ce985dd08) and 3.2.22 (8571f58f23763d8db7365d02c9b27832ad3d7005),
  130. * rtnl_neigh_get() behaved differently and only returned objects with family AF_UNSPEC.
  131. * This capability indicates, that the function was fixed. The absense of the capability,
  132. * doesn't indicate however which behavior the function will have. So beware. */
  133. NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX = 10,
  134. #define NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX
  135. /**
  136. * The library version is libnl3 3.2.27 or newer. This capability should never be backported.
  137. */
  138. NL_CAPABILITY_VERSION_3_2_27 = 11,
  139. #define NL_CAPABILITY_VERSION_3_2_27 NL_CAPABILITY_VERSION_3_2_27
  140. /**
  141. * Properly serialize vlan protocol IFLA_VLAN_PROTOCOL.
  142. */
  143. NL_CAPABILITY_RTNL_LINK_VLAN_PROTOCOL_SERIALZE = 12,
  144. #define NL_CAPABILITY_RTNL_LINK_VLAN_PROTOCOL_SERIALZE NL_CAPABILITY_RTNL_LINK_VLAN_PROTOCOL_SERIALZE
  145. /**
  146. * Properly read gre REMOTE port.
  147. */
  148. NL_CAPABILITY_RTNL_LINK_PARSE_GRE_REMOTE = 13,
  149. #define NL_CAPABILITY_RTNL_LINK_PARSE_GRE_REMOTE NL_CAPABILITY_RTNL_LINK_PARSE_GRE_REMOTE
  150. /**
  151. * Don't skip over vlan ingress-map entries with "to" field zero when serializing
  152. * a netlink message. Previously such entires would be ignored which inhibits the
  153. * user from clearing ingress map entries.
  154. */
  155. NL_CAPABILITY_RTNL_LINK_VLAN_INGRESS_MAP_CLEAR = 14,
  156. #define NL_CAPABILITY_RTNL_LINK_VLAN_INGRESS_MAP_CLEAR NL_CAPABILITY_RTNL_LINK_VLAN_INGRESS_MAP_CLEAR
  157. /**
  158. * Consider vxlan link info for nl_object_diff().
  159. */
  160. NL_CAPABILITY_RTNL_LINK_VXLAN_IO_COMPARE = 15,
  161. #define NL_CAPABILITY_RTNL_LINK_VXLAN_IO_COMPARE NL_CAPABILITY_RTNL_LINK_VXLAN_IO_COMPARE
  162. /**
  163. * Support 64 bit attributes for nl_object_diff().
  164. */
  165. NL_CAPABILITY_NL_OBJECT_DIFF64 = 16,
  166. #define NL_CAPABILITY_NL_OBJECT_DIFF64 NL_CAPABILITY_NL_OBJECT_DIFF64
  167. /**
  168. * Support omitting @key argument to xfrmnl_sa_get_*_params() to check
  169. * for required buffer size for key.
  170. */
  171. NL_CAPABILITY_XFRM_SA_KEY_SIZE = 17,
  172. #define NL_CAPABILITY_XFRM_SA_KEY_SIZE NL_CAPABILITY_XFRM_SA_KEY_SIZE
  173. /**
  174. * Properly handle nl_object_identity() for AF_INET and AF_INET6 addresses
  175. * and properly handle the peer/IFA_ADDRESS for IPv4 addresses.
  176. */
  177. NL_CAPABILITY_RTNL_ADDR_PEER_FIX = 18,
  178. #define NL_CAPABILITY_RTNL_ADDR_PEER_FIX NL_CAPABILITY_RTNL_ADDR_PEER_FIX
  179. /**
  180. * The library version is libnl3 3.2.28 or newer. This capability should never be backported.
  181. */
  182. NL_CAPABILITY_VERSION_3_2_28 = 19,
  183. #define NL_CAPABILITY_VERSION_3_2_28 NL_CAPABILITY_VERSION_3_2_28
  184. __NL_CAPABILITY_MAX,
  185. NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1),
  186. #define NL_CAPABILITY_MAX NL_CAPABILITY_MAX
  187. /**
  188. * The range 0x7000 to 0x7FFF is reserved for private capabilities. Upstream libnl3 will
  189. * not register capabilities in this range. However, instead of adding private capabilities,
  190. * better register their number with upstream libnl3. */
  191. #define NL_CAPABILITY_IS_USER_RESERVED(cap) ( ((cap) & ~0x0FFF) == 0x7000 )
  192. };
  193. int nl_has_capability (int capability);
  194. #ifdef __cplusplus
  195. }
  196. #endif
  197. #endif