]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal/journald.c
Merge pull request #1726 from teg/networkd-2
[thirdparty/systemd.git] / src / journal / journald.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2011 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <unistd.h>
23
24 #include "sd-messages.h"
25 #include "sd-daemon.h"
26
27 #include "journal-authenticate.h"
28 #include "journald-server.h"
29 #include "journald-kmsg.h"
30 #include "journald-syslog.h"
31
32 #include "sigbus.h"
33 #include "formats-util.h"
34
35 int main(int argc, char *argv[]) {
36 Server server;
37 int r;
38
39 if (argc > 1) {
40 log_error("This program does not take arguments.");
41 return EXIT_FAILURE;
42 }
43
44 log_set_target(LOG_TARGET_SAFE);
45 log_set_facility(LOG_SYSLOG);
46 log_parse_environment();
47 log_open();
48
49 umask(0022);
50
51 sigbus_install();
52
53 r = server_init(&server);
54 if (r < 0)
55 goto finish;
56
57 server_vacuum(&server, false, false);
58 server_flush_to_var(&server);
59 server_flush_dev_kmsg(&server);
60
61 log_debug("systemd-journald running as pid "PID_FMT, getpid());
62 server_driver_message(&server, SD_MESSAGE_JOURNAL_START, "Journal started");
63
64 for (;;) {
65 usec_t t = USEC_INFINITY, n;
66
67 r = sd_event_get_state(server.event);
68 if (r < 0)
69 goto finish;
70 if (r == SD_EVENT_FINISHED)
71 break;
72
73 n = now(CLOCK_REALTIME);
74
75 if (server.max_retention_usec > 0 && server.oldest_file_usec > 0) {
76
77 /* The retention time is reached, so let's vacuum! */
78 if (server.oldest_file_usec + server.max_retention_usec < n) {
79 log_info("Retention time reached.");
80 server_rotate(&server);
81 server_vacuum(&server, false, false);
82 continue;
83 }
84
85 /* Calculate when to rotate the next time */
86 t = server.oldest_file_usec + server.max_retention_usec - n;
87 }
88
89 #ifdef HAVE_GCRYPT
90 if (server.system_journal) {
91 usec_t u;
92
93 if (journal_file_next_evolve_usec(server.system_journal, &u)) {
94 if (n >= u)
95 t = 0;
96 else
97 t = MIN(t, u - n);
98 }
99 }
100 #endif
101
102 r = sd_event_run(server.event, t);
103 if (r < 0) {
104 log_error_errno(r, "Failed to run event loop: %m");
105 goto finish;
106 }
107
108 server_maybe_append_tags(&server);
109 server_maybe_warn_forward_syslog_missed(&server);
110 }
111
112 log_debug("systemd-journald stopped as pid "PID_FMT, getpid());
113 server_driver_message(&server, SD_MESSAGE_JOURNAL_STOP, "Journal stopped");
114
115 finish:
116 server_done(&server);
117
118 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
119 }