blobmsg.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /*
  2. * Copyright (C) 2010-2012 Felix Fietkau <nbd@openwrt.org>
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef __BLOBMSG_H
  17. #define __BLOBMSG_H
  18. #include <stdarg.h>
  19. #include "blob.h"
  20. #define BLOBMSG_ALIGN 2
  21. #define BLOBMSG_PADDING(len) (((len) + (1 << BLOBMSG_ALIGN) - 1) & ~((1 << BLOBMSG_ALIGN) - 1))
  22. enum blobmsg_type {
  23. BLOBMSG_TYPE_UNSPEC,
  24. BLOBMSG_TYPE_ARRAY,
  25. BLOBMSG_TYPE_TABLE,
  26. BLOBMSG_TYPE_STRING,
  27. BLOBMSG_TYPE_INT64,
  28. BLOBMSG_TYPE_INT32,
  29. BLOBMSG_TYPE_INT16,
  30. BLOBMSG_TYPE_INT8,
  31. __BLOBMSG_TYPE_LAST,
  32. BLOBMSG_TYPE_LAST = __BLOBMSG_TYPE_LAST - 1,
  33. BLOBMSG_TYPE_BOOL = BLOBMSG_TYPE_INT8,
  34. };
  35. struct blobmsg_hdr {
  36. uint16_t namelen;
  37. uint8_t name[];
  38. } __packed;
  39. struct blobmsg_policy {
  40. const char *name;
  41. enum blobmsg_type type;
  42. };
  43. static inline int blobmsg_hdrlen(unsigned int namelen)
  44. {
  45. return BLOBMSG_PADDING(sizeof(struct blobmsg_hdr) + namelen + 1);
  46. }
  47. static inline void blobmsg_clear_name(struct blob_attr *attr)
  48. {
  49. struct blobmsg_hdr *hdr = (struct blobmsg_hdr *) blob_data(attr);
  50. hdr->name[0] = 0;
  51. }
  52. static inline const char *blobmsg_name(const struct blob_attr *attr)
  53. {
  54. struct blobmsg_hdr *hdr = (struct blobmsg_hdr *) blob_data(attr);
  55. return (const char *) hdr->name;
  56. }
  57. static inline int blobmsg_type(const struct blob_attr *attr)
  58. {
  59. return blob_id(attr);
  60. }
  61. static inline void *blobmsg_data(const struct blob_attr *attr)
  62. {
  63. struct blobmsg_hdr *hdr = (struct blobmsg_hdr *) blob_data(attr);
  64. char *data = (char *) blob_data(attr);
  65. if (blob_is_extended(attr))
  66. data += blobmsg_hdrlen(be16_to_cpu(hdr->namelen));
  67. return data;
  68. }
  69. static inline int blobmsg_data_len(const struct blob_attr *attr)
  70. {
  71. uint8_t *start, *end;
  72. start = (uint8_t *) blob_data(attr);
  73. end = (uint8_t *) blobmsg_data(attr);
  74. return blob_len(attr) - (end - start);
  75. }
  76. static inline int blobmsg_len(const struct blob_attr *attr)
  77. {
  78. return blobmsg_data_len(attr);
  79. }
  80. bool blobmsg_check_attr(const struct blob_attr *attr, bool name);
  81. bool blobmsg_check_attr_list(const struct blob_attr *attr, int type);
  82. /*
  83. * blobmsg_check_array: validate array/table and return size
  84. *
  85. * Checks if all elements of an array or table are valid and have
  86. * the specified type. Returns the number of elements in the array
  87. */
  88. int blobmsg_check_array(const struct blob_attr *attr, int type);
  89. int blobmsg_parse(const struct blobmsg_policy *policy, int policy_len,
  90. struct blob_attr **tb, void *data, unsigned int len);
  91. int blobmsg_parse_array(const struct blobmsg_policy *policy, int policy_len,
  92. struct blob_attr **tb, void *data, unsigned int len);
  93. int blobmsg_add_field(struct blob_buf *buf, int type, const char *name,
  94. const void *data, unsigned int len);
  95. static inline int
  96. blobmsg_add_u8(struct blob_buf *buf, const char *name, uint8_t val)
  97. {
  98. return blobmsg_add_field(buf, BLOBMSG_TYPE_INT8, name, &val, 1);
  99. }
  100. static inline int
  101. blobmsg_add_u16(struct blob_buf *buf, const char *name, uint16_t val)
  102. {
  103. val = cpu_to_be16(val);
  104. return blobmsg_add_field(buf, BLOBMSG_TYPE_INT16, name, &val, 2);
  105. }
  106. static inline int
  107. blobmsg_add_u32(struct blob_buf *buf, const char *name, uint32_t val)
  108. {
  109. val = cpu_to_be32(val);
  110. return blobmsg_add_field(buf, BLOBMSG_TYPE_INT32, name, &val, 4);
  111. }
  112. static inline int
  113. blobmsg_add_u64(struct blob_buf *buf, const char *name, uint64_t val)
  114. {
  115. val = cpu_to_be64(val);
  116. return blobmsg_add_field(buf, BLOBMSG_TYPE_INT64, name, &val, 8);
  117. }
  118. static inline int
  119. blobmsg_add_string(struct blob_buf *buf, const char *name, const char *string)
  120. {
  121. return blobmsg_add_field(buf, BLOBMSG_TYPE_STRING, name, string, strlen(string) + 1);
  122. }
  123. static inline int
  124. blobmsg_add_blob(struct blob_buf *buf, struct blob_attr *attr)
  125. {
  126. return blobmsg_add_field(buf, blobmsg_type(attr), blobmsg_name(attr),
  127. blobmsg_data(attr), blobmsg_data_len(attr));
  128. }
  129. void *blobmsg_open_nested(struct blob_buf *buf, const char *name, bool array);
  130. static inline void *
  131. blobmsg_open_array(struct blob_buf *buf, const char *name)
  132. {
  133. return blobmsg_open_nested(buf, name, true);
  134. }
  135. static inline void *
  136. blobmsg_open_table(struct blob_buf *buf, const char *name)
  137. {
  138. return blobmsg_open_nested(buf, name, false);
  139. }
  140. static inline void
  141. blobmsg_close_array(struct blob_buf *buf, void *cookie)
  142. {
  143. blob_nest_end(buf, cookie);
  144. }
  145. static inline void
  146. blobmsg_close_table(struct blob_buf *buf, void *cookie)
  147. {
  148. blob_nest_end(buf, cookie);
  149. }
  150. static inline int blobmsg_buf_init(struct blob_buf *buf)
  151. {
  152. return blob_buf_init(buf, BLOBMSG_TYPE_TABLE);
  153. }
  154. static inline uint8_t blobmsg_get_u8(struct blob_attr *attr)
  155. {
  156. return *(uint8_t *) blobmsg_data(attr);
  157. }
  158. static inline bool blobmsg_get_bool(struct blob_attr *attr)
  159. {
  160. return *(uint8_t *) blobmsg_data(attr);
  161. }
  162. static inline uint16_t blobmsg_get_u16(struct blob_attr *attr)
  163. {
  164. return be16_to_cpu(*(uint16_t *) blobmsg_data(attr));
  165. }
  166. static inline uint32_t blobmsg_get_u32(struct blob_attr *attr)
  167. {
  168. return be32_to_cpu(*(uint32_t *) blobmsg_data(attr));
  169. }
  170. static inline uint64_t blobmsg_get_u64(struct blob_attr *attr)
  171. {
  172. uint32_t *ptr = (uint32_t *) blobmsg_data(attr);
  173. uint64_t tmp = ((uint64_t) be32_to_cpu(ptr[0])) << 32;
  174. tmp |= be32_to_cpu(ptr[1]);
  175. return tmp;
  176. }
  177. static inline char *blobmsg_get_string(struct blob_attr *attr)
  178. {
  179. if (!attr)
  180. return NULL;
  181. return (char *) blobmsg_data(attr);
  182. }
  183. void *blobmsg_alloc_string_buffer(struct blob_buf *buf, const char *name, unsigned int maxlen);
  184. void *blobmsg_realloc_string_buffer(struct blob_buf *buf, unsigned int maxlen);
  185. void blobmsg_add_string_buffer(struct blob_buf *buf);
  186. int blobmsg_vprintf(struct blob_buf *buf, const char *name, const char *format, va_list arg);
  187. int blobmsg_printf(struct blob_buf *buf, const char *name, const char *format, ...)
  188. __attribute__((format(printf, 3, 4)));
  189. /* blobmsg to json formatting */
  190. #define blobmsg_for_each_attr(pos, attr, rem) \
  191. for (rem = attr ? blobmsg_data_len(attr) : 0, \
  192. pos = attr ? blobmsg_data(attr) : 0; \
  193. rem > 0 && (blob_pad_len(pos) <= rem) && \
  194. (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
  195. rem -= blob_pad_len(pos), pos = blob_next(pos))
  196. #endif