libubus: remove ubus_msghdr_data() by passing in the right data structure pointer
[project/ubus.git] / libubus-io.c
1 /*
2 * Copyright (C) 2011-2014 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #include <sys/types.h>
15 #include <sys/uio.h>
16 #include <sys/socket.h>
17
18 #include <unistd.h>
19 #include <fcntl.h>
20 #include <poll.h>
21
22 #include <libubox/usock.h>
23 #include <libubox/blob.h>
24 #include <libubox/blobmsg.h>
25
26 #include "libubus.h"
27 #include "libubus-internal.h"
28
29 #define STATIC_IOV(_var) { .iov_base = (char *) &(_var), .iov_len = sizeof(_var) }
30
31 #define UBUS_MSGBUF_REDUCTION_INTERVAL 16
32
33 static const struct blob_attr_info ubus_policy[UBUS_ATTR_MAX] = {
34 [UBUS_ATTR_STATUS] = { .type = BLOB_ATTR_INT32 },
35 [UBUS_ATTR_OBJID] = { .type = BLOB_ATTR_INT32 },
36 [UBUS_ATTR_OBJPATH] = { .type = BLOB_ATTR_STRING },
37 [UBUS_ATTR_METHOD] = { .type = BLOB_ATTR_STRING },
38 [UBUS_ATTR_ACTIVE] = { .type = BLOB_ATTR_INT8 },
39 [UBUS_ATTR_NO_REPLY] = { .type = BLOB_ATTR_INT8 },
40 [UBUS_ATTR_SUBSCRIBERS] = { .type = BLOB_ATTR_NESTED },
41 };
42
43 static struct blob_attr *attrbuf[UBUS_ATTR_MAX];
44
45 __hidden struct blob_attr **ubus_parse_msg(struct blob_attr *msg)
46 {
47 blob_parse(msg, attrbuf, ubus_policy, UBUS_ATTR_MAX);
48 return attrbuf;
49 }
50
51 static void wait_data(int fd, bool write)
52 {
53 struct pollfd pfd = { .fd = fd };
54
55 pfd.events = write ? POLLOUT : POLLIN;
56 poll(&pfd, 1, 0);
57 }
58
59 static int writev_retry(int fd, struct iovec *iov, int iov_len, int sock_fd)
60 {
61 static struct {
62 struct cmsghdr h;
63 int fd;
64 } fd_buf = {
65 .h = {
66 .cmsg_len = sizeof(fd_buf),
67 .cmsg_level = SOL_SOCKET,
68 .cmsg_type = SCM_RIGHTS,
69 }
70 };
71 struct msghdr msghdr = {
72 .msg_iov = iov,
73 .msg_iovlen = iov_len,
74 .msg_control = &fd_buf,
75 .msg_controllen = sizeof(fd_buf),
76 };
77 int len = 0;
78
79 do {
80 int cur_len;
81
82 if (sock_fd < 0) {
83 msghdr.msg_control = NULL;
84 msghdr.msg_controllen = 0;
85 } else {
86 fd_buf.fd = sock_fd;
87 }
88
89 cur_len = sendmsg(fd, &msghdr, 0);
90 if (cur_len < 0) {
91 switch(errno) {
92 case EAGAIN:
93 wait_data(fd, true);
94 break;
95 case EINTR:
96 break;
97 default:
98 return -1;
99 }
100 continue;
101 }
102
103 if (len > 0)
104 sock_fd = -1;
105
106 len += cur_len;
107 while (cur_len >= iov->iov_len) {
108 cur_len -= iov->iov_len;
109 iov_len--;
110 iov++;
111 if (!iov_len)
112 return len;
113 }
114 iov->iov_base += cur_len;
115 iov->iov_len -= cur_len;
116 msghdr.msg_iov = iov;
117 msghdr.msg_iovlen = iov_len;
118 } while (1);
119
120 /* Should never reach here */
121 return -1;
122 }
123
124 int __hidden ubus_send_msg(struct ubus_context *ctx, uint32_t seq,
125 struct blob_attr *msg, int cmd, uint32_t peer, int fd)
126 {
127 struct ubus_msghdr hdr;
128 struct iovec iov[2] = {
129 STATIC_IOV(hdr)
130 };
131 int ret;
132
133 hdr.version = 0;
134 hdr.type = cmd;
135 hdr.seq = seq;
136 hdr.peer = peer;
137
138 if (!msg) {
139 blob_buf_init(&b, 0);
140 msg = b.head;
141 }
142
143 iov[1].iov_base = (char *) msg;
144 iov[1].iov_len = blob_raw_len(msg);
145
146 ret = writev_retry(ctx->sock.fd, iov, ARRAY_SIZE(iov), fd);
147 if (ret < 0)
148 ctx->sock.eof = true;
149
150 if (fd >= 0)
151 close(fd);
152
153 return ret;
154 }
155
156 static int recv_retry(int fd, struct iovec *iov, bool wait, int *recv_fd)
157 {
158 int bytes, total = 0;
159 static struct {
160 struct cmsghdr h;
161 int fd;
162 } fd_buf = {
163 .h = {
164 .cmsg_type = SCM_RIGHTS,
165 .cmsg_level = SOL_SOCKET,
166 .cmsg_len = sizeof(fd_buf),
167 },
168 };
169 struct msghdr msghdr = {
170 .msg_iov = iov,
171 .msg_iovlen = 1,
172 };
173
174 while (iov->iov_len > 0) {
175 if (wait)
176 wait_data(fd, false);
177
178 if (recv_fd) {
179 msghdr.msg_control = &fd_buf;
180 msghdr.msg_controllen = sizeof(fd_buf);
181 } else {
182 msghdr.msg_control = NULL;
183 msghdr.msg_controllen = 0;
184 }
185
186 fd_buf.fd = -1;
187 bytes = recvmsg(fd, &msghdr, 0);
188 if (!bytes)
189 return -1;
190
191 if (bytes < 0) {
192 bytes = 0;
193 if (uloop_cancelled)
194 return 0;
195 if (errno == EINTR)
196 continue;
197
198 if (errno != EAGAIN)
199 return -1;
200 }
201 if (!wait && !bytes)
202 return 0;
203
204 if (recv_fd)
205 *recv_fd = fd_buf.fd;
206
207 recv_fd = NULL;
208
209 wait = true;
210 iov->iov_len -= bytes;
211 iov->iov_base += bytes;
212 total += bytes;
213 }
214
215 return total;
216 }
217
218 static bool ubus_validate_hdr(struct ubus_msghdr *hdr)
219 {
220 struct blob_attr *data = (struct blob_attr *) (hdr + 1);
221
222 if (hdr->version != 0)
223 return false;
224
225 if (blob_raw_len(data) < sizeof(*data))
226 return false;
227
228 if (blob_pad_len(data) > UBUS_MAX_MSGLEN)
229 return false;
230
231 return true;
232 }
233
234 static bool get_next_msg(struct ubus_context *ctx, int *recv_fd)
235 {
236 struct {
237 struct ubus_msghdr hdr;
238 struct blob_attr data;
239 } hdrbuf;
240 struct iovec iov = STATIC_IOV(hdrbuf);
241 int len;
242 int r;
243
244 /* receive header + start attribute */
245 r = recv_retry(ctx->sock.fd, &iov, false, recv_fd);
246 if (r <= 0) {
247 if (r < 0)
248 ctx->sock.eof = true;
249
250 return false;
251 }
252
253 if (!ubus_validate_hdr(&hdrbuf.hdr))
254 return false;
255
256 len = blob_raw_len(&hdrbuf.data);
257 if (len > ctx->msgbuf_data_len)
258 ctx->msgbuf_reduction_counter = UBUS_MSGBUF_REDUCTION_INTERVAL;
259 else if (ctx->msgbuf_reduction_counter > 0 && len < UBUS_MSG_CHUNK_SIZE)
260 len = !--ctx->msgbuf_reduction_counter ? UBUS_MSG_CHUNK_SIZE : -1;
261 else
262 len = -1;
263
264 if (len > -1) {
265 ctx->msgbuf.data = realloc(ctx->msgbuf.data, len * sizeof(char));
266 if (ctx->msgbuf.data)
267 ctx->msgbuf_data_len = len;
268 }
269 if (!ctx->msgbuf.data)
270 return false;
271
272 memcpy(&ctx->msgbuf.hdr, &hdrbuf.hdr, sizeof(hdrbuf.hdr));
273 memcpy(ctx->msgbuf.data, &hdrbuf.data, sizeof(hdrbuf.data));
274
275 iov.iov_base = (char *)ctx->msgbuf.data + sizeof(hdrbuf.data);
276 iov.iov_len = blob_len(ctx->msgbuf.data);
277 if (iov.iov_len > 0 && !recv_retry(ctx->sock.fd, &iov, true, NULL))
278 return false;
279
280 return true;
281 }
282
283 void __hidden ubus_handle_data(struct uloop_fd *u, unsigned int events)
284 {
285 struct ubus_context *ctx = container_of(u, struct ubus_context, sock);
286 int recv_fd = -1;
287
288 while (get_next_msg(ctx, &recv_fd)) {
289 ubus_process_msg(ctx, &ctx->msgbuf, recv_fd);
290 if (uloop_cancelled)
291 break;
292 }
293
294 if (u->eof)
295 ctx->connection_lost(ctx);
296 }
297
298 void __hidden ubus_poll_data(struct ubus_context *ctx, int timeout)
299 {
300 struct pollfd pfd = {
301 .fd = ctx->sock.fd,
302 .events = POLLIN | POLLERR,
303 };
304
305 poll(&pfd, 1, timeout);
306 ubus_handle_data(&ctx->sock, ULOOP_READ);
307 }
308
309 static void
310 ubus_refresh_state(struct ubus_context *ctx)
311 {
312 struct ubus_object *obj, *tmp;
313 struct ubus_object **objs;
314 int n, i = 0;
315
316 /* clear all type IDs, they need to be registered again */
317 avl_for_each_element(&ctx->objects, obj, avl)
318 if (obj->type)
319 obj->type->id = 0;
320
321 /* push out all objects again */
322 objs = alloca(ctx->objects.count * sizeof(*objs));
323 avl_remove_all_elements(&ctx->objects, obj, avl, tmp) {
324 objs[i++] = obj;
325 obj->id = 0;
326 }
327
328 for (n = i, i = 0; i < n; i++)
329 ubus_add_object(ctx, objs[i]);
330 }
331
332 int ubus_reconnect(struct ubus_context *ctx, const char *path)
333 {
334 struct {
335 struct ubus_msghdr hdr;
336 struct blob_attr data;
337 } hdr;
338 struct blob_attr *buf;
339 int ret = UBUS_STATUS_UNKNOWN_ERROR;
340
341 if (!path)
342 path = UBUS_UNIX_SOCKET;
343
344 if (ctx->sock.fd >= 0) {
345 if (ctx->sock.registered)
346 uloop_fd_delete(&ctx->sock);
347
348 close(ctx->sock.fd);
349 }
350
351 ctx->sock.fd = usock(USOCK_UNIX, path, NULL);
352 if (ctx->sock.fd < 0)
353 return UBUS_STATUS_CONNECTION_FAILED;
354
355 if (read(ctx->sock.fd, &hdr, sizeof(hdr)) != sizeof(hdr))
356 goto out_close;
357
358 if (!ubus_validate_hdr(&hdr.hdr))
359 goto out_close;
360
361 if (hdr.hdr.type != UBUS_MSG_HELLO)
362 goto out_close;
363
364 buf = calloc(1, blob_raw_len(&hdr.data));
365 if (!buf)
366 goto out_close;
367
368 memcpy(buf, &hdr.data, sizeof(hdr.data));
369 if (read(ctx->sock.fd, blob_data(buf), blob_len(buf)) != blob_len(buf))
370 goto out_free;
371
372 ctx->local_id = hdr.hdr.peer;
373 if (!ctx->local_id)
374 goto out_free;
375
376 ret = UBUS_STATUS_OK;
377 fcntl(ctx->sock.fd, F_SETFL, fcntl(ctx->sock.fd, F_GETFL) | O_NONBLOCK | O_CLOEXEC);
378
379 ubus_refresh_state(ctx);
380
381 out_free:
382 free(buf);
383 out_close:
384 if (ret)
385 close(ctx->sock.fd);
386
387 return ret;
388 }