summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Ardelean <ardeleanalex@gmail.com>2017-06-07 14:09:31 +0300
committerFelix Fietkau <nbd@nbd.name>2017-11-13 10:09:28 +0100
commit5f87f5480ebf004d735dbf44259d08cf8affd305 (patch)
treeddfede28b10badb205e1411e8b2c8376517397b5
parent27d712d394a0086ff68b83de26ded70ab28d1757 (diff)
downloadubus-5f87f5480ebf004d735dbf44259d08cf8affd305.tar.gz
ubusd: move global retmsg per client
Even with the tx_queue-ing issue resolved, what seems to happen afterwards, is that all the messages seems to get through, but the client still loops in the `ubus_complete_request()` waiting for `req->status_msg` or for a timeout. Though, the timeout does not seem to happen, because the data is processed in `ubus_poll_data()`, with a infinite poll() timeout (ubus_complete_request() is called with timeout 0). It's likely that either the `seq` or `peer` sent from ubusd are wrong, and the client cannot get the correct ubus request in `ubus_process_req_msg()`. I haven't digged too deep into this ; setting the `retmsg` object on the client struct seems to have resolved any hanging with the `ubus list` command. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> Signed-off-by: Felix Fietkau <nbd@nbd.name> [fix placement of retmsg in cl]
-rw-r--r--ubusd.h2
-rw-r--r--ubusd_proto.c35
2 files changed, 25 insertions, 12 deletions
diff --git a/ubusd.h b/ubusd.h
index 991a59f..4d87920 100644
--- a/ubusd.h
+++ b/ubusd.h
@@ -39,6 +39,7 @@ struct ubus_msg_buf {
struct ubus_client {
struct ubus_id id;
struct uloop_fd sock;
+ struct blob_buf b;
uid_t uid;
gid_t gid;
@@ -51,6 +52,7 @@ struct ubus_client {
unsigned int txq_cur, txq_tail, txq_ofs;
struct ubus_msg_buf *pending_msg;
+ struct ubus_msg_buf *retmsg;
int pending_msg_offset;
int pending_msg_fd;
struct {
diff --git a/ubusd_proto.c b/ubusd_proto.c
index b084b86..2d04b5a 100644
--- a/ubusd_proto.c
+++ b/ubusd_proto.c
@@ -17,8 +17,6 @@
#include "ubusd.h"
struct blob_buf b;
-static struct ubus_msg_buf *retmsg;
-static int *retmsg_data;
static struct avl_tree clients;
static struct blob_attr *attrbuf[UBUS_ATTR_MAX];
@@ -441,6 +439,8 @@ void ubusd_proto_receive_message(struct ubus_client *cl, struct ubus_msg_buf *ub
{
ubus_cmd_cb cb = NULL;
int ret;
+ struct ubus_msg_buf *retmsg = cl->retmsg;
+ int *retmsg_data = blob_data(blob_data(retmsg->data));
retmsg->hdr.seq = ub->hdr.seq;
retmsg->hdr.peer = ub->hdr.peer;
@@ -467,6 +467,22 @@ void ubusd_proto_receive_message(struct ubus_client *cl, struct ubus_msg_buf *ub
ubus_msg_send(cl, retmsg);
}
+static int ubusd_proto_init_retmsg(struct ubus_client *cl)
+{
+ struct blob_buf *b = &cl->b;
+
+ blob_buf_init(&cl->b, 0);
+ blob_put_int32(&cl->b, UBUS_ATTR_STATUS, 0);
+
+ /* we make the 'retmsg' buffer shared with the blob_buf b, to reduce mem duplication */
+ cl->retmsg = ubus_msg_new(b->head, blob_raw_len(b->head), true);
+ if (!cl->retmsg)
+ return -1;
+
+ cl->retmsg->hdr.type = UBUS_MSG_STATUS;
+ return 0;
+}
+
struct ubus_client *ubusd_proto_new_client(int fd, uloop_fd_handler cb)
{
struct ubus_client *cl;
@@ -486,6 +502,9 @@ struct ubus_client *ubusd_proto_new_client(int fd, uloop_fd_handler cb)
if (!ubus_alloc_id(&clients, &cl->id, 0))
goto free;
+ if (ubusd_proto_init_retmsg(cl))
+ goto free;
+
if (!ubusd_send_hello(cl))
goto delete;
@@ -506,6 +525,8 @@ void ubusd_proto_free_client(struct ubus_client *cl)
obj = list_first_entry(&cl->objects, struct ubus_object, list);
ubusd_free_object(obj);
}
+ ubus_msg_free(cl->retmsg);
+ blob_buf_free(&cl->b);
ubusd_acl_free_client(cl);
ubus_free_id(&clients, &cl->id);
@@ -550,14 +571,4 @@ void ubus_notify_unsubscribe(struct ubus_subscription *s)
static void __constructor ubusd_proto_init(void)
{
ubus_init_id_tree(&clients);
-
- blob_buf_init(&b, 0);
- blob_put_int32(&b, UBUS_ATTR_STATUS, 0);
-
- retmsg = ubus_msg_from_blob(false);
- if (!retmsg)
- exit(1);
-
- retmsg->hdr.type = UBUS_MSG_STATUS;
- retmsg_data = blob_data(blob_data(retmsg->data));
}