]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal-remote/journal-remote-main.c
tree-wide: Use log_setup() everywhere
[thirdparty/systemd.git] / src / journal-remote / journal-remote-main.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
c064d8db
ZJS
2
3#include <getopt.h>
4#include <unistd.h>
5
6#include "sd-daemon.h"
7
d6b4d1c7 8#include "build.h"
c064d8db 9#include "conf-parser.h"
28db6fbf 10#include "constants.h"
d8dd35fd 11#include "daemon-util.h"
c064d8db
ZJS
12#include "fd-util.h"
13#include "fileio.h"
14#include "journal-remote-write.h"
15#include "journal-remote.h"
d8dd35fd 16#include "main-func.h"
f362fe73 17#include "memory-util.h"
9c7f2201 18#include "parse-argument.h"
d7085bcc 19#include "parse-helpers.h"
294bf0c3 20#include "pretty-print.h"
c064d8db 21#include "process-util.h"
1abaf488 22#include "rlimit-util.h"
955fc5d8 23#include "sigbus.h"
c064d8db 24#include "signal-util.h"
5c3fa98d 25#include "socket-netlink.h"
c064d8db
ZJS
26#include "socket-util.h"
27#include "stat-util.h"
28#include "string-table.h"
29#include "strv.h"
30
31#define PRIV_KEY_FILE CERTIFICATE_ROOT "/private/journal-remote.pem"
32#define CERT_FILE CERTIFICATE_ROOT "/certs/journal-remote.pem"
33#define TRUST_FILE CERTIFICATE_ROOT "/ca/trusted.pem"
34
d8dd35fd
YW
35static const char* arg_url = NULL;
36static const char* arg_getter = NULL;
37static const char* arg_listen_raw = NULL;
38static const char* arg_listen_http = NULL;
39static const char* arg_listen_https = NULL;
40static char** arg_files = NULL; /* Do not free this. */
9c7f2201
ZJS
41static bool arg_compress = true;
42static bool arg_seal = false;
c064d8db
ZJS
43static int http_socket = -1, https_socket = -1;
44static char** arg_gnutls_log = NULL;
45
46static JournalWriteSplitMode arg_split_mode = _JOURNAL_WRITE_SPLIT_INVALID;
7276d98c 47static char *arg_output = NULL;
c064d8db
ZJS
48
49static char *arg_key = NULL;
50static char *arg_cert = NULL;
51static char *arg_trust = NULL;
f7adeaeb 52#if HAVE_GNUTLS
c064d8db 53static bool arg_trust_all = false;
f7adeaeb
YW
54#else
55static bool arg_trust_all = true;
56#endif
c064d8db 57
f12b399d 58static uint64_t arg_max_use = UINT64_MAX;
59static uint64_t arg_max_size = UINT64_MAX;
60static uint64_t arg_n_max_files = UINT64_MAX;
61static uint64_t arg_keep_free = UINT64_MAX;
62
d8dd35fd
YW
63STATIC_DESTRUCTOR_REGISTER(arg_gnutls_log, strv_freep);
64STATIC_DESTRUCTOR_REGISTER(arg_key, freep);
65STATIC_DESTRUCTOR_REGISTER(arg_cert, freep);
66STATIC_DESTRUCTOR_REGISTER(arg_trust, freep);
7276d98c 67STATIC_DESTRUCTOR_REGISTER(arg_output, freep);
d8dd35fd 68
c064d8db
ZJS
69static const char* const journal_write_split_mode_table[_JOURNAL_WRITE_SPLIT_MAX] = {
70 [JOURNAL_WRITE_SPLIT_NONE] = "none",
71 [JOURNAL_WRITE_SPLIT_HOST] = "host",
72};
73
74DEFINE_PRIVATE_STRING_TABLE_LOOKUP(journal_write_split_mode, JournalWriteSplitMode);
75static DEFINE_CONFIG_PARSE_ENUM(config_parse_write_split_mode,
76 journal_write_split_mode,
77 JournalWriteSplitMode,
78 "Failed to parse split mode setting");
79
80/**********************************************************************
81 **********************************************************************
82 **********************************************************************/
83
84static int spawn_child(const char* child, char** argv) {
85 pid_t child_pid;
86 int fd[2], r;
87
88 if (pipe(fd) < 0)
89 return log_error_errno(errno, "Failed to create pager pipe: %m");
90
0c2aedb4
YW
91 r = safe_fork_full("(remote)",
92 (int[]) {STDIN_FILENO, fd[1], STDERR_FILENO },
93 NULL, 0,
e9ccae31 94 FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_DEATHSIG_SIGTERM|FORK_REARRANGE_STDIO|FORK_LOG|FORK_RLIMIT_NOFILE_SAFE, &child_pid);
c064d8db
ZJS
95 if (r < 0) {
96 safe_close_pair(fd);
97 return r;
98 }
99
100 /* In the child */
101 if (r == 0) {
c064d8db
ZJS
102 execvp(child, argv);
103 log_error_errno(errno, "Failed to exec child %s: %m", child);
104 _exit(EXIT_FAILURE);
105 }
106
107 safe_close(fd[1]);
108
109 r = fd_nonblock(fd[0], true);
110 if (r < 0)
111 log_warning_errno(errno, "Failed to set child pipe to non-blocking: %m");
112
113 return fd[0];
114}
115
116static int spawn_curl(const char* url) {
117 char **argv = STRV_MAKE("curl",
118 "-HAccept: application/vnd.fdo.journal",
119 "--silent",
120 "--show-error",
121 url);
122 int r;
123
124 r = spawn_child("curl", argv);
125 if (r < 0)
126 log_error_errno(r, "Failed to spawn curl: %m");
127 return r;
128}
129
130static int spawn_getter(const char *getter) {
131 int r;
132 _cleanup_strv_free_ char **words = NULL;
133
134 assert(getter);
90e30d76 135 r = strv_split_full(&words, getter, WHITESPACE, EXTRACT_UNQUOTE);
c064d8db
ZJS
136 if (r < 0)
137 return log_error_errno(r, "Failed to split getter option: %m");
138
139 r = spawn_child(words[0], words);
140 if (r < 0)
141 log_error_errno(r, "Failed to spawn getter %s: %m", getter);
142
143 return r;
144}
145
146/**********************************************************************
147 **********************************************************************
148 **********************************************************************/
149
150static int null_timer_event_handler(sd_event_source *s,
151 uint64_t usec,
152 void *userdata);
153static int dispatch_http_event(sd_event_source *event,
154 int fd,
155 uint32_t revents,
156 void *userdata);
157
158static int request_meta(void **connection_cls, int fd, char *hostname) {
159 RemoteSource *source;
160 Writer *writer;
161 int r;
162
163 assert(connection_cls);
164 if (*connection_cls)
165 return 0;
166
167 r = journal_remote_get_writer(journal_remote_server_global, hostname, &writer);
168 if (r < 0)
169 return log_warning_errno(r, "Failed to get writer for source %s: %m",
170 hostname);
171
172 source = source_new(fd, true, hostname, writer);
173 if (!source) {
174 writer_unref(writer);
175 return log_oom();
176 }
177
178 log_debug("Added RemoteSource as connection metadata %p", source);
179
180 *connection_cls = source;
181 return 0;
182}
183
184static void request_meta_free(void *cls,
185 struct MHD_Connection *connection,
186 void **connection_cls,
187 enum MHD_RequestTerminationCode toe) {
188 RemoteSource *s;
189
190 assert(connection_cls);
191 s = *connection_cls;
192
193 if (s) {
194 log_debug("Cleaning up connection metadata %p", s);
195 source_free(s);
196 *connection_cls = NULL;
197 }
198}
199
200static int process_http_upload(
201 struct MHD_Connection *connection,
202 const char *upload_data,
203 size_t *upload_data_size,
204 RemoteSource *source) {
205
206 bool finished = false;
207 size_t remaining;
208 int r;
209
210 assert(source);
211
212 log_trace("%s: connection %p, %zu bytes",
213 __func__, connection, *upload_data_size);
214
215 if (*upload_data_size) {
216 log_trace("Received %zu bytes", *upload_data_size);
217
218 r = journal_importer_push_data(&source->importer,
219 upload_data, *upload_data_size);
220 if (r < 0)
221 return mhd_respond_oom(connection);
222
223 *upload_data_size = 0;
224 } else
225 finished = true;
226
227 for (;;) {
49615dbd 228 r = process_source(source, journal_remote_server_global->file_flags);
c064d8db
ZJS
229 if (r == -EAGAIN)
230 break;
7fdb237f 231 if (r < 0) {
ef4d6abe
ZJS
232 if (r == -ENOBUFS)
233 log_warning_errno(r, "Entry is above the maximum of %u, aborting connection %p.",
7fdb237f 234 DATA_SIZE_MAX, connection);
ef4d6abe
ZJS
235 else if (r == -E2BIG)
236 log_warning_errno(r, "Entry with more fields than the maximum of %u, aborting connection %p.",
237 ENTRY_FIELD_COUNT_MAX, connection);
c064d8db 238 else
7fdb237f
ZJS
239 log_warning_errno(r, "Failed to process data, aborting connection %p: %m",
240 connection);
241 return MHD_NO;
c064d8db
ZJS
242 }
243 }
244
245 if (!finished)
246 return MHD_YES;
247
248 /* The upload is finished */
249
250 remaining = journal_importer_bytes_remaining(&source->importer);
251 if (remaining > 0) {
252 log_warning("Premature EOF byte. %zu bytes lost.", remaining);
253 return mhd_respondf(connection,
254 0, MHD_HTTP_EXPECTATION_FAILED,
255 "Premature EOF. %zu bytes of trailing data not processed.",
256 remaining);
257 }
258
259 return mhd_respond(connection, MHD_HTTP_ACCEPTED, "OK.");
260};
261
d17eabb1 262static mhd_result request_handler(
c064d8db
ZJS
263 void *cls,
264 struct MHD_Connection *connection,
265 const char *url,
266 const char *method,
267 const char *version,
268 const char *upload_data,
269 size_t *upload_data_size,
270 void **connection_cls) {
271
272 const char *header;
273 int r, code, fd;
274 _cleanup_free_ char *hostname = NULL;
a289dfd6 275 bool chunked = false;
c064d8db
ZJS
276
277 assert(connection);
278 assert(connection_cls);
279 assert(url);
280 assert(method);
281
282 log_trace("Handling a connection %s %s %s", method, url, version);
283
284 if (*connection_cls)
285 return process_http_upload(connection,
286 upload_data, upload_data_size,
287 *connection_cls);
288
289 if (!streq(method, "POST"))
290 return mhd_respond(connection, MHD_HTTP_NOT_ACCEPTABLE, "Unsupported method.");
291
292 if (!streq(url, "/upload"))
293 return mhd_respond(connection, MHD_HTTP_NOT_FOUND, "Not found.");
294
7fdb237f 295 header = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, "Content-Type");
c064d8db
ZJS
296 if (!header || !streq(header, "application/vnd.fdo.journal"))
297 return mhd_respond(connection, MHD_HTTP_UNSUPPORTED_MEDIA_TYPE,
298 "Content-Type: application/vnd.fdo.journal is required.");
299
a289dfd6
YW
300 header = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, "Transfer-Encoding");
301 if (header) {
302 if (!strcaseeq(header, "chunked"))
303 return mhd_respondf(connection, 0, MHD_HTTP_BAD_REQUEST,
304 "Unsupported Transfer-Encoding type: %s", header);
305
306 chunked = true;
307 }
308
7fdb237f 309 header = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, "Content-Length");
a289dfd6 310 if (header) {
ce2f4379
ZJS
311 size_t len;
312
a289dfd6
YW
313 if (chunked)
314 return mhd_respond(connection, MHD_HTTP_BAD_REQUEST,
1f8ef095 315 "Content-Length not allowed when Transfer-Encoding type is 'chunked'");
a289dfd6
YW
316
317 r = safe_atozu(header, &len);
318 if (r < 0)
319 return mhd_respondf(connection, r, MHD_HTTP_LENGTH_REQUIRED,
320 "Content-Length: %s cannot be parsed: %m", header);
321
322 if (len > ENTRY_SIZE_MAX)
323 /* When serialized, an entry of maximum size might be slightly larger,
324 * so this does not correspond exactly to the limit in journald. Oh well.
325 */
30df858f 326 return mhd_respondf(connection, 0, MHD_HTTP_CONTENT_TOO_LARGE,
a289dfd6
YW
327 "Payload larger than maximum size of %u bytes", ENTRY_SIZE_MAX);
328 }
7fdb237f 329
c064d8db
ZJS
330 {
331 const union MHD_ConnectionInfo *ci;
332
333 ci = MHD_get_connection_info(connection,
334 MHD_CONNECTION_INFO_CONNECTION_FD);
335 if (!ci) {
336 log_error("MHD_get_connection_info failed: cannot get remote fd");
337 return mhd_respond(connection, MHD_HTTP_INTERNAL_SERVER_ERROR,
338 "Cannot check remote address.");
339 }
340
341 fd = ci->connect_fd;
342 assert(fd >= 0);
343 }
344
345 if (journal_remote_server_global->check_trust) {
346 r = check_permissions(connection, &code, &hostname);
347 if (r < 0)
348 return code;
349 } else {
350 r = getpeername_pretty(fd, false, &hostname);
351 if (r < 0)
352 return mhd_respond(connection, MHD_HTTP_INTERNAL_SERVER_ERROR,
353 "Cannot check remote hostname.");
354 }
355
356 assert(hostname);
357
358 r = request_meta(connection_cls, fd, hostname);
359 if (r == -ENOMEM)
360 return respond_oom(connection);
361 else if (r < 0)
362 return mhd_respondf(connection, r, MHD_HTTP_INTERNAL_SERVER_ERROR, "%m");
363
364 hostname = NULL;
365 return MHD_YES;
366}
367
368static int setup_microhttpd_server(RemoteServer *s,
369 int fd,
370 const char *key,
371 const char *cert,
372 const char *trust) {
373 struct MHD_OptionItem opts[] = {
c064d8db 374 { MHD_OPTION_EXTERNAL_LOGGER, (intptr_t) microhttpd_logger},
756ef1fa 375 { MHD_OPTION_NOTIFY_COMPLETED, (intptr_t) request_meta_free},
c064d8db 376 { MHD_OPTION_LISTEN_SOCKET, fd},
5572e9d8 377 { MHD_OPTION_CONNECTION_MEMORY_LIMIT, JOURNAL_SERVER_MEMORY_MAX},
c064d8db
ZJS
378 { MHD_OPTION_END},
379 { MHD_OPTION_END},
380 { MHD_OPTION_END},
381 { MHD_OPTION_END},
382 { MHD_OPTION_END}};
383 int opts_pos = 4;
384 int flags =
385 MHD_USE_DEBUG |
386 MHD_USE_DUAL_STACK |
387 MHD_USE_EPOLL |
388 MHD_USE_ITC;
389
3c67c8bd 390 _cleanup_(MHDDaemonWrapper_freep) MHDDaemonWrapper *d = NULL;
c064d8db
ZJS
391 const union MHD_DaemonInfo *info;
392 int r, epoll_fd;
c064d8db
ZJS
393
394 assert(fd >= 0);
395
396 r = fd_nonblock(fd, true);
397 if (r < 0)
398 return log_error_errno(r, "Failed to make fd:%d nonblocking: %m", fd);
399
400/* MHD_OPTION_STRICT_FOR_CLIENT is introduced in microhttpd 0.9.54,
401 * and MHD_USE_PEDANTIC_CHECKS will be deprecated in future.
402 * If MHD_USE_PEDANTIC_CHECKS is '#define'd, then it is deprecated
403 * and we should use MHD_OPTION_STRICT_FOR_CLIENT. On the other hand,
404 * if MHD_USE_PEDANTIC_CHECKS is not '#define'd, then it is not
405 * deprecated yet and there exists an enum element with the same name.
406 * So we can safely use it. */
407#ifdef MHD_USE_PEDANTIC_CHECKS
408 opts[opts_pos++] = (struct MHD_OptionItem)
409 {MHD_OPTION_STRICT_FOR_CLIENT, 1};
410#else
411 flags |= MHD_USE_PEDANTIC_CHECKS;
412#endif
413
414 if (key) {
415 assert(cert);
416
417 opts[opts_pos++] = (struct MHD_OptionItem)
418 {MHD_OPTION_HTTPS_MEM_KEY, 0, (char*) key};
419 opts[opts_pos++] = (struct MHD_OptionItem)
420 {MHD_OPTION_HTTPS_MEM_CERT, 0, (char*) cert};
421
422 flags |= MHD_USE_TLS;
423
424 if (trust)
425 opts[opts_pos++] = (struct MHD_OptionItem)
426 {MHD_OPTION_HTTPS_MEM_TRUST, 0, (char*) trust};
427 }
428
429 d = new(MHDDaemonWrapper, 1);
430 if (!d)
431 return log_oom();
432
433 d->fd = (uint64_t) fd;
434
435 d->daemon = MHD_start_daemon(flags, 0,
436 NULL, NULL,
437 request_handler, NULL,
438 MHD_OPTION_ARRAY, opts,
439 MHD_OPTION_END);
3c67c8bd
FS
440 if (!d->daemon)
441 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to start μhttp daemon");
c064d8db
ZJS
442
443 log_debug("Started MHD %s daemon on fd:%d (wrapper @ %p)",
444 key ? "HTTPS" : "HTTP", fd, d);
445
446 info = MHD_get_daemon_info(d->daemon, MHD_DAEMON_INFO_EPOLL_FD_LINUX_ONLY);
3c67c8bd
FS
447 if (!info)
448 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "μhttp returned NULL daemon info");
c064d8db
ZJS
449
450 epoll_fd = info->listen_fd;
3c67c8bd
FS
451 if (epoll_fd < 0)
452 return log_error_errno(SYNTHETIC_ERRNO(EUCLEAN), "μhttp epoll fd is invalid");
c064d8db 453
b50e9011 454 r = sd_event_add_io(s->event, &d->io_event,
c064d8db
ZJS
455 epoll_fd, EPOLLIN,
456 dispatch_http_event, d);
3c67c8bd
FS
457 if (r < 0)
458 return log_error_errno(r, "Failed to add event callback: %m");
c064d8db
ZJS
459
460 r = sd_event_source_set_description(d->io_event, "io_event");
3c67c8bd
FS
461 if (r < 0)
462 return log_error_errno(r, "Failed to set source name: %m");
c064d8db 463
b50e9011 464 r = sd_event_add_time(s->event, &d->timer_event,
f5fbe71d 465 CLOCK_MONOTONIC, UINT64_MAX, 0,
c064d8db 466 null_timer_event_handler, d);
3c67c8bd
FS
467 if (r < 0)
468 return log_error_errno(r, "Failed to add timer_event: %m");
c064d8db
ZJS
469
470 r = sd_event_source_set_description(d->timer_event, "timer_event");
3c67c8bd
FS
471 if (r < 0)
472 return log_error_errno(r, "Failed to set source name: %m");
c064d8db 473
4bc25168 474 r = hashmap_ensure_put(&s->daemons, &uint64_hash_ops, &d->fd, d);
3c67c8bd
FS
475 if (r == -ENOMEM)
476 return log_oom();
477 if (r < 0)
478 return log_error_errno(r, "Failed to add daemon to hashmap: %m");
c064d8db 479
3c67c8bd 480 TAKE_PTR(d);
c064d8db
ZJS
481 s->active++;
482 return 0;
c064d8db
ZJS
483}
484
485static int setup_microhttpd_socket(RemoteServer *s,
486 const char *address,
487 const char *key,
488 const char *cert,
489 const char *trust) {
490 int fd;
491
492 fd = make_socket_fd(LOG_DEBUG, address, SOCK_STREAM, SOCK_CLOEXEC);
493 if (fd < 0)
494 return fd;
495
496 return setup_microhttpd_server(s, fd, key, cert, trust);
497}
498
499static int null_timer_event_handler(sd_event_source *timer_event,
500 uint64_t usec,
501 void *userdata) {
502 return dispatch_http_event(timer_event, 0, 0, userdata);
503}
504
505static int dispatch_http_event(sd_event_source *event,
506 int fd,
507 uint32_t revents,
508 void *userdata) {
99534007 509 MHDDaemonWrapper *d = ASSERT_PTR(userdata);
c064d8db 510 int r;
8a8e84d2 511 MHD_UNSIGNED_LONG_LONG timeout = ULLONG_MAX;
c064d8db 512
c064d8db 513 r = MHD_run(d->daemon);
baaa35ad
ZJS
514 if (r == MHD_NO)
515 // FIXME: unregister daemon
516 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
517 "MHD_run failed!");
c064d8db 518 if (MHD_get_timeout(d->daemon, &timeout) == MHD_NO)
8a8e84d2 519 timeout = ULLONG_MAX;
c064d8db
ZJS
520
521 r = sd_event_source_set_time(d->timer_event, timeout);
522 if (r < 0) {
523 log_warning_errno(r, "Unable to set event loop timeout: %m, this may result in indefinite blocking!");
524 return 1;
525 }
526
527 r = sd_event_source_set_enabled(d->timer_event, SD_EVENT_ON);
528 if (r < 0)
529 log_warning_errno(r, "Unable to enable timer_event: %m, this may result in indefinite blocking!");
530
531 return 1; /* work to do */
532}
533
534/**********************************************************************
535 **********************************************************************
536 **********************************************************************/
537
c064d8db
ZJS
538static int setup_raw_socket(RemoteServer *s, const char *address) {
539 int fd;
540
541 fd = make_socket_fd(LOG_INFO, address, SOCK_STREAM, SOCK_CLOEXEC);
542 if (fd < 0)
543 return fd;
544
545 return journal_remote_add_raw_socket(s, fd);
546}
547
548static int create_remoteserver(
549 RemoteServer *s,
550 const char* key,
551 const char* cert,
552 const char* trust) {
553
554 int r, n, fd;
c064d8db 555
49615dbd
LP
556 r = journal_remote_server_init(
557 s,
558 arg_output,
559 arg_split_mode,
560 (arg_compress ? JOURNAL_COMPRESS : 0) |
561 (arg_seal ? JOURNAL_SEAL : 0));
c064d8db
ZJS
562 if (r < 0)
563 return r;
564
b50e9011 565 r = sd_event_set_signal_exit(s->event, true);
83a43339 566 if (r < 0)
dcd332ae 567 return log_error_errno(r, "Failed to install SIGINT/SIGTERM handlers: %m");
c064d8db
ZJS
568
569 n = sd_listen_fds(true);
570 if (n < 0)
571 return log_error_errno(n, "Failed to read listening file descriptors from environment: %m");
572 else
573 log_debug("Received %d descriptors", n);
574
baaa35ad
ZJS
575 if (MAX(http_socket, https_socket) >= SD_LISTEN_FDS_START + n)
576 return log_error_errno(SYNTHETIC_ERRNO(EBADFD),
577 "Received fewer sockets than expected");
c064d8db
ZJS
578
579 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd++) {
580 if (sd_is_socket(fd, AF_UNSPEC, 0, true)) {
581 log_debug("Received a listening socket (fd:%d)", fd);
582
583 if (fd == http_socket)
584 r = setup_microhttpd_server(s, fd, NULL, NULL, NULL);
585 else if (fd == https_socket)
586 r = setup_microhttpd_server(s, fd, key, cert, trust);
587 else
588 r = journal_remote_add_raw_socket(s, fd);
589 } else if (sd_is_socket(fd, AF_UNSPEC, 0, false)) {
590 char *hostname;
591
592 r = getpeername_pretty(fd, false, &hostname);
593 if (r < 0)
594 return log_error_errno(r, "Failed to retrieve remote name: %m");
595
596 log_debug("Received a connection socket (fd:%d) from %s", fd, hostname);
597
598 r = journal_remote_add_source(s, fd, hostname, true);
baaa35ad
ZJS
599 } else
600 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
601 "Unknown socket passed on fd:%d", fd);
c064d8db
ZJS
602
603 if (r < 0)
baaa35ad 604 return log_error_errno(r, "Failed to register socket (fd:%d): %m", fd);
c064d8db
ZJS
605 }
606
607 if (arg_getter) {
608 log_info("Spawning getter %s...", arg_getter);
609 fd = spawn_getter(arg_getter);
610 if (fd < 0)
611 return fd;
612
613 r = journal_remote_add_source(s, fd, (char*) arg_output, false);
614 if (r < 0)
615 return r;
616 }
617
618 if (arg_url) {
d8dd35fd 619 const char *url, *hostname;
c064d8db
ZJS
620
621 if (!strstr(arg_url, "/entries")) {
622 if (endswith(arg_url, "/"))
623 url = strjoina(arg_url, "entries");
624 else
625 url = strjoina(arg_url, "/entries");
15d121b0 626 } else
2f82562b 627 url = strdupa_safe(arg_url);
c064d8db
ZJS
628
629 log_info("Spawning curl %s...", url);
630 fd = spawn_curl(url);
631 if (fd < 0)
632 return fd;
633
49fe5c09
LP
634 hostname = STARTSWITH_SET(arg_url, "https://", "http://");
635 if (!hostname)
636 hostname = arg_url;
c064d8db 637
2f82562b 638 hostname = strndupa_safe(hostname, strcspn(hostname, "/:"));
c064d8db 639
d8dd35fd 640 r = journal_remote_add_source(s, fd, (char *) hostname, false);
c064d8db
ZJS
641 if (r < 0)
642 return r;
643 }
644
645 if (arg_listen_raw) {
646 log_debug("Listening on a socket...");
647 r = setup_raw_socket(s, arg_listen_raw);
648 if (r < 0)
649 return r;
650 }
651
652 if (arg_listen_http) {
653 r = setup_microhttpd_socket(s, arg_listen_http, NULL, NULL, NULL);
654 if (r < 0)
655 return r;
656 }
657
658 if (arg_listen_https) {
659 r = setup_microhttpd_socket(s, arg_listen_https, key, cert, trust);
660 if (r < 0)
661 return r;
662 }
663
664 STRV_FOREACH(file, arg_files) {
665 const char *output_name;
666
667 if (streq(*file, "-")) {
668 log_debug("Using standard input as source.");
669
670 fd = STDIN_FILENO;
671 output_name = "stdin";
672 } else {
673 log_debug("Reading file %s...", *file);
674
675 fd = open(*file, O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NONBLOCK);
676 if (fd < 0)
677 return log_error_errno(errno, "Failed to open %s: %m", *file);
678 output_name = *file;
679 }
680
681 r = journal_remote_add_source(s, fd, (char*) output_name, false);
682 if (r < 0)
683 return r;
684 }
685
baaa35ad
ZJS
686 if (s->active == 0)
687 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
688 "Zero sources specified");
c064d8db
ZJS
689
690 if (arg_split_mode == JOURNAL_WRITE_SPLIT_NONE) {
691 /* In this case we know what the writer will be
692 called, so we can create it and verify that we can
693 create output as expected. */
694 r = journal_remote_get_writer(s, NULL, &s->_single_writer);
695 if (r < 0)
8ee2fd90 696 return log_warning_errno(r, "Failed to get writer: %m");
c064d8db
ZJS
697 }
698
699 return 0;
700}
701
702static int negative_fd(const char *spec) {
703 /* Return a non-positive number as its inverse, -EINVAL otherwise. */
704
705 int fd, r;
706
707 r = safe_atoi(spec, &fd);
708 if (r < 0)
709 return r;
710
711 if (fd > 0)
712 return -EINVAL;
713 else
714 return -fd;
715}
716
717static int parse_config(void) {
718 const ConfigTableItem items[] = {
f12b399d 719 { "Remote", "Seal", config_parse_bool, 0, &arg_seal },
720 { "Remote", "SplitMode", config_parse_write_split_mode, 0, &arg_split_mode },
721 { "Remote", "ServerKeyFile", config_parse_path, 0, &arg_key },
722 { "Remote", "ServerCertificateFile", config_parse_path, 0, &arg_cert },
d7085bcc 723 { "Remote", "TrustedCertificateFile", config_parse_path_or_ignore, 0, &arg_trust },
f12b399d 724 { "Remote", "MaxUse", config_parse_iec_uint64, 0, &arg_max_use },
725 { "Remote", "MaxFileSize", config_parse_iec_uint64, 0, &arg_max_size },
726 { "Remote", "MaxFiles", config_parse_uint64, 0, &arg_n_max_files },
727 { "Remote", "KeepFree", config_parse_iec_uint64, 0, &arg_keep_free },
37ec0fdd
LP
728 {}
729 };
c064d8db 730
6378f257
ZJS
731 return config_parse_standard_file_with_dropins(
732 "systemd/journal-remote.conf",
733 "Remote\0",
734 config_item_table_lookup, items,
735 CONFIG_PARSE_WARN,
736 /* userdata= */ NULL);
c064d8db
ZJS
737}
738
37ec0fdd
LP
739static int help(void) {
740 _cleanup_free_ char *link = NULL;
741 int r;
742
743 r = terminal_urlify_man("systemd-journal-remote.service", "8", &link);
744 if (r < 0)
745 return log_oom();
746
c064d8db
ZJS
747 printf("%s [OPTIONS...] {FILE|-}...\n\n"
748 "Write external journal events to journal file(s).\n\n"
749 " -h --help Show this help\n"
750 " --version Show package version\n"
751 " --url=URL Read events from systemd-journal-gatewayd at URL\n"
752 " --getter=COMMAND Read events from the output of COMMAND\n"
753 " --listen-raw=ADDR Listen for connections at ADDR\n"
754 " --listen-http=ADDR Listen for HTTP connections at ADDR\n"
755 " --listen-https=ADDR Listen for HTTPS connections at ADDR\n"
756 " -o --output=FILE|DIR Write output to FILE or DIR/external-*.journal\n"
82b2281d 757 " --compress[=BOOL] Use compression in the output journal (default: yes)\n"
c064d8db
ZJS
758 " --seal[=BOOL] Use event sealing (default: no)\n"
759 " --key=FILENAME SSL key in PEM format (default:\n"
760 " \"" PRIV_KEY_FILE "\")\n"
761 " --cert=FILENAME SSL certificate in PEM format (default:\n"
762 " \"" CERT_FILE "\")\n"
763 " --trust=FILENAME|all SSL CA certificate or disable checking (default:\n"
764 " \"" TRUST_FILE "\")\n"
765 " --gnutls-log=CATEGORY...\n"
766 " Specify a list of gnutls logging categories\n"
767 " --split-mode=none|host How many output files to create\n"
37ec0fdd 768 "\nNote: file descriptors from sd_listen_fds() will be consumed, too.\n"
bc556335
DDM
769 "\nSee the %s for details.\n",
770 program_invocation_short_name,
771 link);
37ec0fdd
LP
772
773 return 0;
c064d8db
ZJS
774}
775
776static int parse_argv(int argc, char *argv[]) {
777 enum {
778 ARG_VERSION = 0x100,
779 ARG_URL,
780 ARG_LISTEN_RAW,
781 ARG_LISTEN_HTTP,
782 ARG_LISTEN_HTTPS,
783 ARG_GETTER,
784 ARG_SPLIT_MODE,
785 ARG_COMPRESS,
786 ARG_SEAL,
787 ARG_KEY,
788 ARG_CERT,
789 ARG_TRUST,
790 ARG_GNUTLS_LOG,
791 };
792
793 static const struct option options[] = {
794 { "help", no_argument, NULL, 'h' },
795 { "version", no_argument, NULL, ARG_VERSION },
796 { "url", required_argument, NULL, ARG_URL },
797 { "getter", required_argument, NULL, ARG_GETTER },
798 { "listen-raw", required_argument, NULL, ARG_LISTEN_RAW },
799 { "listen-http", required_argument, NULL, ARG_LISTEN_HTTP },
800 { "listen-https", required_argument, NULL, ARG_LISTEN_HTTPS },
801 { "output", required_argument, NULL, 'o' },
802 { "split-mode", required_argument, NULL, ARG_SPLIT_MODE },
803 { "compress", optional_argument, NULL, ARG_COMPRESS },
804 { "seal", optional_argument, NULL, ARG_SEAL },
805 { "key", required_argument, NULL, ARG_KEY },
806 { "cert", required_argument, NULL, ARG_CERT },
807 { "trust", required_argument, NULL, ARG_TRUST },
808 { "gnutls-log", required_argument, NULL, ARG_GNUTLS_LOG },
809 {}
810 };
811
812 int c, r;
813 bool type_a, type_b;
814
815 assert(argc >= 0);
816 assert(argv);
817
818 while ((c = getopt_long(argc, argv, "ho:", options, NULL)) >= 0)
79893116 819 switch (c) {
37ec0fdd 820
c064d8db 821 case 'h':
37ec0fdd 822 return help();
c064d8db
ZJS
823
824 case ARG_VERSION:
825 return version();
826
827 case ARG_URL:
baaa35ad
ZJS
828 if (arg_url)
829 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 830 "Cannot currently set more than one --url=");
c064d8db
ZJS
831
832 arg_url = optarg;
833 break;
834
835 case ARG_GETTER:
baaa35ad
ZJS
836 if (arg_getter)
837 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 838 "Cannot currently use --getter= more than once");
c064d8db
ZJS
839
840 arg_getter = optarg;
841 break;
842
843 case ARG_LISTEN_RAW:
baaa35ad
ZJS
844 if (arg_listen_raw)
845 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 846 "Cannot currently use --listen-raw= more than once");
c064d8db
ZJS
847
848 arg_listen_raw = optarg;
849 break;
850
851 case ARG_LISTEN_HTTP:
baaa35ad
ZJS
852 if (arg_listen_http || http_socket >= 0)
853 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 854 "Cannot currently use --listen-http= more than once");
c064d8db
ZJS
855
856 r = negative_fd(optarg);
857 if (r >= 0)
858 http_socket = r;
859 else
860 arg_listen_http = optarg;
861 break;
862
863 case ARG_LISTEN_HTTPS:
baaa35ad
ZJS
864 if (arg_listen_https || https_socket >= 0)
865 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 866 "Cannot currently use --listen-https= more than once");
c064d8db
ZJS
867
868 r = negative_fd(optarg);
869 if (r >= 0)
870 https_socket = r;
871 else
872 arg_listen_https = optarg;
873
874 break;
875
876 case ARG_KEY:
baaa35ad
ZJS
877 if (arg_key)
878 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
879 "Key file specified twice");
c064d8db
ZJS
880
881 arg_key = strdup(optarg);
882 if (!arg_key)
883 return log_oom();
884
885 break;
886
887 case ARG_CERT:
baaa35ad
ZJS
888 if (arg_cert)
889 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
890 "Certificate file specified twice");
c064d8db
ZJS
891
892 arg_cert = strdup(optarg);
893 if (!arg_cert)
894 return log_oom();
895
896 break;
897
898 case ARG_TRUST:
f7adeaeb 899#if HAVE_GNUTLS
d7085bcc 900 if (arg_trust)
baaa35ad 901 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 902 "Cannot use --trust more= than once");
c064d8db 903
d7085bcc
FS
904 arg_trust = strdup(optarg);
905 if (!arg_trust)
906 return log_oom();
c064d8db 907#else
f7adeaeb 908 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 909 "Option --trust= is not available.");
c064d8db 910#endif
c064d8db
ZJS
911 break;
912
913 case 'o':
baaa35ad
ZJS
914 if (arg_output)
915 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 916 "Cannot use --output=/-o more than once");
c064d8db 917
7276d98c
YW
918 r = parse_path_argument(optarg, /* suppress_root = */ false, &arg_output);
919 if (r < 0)
920 return r;
c064d8db
ZJS
921 break;
922
923 case ARG_SPLIT_MODE:
924 arg_split_mode = journal_write_split_mode_from_string(optarg);
baaa35ad 925 if (arg_split_mode == _JOURNAL_WRITE_SPLIT_INVALID)
7211c853 926 return log_error_errno(arg_split_mode, "Invalid split mode: %s", optarg);
c064d8db
ZJS
927 break;
928
929 case ARG_COMPRESS:
9c7f2201
ZJS
930 r = parse_boolean_argument("--compress", optarg, &arg_compress);
931 if (r < 0)
932 return r;
c064d8db
ZJS
933 break;
934
935 case ARG_SEAL:
9c7f2201
ZJS
936 r = parse_boolean_argument("--seal", optarg, &arg_seal);
937 if (r < 0)
938 return r;
c064d8db
ZJS
939 break;
940
b01031e3 941 case ARG_GNUTLS_LOG:
c064d8db 942#if HAVE_GNUTLS
b01031e3 943 for (const char* p = optarg;;) {
c064d8db
ZJS
944 _cleanup_free_ char *word = NULL;
945
946 r = extract_first_word(&p, &word, ",", 0);
947 if (r < 0)
948 return log_error_errno(r, "Failed to parse --gnutls-log= argument: %m");
c064d8db
ZJS
949 if (r == 0)
950 break;
951
952 if (strv_push(&arg_gnutls_log, word) < 0)
953 return log_oom();
954
955 word = NULL;
956 }
957 break;
958#else
baaa35ad 959 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 960 "Option --gnutls-log= is not available.");
c064d8db 961#endif
c064d8db
ZJS
962
963 case '?':
964 return -EINVAL;
965
966 default:
04499a70 967 assert_not_reached();
c064d8db
ZJS
968 }
969
970 if (optind < argc)
971 arg_files = argv + optind;
972
973 type_a = arg_getter || !strv_isempty(arg_files);
974 type_b = arg_url
975 || arg_listen_raw
976 || arg_listen_http || arg_listen_https
977 || sd_listen_fds(false) > 0;
baaa35ad
ZJS
978 if (type_a && type_b)
979 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e
FS
980 "Cannot use file input or --getter= with "
981 "--listen-...= or socket activation.");
c064d8db 982 if (type_a) {
baaa35ad
ZJS
983 if (!arg_output)
984 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 985 "Option --output= must be specified with file input or --getter=.");
c064d8db 986
baaa35ad
ZJS
987 if (!IN_SET(arg_split_mode, JOURNAL_WRITE_SPLIT_NONE, _JOURNAL_WRITE_SPLIT_INVALID))
988 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
989 "For active sources, only --split-mode=none is allowed.");
c064d8db
ZJS
990
991 arg_split_mode = JOURNAL_WRITE_SPLIT_NONE;
992 }
993
994 if (arg_split_mode == _JOURNAL_WRITE_SPLIT_INVALID)
995 arg_split_mode = JOURNAL_WRITE_SPLIT_HOST;
996
997 if (arg_split_mode == JOURNAL_WRITE_SPLIT_NONE && arg_output) {
baaa35ad
ZJS
998 if (is_dir(arg_output, true) > 0)
999 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1000 "For SplitMode=none, output must be a file.");
1001 if (!endswith(arg_output, ".journal"))
1002 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1003 "For SplitMode=none, output file name must end with .journal.");
c064d8db
ZJS
1004 }
1005
1006 if (arg_split_mode == JOURNAL_WRITE_SPLIT_HOST
baaa35ad
ZJS
1007 && arg_output && is_dir(arg_output, true) <= 0)
1008 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1009 "For SplitMode=host, output must be a directory.");
c064d8db 1010
d7085bcc
FS
1011 if (STRPTR_IN_SET(arg_trust, "-", "all")) {
1012 arg_trust_all = true;
1013 arg_trust = mfree(arg_trust);
1014 }
1015
c064d8db
ZJS
1016 log_debug("Full config: SplitMode=%s Key=%s Cert=%s Trust=%s",
1017 journal_write_split_mode_to_string(arg_split_mode),
1018 strna(arg_key),
1019 strna(arg_cert),
1020 strna(arg_trust));
1021
1022 return 1 /* work to do */;
1023}
1024
1025static int load_certificates(char **key, char **cert, char **trust) {
1026 int r;
1027
e5de42e6 1028 r = read_full_file_full(
986311c2 1029 AT_FDCWD, arg_key ?: PRIV_KEY_FILE, UINT64_MAX, SIZE_MAX,
e5de42e6
LP
1030 READ_FULL_FILE_SECURE|READ_FULL_FILE_WARN_WORLD_READABLE|READ_FULL_FILE_CONNECT_SOCKET,
1031 NULL,
1032 key, NULL);
c064d8db
ZJS
1033 if (r < 0)
1034 return log_error_errno(r, "Failed to read key from file '%s': %m",
1035 arg_key ?: PRIV_KEY_FILE);
1036
986311c2
LP
1037 r = read_full_file_full(
1038 AT_FDCWD, arg_cert ?: CERT_FILE, UINT64_MAX, SIZE_MAX,
1039 READ_FULL_FILE_CONNECT_SOCKET,
1040 NULL,
1041 cert, NULL);
c064d8db
ZJS
1042 if (r < 0)
1043 return log_error_errno(r, "Failed to read certificate from file '%s': %m",
1044 arg_cert ?: CERT_FILE);
1045
1046 if (arg_trust_all)
1047 log_info("Certificate checking disabled.");
1048 else {
986311c2
LP
1049 r = read_full_file_full(
1050 AT_FDCWD, arg_trust ?: TRUST_FILE, UINT64_MAX, SIZE_MAX,
1051 READ_FULL_FILE_CONNECT_SOCKET,
1052 NULL,
1053 trust, NULL);
c064d8db
ZJS
1054 if (r < 0)
1055 return log_error_errno(r, "Failed to read CA certificate file '%s': %m",
1056 arg_trust ?: TRUST_FILE);
1057 }
1058
baaa35ad
ZJS
1059 if ((arg_listen_raw || arg_listen_http) && *trust)
1060 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2530af2e 1061 "Option --trust= makes all non-HTTPS connections untrusted.");
c064d8db
ZJS
1062
1063 return 0;
1064}
1065
d8dd35fd 1066static int run(int argc, char **argv) {
94952201 1067 _cleanup_(journal_remote_server_destroy) RemoteServer s = {};
d7ac0952 1068 _unused_ _cleanup_(notify_on_cleanup) const char *notify_message = NULL;
f362fe73
LP
1069 _cleanup_(erase_and_freep) char *key = NULL;
1070 _cleanup_free_ char *cert = NULL, *trust = NULL;
d8dd35fd 1071 int r;
c064d8db 1072
aa976d87 1073 log_setup();
c064d8db 1074
1abaf488
LP
1075 /* The journal merging logic potentially needs a lot of fds. */
1076 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
1077
955fc5d8
YW
1078 sigbus_install();
1079
c064d8db
ZJS
1080 r = parse_config();
1081 if (r < 0)
d8dd35fd 1082 return r;
c064d8db
ZJS
1083
1084 r = parse_argv(argc, argv);
1085 if (r <= 0)
d8dd35fd 1086 return r;
c064d8db
ZJS
1087
1088 if (arg_listen_http || arg_listen_https) {
1089 r = setup_gnutls_logger(arg_gnutls_log);
1090 if (r < 0)
d8dd35fd 1091 return r;
c064d8db
ZJS
1092 }
1093
d7ef030b 1094 if (arg_listen_https || https_socket >= 0) {
d8dd35fd
YW
1095 r = load_certificates(&key, &cert, &trust);
1096 if (r < 0)
1097 return r;
1098
d7ef030b
MG
1099 s.check_trust = !arg_trust_all;
1100 }
c064d8db 1101
f12b399d 1102 journal_reset_metrics(&s.metrics);
1103 s.metrics.max_use = arg_max_use;
1104 s.metrics.max_size = arg_max_size;
a4f82d2c 1105 s.metrics.keep_free = arg_keep_free;
f12b399d 1106 s.metrics.n_max_files = arg_n_max_files;
1107
d8dd35fd
YW
1108 r = create_remoteserver(&s, key, cert, trust);
1109 if (r < 0)
1110 return r;
c064d8db 1111
b50e9011 1112 r = sd_event_set_watchdog(s.event, true);
c064d8db 1113 if (r < 0)
d8dd35fd
YW
1114 return log_error_errno(r, "Failed to enable watchdog: %m");
1115
1116 log_debug("Watchdog is %sd.", enable_disable(r > 0));
c064d8db
ZJS
1117
1118 log_debug("%s running as pid "PID_FMT,
1119 program_invocation_short_name, getpid_cached());
d8dd35fd
YW
1120
1121 notify_message = notify_start(NOTIFY_READY, NOTIFY_STOPPING);
c064d8db
ZJS
1122
1123 while (s.active) {
b50e9011 1124 r = sd_event_get_state(s.event);
c064d8db 1125 if (r < 0)
d8dd35fd 1126 return r;
c064d8db
ZJS
1127 if (r == SD_EVENT_FINISHED)
1128 break;
1129
b50e9011 1130 r = sd_event_run(s.event, -1);
d8dd35fd
YW
1131 if (r < 0)
1132 return log_error_errno(r, "Failed to run event loop: %m");
c064d8db
ZJS
1133 }
1134
d8dd35fd
YW
1135 notify_message = NULL;
1136 (void) sd_notifyf(false,
1137 "STOPPING=1\n"
1138 "STATUS=Shutting down after writing %" PRIu64 " entries...", s.event_count);
c064d8db 1139
d8dd35fd 1140 log_info("Finishing after writing %" PRIu64 " entries", s.event_count);
c064d8db 1141
d8dd35fd 1142 return 0;
c064d8db 1143}
d8dd35fd
YW
1144
1145DEFINE_MAIN_FUNCTION(run);