validate: fix indentation
[project/ubox.git] / log / logread.c
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <sys/types.h>
16 #include <sys/stat.h>
17
18 #include <fcntl.h>
19 #include <time.h>
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <sys/types.h>
23 #include <sys/socket.h>
24
25 #define SYSLOG_NAMES
26 #include <syslog.h>
27
28 #include <libubox/ustream.h>
29 #include <libubox/blobmsg_json.h>
30 #include <libubox/usock.h>
31 #include <libubox/uloop.h>
32 #include "libubus.h"
33 #include "syslog.h"
34
35 enum {
36         LOG_STDOUT,
37         LOG_FILE,
38         LOG_NET,
39 };
40
41 enum {
42         LOG_MSG,
43         LOG_ID,
44         LOG_PRIO,
45         LOG_SOURCE,
46         LOG_TIME,
47         __LOG_MAX
48 };
49
50 static const struct blobmsg_policy log_policy[] = {
51         [LOG_MSG] = { .name = "msg", .type = BLOBMSG_TYPE_STRING },
52         [LOG_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
53         [LOG_PRIO] = { .name = "priority", .type = BLOBMSG_TYPE_INT32 },
54         [LOG_SOURCE] = { .name = "source", .type = BLOBMSG_TYPE_INT32 },
55         [LOG_TIME] = { .name = "time", .type = BLOBMSG_TYPE_INT64 },
56 };
57
58 static struct uloop_timeout retry;
59 static struct uloop_fd sender;
60 static const char *log_file, *log_ip, *log_port, *log_prefix, *pid_file, *hostname;
61 static int log_type = LOG_STDOUT;
62 static int log_size, log_udp, log_follow = 0;
63
64 static const char* getcodetext(int value, CODE *codetable) {
65         CODE *i;
66
67         if (value >= 0)
68                 for (i = codetable; i->c_val != -1; i++)
69                         if (i->c_val == value)
70                                 return (i->c_name);
71         return "<unknown>";
72 };
73
74 static void log_handle_reconnect(struct uloop_timeout *timeout)
75 {
76         sender.fd = usock((log_udp) ? (USOCK_UDP) : (USOCK_TCP), log_ip, log_port);
77         if (sender.fd < 0) {
78                 fprintf(stderr, "failed to connect: %s\n", strerror(errno));
79                 uloop_timeout_set(&retry, 1000);
80         } else {
81                 uloop_fd_add(&sender, ULOOP_READ);
82                 syslog(0, "Logread connected to %s:%s\n", log_ip, log_port);
83         }
84 }
85
86 static void log_handle_fd(struct uloop_fd *u, unsigned int events)
87 {
88         if (u->eof) {
89                 uloop_fd_delete(u);
90                 close(sender.fd);
91                 sender.fd = -1;
92                 uloop_timeout_set(&retry, 1000);
93         }
94 }
95
96 static int log_notify(struct blob_attr *msg)
97 {
98         struct blob_attr *tb[__LOG_MAX];
99         struct stat s;
100         char buf[512];
101         uint32_t p;
102         char *str;
103         time_t t;
104         char *c, *m;
105
106         if (sender.fd < 0)
107                 return 0;
108
109         blobmsg_parse(log_policy, ARRAY_SIZE(log_policy), tb, blob_data(msg), blob_len(msg));
110         if (!tb[LOG_ID] || !tb[LOG_PRIO] || !tb[LOG_SOURCE] || !tb[LOG_TIME] || !tb[LOG_MSG])
111                 return 1;
112
113         if ((log_type == LOG_FILE) && log_size && (!stat(log_file, &s)) && (s.st_size > log_size)) {
114                 char *old = malloc(strlen(log_file) + 5);
115
116                 close(sender.fd);
117                 if (old) {
118                         sprintf(old, "%s.old", log_file);
119                         rename(log_file, old);
120                         free(old);
121                 }
122                 sender.fd = open(log_file, O_CREAT | O_WRONLY | O_APPEND, 0600);
123                 if (sender.fd < 0) {
124                         fprintf(stderr, "failed to open %s: %s\n", log_file, strerror(errno));
125                         exit(-1);
126                 }
127         }
128
129         m = blobmsg_get_string(tb[LOG_MSG]);
130         t = blobmsg_get_u64(tb[LOG_TIME]) / 1000;
131         c = ctime(&t);
132         p = blobmsg_get_u32(tb[LOG_PRIO]);
133         c[strlen(c) - 1] = '\0';
134         str = blobmsg_format_json(msg, true);
135         if (log_type == LOG_NET) {
136                 int err;
137
138                 *buf = '\0';
139                 if (hostname)
140                         snprintf(buf, sizeof(buf), "%s ", hostname);
141                 if (log_prefix) {
142                         strncat(buf, log_prefix, sizeof(buf));
143                         strncat(buf, ": ", sizeof(buf));
144                 }
145                 if (blobmsg_get_u32(tb[LOG_SOURCE]) == SOURCE_KLOG)
146                         strncat(buf, "kernel: ", sizeof(buf));
147                 strncat(buf, m, sizeof(buf));
148                 if (log_udp)
149                         err = write(sender.fd, buf, strlen(buf));
150                 else
151                         err = send(sender.fd, buf, strlen(buf), 0);
152
153                 if (err < 0) {
154                         syslog(0, "failed to send log data to %s:%s via %s\n",
155                                 log_ip, log_port, (log_udp) ? ("udp") : ("tcp"));
156                         uloop_fd_delete(&sender);
157                         close(sender.fd);
158                         sender.fd = -1;
159                         uloop_timeout_set(&retry, 1000);
160                 }
161         } else {
162                 snprintf(buf, sizeof(buf), "%s %s.%s%s %s\n",
163                         c, getcodetext(LOG_FAC(p) << 3, facilitynames), getcodetext(LOG_PRI(p), prioritynames),
164                         (blobmsg_get_u32(tb[LOG_SOURCE])) ? ("") : (" kernel:"), m);
165                 write(sender.fd, buf, strlen(buf));
166         }
167
168         free(str);
169         if (log_type == LOG_FILE)
170                 fsync(sender.fd);
171
172         return 0;
173 }
174
175 static int usage(const char *prog)
176 {
177         fprintf(stderr, "Usage: %s [options]\n"
178                 "Options:\n"
179                 "    -s <path>          Path to ubus socket\n"
180                 "    -l <count>         Got only the last 'count' messages\n"
181                 "    -r <server> <port> Stream message to a server\n"
182                 "    -F <file>          Log file\n"
183                 "    -S <bytes>         Log size\n"
184                 "    -p <file>          PID file\n"
185                 "    -h <hostname>      Add hostname to the message\n"
186                 "    -P <prefix>        Prefix custom text to streamed messages\n"
187                 "    -f                 Follow log messages\n"
188                 "    -u                 Use UDP as the protocol\n"
189                 "\n", prog);
190         return 1;
191 }
192
193 static void logread_fd_data_cb(struct ustream *s, int bytes)
194 {
195         while (true) {
196                 int len;
197                 struct blob_attr *a;
198
199                 a = (void*) ustream_get_read_buf(s, &len);
200                 if (len < sizeof(*a) || len < blob_len(a) + sizeof(*a))
201                         break;
202                 log_notify(a);
203                 ustream_consume(s, blob_len(a) + sizeof(*a));
204         }
205         if (!log_follow)
206                 uloop_end();
207 }
208
209 static void logread_fd_cb(struct ubus_request *req, int fd)
210 {
211         static struct ustream_fd test_fd;
212
213         test_fd.stream.notify_read = logread_fd_data_cb;
214         ustream_fd_init(&test_fd, fd);
215 }
216
217 static void logread_complete_cb(struct ubus_request *req, int ret)
218 {
219 }
220
221 int main(int argc, char **argv)
222 {
223         static struct ubus_request req;
224         struct ubus_context *ctx;
225         uint32_t id;
226         const char *ubus_socket = NULL;
227         int ch, ret, lines = 0;
228         static struct blob_buf b;
229         int tries = 5;
230
231         signal(SIGPIPE, SIG_IGN);
232
233         while ((ch = getopt(argc, argv, "ufcs:l:r:F:p:S:P:h:")) != -1) {
234                 switch (ch) {
235                 case 'u':
236                         log_udp = 1;
237                         break;
238                 case 's':
239                         ubus_socket = optarg;
240                         break;
241                 case 'r':
242                         log_ip = optarg++;
243                         log_port = argv[optind++];
244                         break;
245                 case 'F':
246                         log_file = optarg;
247                         break;
248                 case 'p':
249                         pid_file = optarg;
250                         break;
251                 case 'P':
252                         log_prefix = optarg;
253                         break;
254                 case 'f':
255                         log_follow = 1;
256                         break;
257                 case 'l':
258                         lines = atoi(optarg);
259                         break;
260                 case 'S':
261                         log_size = atoi(optarg);
262                         if (log_size < 1)
263                                 log_size = 1;
264                         log_size *= 1024;
265                         break;
266                 case 'h':
267                         hostname = optarg;
268                         break;
269                 default:
270                         return usage(*argv);
271                 }
272         }
273         uloop_init();
274
275         ctx = ubus_connect(ubus_socket);
276         if (!ctx) {
277                 fprintf(stderr, "Failed to connect to ubus\n");
278                 return -1;
279         }
280         ubus_add_uloop(ctx);
281
282         /* ugly ugly ugly ... we need a real reconnect logic */
283         do {
284                 ret = ubus_lookup_id(ctx, "log", &id);
285                 if (ret) {
286                         fprintf(stderr, "Failed to find log object: %s\n", ubus_strerror(ret));
287                         sleep(1);
288                         continue;
289                 }
290
291                 blob_buf_init(&b, 0);
292                 if (lines)
293                         blobmsg_add_u32(&b, "lines", lines);
294                 else if (log_follow)
295                         blobmsg_add_u32(&b, "lines", 0);
296                 if (log_follow) {
297                         if (pid_file) {
298                                 FILE *fp = fopen(pid_file, "w+");
299                                 if (fp) {
300                                         fprintf(fp, "%d", getpid());
301                                         fclose(fp);
302                                 }
303                         }
304                 }
305
306                 if (log_ip && log_port) {
307                         openlog("logread", LOG_PID, LOG_DAEMON);
308                         log_type = LOG_NET;
309                         sender.cb = log_handle_fd;
310                         retry.cb = log_handle_reconnect;
311                         uloop_timeout_set(&retry, 1000);
312                 } else if (log_file) {
313                         log_type = LOG_FILE;
314                         sender.fd = open(log_file, O_CREAT | O_WRONLY| O_APPEND, 0600);
315                         if (sender.fd < 0) {
316                                 fprintf(stderr, "failed to open %s: %s\n", log_file, strerror(errno));
317                                 exit(-1);
318                         }
319                 } else {
320                         sender.fd = STDOUT_FILENO;
321                 }
322
323                 ubus_invoke_async(ctx, id, "read", b.head, &req);
324                 req.fd_cb = logread_fd_cb;
325                 req.complete_cb = logread_complete_cb;
326                 ubus_complete_request_async(ctx, &req);
327
328                 uloop_run();
329                 ubus_free(ctx);
330                 uloop_done();
331
332         } while (ret && tries--);
333
334         return ret;
335 }