2 * Copyright (C) 2011-2014 Felix Fietkau <nbd@openwrt.org>
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
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.
14 #include <sys/types.h>
15 #include <sys/socket.h>
18 #include <libubox/blob.h>
19 #include <libubox/blobmsg.h>
22 #include "libubus-internal.h"
25 const char *__ubus_strerror[__UBUS_STATUS_LAST] = {
26 [UBUS_STATUS_OK] = "Success",
27 [UBUS_STATUS_INVALID_COMMAND] = "Invalid command",
28 [UBUS_STATUS_INVALID_ARGUMENT] = "Invalid argument",
29 [UBUS_STATUS_METHOD_NOT_FOUND] = "Method not found",
30 [UBUS_STATUS_NOT_FOUND] = "Not found",
31 [UBUS_STATUS_NO_DATA] = "No response",
32 [UBUS_STATUS_PERMISSION_DENIED] = "Permission denied",
33 [UBUS_STATUS_TIMEOUT] = "Request timed out",
34 [UBUS_STATUS_NOT_SUPPORTED] = "Operation not supported",
35 [UBUS_STATUS_UNKNOWN_ERROR] = "Unknown error",
36 [UBUS_STATUS_CONNECTION_FAILED] = "Connection failed",
39 struct blob_buf b __hidden = {};
41 struct ubus_pending_msg {
42 struct list_head list;
43 struct ubus_msghdr_buf hdr;
46 static int ubus_cmp_id(const void *k1, const void *k2, void *ptr)
48 const uint32_t *id1 = k1, *id2 = k2;
56 const char *ubus_strerror(int error)
60 if (error < 0 || error >= __UBUS_STATUS_LAST)
63 if (!__ubus_strerror[error])
66 return __ubus_strerror[error];
69 sprintf(err, "Unknown error: %d", error);
74 ubus_queue_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf)
76 struct ubus_pending_msg *pending;
79 pending = calloc_a(sizeof(*pending), &data, blob_raw_len(buf->data));
81 pending->hdr.data = data;
82 memcpy(&pending->hdr.hdr, &buf->hdr, sizeof(buf->hdr));
83 memcpy(data, buf->data, blob_raw_len(buf->data));
84 list_add_tail(&pending->list, &ctx->pending);
85 if (ctx->sock.registered)
86 uloop_timeout_set(&ctx->pending_timer, 1);
90 ubus_process_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf, int fd)
92 switch(buf->hdr.type) {
95 ubus_process_req_msg(ctx, buf, fd);
99 case UBUS_MSG_UNSUBSCRIBE:
100 case UBUS_MSG_NOTIFY:
101 if (ctx->stack_depth) {
102 ubus_queue_msg(ctx, buf);
106 ubus_process_obj_msg(ctx, buf, fd);
108 case UBUS_MSG_MONITOR:
110 ctx->monitor_cb(ctx, buf->hdr.seq, buf->data);
115 static void ubus_process_pending_msg(struct uloop_timeout *timeout)
117 struct ubus_context *ctx = container_of(timeout, struct ubus_context, pending_timer);
118 struct ubus_pending_msg *pending;
120 while (!ctx->stack_depth && !list_empty(&ctx->pending)) {
121 pending = list_first_entry(&ctx->pending, struct ubus_pending_msg, list);
122 list_del(&pending->list);
123 ubus_process_msg(ctx, &pending->hdr, -1);
128 struct ubus_lookup_request {
129 struct ubus_request req;
130 ubus_lookup_handler_t cb;
133 static void ubus_lookup_cb(struct ubus_request *ureq, int type, struct blob_attr *msg)
135 struct ubus_lookup_request *req;
136 struct ubus_object_data obj = {};
137 struct blob_attr **attr;
139 req = container_of(ureq, struct ubus_lookup_request, req);
140 attr = ubus_parse_msg(msg);
142 if (!attr[UBUS_ATTR_OBJID] || !attr[UBUS_ATTR_OBJPATH] ||
143 !attr[UBUS_ATTR_OBJTYPE])
146 obj.id = blob_get_u32(attr[UBUS_ATTR_OBJID]);
147 obj.path = blob_data(attr[UBUS_ATTR_OBJPATH]);
148 obj.type_id = blob_get_u32(attr[UBUS_ATTR_OBJTYPE]);
149 obj.signature = attr[UBUS_ATTR_SIGNATURE];
150 req->cb(ureq->ctx, &obj, ureq->priv);
153 int ubus_lookup(struct ubus_context *ctx, const char *path,
154 ubus_lookup_handler_t cb, void *priv)
156 struct ubus_lookup_request lookup;
158 blob_buf_init(&b, 0);
160 blob_put_string(&b, UBUS_ATTR_OBJPATH, path);
162 if (ubus_start_request(ctx, &lookup.req, b.head, UBUS_MSG_LOOKUP, 0) < 0)
163 return UBUS_STATUS_INVALID_ARGUMENT;
165 lookup.req.raw_data_cb = ubus_lookup_cb;
166 lookup.req.priv = priv;
168 return ubus_complete_request(ctx, &lookup.req, 0);
171 static void ubus_lookup_id_cb(struct ubus_request *req, int type, struct blob_attr *msg)
173 struct blob_attr **attr;
174 uint32_t *id = req->priv;
176 attr = ubus_parse_msg(msg);
178 if (!attr[UBUS_ATTR_OBJID])
181 *id = blob_get_u32(attr[UBUS_ATTR_OBJID]);
184 int ubus_lookup_id(struct ubus_context *ctx, const char *path, uint32_t *id)
186 struct ubus_request req;
188 blob_buf_init(&b, 0);
190 blob_put_string(&b, UBUS_ATTR_OBJPATH, path);
192 if (ubus_start_request(ctx, &req, b.head, UBUS_MSG_LOOKUP, 0) < 0)
193 return UBUS_STATUS_INVALID_ARGUMENT;
195 req.raw_data_cb = ubus_lookup_id_cb;
198 return ubus_complete_request(ctx, &req, 0);
201 static int ubus_event_cb(struct ubus_context *ctx, struct ubus_object *obj,
202 struct ubus_request_data *req,
203 const char *method, struct blob_attr *msg)
205 struct ubus_event_handler *ev;
207 ev = container_of(obj, struct ubus_event_handler, obj);
208 ev->cb(ctx, ev, method, msg);
212 static const struct ubus_method event_method = {
214 .handler = ubus_event_cb,
217 int ubus_register_event_handler(struct ubus_context *ctx,
218 struct ubus_event_handler *ev,
221 struct ubus_object *obj = &ev->obj;
222 struct blob_buf b2 = {};
226 obj->methods = &event_method;
229 if (!!obj->name ^ !!obj->type)
230 return UBUS_STATUS_INVALID_ARGUMENT;
232 ret = ubus_add_object(ctx, obj);
237 /* use a second buffer, ubus_invoke() overwrites the primary one */
238 blob_buf_init(&b2, 0);
239 blobmsg_add_u32(&b2, "object", obj->id);
241 blobmsg_add_string(&b2, "pattern", pattern);
243 ret = ubus_invoke(ctx, UBUS_SYSTEM_OBJECT_EVENT, "register", b2.head,
250 int ubus_send_event(struct ubus_context *ctx, const char *id,
251 struct blob_attr *data)
253 struct ubus_request req;
256 blob_buf_init(&b, 0);
257 blob_put_int32(&b, UBUS_ATTR_OBJID, UBUS_SYSTEM_OBJECT_EVENT);
258 blob_put_string(&b, UBUS_ATTR_METHOD, "send");
259 s = blob_nest_start(&b, UBUS_ATTR_DATA);
260 blobmsg_add_string(&b, "id", id);
261 blobmsg_add_field(&b, BLOBMSG_TYPE_TABLE, "data", blob_data(data), blob_len(data));
262 blob_nest_end(&b, s);
264 if (ubus_start_request(ctx, &req, b.head, UBUS_MSG_INVOKE, UBUS_SYSTEM_OBJECT_EVENT) < 0)
265 return UBUS_STATUS_INVALID_ARGUMENT;
267 return ubus_complete_request(ctx, &req, 0);
270 static void ubus_default_connection_lost(struct ubus_context *ctx)
272 if (ctx->sock.registered)
276 int ubus_connect_ctx(struct ubus_context *ctx, const char *path)
279 memset(ctx, 0, sizeof(*ctx));
282 ctx->sock.cb = ubus_handle_data;
283 ctx->connection_lost = ubus_default_connection_lost;
284 ctx->pending_timer.cb = ubus_process_pending_msg;
286 ctx->msgbuf.data = calloc(UBUS_MSG_CHUNK_SIZE, sizeof(char));
287 if (!ctx->msgbuf.data)
289 ctx->msgbuf_data_len = UBUS_MSG_CHUNK_SIZE;
291 INIT_LIST_HEAD(&ctx->requests);
292 INIT_LIST_HEAD(&ctx->pending);
293 avl_init(&ctx->objects, ubus_cmp_id, false, NULL);
294 if (ubus_reconnect(ctx, path)) {
295 free(ctx->msgbuf.data);
296 ctx->msgbuf.data = NULL;
303 static void ubus_auto_reconnect_cb(struct uloop_timeout *timeout)
305 struct ubus_auto_conn *conn = container_of(timeout, struct ubus_auto_conn, timer);
307 if (!ubus_reconnect(&conn->ctx, conn->path))
308 ubus_add_uloop(&conn->ctx);
310 uloop_timeout_set(timeout, 1000);
313 static void ubus_auto_disconnect_cb(struct ubus_context *ctx)
315 struct ubus_auto_conn *conn = container_of(ctx, struct ubus_auto_conn, ctx);
317 conn->timer.cb = ubus_auto_reconnect_cb;
318 uloop_timeout_set(&conn->timer, 1000);
321 static void ubus_auto_connect_cb(struct uloop_timeout *timeout)
323 struct ubus_auto_conn *conn = container_of(timeout, struct ubus_auto_conn, timer);
325 if (ubus_connect_ctx(&conn->ctx, conn->path)) {
326 uloop_timeout_set(timeout, 1000);
327 fprintf(stderr, "failed to connect to ubus\n");
330 conn->ctx.connection_lost = ubus_auto_disconnect_cb;
332 conn->cb(&conn->ctx);
333 ubus_add_uloop(&conn->ctx);
336 void ubus_auto_connect(struct ubus_auto_conn *conn)
338 conn->timer.cb = ubus_auto_connect_cb;
339 ubus_auto_connect_cb(&conn->timer);
342 struct ubus_context *ubus_connect(const char *path)
344 struct ubus_context *ctx;
346 ctx = calloc(1, sizeof(*ctx));
350 if (ubus_connect_ctx(ctx, path)) {
358 void ubus_shutdown(struct ubus_context *ctx)
364 uloop_timeout_cancel(&ctx->pending_timer);
365 free(ctx->msgbuf.data);
368 void ubus_free(struct ubus_context *ctx)