]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal-remote/journal-remote.c
journal-remote,gateway: use MHD_USE_TLS instead of MHD_USE_SSL
[thirdparty/systemd.git] / src / journal-remote / journal-remote.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2012 Zbigniew Jędrzejewski-Szmek
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <getopt.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/prctl.h>
27 #include <sys/socket.h>
28 #include <unistd.h>
29
30 #include "sd-daemon.h"
31
32 #include "alloc-util.h"
33 #include "conf-parser.h"
34 #include "def.h"
35 #include "escape.h"
36 #include "fd-util.h"
37 #include "fileio.h"
38 #include "journal-file.h"
39 #include "journal-remote-write.h"
40 #include "journal-remote.h"
41 #include "journald-native.h"
42 #include "macro.h"
43 #include "parse-util.h"
44 #include "signal-util.h"
45 #include "socket-util.h"
46 #include "stat-util.h"
47 #include "stdio-util.h"
48 #include "string-table.h"
49 #include "string-util.h"
50 #include "strv.h"
51
52 #define REMOTE_JOURNAL_PATH "/var/log/journal/remote"
53
54 #define PRIV_KEY_FILE CERTIFICATE_ROOT "/private/journal-remote.pem"
55 #define CERT_FILE CERTIFICATE_ROOT "/certs/journal-remote.pem"
56 #define TRUST_FILE CERTIFICATE_ROOT "/ca/trusted.pem"
57
58 static char* arg_url = NULL;
59 static char* arg_getter = NULL;
60 static char* arg_listen_raw = NULL;
61 static char* arg_listen_http = NULL;
62 static char* arg_listen_https = NULL;
63 static char** arg_files = NULL;
64 static int arg_compress = true;
65 static int arg_seal = false;
66 static int http_socket = -1, https_socket = -1;
67 static char** arg_gnutls_log = NULL;
68
69 static JournalWriteSplitMode arg_split_mode = JOURNAL_WRITE_SPLIT_HOST;
70 static char* arg_output = NULL;
71
72 static char *arg_key = NULL;
73 static char *arg_cert = NULL;
74 static char *arg_trust = NULL;
75 static bool arg_trust_all = false;
76
77 /**********************************************************************
78 **********************************************************************
79 **********************************************************************/
80
81 static int spawn_child(const char* child, char** argv) {
82 int fd[2];
83 pid_t parent_pid, child_pid;
84 int r;
85
86 if (pipe(fd) < 0)
87 return log_error_errno(errno, "Failed to create pager pipe: %m");
88
89 parent_pid = getpid_cached();
90
91 child_pid = fork();
92 if (child_pid < 0) {
93 r = log_error_errno(errno, "Failed to fork: %m");
94 safe_close_pair(fd);
95 return r;
96 }
97
98 /* In the child */
99 if (child_pid == 0) {
100
101 (void) reset_all_signal_handlers();
102 (void) reset_signal_mask();
103
104 r = dup2(fd[1], STDOUT_FILENO);
105 if (r < 0) {
106 log_error_errno(errno, "Failed to dup pipe to stdout: %m");
107 _exit(EXIT_FAILURE);
108 }
109
110 safe_close_pair(fd);
111
112 /* Make sure the child goes away when the parent dies */
113 if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0)
114 _exit(EXIT_FAILURE);
115
116 /* Check whether our parent died before we were able
117 * to set the death signal */
118 if (getppid() != parent_pid)
119 _exit(EXIT_SUCCESS);
120
121 execvp(child, argv);
122 log_error_errno(errno, "Failed to exec child %s: %m", child);
123 _exit(EXIT_FAILURE);
124 }
125
126 r = close(fd[1]);
127 if (r < 0)
128 log_warning_errno(errno, "Failed to close write end of pipe: %m");
129
130 r = fd_nonblock(fd[0], true);
131 if (r < 0)
132 log_warning_errno(errno, "Failed to set child pipe to non-blocking: %m");
133
134 return fd[0];
135 }
136
137 static int spawn_curl(const char* url) {
138 char **argv = STRV_MAKE("curl",
139 "-HAccept: application/vnd.fdo.journal",
140 "--silent",
141 "--show-error",
142 url);
143 int r;
144
145 r = spawn_child("curl", argv);
146 if (r < 0)
147 log_error_errno(r, "Failed to spawn curl: %m");
148 return r;
149 }
150
151 static int spawn_getter(const char *getter) {
152 int r;
153 _cleanup_strv_free_ char **words = NULL;
154
155 assert(getter);
156 r = strv_split_extract(&words, getter, WHITESPACE, EXTRACT_QUOTES);
157 if (r < 0)
158 return log_error_errno(r, "Failed to split getter option: %m");
159
160 r = spawn_child(words[0], words);
161 if (r < 0)
162 log_error_errno(r, "Failed to spawn getter %s: %m", getter);
163
164 return r;
165 }
166
167 #define filename_escape(s) xescape((s), "/ ")
168
169 static int open_output(Writer *w, const char* host) {
170 _cleanup_free_ char *_output = NULL;
171 const char *output;
172 int r;
173
174 switch (arg_split_mode) {
175 case JOURNAL_WRITE_SPLIT_NONE:
176 output = arg_output ?: REMOTE_JOURNAL_PATH "/remote.journal";
177 break;
178
179 case JOURNAL_WRITE_SPLIT_HOST: {
180 _cleanup_free_ char *name;
181
182 assert(host);
183
184 name = filename_escape(host);
185 if (!name)
186 return log_oom();
187
188 r = asprintf(&_output, "%s/remote-%s.journal",
189 arg_output ?: REMOTE_JOURNAL_PATH,
190 name);
191 if (r < 0)
192 return log_oom();
193
194 output = _output;
195 break;
196 }
197
198 default:
199 assert_not_reached("what?");
200 }
201
202 r = journal_file_open_reliably(output,
203 O_RDWR|O_CREAT, 0640,
204 arg_compress, arg_seal,
205 &w->metrics,
206 w->mmap, NULL,
207 NULL, &w->journal);
208 if (r < 0)
209 log_error_errno(r, "Failed to open output journal %s: %m",
210 output);
211 else
212 log_debug("Opened output file %s", w->journal->path);
213 return r;
214 }
215
216 /**********************************************************************
217 **********************************************************************
218 **********************************************************************/
219
220 static int init_writer_hashmap(RemoteServer *s) {
221 static const struct hash_ops *hash_ops[] = {
222 [JOURNAL_WRITE_SPLIT_NONE] = NULL,
223 [JOURNAL_WRITE_SPLIT_HOST] = &string_hash_ops,
224 };
225
226 assert(arg_split_mode >= 0 && arg_split_mode < (int) ELEMENTSOF(hash_ops));
227
228 s->writers = hashmap_new(hash_ops[arg_split_mode]);
229 if (!s->writers)
230 return log_oom();
231
232 return 0;
233 }
234
235 static int get_writer(RemoteServer *s, const char *host,
236 Writer **writer) {
237 const void *key;
238 _cleanup_writer_unref_ Writer *w = NULL;
239 int r;
240
241 switch(arg_split_mode) {
242 case JOURNAL_WRITE_SPLIT_NONE:
243 key = "one and only";
244 break;
245
246 case JOURNAL_WRITE_SPLIT_HOST:
247 assert(host);
248 key = host;
249 break;
250
251 default:
252 assert_not_reached("what split mode?");
253 }
254
255 w = hashmap_get(s->writers, key);
256 if (w)
257 writer_ref(w);
258 else {
259 w = writer_new(s);
260 if (!w)
261 return log_oom();
262
263 if (arg_split_mode == JOURNAL_WRITE_SPLIT_HOST) {
264 w->hashmap_key = strdup(key);
265 if (!w->hashmap_key)
266 return log_oom();
267 }
268
269 r = open_output(w, host);
270 if (r < 0)
271 return r;
272
273 r = hashmap_put(s->writers, w->hashmap_key ?: key, w);
274 if (r < 0)
275 return r;
276 }
277
278 *writer = w;
279 w = NULL;
280 return 0;
281 }
282
283 /**********************************************************************
284 **********************************************************************
285 **********************************************************************/
286
287 /* This should go away as soon as µhttpd allows state to be passed around. */
288 static RemoteServer *server;
289
290 static int dispatch_raw_source_event(sd_event_source *event,
291 int fd,
292 uint32_t revents,
293 void *userdata);
294 static int dispatch_raw_source_until_block(sd_event_source *event,
295 void *userdata);
296 static int dispatch_blocking_source_event(sd_event_source *event,
297 void *userdata);
298 static int dispatch_raw_connection_event(sd_event_source *event,
299 int fd,
300 uint32_t revents,
301 void *userdata);
302 static int dispatch_http_event(sd_event_source *event,
303 int fd,
304 uint32_t revents,
305 void *userdata);
306
307 static int get_source_for_fd(RemoteServer *s,
308 int fd, char *name, RemoteSource **source) {
309 Writer *writer;
310 int r;
311
312 /* This takes ownership of name, but only on success. */
313
314 assert(fd >= 0);
315 assert(source);
316
317 if (!GREEDY_REALLOC0(s->sources, s->sources_size, fd + 1))
318 return log_oom();
319
320 r = get_writer(s, name, &writer);
321 if (r < 0)
322 return log_warning_errno(r, "Failed to get writer for source %s: %m",
323 name);
324
325 if (s->sources[fd] == NULL) {
326 s->sources[fd] = source_new(fd, false, name, writer);
327 if (!s->sources[fd]) {
328 writer_unref(writer);
329 return log_oom();
330 }
331
332 s->active++;
333 }
334
335 *source = s->sources[fd];
336 return 0;
337 }
338
339 static int remove_source(RemoteServer *s, int fd) {
340 RemoteSource *source;
341
342 assert(s);
343 assert(fd >= 0 && fd < (ssize_t) s->sources_size);
344
345 source = s->sources[fd];
346 if (source) {
347 /* this closes fd too */
348 source_free(source);
349 s->sources[fd] = NULL;
350 s->active--;
351 }
352
353 return 0;
354 }
355
356 static int add_source(RemoteServer *s, int fd, char* name, bool own_name) {
357
358 RemoteSource *source = NULL;
359 int r;
360
361 /* This takes ownership of name, even on failure, if own_name is true. */
362
363 assert(s);
364 assert(fd >= 0);
365 assert(name);
366
367 if (!own_name) {
368 name = strdup(name);
369 if (!name)
370 return log_oom();
371 }
372
373 r = get_source_for_fd(s, fd, name, &source);
374 if (r < 0) {
375 log_error_errno(r, "Failed to create source for fd:%d (%s): %m",
376 fd, name);
377 free(name);
378 return r;
379 }
380
381 r = sd_event_add_io(s->events, &source->event,
382 fd, EPOLLIN|EPOLLRDHUP|EPOLLPRI,
383 dispatch_raw_source_event, source);
384 if (r == 0) {
385 /* Add additional source for buffer processing. It will be
386 * enabled later. */
387 r = sd_event_add_defer(s->events, &source->buffer_event,
388 dispatch_raw_source_until_block, source);
389 if (r == 0)
390 sd_event_source_set_enabled(source->buffer_event, SD_EVENT_OFF);
391 } else if (r == -EPERM) {
392 log_debug("Falling back to sd_event_add_defer for fd:%d (%s)", fd, name);
393 r = sd_event_add_defer(s->events, &source->event,
394 dispatch_blocking_source_event, source);
395 if (r == 0)
396 sd_event_source_set_enabled(source->event, SD_EVENT_ON);
397 }
398 if (r < 0) {
399 log_error_errno(r, "Failed to register event source for fd:%d: %m",
400 fd);
401 goto error;
402 }
403
404 r = sd_event_source_set_description(source->event, name);
405 if (r < 0) {
406 log_error_errno(r, "Failed to set source name for fd:%d: %m", fd);
407 goto error;
408 }
409
410 return 1; /* work to do */
411
412 error:
413 remove_source(s, fd);
414 return r;
415 }
416
417 static int add_raw_socket(RemoteServer *s, int fd) {
418 int r;
419 _cleanup_close_ int fd_ = fd;
420 char name[sizeof("raw-socket-")-1 + DECIMAL_STR_MAX(int) + 1];
421
422 assert(fd >= 0);
423
424 r = sd_event_add_io(s->events, &s->listen_event,
425 fd, EPOLLIN,
426 dispatch_raw_connection_event, s);
427 if (r < 0)
428 return r;
429
430 xsprintf(name, "raw-socket-%d", fd);
431
432 r = sd_event_source_set_description(s->listen_event, name);
433 if (r < 0)
434 return r;
435
436 fd_ = -1;
437 s->active++;
438 return 0;
439 }
440
441 static int setup_raw_socket(RemoteServer *s, const char *address) {
442 int fd;
443
444 fd = make_socket_fd(LOG_INFO, address, SOCK_STREAM, SOCK_CLOEXEC);
445 if (fd < 0)
446 return fd;
447
448 return add_raw_socket(s, fd);
449 }
450
451 /**********************************************************************
452 **********************************************************************
453 **********************************************************************/
454
455 static int request_meta(void **connection_cls, int fd, char *hostname) {
456 RemoteSource *source;
457 Writer *writer;
458 int r;
459
460 assert(connection_cls);
461 if (*connection_cls)
462 return 0;
463
464 r = get_writer(server, hostname, &writer);
465 if (r < 0)
466 return log_warning_errno(r, "Failed to get writer for source %s: %m",
467 hostname);
468
469 source = source_new(fd, true, hostname, writer);
470 if (!source) {
471 writer_unref(writer);
472 return log_oom();
473 }
474
475 log_debug("Added RemoteSource as connection metadata %p", source);
476
477 *connection_cls = source;
478 return 0;
479 }
480
481 static void request_meta_free(void *cls,
482 struct MHD_Connection *connection,
483 void **connection_cls,
484 enum MHD_RequestTerminationCode toe) {
485 RemoteSource *s;
486
487 assert(connection_cls);
488 s = *connection_cls;
489
490 if (s) {
491 log_debug("Cleaning up connection metadata %p", s);
492 source_free(s);
493 *connection_cls = NULL;
494 }
495 }
496
497 static int process_http_upload(
498 struct MHD_Connection *connection,
499 const char *upload_data,
500 size_t *upload_data_size,
501 RemoteSource *source) {
502
503 bool finished = false;
504 size_t remaining;
505 int r;
506
507 assert(source);
508
509 log_trace("%s: connection %p, %zu bytes",
510 __func__, connection, *upload_data_size);
511
512 if (*upload_data_size) {
513 log_trace("Received %zu bytes", *upload_data_size);
514
515 r = journal_importer_push_data(&source->importer,
516 upload_data, *upload_data_size);
517 if (r < 0)
518 return mhd_respond_oom(connection);
519
520 *upload_data_size = 0;
521 } else
522 finished = true;
523
524 for (;;) {
525 r = process_source(source, arg_compress, arg_seal);
526 if (r == -EAGAIN)
527 break;
528 else if (r < 0) {
529 log_warning("Failed to process data for connection %p", connection);
530 if (r == -E2BIG)
531 return mhd_respondf(connection,
532 r, MHD_HTTP_PAYLOAD_TOO_LARGE,
533 "Entry is too large, maximum is " STRINGIFY(DATA_SIZE_MAX) " bytes.");
534 else
535 return mhd_respondf(connection,
536 r, MHD_HTTP_UNPROCESSABLE_ENTITY,
537 "Processing failed: %m.");
538 }
539 }
540
541 if (!finished)
542 return MHD_YES;
543
544 /* The upload is finished */
545
546 remaining = journal_importer_bytes_remaining(&source->importer);
547 if (remaining > 0) {
548 log_warning("Premature EOF byte. %zu bytes lost.", remaining);
549 return mhd_respondf(connection,
550 0, MHD_HTTP_EXPECTATION_FAILED,
551 "Premature EOF. %zu bytes of trailing data not processed.",
552 remaining);
553 }
554
555 return mhd_respond(connection, MHD_HTTP_ACCEPTED, "OK.");
556 };
557
558 static int request_handler(
559 void *cls,
560 struct MHD_Connection *connection,
561 const char *url,
562 const char *method,
563 const char *version,
564 const char *upload_data,
565 size_t *upload_data_size,
566 void **connection_cls) {
567
568 const char *header;
569 int r, code, fd;
570 _cleanup_free_ char *hostname = NULL;
571
572 assert(connection);
573 assert(connection_cls);
574 assert(url);
575 assert(method);
576
577 log_trace("Handling a connection %s %s %s", method, url, version);
578
579 if (*connection_cls)
580 return process_http_upload(connection,
581 upload_data, upload_data_size,
582 *connection_cls);
583
584 if (!streq(method, "POST"))
585 return mhd_respond(connection, MHD_HTTP_NOT_ACCEPTABLE, "Unsupported method.");
586
587 if (!streq(url, "/upload"))
588 return mhd_respond(connection, MHD_HTTP_NOT_FOUND, "Not found.");
589
590 header = MHD_lookup_connection_value(connection,
591 MHD_HEADER_KIND, "Content-Type");
592 if (!header || !streq(header, "application/vnd.fdo.journal"))
593 return mhd_respond(connection, MHD_HTTP_UNSUPPORTED_MEDIA_TYPE,
594 "Content-Type: application/vnd.fdo.journal is required.");
595
596 {
597 const union MHD_ConnectionInfo *ci;
598
599 ci = MHD_get_connection_info(connection,
600 MHD_CONNECTION_INFO_CONNECTION_FD);
601 if (!ci) {
602 log_error("MHD_get_connection_info failed: cannot get remote fd");
603 return mhd_respond(connection, MHD_HTTP_INTERNAL_SERVER_ERROR,
604 "Cannot check remote address.");
605 }
606
607 fd = ci->connect_fd;
608 assert(fd >= 0);
609 }
610
611 if (server->check_trust) {
612 r = check_permissions(connection, &code, &hostname);
613 if (r < 0)
614 return code;
615 } else {
616 r = getpeername_pretty(fd, false, &hostname);
617 if (r < 0)
618 return mhd_respond(connection, MHD_HTTP_INTERNAL_SERVER_ERROR,
619 "Cannot check remote hostname.");
620 }
621
622 assert(hostname);
623
624 r = request_meta(connection_cls, fd, hostname);
625 if (r == -ENOMEM)
626 return respond_oom(connection);
627 else if (r < 0)
628 return mhd_respondf(connection, r, MHD_HTTP_INTERNAL_SERVER_ERROR, "%m");
629
630 hostname = NULL;
631 return MHD_YES;
632 }
633
634 static int setup_microhttpd_server(RemoteServer *s,
635 int fd,
636 const char *key,
637 const char *cert,
638 const char *trust) {
639 struct MHD_OptionItem opts[] = {
640 { MHD_OPTION_NOTIFY_COMPLETED, (intptr_t) request_meta_free},
641 { MHD_OPTION_EXTERNAL_LOGGER, (intptr_t) microhttpd_logger},
642 { MHD_OPTION_LISTEN_SOCKET, fd},
643 { MHD_OPTION_CONNECTION_MEMORY_LIMIT, 128*1024},
644 { MHD_OPTION_END},
645 { MHD_OPTION_END},
646 { MHD_OPTION_END},
647 { MHD_OPTION_END}};
648 int opts_pos = 4;
649 int flags =
650 MHD_USE_DEBUG |
651 MHD_USE_DUAL_STACK |
652 MHD_USE_EPOLL |
653 MHD_USE_PEDANTIC_CHECKS |
654 MHD_USE_ITC;
655
656 const union MHD_DaemonInfo *info;
657 int r, epoll_fd;
658 MHDDaemonWrapper *d;
659
660 assert(fd >= 0);
661
662 r = fd_nonblock(fd, true);
663 if (r < 0)
664 return log_error_errno(r, "Failed to make fd:%d nonblocking: %m", fd);
665
666 if (key) {
667 assert(cert);
668
669 opts[opts_pos++] = (struct MHD_OptionItem)
670 {MHD_OPTION_HTTPS_MEM_KEY, 0, (char*) key};
671 opts[opts_pos++] = (struct MHD_OptionItem)
672 {MHD_OPTION_HTTPS_MEM_CERT, 0, (char*) cert};
673
674 flags |= MHD_USE_TLS;
675
676 if (trust)
677 opts[opts_pos++] = (struct MHD_OptionItem)
678 {MHD_OPTION_HTTPS_MEM_TRUST, 0, (char*) trust};
679 }
680
681 d = new(MHDDaemonWrapper, 1);
682 if (!d)
683 return log_oom();
684
685 d->fd = (uint64_t) fd;
686
687 d->daemon = MHD_start_daemon(flags, 0,
688 NULL, NULL,
689 request_handler, NULL,
690 MHD_OPTION_ARRAY, opts,
691 MHD_OPTION_END);
692 if (!d->daemon) {
693 log_error("Failed to start µhttp daemon");
694 r = -EINVAL;
695 goto error;
696 }
697
698 log_debug("Started MHD %s daemon on fd:%d (wrapper @ %p)",
699 key ? "HTTPS" : "HTTP", fd, d);
700
701
702 info = MHD_get_daemon_info(d->daemon, MHD_DAEMON_INFO_EPOLL_FD_LINUX_ONLY);
703 if (!info) {
704 log_error("µhttp returned NULL daemon info");
705 r = -EOPNOTSUPP;
706 goto error;
707 }
708
709 epoll_fd = info->listen_fd;
710 if (epoll_fd < 0) {
711 log_error("µhttp epoll fd is invalid");
712 r = -EUCLEAN;
713 goto error;
714 }
715
716 r = sd_event_add_io(s->events, &d->event,
717 epoll_fd, EPOLLIN,
718 dispatch_http_event, d);
719 if (r < 0) {
720 log_error_errno(r, "Failed to add event callback: %m");
721 goto error;
722 }
723
724 r = sd_event_source_set_description(d->event, "epoll-fd");
725 if (r < 0) {
726 log_error_errno(r, "Failed to set source name: %m");
727 goto error;
728 }
729
730 r = hashmap_ensure_allocated(&s->daemons, &uint64_hash_ops);
731 if (r < 0) {
732 log_oom();
733 goto error;
734 }
735
736 r = hashmap_put(s->daemons, &d->fd, d);
737 if (r < 0) {
738 log_error_errno(r, "Failed to add daemon to hashmap: %m");
739 goto error;
740 }
741
742 s->active++;
743 return 0;
744
745 error:
746 MHD_stop_daemon(d->daemon);
747 free(d->daemon);
748 free(d);
749 return r;
750 }
751
752 static int setup_microhttpd_socket(RemoteServer *s,
753 const char *address,
754 const char *key,
755 const char *cert,
756 const char *trust) {
757 int fd;
758
759 fd = make_socket_fd(LOG_DEBUG, address, SOCK_STREAM, SOCK_CLOEXEC);
760 if (fd < 0)
761 return fd;
762
763 return setup_microhttpd_server(s, fd, key, cert, trust);
764 }
765
766 static int dispatch_http_event(sd_event_source *event,
767 int fd,
768 uint32_t revents,
769 void *userdata) {
770 MHDDaemonWrapper *d = userdata;
771 int r;
772
773 assert(d);
774
775 r = MHD_run(d->daemon);
776 if (r == MHD_NO) {
777 log_error("MHD_run failed!");
778 // XXX: unregister daemon
779 return -EINVAL;
780 }
781
782 return 1; /* work to do */
783 }
784
785 /**********************************************************************
786 **********************************************************************
787 **********************************************************************/
788
789 static int setup_signals(RemoteServer *s) {
790 int r;
791
792 assert(s);
793
794 assert_se(sigprocmask_many(SIG_SETMASK, NULL, SIGINT, SIGTERM, -1) >= 0);
795
796 r = sd_event_add_signal(s->events, &s->sigterm_event, SIGTERM, NULL, s);
797 if (r < 0)
798 return r;
799
800 r = sd_event_add_signal(s->events, &s->sigint_event, SIGINT, NULL, s);
801 if (r < 0)
802 return r;
803
804 return 0;
805 }
806
807 static int negative_fd(const char *spec) {
808 /* Return a non-positive number as its inverse, -EINVAL otherwise. */
809
810 int fd, r;
811
812 r = safe_atoi(spec, &fd);
813 if (r < 0)
814 return r;
815
816 if (fd > 0)
817 return -EINVAL;
818 else
819 return -fd;
820 }
821
822 static int remoteserver_init(RemoteServer *s,
823 const char* key,
824 const char* cert,
825 const char* trust) {
826 int r, n, fd;
827 char **file;
828
829 assert(s);
830
831 if ((arg_listen_raw || arg_listen_http) && trust) {
832 log_error("Option --trust makes all non-HTTPS connections untrusted.");
833 return -EINVAL;
834 }
835
836 r = sd_event_default(&s->events);
837 if (r < 0)
838 return log_error_errno(r, "Failed to allocate event loop: %m");
839
840 setup_signals(s);
841
842 assert(server == NULL);
843 server = s;
844
845 r = init_writer_hashmap(s);
846 if (r < 0)
847 return r;
848
849 n = sd_listen_fds(true);
850 if (n < 0)
851 return log_error_errno(n, "Failed to read listening file descriptors from environment: %m");
852 else
853 log_debug("Received %d descriptors", n);
854
855 if (MAX(http_socket, https_socket) >= SD_LISTEN_FDS_START + n) {
856 log_error("Received fewer sockets than expected");
857 return -EBADFD;
858 }
859
860 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd++) {
861 if (sd_is_socket(fd, AF_UNSPEC, 0, true)) {
862 log_debug("Received a listening socket (fd:%d)", fd);
863
864 if (fd == http_socket)
865 r = setup_microhttpd_server(s, fd, NULL, NULL, NULL);
866 else if (fd == https_socket)
867 r = setup_microhttpd_server(s, fd, key, cert, trust);
868 else
869 r = add_raw_socket(s, fd);
870 } else if (sd_is_socket(fd, AF_UNSPEC, 0, false)) {
871 char *hostname;
872
873 r = getpeername_pretty(fd, false, &hostname);
874 if (r < 0)
875 return log_error_errno(r, "Failed to retrieve remote name: %m");
876
877 log_debug("Received a connection socket (fd:%d) from %s", fd, hostname);
878
879 r = add_source(s, fd, hostname, true);
880 } else {
881 log_error("Unknown socket passed on fd:%d", fd);
882
883 return -EINVAL;
884 }
885
886 if (r < 0)
887 return log_error_errno(r, "Failed to register socket (fd:%d): %m",
888 fd);
889 }
890
891 if (arg_getter) {
892 log_info("Spawning getter %s...", arg_getter);
893 fd = spawn_getter(arg_getter);
894 if (fd < 0)
895 return fd;
896
897 r = add_source(s, fd, (char*) arg_output, false);
898 if (r < 0)
899 return r;
900 }
901
902 if (arg_url) {
903 const char *url;
904 char *hostname, *p;
905
906 if (!strstr(arg_url, "/entries")) {
907 if (endswith(arg_url, "/"))
908 url = strjoina(arg_url, "entries");
909 else
910 url = strjoina(arg_url, "/entries");
911 }
912 else
913 url = strdupa(arg_url);
914
915 log_info("Spawning curl %s...", url);
916 fd = spawn_curl(url);
917 if (fd < 0)
918 return fd;
919
920 hostname =
921 startswith(arg_url, "https://") ?:
922 startswith(arg_url, "http://") ?:
923 arg_url;
924
925 hostname = strdupa(hostname);
926 if ((p = strchr(hostname, '/')))
927 *p = '\0';
928 if ((p = strchr(hostname, ':')))
929 *p = '\0';
930
931 r = add_source(s, fd, hostname, false);
932 if (r < 0)
933 return r;
934 }
935
936 if (arg_listen_raw) {
937 log_debug("Listening on a socket...");
938 r = setup_raw_socket(s, arg_listen_raw);
939 if (r < 0)
940 return r;
941 }
942
943 if (arg_listen_http) {
944 r = setup_microhttpd_socket(s, arg_listen_http, NULL, NULL, NULL);
945 if (r < 0)
946 return r;
947 }
948
949 if (arg_listen_https) {
950 r = setup_microhttpd_socket(s, arg_listen_https, key, cert, trust);
951 if (r < 0)
952 return r;
953 }
954
955 STRV_FOREACH(file, arg_files) {
956 const char *output_name;
957
958 if (streq(*file, "-")) {
959 log_debug("Using standard input as source.");
960
961 fd = STDIN_FILENO;
962 output_name = "stdin";
963 } else {
964 log_debug("Reading file %s...", *file);
965
966 fd = open(*file, O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NONBLOCK);
967 if (fd < 0)
968 return log_error_errno(errno, "Failed to open %s: %m", *file);
969 output_name = *file;
970 }
971
972 r = add_source(s, fd, (char*) output_name, false);
973 if (r < 0)
974 return r;
975 }
976
977 if (s->active == 0) {
978 log_error("Zero sources specified");
979 return -EINVAL;
980 }
981
982 if (arg_split_mode == JOURNAL_WRITE_SPLIT_NONE) {
983 /* In this case we know what the writer will be
984 called, so we can create it and verify that we can
985 create output as expected. */
986 r = get_writer(s, NULL, &s->_single_writer);
987 if (r < 0)
988 return r;
989 }
990
991 return 0;
992 }
993
994 static void server_destroy(RemoteServer *s) {
995 size_t i;
996 MHDDaemonWrapper *d;
997
998 while ((d = hashmap_steal_first(s->daemons))) {
999 MHD_stop_daemon(d->daemon);
1000 sd_event_source_unref(d->event);
1001 free(d);
1002 }
1003
1004 hashmap_free(s->daemons);
1005
1006 assert(s->sources_size == 0 || s->sources);
1007 for (i = 0; i < s->sources_size; i++)
1008 remove_source(s, i);
1009 free(s->sources);
1010
1011 writer_unref(s->_single_writer);
1012 hashmap_free(s->writers);
1013
1014 sd_event_source_unref(s->sigterm_event);
1015 sd_event_source_unref(s->sigint_event);
1016 sd_event_source_unref(s->listen_event);
1017 sd_event_unref(s->events);
1018
1019 /* fds that we're listening on remain open... */
1020 }
1021
1022 /**********************************************************************
1023 **********************************************************************
1024 **********************************************************************/
1025
1026 static int handle_raw_source(sd_event_source *event,
1027 int fd,
1028 uint32_t revents,
1029 RemoteServer *s) {
1030
1031 RemoteSource *source;
1032 int r;
1033
1034 /* Returns 1 if there might be more data pending,
1035 * 0 if data is currently exhausted, negative on error.
1036 */
1037
1038 assert(fd >= 0 && fd < (ssize_t) s->sources_size);
1039 source = s->sources[fd];
1040 assert(source->importer.fd == fd);
1041
1042 r = process_source(source, arg_compress, arg_seal);
1043 if (journal_importer_eof(&source->importer)) {
1044 size_t remaining;
1045
1046 log_debug("EOF reached with source %s (fd=%d)",
1047 source->importer.name, source->importer.fd);
1048
1049 remaining = journal_importer_bytes_remaining(&source->importer);
1050 if (remaining > 0)
1051 log_notice("Premature EOF. %zu bytes lost.", remaining);
1052 remove_source(s, source->importer.fd);
1053 log_debug("%zu active sources remaining", s->active);
1054 return 0;
1055 } else if (r == -E2BIG) {
1056 log_notice_errno(E2BIG, "Entry too big, skipped");
1057 return 1;
1058 } else if (r == -EAGAIN) {
1059 return 0;
1060 } else if (r < 0) {
1061 log_debug_errno(r, "Closing connection: %m");
1062 remove_source(server, fd);
1063 return 0;
1064 } else
1065 return 1;
1066 }
1067
1068 static int dispatch_raw_source_until_block(sd_event_source *event,
1069 void *userdata) {
1070 RemoteSource *source = userdata;
1071 int r;
1072
1073 /* Make sure event stays around even if source is destroyed */
1074 sd_event_source_ref(event);
1075
1076 r = handle_raw_source(event, source->importer.fd, EPOLLIN, server);
1077 if (r != 1)
1078 /* No more data for now */
1079 sd_event_source_set_enabled(event, SD_EVENT_OFF);
1080
1081 sd_event_source_unref(event);
1082
1083 return r;
1084 }
1085
1086 static int dispatch_raw_source_event(sd_event_source *event,
1087 int fd,
1088 uint32_t revents,
1089 void *userdata) {
1090 RemoteSource *source = userdata;
1091 int r;
1092
1093 assert(source->event);
1094 assert(source->buffer_event);
1095
1096 r = handle_raw_source(event, fd, EPOLLIN, server);
1097 if (r == 1)
1098 /* Might have more data. We need to rerun the handler
1099 * until we are sure the buffer is exhausted. */
1100 sd_event_source_set_enabled(source->buffer_event, SD_EVENT_ON);
1101
1102 return r;
1103 }
1104
1105 static int dispatch_blocking_source_event(sd_event_source *event,
1106 void *userdata) {
1107 RemoteSource *source = userdata;
1108
1109 return handle_raw_source(event, source->importer.fd, EPOLLIN, server);
1110 }
1111
1112 static int accept_connection(const char* type, int fd,
1113 SocketAddress *addr, char **hostname) {
1114 int fd2, r;
1115
1116 log_debug("Accepting new %s connection on fd:%d", type, fd);
1117 fd2 = accept4(fd, &addr->sockaddr.sa, &addr->size, SOCK_NONBLOCK|SOCK_CLOEXEC);
1118 if (fd2 < 0)
1119 return log_error_errno(errno, "accept() on fd:%d failed: %m", fd);
1120
1121 switch(socket_address_family(addr)) {
1122 case AF_INET:
1123 case AF_INET6: {
1124 _cleanup_free_ char *a = NULL;
1125 char *b;
1126
1127 r = socket_address_print(addr, &a);
1128 if (r < 0) {
1129 log_error_errno(r, "socket_address_print(): %m");
1130 close(fd2);
1131 return r;
1132 }
1133
1134 r = socknameinfo_pretty(&addr->sockaddr, addr->size, &b);
1135 if (r < 0) {
1136 log_error_errno(r, "Resolving hostname failed: %m");
1137 close(fd2);
1138 return r;
1139 }
1140
1141 log_debug("Accepted %s %s connection from %s",
1142 type,
1143 socket_address_family(addr) == AF_INET ? "IP" : "IPv6",
1144 a);
1145
1146 *hostname = b;
1147
1148 return fd2;
1149 };
1150 default:
1151 log_error("Rejected %s connection with unsupported family %d",
1152 type, socket_address_family(addr));
1153 close(fd2);
1154
1155 return -EINVAL;
1156 }
1157 }
1158
1159 static int dispatch_raw_connection_event(sd_event_source *event,
1160 int fd,
1161 uint32_t revents,
1162 void *userdata) {
1163 RemoteServer *s = userdata;
1164 int fd2;
1165 SocketAddress addr = {
1166 .size = sizeof(union sockaddr_union),
1167 .type = SOCK_STREAM,
1168 };
1169 char *hostname = NULL;
1170
1171 fd2 = accept_connection("raw", fd, &addr, &hostname);
1172 if (fd2 < 0)
1173 return fd2;
1174
1175 return add_source(s, fd2, hostname, true);
1176 }
1177
1178 /**********************************************************************
1179 **********************************************************************
1180 **********************************************************************/
1181
1182 static const char* const journal_write_split_mode_table[_JOURNAL_WRITE_SPLIT_MAX] = {
1183 [JOURNAL_WRITE_SPLIT_NONE] = "none",
1184 [JOURNAL_WRITE_SPLIT_HOST] = "host",
1185 };
1186
1187 DEFINE_PRIVATE_STRING_TABLE_LOOKUP(journal_write_split_mode, JournalWriteSplitMode);
1188 static DEFINE_CONFIG_PARSE_ENUM(config_parse_write_split_mode,
1189 journal_write_split_mode,
1190 JournalWriteSplitMode,
1191 "Failed to parse split mode setting");
1192
1193 static int parse_config(void) {
1194 const ConfigTableItem items[] = {
1195 { "Remote", "Seal", config_parse_bool, 0, &arg_seal },
1196 { "Remote", "SplitMode", config_parse_write_split_mode, 0, &arg_split_mode },
1197 { "Remote", "ServerKeyFile", config_parse_path, 0, &arg_key },
1198 { "Remote", "ServerCertificateFile", config_parse_path, 0, &arg_cert },
1199 { "Remote", "TrustedCertificateFile", config_parse_path, 0, &arg_trust },
1200 {}};
1201
1202 return config_parse_many_nulstr(PKGSYSCONFDIR "/journal-remote.conf",
1203 CONF_PATHS_NULSTR("systemd/journal-remote.conf.d"),
1204 "Remote\0", config_item_table_lookup, items,
1205 false, NULL);
1206 }
1207
1208 static void help(void) {
1209 printf("%s [OPTIONS...] {FILE|-}...\n\n"
1210 "Write external journal events to journal file(s).\n\n"
1211 " -h --help Show this help\n"
1212 " --version Show package version\n"
1213 " --url=URL Read events from systemd-journal-gatewayd at URL\n"
1214 " --getter=COMMAND Read events from the output of COMMAND\n"
1215 " --listen-raw=ADDR Listen for connections at ADDR\n"
1216 " --listen-http=ADDR Listen for HTTP connections at ADDR\n"
1217 " --listen-https=ADDR Listen for HTTPS connections at ADDR\n"
1218 " -o --output=FILE|DIR Write output to FILE or DIR/external-*.journal\n"
1219 " --compress[=BOOL] XZ-compress the output journal (default: yes)\n"
1220 " --seal[=BOOL] Use event sealing (default: no)\n"
1221 " --key=FILENAME SSL key in PEM format (default:\n"
1222 " \"" PRIV_KEY_FILE "\")\n"
1223 " --cert=FILENAME SSL certificate in PEM format (default:\n"
1224 " \"" CERT_FILE "\")\n"
1225 " --trust=FILENAME|all SSL CA certificate or disable checking (default:\n"
1226 " \"" TRUST_FILE "\")\n"
1227 " --gnutls-log=CATEGORY...\n"
1228 " Specify a list of gnutls logging categories\n"
1229 " --split-mode=none|host How many output files to create\n"
1230 "\n"
1231 "Note: file descriptors from sd_listen_fds() will be consumed, too.\n"
1232 , program_invocation_short_name);
1233 }
1234
1235 static int parse_argv(int argc, char *argv[]) {
1236 enum {
1237 ARG_VERSION = 0x100,
1238 ARG_URL,
1239 ARG_LISTEN_RAW,
1240 ARG_LISTEN_HTTP,
1241 ARG_LISTEN_HTTPS,
1242 ARG_GETTER,
1243 ARG_SPLIT_MODE,
1244 ARG_COMPRESS,
1245 ARG_SEAL,
1246 ARG_KEY,
1247 ARG_CERT,
1248 ARG_TRUST,
1249 ARG_GNUTLS_LOG,
1250 };
1251
1252 static const struct option options[] = {
1253 { "help", no_argument, NULL, 'h' },
1254 { "version", no_argument, NULL, ARG_VERSION },
1255 { "url", required_argument, NULL, ARG_URL },
1256 { "getter", required_argument, NULL, ARG_GETTER },
1257 { "listen-raw", required_argument, NULL, ARG_LISTEN_RAW },
1258 { "listen-http", required_argument, NULL, ARG_LISTEN_HTTP },
1259 { "listen-https", required_argument, NULL, ARG_LISTEN_HTTPS },
1260 { "output", required_argument, NULL, 'o' },
1261 { "split-mode", required_argument, NULL, ARG_SPLIT_MODE },
1262 { "compress", optional_argument, NULL, ARG_COMPRESS },
1263 { "seal", optional_argument, NULL, ARG_SEAL },
1264 { "key", required_argument, NULL, ARG_KEY },
1265 { "cert", required_argument, NULL, ARG_CERT },
1266 { "trust", required_argument, NULL, ARG_TRUST },
1267 { "gnutls-log", required_argument, NULL, ARG_GNUTLS_LOG },
1268 {}
1269 };
1270
1271 int c, r;
1272 bool type_a, type_b;
1273
1274 assert(argc >= 0);
1275 assert(argv);
1276
1277 while ((c = getopt_long(argc, argv, "ho:", options, NULL)) >= 0)
1278 switch(c) {
1279 case 'h':
1280 help();
1281 return 0 /* done */;
1282
1283 case ARG_VERSION:
1284 return version();
1285
1286 case ARG_URL:
1287 if (arg_url) {
1288 log_error("cannot currently set more than one --url");
1289 return -EINVAL;
1290 }
1291
1292 arg_url = optarg;
1293 break;
1294
1295 case ARG_GETTER:
1296 if (arg_getter) {
1297 log_error("cannot currently use --getter more than once");
1298 return -EINVAL;
1299 }
1300
1301 arg_getter = optarg;
1302 break;
1303
1304 case ARG_LISTEN_RAW:
1305 if (arg_listen_raw) {
1306 log_error("cannot currently use --listen-raw more than once");
1307 return -EINVAL;
1308 }
1309
1310 arg_listen_raw = optarg;
1311 break;
1312
1313 case ARG_LISTEN_HTTP:
1314 if (arg_listen_http || http_socket >= 0) {
1315 log_error("cannot currently use --listen-http more than once");
1316 return -EINVAL;
1317 }
1318
1319 r = negative_fd(optarg);
1320 if (r >= 0)
1321 http_socket = r;
1322 else
1323 arg_listen_http = optarg;
1324 break;
1325
1326 case ARG_LISTEN_HTTPS:
1327 if (arg_listen_https || https_socket >= 0) {
1328 log_error("cannot currently use --listen-https more than once");
1329 return -EINVAL;
1330 }
1331
1332 r = negative_fd(optarg);
1333 if (r >= 0)
1334 https_socket = r;
1335 else
1336 arg_listen_https = optarg;
1337
1338 break;
1339
1340 case ARG_KEY:
1341 if (arg_key) {
1342 log_error("Key file specified twice");
1343 return -EINVAL;
1344 }
1345
1346 arg_key = strdup(optarg);
1347 if (!arg_key)
1348 return log_oom();
1349
1350 break;
1351
1352 case ARG_CERT:
1353 if (arg_cert) {
1354 log_error("Certificate file specified twice");
1355 return -EINVAL;
1356 }
1357
1358 arg_cert = strdup(optarg);
1359 if (!arg_cert)
1360 return log_oom();
1361
1362 break;
1363
1364 case ARG_TRUST:
1365 if (arg_trust || arg_trust_all) {
1366 log_error("Confusing trusted CA configuration");
1367 return -EINVAL;
1368 }
1369
1370 if (streq(optarg, "all"))
1371 arg_trust_all = true;
1372 else {
1373 #ifdef HAVE_GNUTLS
1374 arg_trust = strdup(optarg);
1375 if (!arg_trust)
1376 return log_oom();
1377 #else
1378 log_error("Option --trust is not available.");
1379 return -EINVAL;
1380 #endif
1381 }
1382
1383 break;
1384
1385 case 'o':
1386 if (arg_output) {
1387 log_error("cannot use --output/-o more than once");
1388 return -EINVAL;
1389 }
1390
1391 arg_output = optarg;
1392 break;
1393
1394 case ARG_SPLIT_MODE:
1395 arg_split_mode = journal_write_split_mode_from_string(optarg);
1396 if (arg_split_mode == _JOURNAL_WRITE_SPLIT_INVALID) {
1397 log_error("Invalid split mode: %s", optarg);
1398 return -EINVAL;
1399 }
1400 break;
1401
1402 case ARG_COMPRESS:
1403 if (optarg) {
1404 r = parse_boolean(optarg);
1405 if (r < 0) {
1406 log_error("Failed to parse --compress= parameter.");
1407 return -EINVAL;
1408 }
1409
1410 arg_compress = !!r;
1411 } else
1412 arg_compress = true;
1413
1414 break;
1415
1416 case ARG_SEAL:
1417 if (optarg) {
1418 r = parse_boolean(optarg);
1419 if (r < 0) {
1420 log_error("Failed to parse --seal= parameter.");
1421 return -EINVAL;
1422 }
1423
1424 arg_seal = !!r;
1425 } else
1426 arg_seal = true;
1427
1428 break;
1429
1430 case ARG_GNUTLS_LOG: {
1431 #ifdef HAVE_GNUTLS
1432 const char* p = optarg;
1433 for (;;) {
1434 _cleanup_free_ char *word = NULL;
1435
1436 r = extract_first_word(&p, &word, ",", 0);
1437 if (r < 0)
1438 return log_error_errno(r, "Failed to parse --gnutls-log= argument: %m");
1439
1440 if (r == 0)
1441 break;
1442
1443 if (strv_push(&arg_gnutls_log, word) < 0)
1444 return log_oom();
1445
1446 word = NULL;
1447 }
1448 break;
1449 #else
1450 log_error("Option --gnutls-log is not available.");
1451 return -EINVAL;
1452 #endif
1453 }
1454
1455 case '?':
1456 return -EINVAL;
1457
1458 default:
1459 assert_not_reached("Unknown option code.");
1460 }
1461
1462 if (optind < argc)
1463 arg_files = argv + optind;
1464
1465 type_a = arg_getter || !strv_isempty(arg_files);
1466 type_b = arg_url
1467 || arg_listen_raw
1468 || arg_listen_http || arg_listen_https
1469 || sd_listen_fds(false) > 0;
1470 if (type_a && type_b) {
1471 log_error("Cannot use file input or --getter with "
1472 "--arg-listen-... or socket activation.");
1473 return -EINVAL;
1474 }
1475 if (type_a) {
1476 if (!arg_output) {
1477 log_error("Option --output must be specified with file input or --getter.");
1478 return -EINVAL;
1479 }
1480
1481 arg_split_mode = JOURNAL_WRITE_SPLIT_NONE;
1482 }
1483
1484 if (arg_split_mode == JOURNAL_WRITE_SPLIT_NONE
1485 && arg_output && is_dir(arg_output, true) > 0) {
1486 log_error("For SplitMode=none, output must be a file.");
1487 return -EINVAL;
1488 }
1489
1490 if (arg_split_mode == JOURNAL_WRITE_SPLIT_HOST
1491 && arg_output && is_dir(arg_output, true) <= 0) {
1492 log_error("For SplitMode=host, output must be a directory.");
1493 return -EINVAL;
1494 }
1495
1496 log_debug("Full config: SplitMode=%s Key=%s Cert=%s Trust=%s",
1497 journal_write_split_mode_to_string(arg_split_mode),
1498 strna(arg_key),
1499 strna(arg_cert),
1500 strna(arg_trust));
1501
1502 return 1 /* work to do */;
1503 }
1504
1505 static int load_certificates(char **key, char **cert, char **trust) {
1506 int r;
1507
1508 r = read_full_file(arg_key ?: PRIV_KEY_FILE, key, NULL);
1509 if (r < 0)
1510 return log_error_errno(r, "Failed to read key from file '%s': %m",
1511 arg_key ?: PRIV_KEY_FILE);
1512
1513 r = read_full_file(arg_cert ?: CERT_FILE, cert, NULL);
1514 if (r < 0)
1515 return log_error_errno(r, "Failed to read certificate from file '%s': %m",
1516 arg_cert ?: CERT_FILE);
1517
1518 if (arg_trust_all)
1519 log_info("Certificate checking disabled.");
1520 else {
1521 r = read_full_file(arg_trust ?: TRUST_FILE, trust, NULL);
1522 if (r < 0)
1523 return log_error_errno(r, "Failed to read CA certificate file '%s': %m",
1524 arg_trust ?: TRUST_FILE);
1525 }
1526
1527 return 0;
1528 }
1529
1530 int main(int argc, char **argv) {
1531 RemoteServer s = {};
1532 int r;
1533 _cleanup_free_ char *key = NULL, *cert = NULL, *trust = NULL;
1534
1535 log_show_color(true);
1536 log_parse_environment();
1537
1538 r = parse_config();
1539 if (r < 0)
1540 return EXIT_FAILURE;
1541
1542 r = parse_argv(argc, argv);
1543 if (r <= 0)
1544 return r == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
1545
1546
1547 if (arg_listen_http || arg_listen_https) {
1548 r = setup_gnutls_logger(arg_gnutls_log);
1549 if (r < 0)
1550 return EXIT_FAILURE;
1551 }
1552
1553 if (arg_listen_https || https_socket >= 0)
1554 if (load_certificates(&key, &cert, &trust) < 0)
1555 return EXIT_FAILURE;
1556
1557 if (remoteserver_init(&s, key, cert, trust) < 0)
1558 return EXIT_FAILURE;
1559
1560 r = sd_event_set_watchdog(s.events, true);
1561 if (r < 0)
1562 log_error_errno(r, "Failed to enable watchdog: %m");
1563 else
1564 log_debug("Watchdog is %sd.", enable_disable(r > 0));
1565
1566 log_debug("%s running as pid "PID_FMT,
1567 program_invocation_short_name, getpid_cached());
1568 sd_notify(false,
1569 "READY=1\n"
1570 "STATUS=Processing requests...");
1571
1572 while (s.active) {
1573 r = sd_event_get_state(s.events);
1574 if (r < 0)
1575 break;
1576 if (r == SD_EVENT_FINISHED)
1577 break;
1578
1579 r = sd_event_run(s.events, -1);
1580 if (r < 0) {
1581 log_error_errno(r, "Failed to run event loop: %m");
1582 break;
1583 }
1584 }
1585
1586 sd_notifyf(false,
1587 "STOPPING=1\n"
1588 "STATUS=Shutting down after writing %" PRIu64 " entries...", s.event_count);
1589 log_info("Finishing after writing %" PRIu64 " entries", s.event_count);
1590
1591 server_destroy(&s);
1592
1593 free(arg_key);
1594 free(arg_cert);
1595 free(arg_trust);
1596
1597 return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE;
1598 }