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