X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubox.git;a=blobdiff_plain;f=log%2Flogd.c;h=915348e3bce0b27086855e20022727aae5bd7b2f;hp=cbaf2193eb5bdcb80725a0f74f407a00782ae429;hb=db070f15ac559e3bd406cb8b8cccf40f78e75094;hpb=dee0eafbf7de74b45f90631b7c807395e0a0bc4b diff --git a/log/logd.c b/log/logd.c index cbaf219..915348e 100644 --- a/log/logd.c +++ b/log/logd.c @@ -12,6 +12,7 @@ */ #include +#include #include #include @@ -19,56 +20,123 @@ #include #include +#include +#include #include #include "syslog.h" int debug = 0; -static int notify; static struct blob_buf b; -static struct ubus_context *_ctx; -static struct uloop_timeout ubus_timer; +static struct ubus_auto_conn conn; +static LIST_HEAD(clients); + +enum { + READ_LINES, + READ_STREAM, + __READ_MAX +}; -static const struct blobmsg_policy read_policy = - { .name = "lines", .type = BLOBMSG_TYPE_INT32 }; +static const struct blobmsg_policy read_policy[__READ_MAX] = { + [READ_LINES] = { .name = "lines", .type = BLOBMSG_TYPE_INT32 }, + [READ_STREAM] = { .name = "stream", .type = BLOBMSG_TYPE_BOOL }, +}; static const struct blobmsg_policy write_policy = { .name = "event", .type = BLOBMSG_TYPE_STRING }; +struct client { + struct list_head list; + + struct ustream_fd s; + int fd; +}; + +static void +client_close(struct ustream *s) +{ + struct client *cl = container_of(s, struct client, s.stream); + + list_del(&cl->list); + ustream_free(s); + close(cl->fd); + free(cl); +} + +static void client_notify_state(struct ustream *s) +{ + client_close(s); +} + +static void +log_fill_msg(struct blob_buf *b, struct log_head *l) +{ + blobmsg_add_string(b, "msg", l->data); + blobmsg_add_u32(b, "id", l->id); + blobmsg_add_u32(b, "priority", l->priority); + blobmsg_add_u32(b, "source", l->source); + blobmsg_add_u64(b, "time", l->ts.tv_sec * 1000LL); +} + static int read_log(struct ubus_context *ctx, struct ubus_object *obj, struct ubus_request_data *req, const char *method, struct blob_attr *msg) { - struct blob_attr *tb; + struct client *cl; + struct blob_attr *tb[__READ_MAX] = { 0 }; struct log_head *l; - void *lines, *entry; int count = 0; + int fds[2]; + int ret; + bool stream = true; + void *c, *e; + + if (!stream) + count = 100; if (msg) { - blobmsg_parse(&read_policy, 1, &tb, blob_data(msg), blob_len(msg)); - if (tb) - count = blobmsg_get_u32(tb); + blobmsg_parse(read_policy, __READ_MAX, tb, blob_data(msg), blob_len(msg)); + if (tb[READ_LINES]) + count = blobmsg_get_u32(tb[READ_LINES]); + if (tb[READ_STREAM]) + stream = blobmsg_get_bool(tb[READ_STREAM]); } - blob_buf_init(&b, 0); - lines = blobmsg_open_array(&b, "lines"); + if (pipe(fds) == -1) { + fprintf(stderr, "logd: failed to create pipe: %s\n", strerror(errno)); + return -1; + } l = log_list(count, NULL); - - while (l) { - entry = blobmsg_open_table(&b, NULL); - blobmsg_add_string(&b, "msg", l->data); - blobmsg_add_u32(&b, "id", l->id); - blobmsg_add_u32(&b, "priority", l->priority); - blobmsg_add_u32(&b, "source", l->source); - blobmsg_add_u64(&b, "time", l->ts.tv_sec); - blobmsg_close_table(&b, entry); - l = log_list(count, l); + if (stream) { + ubus_request_set_fd(ctx, req, fds[0]); + cl = calloc(1, sizeof(*cl)); + cl->s.stream.notify_state = client_notify_state; + cl->fd = fds[1]; + ustream_fd_init(&cl->s, cl->fd); + list_add(&cl->list, &clients); + while ((!tb[READ_LINES] || count) && l) { + blob_buf_init(&b, 0); + log_fill_msg(&b, l); + l = log_list(count, l); + ret = ustream_write(&cl->s.stream, (void *) b.head, blob_len(b.head) + sizeof(struct blob_attr), false); + if (ret < 0) + break; + } + } else { + blob_buf_init(&b, 0); + c = blobmsg_open_array(&b, "log"); + while ((!tb[READ_LINES] || count) && l) { + e = blobmsg_open_table(&b, NULL); + log_fill_msg(&b, l); + blobmsg_close_table(&b, e); + l = log_list(count, l); + } + blobmsg_close_array(&b, c); + ubus_send_reply(ctx, req, b.head); } - blobmsg_close_table(&b, lines); - ubus_send_reply(ctx, req, b.head); - + blob_buf_free(&b); return 0; } @@ -91,14 +159,8 @@ write_log(struct ubus_context *ctx, struct ubus_object *obj, return 0; } -static void -log_subscribe_cb(struct ubus_context *ctx, struct ubus_object *obj) -{ - notify = obj->has_subscribers; -} - static const struct ubus_method log_methods[] = { - { .name = "read", .handler = read_log, .policy = &read_policy, .n_policy = 1 }, + UBUS_METHOD("read", read_log, read_policy), { .name = "write", .handler = write_log, .policy = &write_policy, .n_policy = 1 }, }; @@ -110,89 +172,67 @@ static struct ubus_object log_object = { .type = &log_object_type, .methods = log_methods, .n_methods = ARRAY_SIZE(log_methods), - .subscribe_cb = log_subscribe_cb, }; void ubus_notify_log(struct log_head *l) { - int ret; + struct client *c; - if (!notify) + if (list_empty(&clients)) return; blob_buf_init(&b, 0); + blobmsg_add_string(&b, "msg", l->data); blobmsg_add_u32(&b, "id", l->id); blobmsg_add_u32(&b, "priority", l->priority); blobmsg_add_u32(&b, "source", l->source); blobmsg_add_u64(&b, "time", (((__u64) l->ts.tv_sec) * 1000) + (l->ts.tv_nsec / 1000000)); - ret = ubus_notify(_ctx, &log_object, l->data, b.head, -1); - if (ret) - fprintf(stderr, "Failed to notify log: %s\n", ubus_strerror(ret)); -} - -static void -ubus_reconnect_cb(struct uloop_timeout *timeout) -{ - if (!ubus_reconnect(_ctx, NULL)) - ubus_add_uloop(_ctx); - else - uloop_timeout_set(timeout, 1000); -} + list_for_each_entry(c, &clients, list) + ustream_write(&c->s.stream, (void *) b.head, blob_len(b.head) + sizeof(struct blob_attr), false); -static void -ubus_disconnect_cb(struct ubus_context *ctx) -{ - ubus_timer.cb = ubus_reconnect_cb; - uloop_timeout_set(&ubus_timer, 1000); + blob_buf_free(&b); } static void -ubus_connect_cb(struct uloop_timeout *timeout) +ubus_connect_handler(struct ubus_context *ctx) { int ret; - _ctx = ubus_connect(NULL); - if (!_ctx) { - uloop_timeout_set(timeout, 1000); - fprintf(stderr, "failed to connect to ubus\n"); - return; - } - _ctx->connection_lost = ubus_disconnect_cb; - ret = ubus_add_object(_ctx, &log_object); - if (ret) + ret = ubus_add_object(ctx, &log_object); + if (ret) { fprintf(stderr, "Failed to add object: %s\n", ubus_strerror(ret)); + exit(1); + } fprintf(stderr, "log: connected to ubus\n"); - ubus_add_uloop(_ctx); } int main(int argc, char **argv) { - int ch, log_size = 0; + int ch, log_size = 16; signal(SIGPIPE, SIG_IGN); - while ((ch = getopt(argc, argv, "S:")) != -1) { switch (ch) { case 'S': log_size = atoi(optarg); if (log_size < 1) - log_size = 1; - log_size *= 1024; + log_size = 16; break; } } + log_size *= 1024; + uloop_init(); - ubus_timer.cb = ubus_connect_cb; - uloop_timeout_set(&ubus_timer, 1000); log_init(log_size); + conn.cb = ubus_connect_handler; + ubus_auto_connect(&conn); uloop_run(); - if (_ctx) - ubus_free(_ctx); log_shutdown(); uloop_done(); + ubus_auto_shutdown(&conn); return 0; }