attr.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. /*
  2. * netlink/attr.h Netlink Attributes
  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-2013 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_ATTR_H_
  12. #define NETLINK_ATTR_H_
  13. #include <netlink/netlink.h>
  14. #include <netlink/object.h>
  15. #include <netlink/addr.h>
  16. #include <netlink/data.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. struct nl_msg;
  21. /**
  22. * @name Basic Attribute Data Types
  23. * @{
  24. */
  25. /**
  26. * @ingroup attr
  27. * Basic attribute data types
  28. *
  29. * See section @core_doc{core_attr_parse,Attribute Parsing} for more details.
  30. */
  31. enum {
  32. NLA_UNSPEC, /**< Unspecified type, binary data chunk */
  33. NLA_U8, /**< 8 bit integer */
  34. NLA_U16, /**< 16 bit integer */
  35. NLA_U32, /**< 32 bit integer */
  36. NLA_U64, /**< 64 bit integer */
  37. NLA_STRING, /**< NUL terminated character string */
  38. NLA_FLAG, /**< Flag */
  39. NLA_MSECS, /**< Micro seconds (64bit) */
  40. NLA_NESTED, /**< Nested attributes */
  41. NLA_NESTED_COMPAT,
  42. NLA_NUL_STRING,
  43. NLA_BINARY,
  44. NLA_S8,
  45. NLA_S16,
  46. NLA_S32,
  47. NLA_S64,
  48. __NLA_TYPE_MAX,
  49. };
  50. #define NLA_TYPE_MAX (__NLA_TYPE_MAX - 1)
  51. /** @} */
  52. /**
  53. * @ingroup attr
  54. * Attribute validation policy.
  55. *
  56. * See section @core_doc{core_attr_parse,Attribute Parsing} for more details.
  57. */
  58. struct nla_policy {
  59. /** Type of attribute or NLA_UNSPEC */
  60. uint16_t type;
  61. /** Minimal length of payload required */
  62. uint16_t minlen;
  63. /** Maximal length of payload allowed */
  64. uint16_t maxlen;
  65. };
  66. /* Size calculations */
  67. extern int nla_attr_size(int payload);
  68. extern int nla_total_size(int payload);
  69. extern int nla_padlen(int payload);
  70. /* Attribute parsing */
  71. extern int nla_type(const struct nlattr *);
  72. extern void * nla_data(const struct nlattr *);
  73. extern int nla_len(const struct nlattr *);
  74. extern int nla_ok(const struct nlattr *, int);
  75. extern struct nlattr * nla_next(const struct nlattr *, int *);
  76. extern int nla_parse(struct nlattr **, int, struct nlattr *,
  77. int, struct nla_policy *);
  78. extern int nla_validate(const struct nlattr *, int, int,
  79. const struct nla_policy *);
  80. extern struct nlattr * nla_find(const struct nlattr *, int, int);
  81. /* Helper Functions */
  82. extern int nla_memcpy(void *, const struct nlattr *, int);
  83. extern size_t nla_strlcpy(char *, const struct nlattr *, size_t);
  84. extern int nla_memcmp(const struct nlattr *, const void *, size_t);
  85. extern int nla_strcmp(const struct nlattr *, const char *);
  86. /* Unspecific attribute */
  87. extern struct nlattr * nla_reserve(struct nl_msg *, int, int);
  88. extern int nla_put(struct nl_msg *, int, int, const void *);
  89. extern int nla_put_data(struct nl_msg *, int,
  90. const struct nl_data *);
  91. extern int nla_put_addr(struct nl_msg *, int, struct nl_addr *);
  92. /* Integer attribute */
  93. extern int8_t nla_get_s8(const struct nlattr *);
  94. extern int nla_put_s8(struct nl_msg *, int, int8_t);
  95. extern uint8_t nla_get_u8(const struct nlattr *);
  96. extern int nla_put_u8(struct nl_msg *, int, uint8_t);
  97. extern int16_t nla_get_s16(const struct nlattr *);
  98. extern int nla_put_s16(struct nl_msg *, int, int16_t);
  99. extern uint16_t nla_get_u16(const struct nlattr *);
  100. extern int nla_put_u16(struct nl_msg *, int, uint16_t);
  101. extern int32_t nla_get_s32(const struct nlattr *);
  102. extern int nla_put_s32(struct nl_msg *, int, int32_t);
  103. extern uint32_t nla_get_u32(const struct nlattr *);
  104. extern int nla_put_u32(struct nl_msg *, int, uint32_t);
  105. extern int64_t nla_get_s64(const struct nlattr *);
  106. extern int nla_put_s64(struct nl_msg *, int, int64_t);
  107. extern uint64_t nla_get_u64(const struct nlattr *);
  108. extern int nla_put_u64(struct nl_msg *, int, uint64_t);
  109. /* String attribute */
  110. extern char * nla_get_string(const struct nlattr *);
  111. extern char * nla_strdup(const struct nlattr *);
  112. extern int nla_put_string(struct nl_msg *, int, const char *);
  113. /* Flag attribute */
  114. extern int nla_get_flag(const struct nlattr *);
  115. extern int nla_put_flag(struct nl_msg *, int);
  116. /* Msec attribute */
  117. extern unsigned long nla_get_msecs(const struct nlattr *);
  118. extern int nla_put_msecs(struct nl_msg *, int, unsigned long);
  119. /* Attribute nesting */
  120. extern int nla_put_nested(struct nl_msg *, int,
  121. const struct nl_msg *);
  122. extern struct nlattr * nla_nest_start(struct nl_msg *, int);
  123. extern int nla_nest_end(struct nl_msg *, struct nlattr *);
  124. extern void nla_nest_cancel(struct nl_msg *, const struct nlattr *);
  125. extern int nla_parse_nested(struct nlattr **, int, struct nlattr *,
  126. struct nla_policy *);
  127. extern int nla_is_nested(const struct nlattr *);
  128. /**
  129. * @name Attribute Construction (Exception Based)
  130. * @{
  131. */
  132. /**
  133. * @ingroup attr
  134. * Add unspecific attribute to netlink message.
  135. * @arg msg Netlink message.
  136. * @arg attrtype Attribute type.
  137. * @arg attrlen Length of attribute payload.
  138. * @arg data Head of attribute payload.
  139. */
  140. #define NLA_PUT(msg, attrtype, attrlen, data) \
  141. do { \
  142. if (nla_put(msg, attrtype, attrlen, data) < 0) \
  143. goto nla_put_failure; \
  144. } while(0)
  145. /**
  146. * @ingroup attr
  147. * Add atomic type attribute to netlink message.
  148. * @arg msg Netlink message.
  149. * @arg type Atomic type.
  150. * @arg attrtype Attribute type.
  151. * @arg value Head of attribute payload.
  152. */
  153. #define NLA_PUT_TYPE(msg, type, attrtype, value) \
  154. do { \
  155. type __tmp = value; \
  156. NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
  157. } while(0)
  158. /**
  159. * Add 8 bit signed integer attribute to netlink message.
  160. * @arg msg Netlink message.
  161. * @arg attrtype Attribute type.
  162. * @arg value Numeric value.
  163. */
  164. #define NLA_PUT_S8(msg, attrtype, value) \
  165. NLA_PUT_TYPE(msg, int8_t, attrtype, value)
  166. /**
  167. * Add 8 bit integer attribute to netlink message.
  168. * @arg msg Netlink message.
  169. * @arg attrtype Attribute type.
  170. * @arg value Numeric value.
  171. */
  172. #define NLA_PUT_U8(msg, attrtype, value) \
  173. NLA_PUT_TYPE(msg, uint8_t, attrtype, value)
  174. /**
  175. * Add 16 bit signed integer attribute to netlink message.
  176. * @arg msg Netlink message.
  177. * @arg attrtype Attribute type.
  178. * @arg value Numeric value.
  179. */
  180. #define NLA_PUT_S16(msg, attrtype, value) \
  181. NLA_PUT_TYPE(msg, int16_t, attrtype, value)
  182. /**
  183. * Add 16 bit integer attribute to netlink message.
  184. * @arg msg Netlink message.
  185. * @arg attrtype Attribute type.
  186. * @arg value Numeric value.
  187. */
  188. #define NLA_PUT_U16(msg, attrtype, value) \
  189. NLA_PUT_TYPE(msg, uint16_t, attrtype, value)
  190. /**
  191. * Add 32 bit signed integer attribute to netlink message.
  192. * @arg msg Netlink message.
  193. * @arg attrtype Attribute type.
  194. * @arg value Numeric value.
  195. */
  196. #define NLA_PUT_S32(msg, attrtype, value) \
  197. NLA_PUT_TYPE(msg, int32_t, attrtype, value)
  198. /**
  199. * Add 32 bit integer attribute to netlink message.
  200. * @arg msg Netlink message.
  201. * @arg attrtype Attribute type.
  202. * @arg value Numeric value.
  203. */
  204. #define NLA_PUT_U32(msg, attrtype, value) \
  205. NLA_PUT_TYPE(msg, uint32_t, attrtype, value)
  206. /**
  207. * Add 64 bit signed integer attribute to netlink message.
  208. * @arg msg Netlink message.
  209. * @arg attrtype Attribute type.
  210. * @arg value Numeric value.
  211. */
  212. #define NLA_PUT_S64(msg, attrtype, value) \
  213. NLA_PUT_TYPE(msg, int64_t, attrtype, value)
  214. /**
  215. * Add 64 bit integer attribute to netlink message.
  216. * @arg msg Netlink message.
  217. * @arg attrtype Attribute type.
  218. * @arg value Numeric value.
  219. */
  220. #define NLA_PUT_U64(msg, attrtype, value) \
  221. NLA_PUT_TYPE(msg, uint64_t, attrtype, value)
  222. /**
  223. * Add string attribute to netlink message.
  224. * @arg msg Netlink message.
  225. * @arg attrtype Attribute type.
  226. * @arg value NUL terminated character string.
  227. */
  228. #define NLA_PUT_STRING(msg, attrtype, value) \
  229. NLA_PUT(msg, attrtype, (int) strlen(value) + 1, value)
  230. /**
  231. * Add flag attribute to netlink message.
  232. * @arg msg Netlink message.
  233. * @arg attrtype Attribute type.
  234. */
  235. #define NLA_PUT_FLAG(msg, attrtype) \
  236. NLA_PUT(msg, attrtype, 0, NULL)
  237. /**
  238. * Add msecs attribute to netlink message.
  239. * @arg msg Netlink message.
  240. * @arg attrtype Attribute type.
  241. * @arg msecs Numeric value in micro seconds.
  242. */
  243. #define NLA_PUT_MSECS(msg, attrtype, msecs) \
  244. NLA_PUT_U64(msg, attrtype, msecs)
  245. /**
  246. * Add address attribute to netlink message.
  247. * @arg msg Netlink message.
  248. * @arg attrtype Attribute type.
  249. * @arg addr Abstract address object.
  250. */
  251. #define NLA_PUT_ADDR(msg, attrtype, addr) \
  252. NLA_PUT(msg, attrtype, nl_addr_get_len(addr), \
  253. nl_addr_get_binary_addr(addr))
  254. /**
  255. * Add abstract data attribute to netlink message.
  256. * @arg msg Netlink message.
  257. * @arg attrtype Attribute type.
  258. * @arg data Abstract data object.
  259. */
  260. #define NLA_PUT_DATA(msg, attrtype, data) \
  261. NLA_PUT(msg, attrtype, nl_data_get_size(data), \
  262. nl_data_get(data))
  263. /** @} */
  264. /**
  265. * @name Iterators
  266. * @{
  267. */
  268. /**
  269. * @ingroup attr
  270. * Iterate over a stream of attributes
  271. * @arg pos loop counter, set to current attribute
  272. * @arg head head of attribute stream
  273. * @arg len length of attribute stream
  274. * @arg rem initialized to len, holds bytes currently remaining in stream
  275. */
  276. #define nla_for_each_attr(pos, head, len, rem) \
  277. for (pos = head, rem = len; \
  278. nla_ok(pos, rem); \
  279. pos = nla_next(pos, &(rem)))
  280. /**
  281. * @ingroup attr
  282. * Iterate over a stream of nested attributes
  283. * @arg pos loop counter, set to current attribute
  284. * @arg nla attribute containing the nested attributes
  285. * @arg rem initialized to len, holds bytes currently remaining in stream
  286. */
  287. #define nla_for_each_nested(pos, nla, rem) \
  288. for (pos = (struct nlattr *) nla_data(nla), rem = nla_len(nla); \
  289. nla_ok(pos, rem); \
  290. pos = nla_next(pos, &(rem)))
  291. /** @} */
  292. #ifdef __cplusplus
  293. }
  294. #endif
  295. #endif