X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubusd.c;h=89031053a2386700d1c9bf6f4eb36e8aa1d6b60f;hp=03215b33525f9011d0a681dfb185ae085292ccd4;hb=df0292c3af36441dce81b30ac4cd847326e27196;hpb=42bc27ae38d92f4fe11872b0f9d57f8d3578dcfe diff --git a/ubusd.c b/ubusd.c index 03215b3..8903105 100644 --- a/ubusd.c +++ b/ubusd.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Felix Fietkau + * Copyright (C) 2011-2014 Felix Fietkau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2.1 @@ -12,7 +12,11 @@ */ #include +#include #include +#ifdef FreeBSD +#include +#endif #include #include #include @@ -25,22 +29,10 @@ #include "ubusd.h" -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; -} - static struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub) { if (ub->refcount == ~0) - return ubus_msg_unshare(ub); + return ubus_msg_new(ub->data, ub->len, false); ub->refcount++; return ub; @@ -58,6 +50,8 @@ struct ubus_msg_buf *ubus_msg_new(void *data, int len, bool shared) if (!ub) return NULL; + ub->fd = -1; + if (shared) { ub->refcount = ~0; ub->data = data; @@ -77,6 +71,9 @@ void ubus_msg_free(struct ubus_msg_buf *ub) switch (ub->refcount) { case 1: case ~0: + if (ub->fd >= 0) + close(ub->fd); + free(ub); break; default: @@ -87,14 +84,37 @@ void ubus_msg_free(struct ubus_msg_buf *ub) static int ubus_msg_writev(int fd, struct ubus_msg_buf *ub, int offset) { - struct iovec iov[2]; + static struct iovec iov[2]; + static struct { + struct cmsghdr h; + int fd; + } fd_buf = { + .h = { + .cmsg_len = sizeof(fd_buf), + .cmsg_level = SOL_SOCKET, + .cmsg_type = SCM_RIGHTS, + }, + }; + struct msghdr msghdr = { + .msg_iov = iov, + .msg_iovlen = ARRAY_SIZE(iov), + .msg_control = &fd_buf, + .msg_controllen = sizeof(fd_buf), + }; + + fd_buf.fd = ub->fd; + if (ub->fd < 0) { + msghdr.msg_control = NULL; + msghdr.msg_controllen = 0; + } 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); + + return sendmsg(fd, &msghdr, 0); } else { offset -= sizeof(ub->hdr); return write(fd, ((char *) ub->data) + offset, ub->len - offset); @@ -159,6 +179,8 @@ static void handle_client_disconnect(struct ubus_client *cl) ubus_msg_dequeue(cl); ubusd_proto_free_client(cl); + if (cl->pending_msg_fd >= 0) + close(cl->pending_msg_fd); uloop_fd_delete(&cl->sock); close(cl->sock.fd); free(cl); @@ -168,6 +190,21 @@ 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; + static struct iovec iov; + static struct { + struct cmsghdr h; + int fd; + } fd_buf = { + .h = { + .cmsg_type = SCM_RIGHTS, + .cmsg_level = SOL_SOCKET, + .cmsg_len = sizeof(fd_buf), + } + }; + struct msghdr msghdr = { + .msg_iov = &iov, + .msg_iovlen = 1, + }; /* first try to tx more pending data */ while ((ub = ubus_msg_head(cl))) { @@ -202,10 +239,26 @@ retry: int offset = cl->pending_msg_offset; int bytes; - bytes = read(sock->fd, (char *)&cl->hdrbuf + offset, sizeof(cl->hdrbuf) - offset); + fd_buf.fd = -1; + + iov.iov_base = &cl->hdrbuf + offset; + iov.iov_len = sizeof(cl->hdrbuf) - offset; + + if (cl->pending_msg_fd < 0) { + msghdr.msg_control = &fd_buf; + msghdr.msg_controllen = sizeof(fd_buf); + } else { + msghdr.msg_control = NULL; + msghdr.msg_controllen = 0; + } + + bytes = recvmsg(sock->fd, &msghdr, 0); if (bytes < 0) goto out; + if (fd_buf.fd >= 0) + cl->pending_msg_fd = fd_buf.fd; + cl->pending_msg_offset += bytes; if (cl->pending_msg_offset < sizeof(cl->hdrbuf)) goto out; @@ -239,6 +292,8 @@ retry: } /* accept message */ + ub->fd = cl->pending_msg_fd; + cl->pending_msg_fd = -1; cl->pending_msg_offset = 0; cl->pending_msg = NULL; ubusd_proto_receive_message(cl, ub); @@ -321,6 +376,7 @@ int main(int argc, char **argv) } unlink(ubus_socket); + umask(0177); server_fd.fd = usock(USOCK_UNIX | USOCK_SERVER | USOCK_NONBLOCK, ubus_socket, NULL); if (server_fd.fd < 0) { perror("usock");