123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- #include <sys/socket.h>
- #include <sys/uio.h>
- #include <signal.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <libubox/blob.h>
- #include <libubox/uloop.h>
- #include <libubox/usock.h>
- #include <libubox/list.h>
- #include "ubusd.h"
- static struct avl_tree clients;
- static struct ubus_msg_buf *ubus_msg_unshare(struct ubus_msg_buf *ub)
- {
- ub = realloc(ub, sizeof(*ub) + ub->len);
- if (!ub)
- return NULL;
- ub->refcount = 1;
- memcpy(ub + 1, ub->data, ub->len);
- ub->data = (void *) (ub + 1);
- return ub;
- }
- struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub)
- {
- if (ub->refcount == ~0)
- return ubus_msg_unshare(ub);
- ub->refcount++;
- return ub;
- }
- struct ubus_msg_buf *ubus_msg_new(void *data, int len, bool shared)
- {
- struct ubus_msg_buf *ub;
- int buflen = sizeof(*ub);
- if (!shared)
- buflen += len;
- ub = calloc(1, buflen);
- if (!ub)
- return NULL;
- if (shared) {
- ub->refcount = ~0;
- ub->data = data;
- } else {
- ub->refcount = 1;
- ub->data = (void *) (ub + 1);
- if (data)
- memcpy(ub + 1, data, len);
- }
- ub->len = len;
- return ub;
- }
- void ubus_msg_free(struct ubus_msg_buf *ub)
- {
- switch (ub->refcount) {
- case 1:
- case ~0:
- free(ub);
- break;
- default:
- ub->refcount--;
- break;
- }
- }
- static int ubus_msg_writev(int fd, struct ubus_msg_buf *ub, int offset)
- {
- struct iovec iov[2];
- if (offset < sizeof(ub->hdr)) {
- iov[0].iov_base = ((char *) &ub->hdr) + offset;
- iov[0].iov_len = sizeof(ub->hdr) - offset;
- iov[1].iov_base = (char *) ub->data;
- iov[1].iov_len = ub->len;
- return writev(fd, iov, 2);
- } else {
- offset -= sizeof(ub->hdr);
- return write(fd, ((char *) ub->data) + offset, ub->len - offset);
- }
- }
- static void ubus_msg_enqueue(struct ubus_client *cl, struct ubus_msg_buf *ub)
- {
- if (cl->tx_queue[cl->txq_tail])
- return;
- cl->tx_queue[cl->txq_tail] = ubus_msg_ref(ub);
- cl->txq_tail = (cl->txq_tail + 1) % ARRAY_SIZE(cl->tx_queue);
- }
- /* takes the msgbuf reference */
- void ubus_msg_send(struct ubus_client *cl, struct ubus_msg_buf *ub, bool free)
- {
- int written;
- if (!cl->tx_queue[cl->txq_cur]) {
- written = ubus_msg_writev(cl->sock.fd, ub, 0);
- if (written >= ub->len + sizeof(ub->hdr))
- goto out;
- if (written < 0)
- written = 0;
- cl->txq_ofs = written;
- /* get an event once we can write to the socket again */
- uloop_fd_add(&cl->sock, ULOOP_READ | ULOOP_WRITE | ULOOP_EDGE_TRIGGER);
- }
- ubus_msg_enqueue(cl, ub);
- out:
- if (free)
- ubus_msg_free(ub);
- }
- static struct ubus_msg_buf *ubus_msg_head(struct ubus_client *cl)
- {
- return cl->tx_queue[cl->txq_cur];
- }
- static void ubus_msg_dequeue(struct ubus_client *cl)
- {
- struct ubus_msg_buf *ub = ubus_msg_head(cl);
- if (!ub)
- return;
- ubus_msg_free(ub);
- cl->txq_ofs = 0;
- cl->tx_queue[cl->txq_cur] = NULL;
- cl->txq_cur = (cl->txq_cur + 1) % ARRAY_SIZE(cl->tx_queue);
- }
- static void handle_client_disconnect(struct ubus_client *cl)
- {
- struct ubus_object *obj;
- while (!list_empty(&cl->objects)) {
- obj = list_first_entry(&cl->objects, struct ubus_object, list);
- ubusd_free_object(obj);
- }
- while (ubus_msg_head(cl))
- ubus_msg_dequeue(cl);
- ubus_free_id(&clients, &cl->id);
- uloop_fd_delete(&cl->sock);
- close(cl->sock.fd);
- free(cl);
- }
- static void client_cb(struct uloop_fd *sock, unsigned int events)
- {
- struct ubus_client *cl = container_of(sock, struct ubus_client, sock);
- struct ubus_msg_buf *ub;
- /* first try to tx more pending data */
- while ((ub = ubus_msg_head(cl))) {
- int written;
- written = ubus_msg_writev(sock->fd, ub, cl->txq_ofs);
- if (written < 0) {
- switch(errno) {
- case EINTR:
- case EAGAIN:
- break;
- default:
- goto disconnect;
- }
- break;
- }
- cl->txq_ofs += written;
- if (cl->txq_ofs < ub->len + sizeof(ub->hdr))
- break;
- ubus_msg_dequeue(cl);
- }
- /* prevent further ULOOP_WRITE events if we don't have data
- * to send anymore */
- if (!ubus_msg_head(cl) && (events & ULOOP_WRITE))
- uloop_fd_add(sock, ULOOP_READ | ULOOP_EDGE_TRIGGER);
- retry:
- if (!sock->eof && cl->pending_msg_offset < sizeof(cl->hdrbuf)) {
- int offset = cl->pending_msg_offset;
- int bytes;
- bytes = read(sock->fd, (char *)&cl->hdrbuf + offset, sizeof(cl->hdrbuf) - offset);
- if (bytes < 0)
- goto out;
- cl->pending_msg_offset += bytes;
- if (cl->pending_msg_offset < sizeof(cl->hdrbuf))
- goto out;
- if (blob_len(&cl->hdrbuf.data) + sizeof(cl->hdrbuf) > UBUS_MAX_MSGLEN)
- goto disconnect;
- cl->pending_msg = ubus_msg_new(NULL, blob_raw_len(&cl->hdrbuf.data), false);
- if (!cl->pending_msg)
- goto disconnect;
- memcpy(&cl->pending_msg->hdr, &cl->hdrbuf.hdr, sizeof(cl->hdrbuf.hdr));
- memcpy(cl->pending_msg->data, &cl->hdrbuf.data, sizeof(cl->hdrbuf.data));
- }
- ub = cl->pending_msg;
- if (ub) {
- int offset = cl->pending_msg_offset - sizeof(ub->hdr);
- int len = blob_raw_len(ub->data) - offset;
- int bytes = 0;
- if (len > 0) {
- bytes = read(sock->fd, (char *) ub->data + offset, len);
- if (bytes <= 0)
- goto out;
- }
- if (bytes < len) {
- cl->pending_msg_offset += bytes;
- goto out;
- }
- /* accept message */
- cl->pending_msg_offset = 0;
- cl->pending_msg = NULL;
- ubusd_receive_message(cl, ub);
- goto retry;
- }
- out:
- if (!sock->eof || ubus_msg_head(cl))
- return;
- disconnect:
- handle_client_disconnect(cl);
- }
- struct ubus_client *ubusd_get_client_by_id(uint32_t id)
- {
- struct ubus_id *clid;
- clid = ubus_find_id(&clients, id);
- if (!clid)
- return NULL;
- return container_of(clid, struct ubus_client, id);
- }
- static bool get_next_connection(int fd)
- {
- struct ubus_client *cl;
- int client_fd;
- client_fd = accept(fd, NULL, 0);
- if (client_fd < 0) {
- switch (errno) {
- case ECONNABORTED:
- case EINTR:
- return true;
- default:
- return false;
- }
- }
- cl = calloc(1, sizeof(*cl));
- cl->sock.fd = client_fd;
- INIT_LIST_HEAD(&cl->objects);
- if (!ubus_alloc_id(&clients, &cl->id, 0))
- goto error;
- cl->sock.cb = client_cb;
- uloop_fd_add(&cl->sock, ULOOP_READ | ULOOP_EDGE_TRIGGER);
- if (!ubusd_send_hello(cl))
- goto error_free;
- return true;
- error_free:
- ubus_free_id(&clients, &cl->id);
- error:
- close(cl->sock.fd);
- free(cl);
- return true;
- }
- static void server_cb(struct uloop_fd *fd, unsigned int events)
- {
- bool next;
- do {
- next = get_next_connection(fd->fd);
- } while (next);
- }
- static struct uloop_fd server_fd = {
- .cb = server_cb,
- };
- static int usage(const char *progname)
- {
- fprintf(stderr, "Usage: %s [<options>]\n"
- "Options: \n"
- " -s <socket>: Set the unix domain socket to listen on\n"
- "\n", progname);
- return 1;
- }
- int main(int argc, char **argv)
- {
- const char *ubus_socket = UBUS_UNIX_SOCKET;
- int ret = 0;
- int ch;
- signal(SIGPIPE, SIG_IGN);
- ubus_init_id_tree(&clients);
- uloop_init();
- while ((ch = getopt(argc, argv, "s:")) != -1) {
- switch (ch) {
- case 's':
- ubus_socket = optarg;
- break;
- default:
- return usage(argv[0]);
- }
- }
- unlink(ubus_socket);
- server_fd.fd = usock(USOCK_UNIX | USOCK_SERVER | USOCK_NONBLOCK, ubus_socket, NULL);
- if (server_fd.fd < 0) {
- perror("usock");
- ret = -1;
- goto out;
- }
- uloop_fd_add(&server_fd, ULOOP_READ | ULOOP_EDGE_TRIGGER);
- uloop_run();
- unlink(ubus_socket);
- out:
- uloop_done();
- return ret;
- }
|