2011-06-17 16:35:11 +02:00
|
|
|
/*
|
2014-02-18 15:01:39 +01:00
|
|
|
* Copyright (C) 2011-2014 Felix Fietkau <nbd@openwrt.org>
|
2011-06-17 16:35:11 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* as published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
#include <sys/socket.h>
|
2013-09-28 19:23:01 +02:00
|
|
|
#include <sys/stat.h>
|
2010-12-06 03:51:58 +01:00
|
|
|
#include <sys/uio.h>
|
2014-02-18 15:01:39 +01:00
|
|
|
#ifdef FreeBSD
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
2015-04-16 01:54:54 +02:00
|
|
|
#include <syslog.h>
|
2010-12-06 03:51:58 +01:00
|
|
|
#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"
|
|
|
|
|
2011-02-07 02:41:56 +01:00
|
|
|
static struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub)
|
2010-12-06 03:51:58 +01:00
|
|
|
{
|
|
|
|
if (ub->refcount == ~0)
|
2014-06-27 18:11:43 +02:00
|
|
|
return ubus_msg_new(ub->data, ub->len, false);
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2014-02-18 15:01:39 +01:00
|
|
|
ub->fd = -1;
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
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:
|
2014-02-18 15:01:39 +01:00
|
|
|
if (ub->fd >= 0)
|
|
|
|
close(ub->fd);
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
free(ub);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ub->refcount--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ubus_msg_writev(int fd, struct ubus_msg_buf *ub, int offset)
|
|
|
|
{
|
2014-02-18 15:01:39 +01:00
|
|
|
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;
|
|
|
|
}
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
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;
|
2014-02-18 15:01:39 +01:00
|
|
|
|
|
|
|
return sendmsg(fd, &msghdr, 0);
|
2010-12-06 03:51:58 +01:00
|
|
|
} else {
|
|
|
|
offset -= sizeof(ub->hdr);
|
|
|
|
return write(fd, ((char *) ub->data) + offset, ub->len - offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
static void ubus_msg_enqueue(struct ubus_client *cl, struct ubus_msg_buf *ub)
|
|
|
|
{
|
|
|
|
if (cl->tx_queue[cl->txq_tail])
|
|
|
|
return;
|
|
|
|
|
2011-02-06 01:45:21 +01:00
|
|
|
cl->tx_queue[cl->txq_tail] = ubus_msg_ref(ub);
|
2011-02-05 20:50:08 +01:00
|
|
|
cl->txq_tail = (cl->txq_tail + 1) % ARRAY_SIZE(cl->tx_queue);
|
|
|
|
}
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
/* takes the msgbuf reference */
|
2011-02-05 20:50:08 +01:00
|
|
|
void ubus_msg_send(struct ubus_client *cl, struct ubus_msg_buf *ub, bool free)
|
2010-12-06 03:51:58 +01:00
|
|
|
{
|
|
|
|
int written;
|
|
|
|
|
2015-11-19 22:32:11 +01:00
|
|
|
if (ub->hdr.type != UBUS_MSG_MONITOR)
|
|
|
|
ubusd_monitor_message(cl, ub, true);
|
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
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;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
cl->txq_ofs = written;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
/* get an event once we can write to the socket again */
|
|
|
|
uloop_fd_add(&cl->sock, ULOOP_READ | ULOOP_WRITE | ULOOP_EDGE_TRIGGER);
|
|
|
|
}
|
2011-02-05 20:50:08 +01:00
|
|
|
ubus_msg_enqueue(cl, ub);
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
out:
|
|
|
|
if (free)
|
|
|
|
ubus_msg_free(ub);
|
|
|
|
}
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
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);
|
2010-12-06 03:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_client_disconnect(struct ubus_client *cl)
|
|
|
|
{
|
2011-02-05 20:50:08 +01:00
|
|
|
while (ubus_msg_head(cl))
|
|
|
|
ubus_msg_dequeue(cl);
|
|
|
|
|
2015-11-19 22:32:11 +01:00
|
|
|
ubusd_monitor_disconnect(cl);
|
2011-02-07 02:54:00 +01:00
|
|
|
ubusd_proto_free_client(cl);
|
2014-02-18 15:01:39 +01:00
|
|
|
if (cl->pending_msg_fd >= 0)
|
|
|
|
close(cl->pending_msg_fd);
|
2010-12-06 03:51:58 +01:00
|
|
|
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;
|
2014-02-18 15:01:39 +01:00
|
|
|
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,
|
|
|
|
};
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
/* first try to tx more pending data */
|
2011-02-05 20:50:08 +01:00
|
|
|
while ((ub = ubus_msg_head(cl))) {
|
2010-12-06 03:51:58 +01:00
|
|
|
int written;
|
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
written = ubus_msg_writev(sock->fd, ub, cl->txq_ofs);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (written < 0) {
|
|
|
|
switch(errno) {
|
|
|
|
case EINTR:
|
|
|
|
case EAGAIN:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto disconnect;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
cl->txq_ofs += written;
|
|
|
|
if (cl->txq_ofs < ub->len + sizeof(ub->hdr))
|
2010-12-06 03:51:58 +01:00
|
|
|
break;
|
|
|
|
|
2011-02-05 20:50:08 +01:00
|
|
|
ubus_msg_dequeue(cl);
|
2010-12-06 03:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* prevent further ULOOP_WRITE events if we don't have data
|
|
|
|
* to send anymore */
|
2011-02-05 20:50:08 +01:00
|
|
|
if (!ubus_msg_head(cl) && (events & ULOOP_WRITE))
|
2010-12-06 03:51:58 +01:00
|
|
|
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;
|
|
|
|
|
2014-02-18 15:01:39 +01:00
|
|
|
fd_buf.fd = -1;
|
|
|
|
|
2015-07-06 18:42:36 +02:00
|
|
|
iov.iov_base = ((char *) &cl->hdrbuf) + offset;
|
2014-02-18 15:01:39 +01:00
|
|
|
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);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (bytes < 0)
|
|
|
|
goto out;
|
|
|
|
|
2014-02-18 15:01:39 +01:00
|
|
|
if (fd_buf.fd >= 0)
|
|
|
|
cl->pending_msg_fd = fd_buf.fd;
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
cl->pending_msg_offset += bytes;
|
|
|
|
if (cl->pending_msg_offset < sizeof(cl->hdrbuf))
|
|
|
|
goto out;
|
|
|
|
|
2011-02-07 01:52:40 +01:00
|
|
|
if (blob_pad_len(&cl->hdrbuf.data) > UBUS_MAX_MSGLEN)
|
2010-12-06 03:51:58 +01:00
|
|
|
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 */
|
2014-02-18 15:01:39 +01:00
|
|
|
ub->fd = cl->pending_msg_fd;
|
|
|
|
cl->pending_msg_fd = -1;
|
2010-12-06 03:51:58 +01:00
|
|
|
cl->pending_msg_offset = 0;
|
|
|
|
cl->pending_msg = NULL;
|
2015-11-19 22:32:11 +01:00
|
|
|
ubusd_monitor_message(cl, ub, false);
|
2011-02-07 02:54:00 +01:00
|
|
|
ubusd_proto_receive_message(cl, ub);
|
2010-12-06 03:51:58 +01:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2011-02-05 20:50:08 +01:00
|
|
|
if (!sock->eof || ubus_msg_head(cl))
|
2010-12-06 03:51:58 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
disconnect:
|
|
|
|
handle_client_disconnect(cl);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-07 02:54:00 +01:00
|
|
|
cl = ubusd_proto_new_client(client_fd, client_cb);
|
|
|
|
if (cl)
|
|
|
|
uloop_fd_add(&cl->sock, ULOOP_READ | ULOOP_EDGE_TRIGGER);
|
|
|
|
else
|
|
|
|
close(client_fd);
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2011-02-06 18:40:47 +01:00
|
|
|
static int usage(const char *progname)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage: %s [<options>]\n"
|
|
|
|
"Options: \n"
|
2015-12-09 17:44:00 +01:00
|
|
|
" -A <path>: Set the path to ACL files\n"
|
2011-02-06 18:40:47 +01:00
|
|
|
" -s <socket>: Set the unix domain socket to listen on\n"
|
|
|
|
"\n", progname);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-04-16 01:54:15 +02:00
|
|
|
static void sighup_handler(int sig)
|
|
|
|
{
|
|
|
|
ubusd_acl_load();
|
|
|
|
}
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-02-06 18:40:47 +01:00
|
|
|
const char *ubus_socket = UBUS_UNIX_SOCKET;
|
2010-12-06 03:51:58 +01:00
|
|
|
int ret = 0;
|
2011-02-06 18:40:47 +01:00
|
|
|
int ch;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2015-04-16 01:54:15 +02:00
|
|
|
signal(SIGHUP, sighup_handler);
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2015-04-16 01:54:54 +02:00
|
|
|
openlog("ubusd", LOG_PID, LOG_DAEMON);
|
2010-12-06 03:51:58 +01:00
|
|
|
uloop_init();
|
|
|
|
|
2015-12-09 17:44:00 +01:00
|
|
|
while ((ch = getopt(argc, argv, "A:s:")) != -1) {
|
2011-02-06 18:40:47 +01:00
|
|
|
switch (ch) {
|
|
|
|
case 's':
|
|
|
|
ubus_socket = optarg;
|
|
|
|
break;
|
2015-12-09 17:44:00 +01:00
|
|
|
case 'A':
|
|
|
|
ubusd_acl_dir = optarg;
|
|
|
|
break;
|
2011-02-06 18:40:47 +01:00
|
|
|
default:
|
|
|
|
return usage(argv[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink(ubus_socket);
|
2015-04-13 18:31:28 +02:00
|
|
|
umask(0111);
|
2011-02-06 18:40:47 +01:00
|
|
|
server_fd.fd = usock(USOCK_UNIX | USOCK_SERVER | USOCK_NONBLOCK, ubus_socket, NULL);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (server_fd.fd < 0) {
|
|
|
|
perror("usock");
|
|
|
|
ret = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
uloop_fd_add(&server_fd, ULOOP_READ | ULOOP_EDGE_TRIGGER);
|
2015-04-16 01:54:15 +02:00
|
|
|
ubusd_acl_load();
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
uloop_run();
|
2011-02-06 18:41:18 +01:00
|
|
|
unlink(ubus_socket);
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
out:
|
|
|
|
uloop_done();
|
|
|
|
return ret;
|
|
|
|
}
|