QMI: add uqmi tool with all depends
[tomato.git] / release / src / router / uqmi / libubox / blobmsg.c
blob9fe96e44c8509eedd17189e1710f52cacb4271e0
1 /*
2 * Copyright (C) 2010-2012 Felix Fietkau <nbd@openwrt.org>
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.
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.
16 #include "blobmsg.h"
18 static const int blob_type[__BLOBMSG_TYPE_LAST] = {
19 [BLOBMSG_TYPE_INT8] = BLOB_ATTR_INT8,
20 [BLOBMSG_TYPE_INT16] = BLOB_ATTR_INT16,
21 [BLOBMSG_TYPE_INT32] = BLOB_ATTR_INT32,
22 [BLOBMSG_TYPE_INT64] = BLOB_ATTR_INT64,
23 [BLOBMSG_TYPE_STRING] = BLOB_ATTR_STRING,
24 [BLOBMSG_TYPE_UNSPEC] = BLOB_ATTR_BINARY,
27 static uint16_t
28 blobmsg_namelen(const struct blobmsg_hdr *hdr)
30 return be16_to_cpu(hdr->namelen);
33 bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
35 const struct blobmsg_hdr *hdr;
36 const char *data;
37 int id, len;
39 if (blob_len(attr) < sizeof(struct blobmsg_hdr))
40 return false;
42 hdr = (void *) attr->data;
43 if (!hdr->namelen && name)
44 return false;
46 if (blobmsg_namelen(hdr) > blob_len(attr) - sizeof(struct blobmsg_hdr))
47 return false;
49 if (hdr->name[blobmsg_namelen(hdr)] != 0)
50 return false;
52 id = blob_id(attr);
53 len = blobmsg_data_len(attr);
54 data = blobmsg_data(attr);
56 if (id > BLOBMSG_TYPE_LAST)
57 return false;
59 if (!blob_type[id])
60 return true;
62 return blob_check_type(data, len, blob_type[id]);
65 int blobmsg_check_array(const struct blob_attr *attr, int type)
67 struct blob_attr *cur;
68 bool name;
69 int rem;
70 int size = 0;
72 switch (blobmsg_type(attr)) {
73 case BLOBMSG_TYPE_TABLE:
74 name = true;
75 break;
76 case BLOBMSG_TYPE_ARRAY:
77 name = false;
78 break;
79 default:
80 return -1;
83 blobmsg_for_each_attr(cur, attr, rem) {
84 if (type != BLOBMSG_TYPE_UNSPEC && blobmsg_type(cur) != type)
85 return -1;
87 if (!blobmsg_check_attr(cur, name))
88 return -1;
90 size++;
93 return size;
96 bool blobmsg_check_attr_list(const struct blob_attr *attr, int type)
98 return blobmsg_check_array(attr, type) >= 0;
101 int blobmsg_parse_array(const struct blobmsg_policy *policy, int policy_len,
102 struct blob_attr **tb, void *data, unsigned int len)
104 struct blob_attr *attr;
105 int i = 0;
107 memset(tb, 0, policy_len * sizeof(*tb));
108 __blob_for_each_attr(attr, data, len) {
109 if (policy[i].type != BLOBMSG_TYPE_UNSPEC &&
110 blob_id(attr) != policy[i].type)
111 continue;
113 if (!blobmsg_check_attr(attr, false))
114 return -1;
116 if (tb[i])
117 continue;
119 tb[i++] = attr;
120 if (i == policy_len)
121 break;
124 return 0;
128 int blobmsg_parse(const struct blobmsg_policy *policy, int policy_len,
129 struct blob_attr **tb, void *data, unsigned int len)
131 struct blobmsg_hdr *hdr;
132 struct blob_attr *attr;
133 uint8_t *pslen;
134 int i;
136 memset(tb, 0, policy_len * sizeof(*tb));
137 pslen = alloca(policy_len);
138 for (i = 0; i < policy_len; i++) {
139 if (!policy[i].name)
140 continue;
142 pslen[i] = strlen(policy[i].name);
145 __blob_for_each_attr(attr, data, len) {
146 hdr = blob_data(attr);
147 for (i = 0; i < policy_len; i++) {
148 if (!policy[i].name)
149 continue;
151 if (policy[i].type != BLOBMSG_TYPE_UNSPEC &&
152 blob_id(attr) != policy[i].type)
153 continue;
155 if (blobmsg_namelen(hdr) != pslen[i])
156 continue;
158 if (!blobmsg_check_attr(attr, true))
159 return -1;
161 if (tb[i])
162 continue;
164 if (strcmp(policy[i].name, (char *) hdr->name) != 0)
165 continue;
167 tb[i] = attr;
171 return 0;
175 static struct blob_attr *
176 blobmsg_new(struct blob_buf *buf, int type, const char *name, int payload_len, void **data)
178 struct blob_attr *attr;
179 struct blobmsg_hdr *hdr;
180 int attrlen, namelen;
181 char *pad_start, *pad_end;
183 if (!name)
184 name = "";
186 namelen = strlen(name);
187 attrlen = blobmsg_hdrlen(namelen) + payload_len;
188 attr = blob_new(buf, type, attrlen);
189 if (!attr)
190 return NULL;
192 attr->id_len |= be32_to_cpu(BLOB_ATTR_EXTENDED);
193 hdr = blob_data(attr);
194 hdr->namelen = cpu_to_be16(namelen);
195 strcpy((char *) hdr->name, (const char *)name);
196 pad_end = *data = blobmsg_data(attr);
197 pad_start = (char *) &hdr->name[namelen];
198 if (pad_start < pad_end)
199 memset(pad_start, 0, pad_end - pad_start);
201 return attr;
204 static inline int
205 attr_to_offset(struct blob_buf *buf, struct blob_attr *attr)
207 return (char *)attr - (char *) buf->buf + BLOB_COOKIE;
211 void *
212 blobmsg_open_nested(struct blob_buf *buf, const char *name, bool array)
214 struct blob_attr *head;
215 int type = array ? BLOBMSG_TYPE_ARRAY : BLOBMSG_TYPE_TABLE;
216 unsigned long offset = attr_to_offset(buf, buf->head);
217 void *data;
219 if (!name)
220 name = "";
222 head = blobmsg_new(buf, type, name, 0, &data);
223 if (!head)
224 return NULL;
225 blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blobmsg_hdrlen(strlen(name)));
226 buf->head = head;
227 return (void *)offset;
230 void
231 blobmsg_vprintf(struct blob_buf *buf, const char *name, const char *format, va_list arg)
233 va_list arg2;
234 char cbuf;
235 int len;
237 va_copy(arg2, arg);
238 len = vsnprintf(&cbuf, sizeof(cbuf), format, arg2);
239 va_end(arg2);
241 vsprintf(blobmsg_alloc_string_buffer(buf, name, len + 1), format, arg);
242 blobmsg_add_string_buffer(buf);
245 void
246 blobmsg_printf(struct blob_buf *buf, const char *name, const char *format, ...)
248 va_list ap;
250 va_start(ap, format);
251 blobmsg_vprintf(buf, name, format, ap);
252 va_end(ap);
255 void *
256 blobmsg_alloc_string_buffer(struct blob_buf *buf, const char *name, unsigned int maxlen)
258 struct blob_attr *attr;
259 void *data_dest;
261 attr = blobmsg_new(buf, BLOBMSG_TYPE_STRING, name, maxlen, &data_dest);
262 if (!attr)
263 return NULL;
265 data_dest = blobmsg_data(attr);
266 blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blob_pad_len(attr));
267 blob_set_raw_len(attr, blob_raw_len(attr) - maxlen);
269 return data_dest;
272 void *
273 blobmsg_realloc_string_buffer(struct blob_buf *buf, unsigned int maxlen)
275 struct blob_attr *attr = blob_next(buf->head);
276 int offset = attr_to_offset(buf, blob_next(buf->head)) + blob_pad_len(attr) - BLOB_COOKIE;
277 int required = maxlen - (buf->buflen - offset);
279 if (required <= 0)
280 goto out;
282 blob_buf_grow(buf, required);
283 attr = blob_next(buf->head);
285 out:
286 return blobmsg_data(attr);
289 void
290 blobmsg_add_string_buffer(struct blob_buf *buf)
292 struct blob_attr *attr;
293 int len, attrlen;
295 attr = blob_next(buf->head);
296 len = strlen(blobmsg_data(attr)) + 1;
298 attrlen = blob_raw_len(attr) + len;
299 blob_set_raw_len(attr, attrlen);
300 blob_fill_pad(attr);
302 blob_set_raw_len(buf->head, blob_raw_len(buf->head) + blob_pad_len(attr));
306 blobmsg_add_field(struct blob_buf *buf, int type, const char *name,
307 const void *data, unsigned int len)
309 struct blob_attr *attr;
310 void *data_dest;
312 attr = blobmsg_new(buf, type, name, len, &data_dest);
313 if (!attr)
314 return -1;
316 if (len > 0)
317 memcpy(data_dest, data, len);
319 return 0;