make the blobmsg format endian agnostic (stick to big-endian)
[project/libubox.git] / blobmsg.c
1 /*
2  * blobmsg - library for generating/parsing structured blob messages
3  *
4  * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
5  *
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
9  *
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.
14  */
15
16 #include "blobmsg.h"
17
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 };
25
26 static uint16_t
27 blobmsg_namelen(const struct blobmsg_hdr *hdr)
28 {
29         return be16_to_cpu(hdr->namelen);
30 }
31
32 bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
33 {
34         const struct blobmsg_hdr *hdr;
35         const char *data;
36         int id, len;
37
38         if (blob_len(attr) < sizeof(struct blobmsg_hdr))
39                 return false;
40
41         hdr = (void *) attr->data;
42         if (!hdr->namelen && name)
43                 return false;
44
45         if (blobmsg_namelen(hdr) > blob_len(attr) - sizeof(struct blobmsg_hdr))
46                 return false;
47
48         if (hdr->name[blobmsg_namelen(hdr)] != 0)
49                 return false;
50
51         id = blob_id(attr);
52         len = blobmsg_data_len(attr);
53         data = blobmsg_data(attr);
54
55         if (!id || id > BLOBMSG_TYPE_LAST)
56                 return false;
57
58         if (!blob_type[id])
59                 return true;
60
61         return blob_check_type(data, len, blob_type[id]);
62 }
63
64 int blobmsg_parse(const struct blobmsg_policy *policy, int policy_len,
65                   struct blob_attr **tb, void *data, int len)
66 {
67         struct blobmsg_hdr *hdr;
68         struct blob_attr *attr;
69         uint8_t *pslen;
70         int i;
71
72         memset(tb, 0, policy_len * sizeof(*tb));
73         pslen = alloca(policy_len);
74         for (i = 0; i < policy_len; i++) {
75                 if (!policy[i].name)
76                         continue;
77
78                 pslen[i] = strlen(policy[i].name);
79         }
80
81         __blob_for_each_attr(attr, data, len) {
82                 hdr = blob_data(attr);
83                 for (i = 0; i < policy_len; i++) {
84                         if (!policy[i].name)
85                                 continue;
86
87                         if (policy[i].type != BLOBMSG_TYPE_UNSPEC &&
88                             blob_id(attr) != policy[i].type)
89                                 continue;
90
91                         if (blobmsg_namelen(hdr) != pslen[i])
92                                 continue;
93
94                         if (!blobmsg_check_attr(attr, true))
95                                 return -1;
96
97                         if (tb[i])
98                                 continue;
99
100                         if (strcmp(policy[i].name, (char *) hdr->name) != 0)
101                                 continue;
102
103                         tb[i] = attr;
104                 }
105         }
106
107         return 0;
108 }
109
110
111 static struct blob_attr *
112 blobmsg_new(struct blob_buf *buf, int type, const char *name, int payload_len, void **data)
113 {
114         struct blob_attr *attr;
115         struct blobmsg_hdr *hdr;
116         int attrlen, namelen;
117
118         if (!name)
119                 name = "";
120
121         namelen = strlen(name);
122         attrlen = blobmsg_hdrlen(namelen) + payload_len;
123         attr = blob_new(buf, type, attrlen);
124         if (!attr)
125                 return NULL;
126
127         hdr = blob_data(attr);
128         hdr->namelen = cpu_to_be16(namelen);
129         strcpy((char *) hdr->name, (const char *)name);
130         *data = blobmsg_data(attr);
131
132         return attr;
133 }
134
135 static inline int
136 attr_to_offset(struct blob_buf *buf, struct blob_attr *attr)
137 {
138         return (char *)attr - (char *) buf->buf;
139 }
140
141
142 void *
143 blobmsg_open_nested(struct blob_buf *buf, const char *name, bool array)
144 {
145         struct blob_attr *head = buf->head;
146         int type = array ? BLOBMSG_TYPE_ARRAY : BLOBMSG_TYPE_TABLE;
147         unsigned long offset = attr_to_offset(buf, buf->head);
148         void *data;
149
150         if (!name)
151                 name = "";
152
153         head = blobmsg_new(buf, type, name, 0, &data);
154         blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blobmsg_hdrlen(strlen(name)));
155         buf->head = head;
156         return (void *)offset;
157 }
158
159 void *
160 blobmsg_alloc_string_buffer(struct blob_buf *buf, const char *name, int maxlen)
161 {
162         struct blob_attr *attr;
163         void *data_dest;
164
165         attr = blobmsg_new(buf, BLOBMSG_TYPE_STRING, name, maxlen, &data_dest);
166         if (!attr)
167                 return NULL;
168
169         data_dest = blobmsg_data(attr);
170         blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blob_pad_len(attr));
171         blob_set_raw_len(attr, blob_raw_len(attr) - maxlen);
172
173         return data_dest;
174 }
175
176 void
177 blobmsg_add_string_buffer(struct blob_buf *buf)
178 {
179         struct blob_attr *attr;
180         int len, attrlen;
181
182         attr = blob_next(buf->head);
183         len = strlen(blobmsg_data(attr)) + 1;
184
185         attrlen = blob_raw_len(attr) + len;
186         blob_set_raw_len(attr, attrlen);
187         blob_set_raw_len(buf->head, blob_raw_len(buf->head) + blob_pad_len(attr));
188 }
189
190 int
191 blobmsg_add_field(struct blob_buf *buf, int type, const char *name,
192                   const void *data, int len)
193 {
194         struct blob_attr *attr;
195         void *data_dest;
196
197         attr = blobmsg_new(buf, type, name, len, &data_dest);
198         if (!attr)
199                 return -1;
200
201         if (len > 0)
202                 memcpy(data_dest, data, len);
203
204         return 0;
205 }