the cloexec logic of the watchdog was broken
[project/procd.git] / 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/blobmsg_json.h>
29 #include <libubox/usock.h>
30 #include <libubox/uloop.h>
31 #include "libubus.h"
32
33 enum {
34 LOG_STDOUT,
35 LOG_FILE,
36 LOG_NET,
37 };
38
39 enum {
40 LOG_MSG,
41 LOG_ID,
42 LOG_PRIO,
43 LOG_SOURCE,
44 LOG_TIME,
45 __LOG_MAX
46 };
47
48 static const struct blobmsg_policy log_policy[] = {
49 [LOG_MSG] = { .name = "msg", .type = BLOBMSG_TYPE_STRING },
50 [LOG_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
51 [LOG_PRIO] = { .name = "priority", .type = BLOBMSG_TYPE_INT32 },
52 [LOG_SOURCE] = { .name = "source", .type = BLOBMSG_TYPE_INT32 },
53 [LOG_TIME] = { .name = "time", .type = BLOBMSG_TYPE_INT64 },
54 };
55
56 static struct ubus_subscriber log_event;
57 static struct uloop_timeout retry;
58 static struct uloop_fd sender;
59 static const char *log_file, *log_ip, *log_port, *pid_file;
60 static int log_type = LOG_STDOUT;
61 static int log_size, log_udp;
62
63 static void log_handle_reconnect(struct uloop_timeout *timeout)
64 {
65 sender.fd = usock((log_udp) ? (USOCK_UDP) : (USOCK_TCP), log_ip, log_port);
66 if (sender.fd < 0) {
67 fprintf(stderr, "failed to connect: %s\n", strerror(errno));
68 uloop_timeout_set(&retry, 1000);
69 } else {
70 uloop_fd_add(&sender, ULOOP_READ);
71 syslog(0, "Logread connected to %s:%s\n", log_ip, log_port);
72 }
73 }
74
75 static void log_handle_remove(struct ubus_context *ctx, struct ubus_subscriber *s,
76 uint32_t id)
77 {
78 fprintf(stderr, "Object %08x went away\n", id);
79 }
80
81 static void log_handle_fd(struct uloop_fd *u, unsigned int events)
82 {
83 if (u->eof) {
84 uloop_fd_delete(u);
85 close(sender.fd);
86 sender.fd = -1;
87 uloop_timeout_set(&retry, 1000);
88 }
89 }
90
91 static int log_notify(struct ubus_context *ctx, struct ubus_object *obj,
92 struct ubus_request_data *req, const char *method,
93 struct blob_attr *msg)
94 {
95 struct blob_attr *tb[__LOG_MAX];
96 struct stat s;
97 char buf[256];
98 uint32_t p;
99 char *str;
100 time_t t;
101 char *c;
102
103 if (sender.fd < 0)
104 return 0;
105
106 blobmsg_parse(log_policy, ARRAY_SIZE(log_policy), tb, blob_data(msg), blob_len(msg));
107 if (!tb[LOG_ID] || !tb[LOG_PRIO] || !tb[LOG_SOURCE] || !tb[LOG_TIME])
108 return 1;
109
110 if ((log_type == LOG_FILE) && log_size && (!stat(log_file, &s)) && (s.st_size > log_size)) {
111 char *old = malloc(strlen(log_file) + 5);
112
113 close(sender.fd);
114 if (old) {
115 sprintf(old, "%s.old", log_file);
116 rename(log_file, old);
117 free(old);
118 }
119 sender.fd = open(log_file, O_CREAT | O_WRONLY | O_APPEND, 0600);
120 if (sender.fd < 0) {
121 // fprintf(stderr, "failed to open %s: %s\n", log_file, strerror(errno));
122 exit(-1);
123 }
124 }
125
126 t = blobmsg_get_u64(tb[LOG_TIME]) / 1000;
127 c = ctime(&t);
128 p = blobmsg_get_u32(tb[LOG_PRIO]);
129 c[strlen(c) - 1] = '\0';
130 str = blobmsg_format_json(msg, true);
131 if (log_type == LOG_NET) {
132 int err;
133
134 snprintf(buf, sizeof(buf), "%s%s\n",
135 (blobmsg_get_u32(tb[LOG_SOURCE])) ? ("") : ("kernel: "),
136 method);
137 if (log_udp)
138 err = write(sender.fd, buf, strlen(buf));
139 else
140 err = send(sender.fd, buf, strlen(buf), 0);
141
142 if (err < 0) {
143 syslog(0, "failed to send log data to %s:%s via %s\n",
144 log_ip, log_port, (log_udp) ? ("udp") : ("tcp"));
145 uloop_fd_delete(&sender);
146 close(sender.fd);
147 sender.fd = -1;
148 uloop_timeout_set(&retry, 1000);
149 }
150 } else {
151 snprintf(buf, sizeof(buf), "%s %s.%s%s %s\n",
152 c, facilitynames[LOG_FAC(p)].c_name, prioritynames[LOG_PRI(p)].c_name,
153 (blobmsg_get_u32(tb[LOG_SOURCE])) ? ("") : (" kernel:"),
154 method);
155 write(sender.fd, buf, strlen(buf));
156 }
157
158 free(str);
159 if (log_type == LOG_FILE)
160 fsync(sender.fd);
161
162 return 0;
163 }
164
165 static void follow_log(struct ubus_context *ctx, int id)
166 {
167 FILE *fp;
168 int ret;
169
170 signal(SIGPIPE, SIG_IGN);
171
172 if (pid_file) {
173 fp = fopen(pid_file, "w+");
174 if (fp) {
175 fprintf(fp, "%d", getpid());
176 fclose(fp);
177 }
178 }
179
180 uloop_init();
181 ubus_add_uloop(ctx);
182
183 log_event.remove_cb = log_handle_remove;
184 log_event.cb = log_notify;
185 ret = ubus_register_subscriber(ctx, &log_event);
186 if (ret)
187 fprintf(stderr, "Failed to add watch handler: %s\n", ubus_strerror(ret));
188
189 ret = ubus_subscribe(ctx, &log_event, id);
190 if (ret)
191 fprintf(stderr, "Failed to add watch handler: %s\n", ubus_strerror(ret));
192
193 if (log_ip && log_port) {
194 openlog("logread", LOG_PID, LOG_DAEMON);
195 log_type = LOG_NET;
196 sender.cb = log_handle_fd;
197 retry.cb = log_handle_reconnect;
198 uloop_timeout_set(&retry, 1000);
199 } else if (log_file) {
200 log_type = LOG_FILE;
201 sender.fd = open(log_file, O_CREAT | O_WRONLY| O_APPEND, 0600);
202 if (sender.fd < 0) {
203 fprintf(stderr, "failed to open %s: %s\n", log_file, strerror(errno));
204 exit(-1);
205 }
206 } else {
207 sender.fd = STDOUT_FILENO;
208 }
209
210 uloop_run();
211 ubus_free(ctx);
212 uloop_done();
213 }
214
215 enum {
216 READ_LINE,
217 __READ_MAX
218 };
219
220 static const struct blobmsg_policy read_policy[] = {
221 [READ_LINE] = { .name = "lines", .type = BLOBMSG_TYPE_ARRAY },
222 };
223
224 static void read_cb(struct ubus_request *req, int type, struct blob_attr *msg)
225 {
226 struct blob_attr *cur;
227 struct blob_attr *_tb[__READ_MAX];
228 time_t t;
229 int rem;
230
231 if (!msg)
232 return;
233
234 blobmsg_parse(read_policy, ARRAY_SIZE(read_policy), _tb, blob_data(msg), blob_len(msg));
235 if (!_tb[READ_LINE])
236 return;
237 blobmsg_for_each_attr(cur, _tb[READ_LINE], rem) {
238 struct blob_attr *tb[__LOG_MAX];
239 uint32_t p;
240 char *c;
241
242 if (blobmsg_type(cur) != BLOBMSG_TYPE_TABLE)
243 continue;
244
245 blobmsg_parse(log_policy, ARRAY_SIZE(log_policy), tb, blobmsg_data(cur), blobmsg_data_len(cur));
246 if (!tb[LOG_MSG] || !tb[LOG_ID] || !tb[LOG_PRIO] || !tb[LOG_SOURCE] || !tb[LOG_TIME])
247 continue;
248
249 t = blobmsg_get_u64(tb[LOG_TIME]);
250 p = blobmsg_get_u32(tb[LOG_PRIO]);
251 c = ctime(&t);
252 c[strlen(c) - 1] = '\0';
253
254 printf("%s %s.%s%s %s\n",
255 c, facilitynames[LOG_FAC(p)].c_name, prioritynames[LOG_PRI(p)].c_name,
256 (blobmsg_get_u32(tb[LOG_SOURCE])) ? ("") : (" kernel:"),
257 blobmsg_get_string(tb[LOG_MSG]));
258 }
259 }
260
261 static int usage(const char *prog)
262 {
263 fprintf(stderr, "Usage: %s [options]\n"
264 "Options:\n"
265 " -s <path> Path to ubus socket\n"
266 " -l <count> Got only the last 'count' messages\n"
267 " -r <server> <port> Stream message to a server\n"
268 " -F <file> Log file\n"
269 " -S <bytes> Log size\n"
270 " -p <file> PID file\n"
271 " -f Follow log messages\n"
272 " -u Use UDP as the protocol\n"
273 "\n", prog);
274 return 1;
275 }
276
277 int main(int argc, char **argv)
278 {
279 struct ubus_context *ctx;
280 uint32_t id;
281 const char *ubus_socket = NULL;
282 int ch, ret, subscribe = 0, lines = 0;
283 static struct blob_buf b;
284
285 while ((ch = getopt(argc, argv, "ufcs:l:r:F:p:S:")) != -1) {
286 switch (ch) {
287 case 'u':
288 log_udp = 1;
289 break;
290 case 's':
291 ubus_socket = optarg;
292 break;
293 case 'r':
294 log_ip = optarg++;
295 log_port = argv[optind++];
296 break;
297 case 'F':
298 log_file = optarg;
299 break;
300 case 'p':
301 pid_file = optarg;
302 break;
303 case 'f':
304 subscribe = 1;
305 break;
306 case 'l':
307 lines = atoi(optarg);
308 break;
309 case 'S':
310 log_size = atoi(optarg);
311 if (log_size < 1)
312 log_size = 1;
313 log_size *= 1024;
314 break;
315 default:
316 return usage(*argv);
317 }
318 }
319
320 ctx = ubus_connect(ubus_socket);
321 if (!ctx) {
322 fprintf(stderr, "Failed to connect to ubus\n");
323 return -1;
324 }
325
326 ret = ubus_lookup_id(ctx, "log", &id);
327 if (ret)
328 fprintf(stderr, "Failed to find log object: %s\n", ubus_strerror(ret));
329
330 if (!subscribe || lines) {
331 blob_buf_init(&b, 0);
332 if (lines)
333 blobmsg_add_u32(&b, "lines", lines);
334 ubus_invoke(ctx, id, "read", b.head, read_cb, 0, 3000);
335 }
336
337 if (subscribe)
338 follow_log(ctx, id);
339
340 return 0;
341 }