X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=libubus.c;h=d52faff9d9cd11b573584268df21f776b6fbe379;hp=e42f14f9cdf026a3dea36beeb45d60557cb717b9;hb=619f3a160de4f417226b69039538882787b3811c;hpb=73cbb94b4808ac86e686ef80ff4af9b4b84945bd diff --git a/libubus.c b/libubus.c index e42f14f..d52faff 100644 --- a/libubus.c +++ b/libubus.c @@ -71,43 +71,43 @@ out: } static void -ubus_queue_msg(struct ubus_context *ctx, struct ubus_msghdr *hdr) +ubus_queue_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf) { struct ubus_pending_msg *pending; + void *data; - pending = calloc(1, sizeof(*pending)); - if (!pending) - return; - pending->hdr.data = calloc(1, blob_raw_len(ubus_msghdr_data(hdr))); - if (!pending->hdr.data) - return; + pending = calloc_a(sizeof(*pending), &data, blob_raw_len(buf->data)); - memcpy(&pending->hdr.hdr, hdr, sizeof(*hdr)); - memcpy(pending->hdr.data, ubus_msghdr_data(hdr), blob_raw_len(ubus_msghdr_data(hdr))); - list_add(&pending->list, &ctx->pending); + pending->hdr.data = data; + memcpy(&pending->hdr.hdr, &buf->hdr, sizeof(buf->hdr)); + memcpy(data, buf->data, blob_raw_len(buf->data)); + list_add_tail(&pending->list, &ctx->pending); if (ctx->sock.registered) uloop_timeout_set(&ctx->pending_timer, 1); } void __hidden -ubus_process_msg(struct ubus_context *ctx, struct ubus_msghdr *hdr, int fd) +ubus_process_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf, int fd) { - - switch(hdr->type) { + switch(buf->hdr.type) { case UBUS_MSG_STATUS: case UBUS_MSG_DATA: - ubus_process_req_msg(ctx, hdr, fd); + ubus_process_req_msg(ctx, buf, fd); break; case UBUS_MSG_INVOKE: case UBUS_MSG_UNSUBSCRIBE: case UBUS_MSG_NOTIFY: if (ctx->stack_depth) { - ubus_queue_msg(ctx, hdr); + ubus_queue_msg(ctx, buf); break; } - ubus_process_obj_msg(ctx, hdr); + ubus_process_obj_msg(ctx, buf); + break; + case UBUS_MSG_MONITOR: + if (ctx->monitor_cb) + ctx->monitor_cb(ctx, buf->hdr.seq, buf->data); break; } } @@ -120,8 +120,7 @@ static void ubus_process_pending_msg(struct uloop_timeout *timeout) while (!ctx->stack_depth && !list_empty(&ctx->pending)) { pending = list_first_entry(&ctx->pending, struct ubus_pending_msg, list); list_del(&pending->list); - ubus_process_msg(ctx, &pending->hdr.hdr, -1); - free(pending->hdr.data); + ubus_process_msg(ctx, &pending->hdr, -1); free(pending); } } @@ -276,8 +275,10 @@ static void ubus_default_connection_lost(struct ubus_context *ctx) uloop_end(); } -static int _ubus_connect(struct ubus_context *ctx, const char *path) +int ubus_connect_ctx(struct ubus_context *ctx, const char *path) { + memset(ctx, 0, sizeof(*ctx)); + ctx->sock.fd = -1; ctx->sock.cb = ubus_handle_data; ctx->connection_lost = ubus_default_connection_lost; @@ -321,7 +322,7 @@ static void ubus_auto_connect_cb(struct uloop_timeout *timeout) { struct ubus_auto_conn *conn = container_of(timeout, struct ubus_auto_conn, timer); - if (_ubus_connect(&conn->ctx, conn->path)) { + if (ubus_connect_ctx(&conn->ctx, conn->path)) { uloop_timeout_set(timeout, 1000); fprintf(stderr, "failed to connect to ubus\n"); return; @@ -346,7 +347,7 @@ struct ubus_context *ubus_connect(const char *path) if (!ctx) return NULL; - if (_ubus_connect(ctx, path)) { + if (ubus_connect_ctx(ctx, path)) { free(ctx); ctx = NULL; } @@ -354,10 +355,17 @@ struct ubus_context *ubus_connect(const char *path) return ctx; } -void ubus_free(struct ubus_context *ctx) +void ubus_shutdown(struct ubus_context *ctx) { blob_buf_free(&b); + if (!ctx) + return; close(ctx->sock.fd); free(ctx->msgbuf.data); +} + +void ubus_free(struct ubus_context *ctx) +{ + ubus_shutdown(ctx); free(ctx); }