2 * blobmsg - library for generating/parsing structured blob messages
4 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License version 2.1
8 * as published by the Free Software Foundation
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
24 static bool blobmsg_puts(struct strbuf *s, char *c, int len)
29 if (s->pos + len >= s->len) {
31 s->buf = realloc(s->buf, s->len);
35 memcpy(s->buf + s->pos, c, len);
40 static void blobmsg_format_string(struct strbuf *s, char *str)
42 char *p, *last = str, *end = str + strlen(str);
43 char buf[8] = "\\u00";
45 blobmsg_puts(s, "\"", 1);
46 for (p = str; *p; p++) {
78 blobmsg_puts(s, last, p - last);
83 sprintf(buf + 4, "%02x", (unsigned char) *p);
88 blobmsg_puts(s, buf, len);
91 blobmsg_puts(s, last, end - last);
92 blobmsg_puts(s, "\"", 1);
95 static void blobmsg_format_json_list(struct strbuf *s, struct blob_attr *attr, int len, bool array);
97 static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, bool array, bool head)
104 blobmsg_format_string(s, blobmsg_name(attr));
105 blobmsg_puts(s, ":", 1);
108 data = blob_data(attr);
109 len = blob_len(attr);
111 data = blobmsg_data(attr);
112 len = blobmsg_data_len(attr);
115 switch(blob_id(attr)) {
116 case BLOBMSG_TYPE_INT8:
117 sprintf(buf, "%d", *(uint8_t *)data);
119 case BLOBMSG_TYPE_INT16:
120 sprintf(buf, "%d", *(uint16_t *)data);
122 case BLOBMSG_TYPE_INT32:
123 sprintf(buf, "%d", *(uint32_t *)data);
125 case BLOBMSG_TYPE_INT64:
126 sprintf(buf, "%lld", *(uint64_t *)data);
128 case BLOBMSG_TYPE_STRING:
129 blobmsg_puts(s, data, strlen(data));
131 case BLOBMSG_TYPE_ARRAY:
132 blobmsg_format_json_list(s, data, len, true);
134 case BLOBMSG_TYPE_TABLE:
135 blobmsg_format_json_list(s, data, len, false);
138 blobmsg_puts(s, buf, strlen(buf));
141 static void blobmsg_format_json_list(struct strbuf *s, struct blob_attr *attr, int len, bool array)
143 struct blob_attr *pos;
147 blobmsg_puts(s, (array ? "[ " : "{ "), 2);
148 __blob_for_each_attr(pos, attr, rem) {
150 blobmsg_puts(s, ", ", 2);
152 blobmsg_format_element(s, pos, array, false);
155 blobmsg_puts(s, (array ? " ]" : " }"), 2);
158 char *blobmsg_format_json(struct blob_attr *attr, bool named)
162 s.len = blob_len(attr);
163 s.buf = malloc(s.len);
166 blobmsg_format_json_list(&s, blob_data(attr), blob_len(attr), !named);
171 s.buf = realloc(s.buf, s.pos + 1);
175 bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
177 const struct blobmsg_hdr *hdr;
179 if (blob_len(attr) < sizeof(struct blobmsg_hdr))
182 hdr = (void *) attr->data;
183 if (!hdr->namelen && name)
186 if (hdr->namelen > blob_len(attr) - sizeof(struct blobmsg_hdr))
189 if (hdr->name[hdr->namelen] != 0)
195 int blobmsg_parse(const struct blobmsg_policy *policy, int policy_len,
196 struct blob_attr **tb, void *data, int len)
198 struct blobmsg_hdr *hdr;
199 struct blob_attr *attr;
203 memset(tb, 0, policy_len * sizeof(*tb));
204 pslen = alloca(policy_len);
205 for (i = 0; i < policy_len; i++) {
209 pslen[i] = strlen(policy[i].name);
212 __blob_for_each_attr(attr, data, len) {
213 hdr = blob_data(attr);
214 for (i = 0; i < policy_len; i++) {
218 if (policy[i].type != BLOBMSG_TYPE_UNSPEC &&
219 blob_id(attr) != policy[i].type)
222 if (hdr->namelen != pslen[i])
225 if (!blobmsg_check_attr(attr, true))
231 if (strcmp(policy[i].name, (char *) hdr->name) != 0)
242 static struct blob_attr *
243 blobmsg_new(struct blob_buf *buf, int type, const char *name, int payload_len, void **data)
245 struct blob_attr *attr;
246 struct blobmsg_hdr *hdr;
247 int attrlen, namelen;
252 namelen = strlen(name);
253 attrlen = blobmsg_hdrlen(namelen) + payload_len;
254 attr = blob_new(buf, type, attrlen);
258 hdr = blob_data(attr);
259 hdr->namelen = namelen;
260 strcpy((char *) hdr->name, (const char *)name);
261 *data = blobmsg_data(attr);
267 attr_to_offset(struct blob_buf *buf, struct blob_attr *attr)
269 return (char *)attr - (char *) buf->buf;
274 blobmsg_open_nested(struct blob_buf *buf, const char *name, bool array)
276 struct blob_attr *head = buf->head;
277 int type = array ? BLOBMSG_TYPE_ARRAY : BLOBMSG_TYPE_TABLE;
278 unsigned long offset = attr_to_offset(buf, buf->head);
284 head = blobmsg_new(buf, type, name, 0, &data);
285 blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blobmsg_hdrlen(strlen(name)));
287 return (void *)offset;
291 blobmsg_add_field(struct blob_buf *buf, int type, const char *name,
292 const void *data, int len)
294 struct blob_attr *attr;
297 if (type == BLOBMSG_TYPE_ARRAY ||
298 type == BLOBMSG_TYPE_TABLE)
301 attr = blobmsg_new(buf, type, name, len, &data_dest);
306 memcpy(data_dest, data, len);