journald.c revision 74ef2d16ada74db3059d825ce8d24ea74946bf8f
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2011 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <sys/signalfd.h>
#include <unistd.h>
#include <fcntl.h>
#include <stddef.h>
#include "hashmap.h"
#include "journal-file.h"
#include "sd-daemon.h"
#include "socket-util.h"
#include "acl-util.h"
#include "cgroup-util.h"
#include "list.h"
#include "journal-rate-limit.h"
#include "sd-journal.h"
#include "journal-internal.h"
#define USER_JOURNALS_MAX 1024
#define STDOUT_STREAMS_MAX 4096
#define DEFAULT_RATE_LIMIT_BURST 200
typedef struct StdoutStream StdoutStream;
typedef struct Server {
int epoll_fd;
int signal_fd;
int syslog_fd;
int native_fd;
int stdout_fd;
char *buffer;
bool compress;
unsigned n_stdout_streams;
} Server;
typedef enum StdoutStreamState {
struct StdoutStream {
int fd;
char *tag;
int priority;
bool priority_prefix:1;
bool tee_console:1;
};
static int server_flush_to_var(Server *s);
char ids[33];
char *p;
const char *f;
int r;
DIR *d;
return s->cached_available_space;
r = sd_id128_get_machine(&machine);
if (r < 0)
return 0;
if (s->system_journal)
else
if (!p)
return 0;
d = opendir(p);
free(p);
if (!d)
return 0;
goto finish;
for (;;) {
int k;
if (k != 0) {
r = -k;
goto finish;
}
if (!de)
break;
continue;
continue;
}
s->cached_available_space = avail;
closedir(d);
return avail;
}
int r;
assert(f);
if (r < 0)
if (uid <= 0)
return;
if (!acl) {
return;
}
if (r <= 0) {
goto finish;
}
}
acl_calc_mask(&acl) < 0) {
goto finish;
}
}
char *p;
int r;
JournalFile *f;
char ids[33];
assert(s);
/* We split up user logs only on /var, not on /run. If the
* runtime file is open, we write to it exclusively, in order
* to guarantee proper order as soon as we flush /run to
* /var and close the runtime file. */
if (s->runtime_journal)
return s->runtime_journal;
if (uid <= 0)
return s->system_journal;
r = sd_id128_get_machine(&machine);
if (r < 0)
return s->system_journal;
if (f)
return f;
if (asprintf(&p, "/var/log/journal/%s/user-%lu.journal", sd_id128_to_string(machine, ids), (unsigned long) uid) < 0)
return s->system_journal;
/* Too many open? Then let's close one */
f = hashmap_steal_first(s->user_journals);
assert(f);
}
free(p);
if (r < 0)
return s->system_journal;
if (r < 0) {
return s->system_journal;
}
return f;
}
static void server_vacuum(Server *s) {
Iterator i;
void *k;
char *p;
char ids[33];
int r;
JournalFile *f;
log_info("Rotating...");
if (s->runtime_journal) {
r = journal_file_rotate(&s->runtime_journal);
if (r < 0)
}
if (s->system_journal) {
r = journal_file_rotate(&s->system_journal);
if (r < 0)
}
HASHMAP_FOREACH_KEY(f, k, s->user_journals, i) {
r = journal_file_rotate(&f);
if (r < 0)
else
hashmap_replace(s->user_journals, k, f);
}
log_info("Vacuuming...");
r = sd_id128_get_machine(&machine);
if (r < 0) {
return;
}
log_error("Out of memory.");
return;
}
if (r < 0 && r != -ENOENT)
free(p);
log_error("Out of memory.");
return;
}
if (r < 0 && r != -ENOENT)
free(p);
s->cached_available_space_timestamp = 0;
}
int r;
if (r < 0)
return NULL;
if (r < 0) {
return NULL;
}
init_path[0] = 0;
char *p;
if (!p) {
return NULL;
}
path = p;
} else {
path = process_path;
process_path = NULL;
}
return path;
}
static void dispatch_message_real(Server *s,
char idbuf[33];
int r;
char *t;
JournalFile *f;
bool vacuumed = false;
assert(s);
assert(n > 0);
assert(n + 13 <= m);
if (ucred) {
char *path;
if (r >= 0) {
if (comm)
free(t);
}
if (r >= 0) {
if (comm)
free(t);
}
if (r >= 0) {
if (cmdline)
free(t);
}
if (r >= 0)
if (r >= 0)
if (path) {
if (cgroup)
}
}
if (tv) {
(unsigned long long) timeval_load(tv)) >= 0)
}
/* Note that strictly speaking storing the boot id here is
* redundant since the entry includes this in-line
* anyway. However, we need this indexed, too. */
r = sd_id128_get_boot(&id);
if (r >= 0)
r = sd_id128_get_machine(&id);
if (r >= 0)
t = gethostname_malloc();
if (t) {
if (hostname)
free(t);
}
assert(n <= m);
if (!f)
log_warning("Dropping message, as we can't find a place to store the data.");
else {
log_info("Allocation limit reached.");
server_vacuum(s);
vacuumed = true;
log_info("Retrying write.");
goto retry;
}
if (r < 0)
}
}
static void dispatch_message(Server *s,
int priority) {
int rl;
assert(s);
if (n == 0)
return;
if (!ucred)
goto finish;
if (!path)
goto finish;
*
* So let's cut of everything past the third /, since that is
* wher user directories start */
if (c) {
if (c) {
if (c)
*c = 0;
}
}
if (rl == 0) {
return;
}
if (rl > 1) {
int j = 0;
char suppress_message[LINE_MAX];
/* Write a suppression message if we suppressed something */
snprintf(suppress_message, sizeof(suppress_message), "MESSAGE=Suppressed %u messages from %s", rl - 1, path);
}
}
static void process_syslog_message(Server *s, const char *buf, struct ucred *ucred, struct timeval *tv) {
unsigned n = 0;
assert(s);
skip_syslog_date((char**) &buf);
if (message)
}
static bool valid_user_field(const char *p, size_t l) {
const char *a;
/* We kinda enforce POSIX syntax recommendations for
environment variables here, but make a couple of additional
requirements.
/* No empty field names */
if (l <= 0)
return false;
/* Don't allow names longer than 64 chars */
if (l > 64)
return false;
/* Variables starting with an underscore are protected */
if (p[0] == '_')
return false;
/* Don't allow digits as first character */
if (p[0] >= '0' && p[0] <= '9')
return false;
/* Only allow A-Z0-9 and '_' */
for (a = p; a < p + l; a++)
if (!((*a >= 'A' && *a <= 'Z') ||
(*a >= '0' && *a <= '9') ||
*a == '_'))
return false;
return true;
}
static void process_native_message(Server *s, const void *buffer, size_t buffer_size, struct ucred *ucred, struct timeval *tv) {
unsigned n = 0, m = 0, j;
const char *p;
assert(s);
p = buffer;
while (remaining > 0) {
const char *e, *q;
if (!e) {
/* Trailing noise, let's ignore it, and flush what we collected */
log_debug("Received message with trailing noise, ignoring.");
break;
}
if (e == p) {
/* Entry separator */
n = 0;
p++;
remaining--;
continue;
}
if (*p == '.' || *p == '#') {
/* Ignore control commands for now, and
* comments too. */
remaining -= (e - p) + 1;
p = e + 1;
continue;
}
/* A property follows */
if (n+13 >= m) {
struct iovec *c;
unsigned u;
if (!c) {
log_error("Out of memory");
break;
}
iovec = c;
m = u;
}
q = memchr(p, '=', e - p);
if (q) {
if (valid_user_field(p, q - p)) {
/* If the field name starts with an
* underscore, skip the variable,
* since that indidates a trusted
* field */
n++;
/* We need to determine the priority
* of this entry for the rate limiting
* logic */
if (e - p == 10 &&
p[10] >= '0' &&
p[10] <= '9')
}
remaining -= (e - p) + 1;
p = e + 1;
continue;
} else {
uint64_t l;
char *k;
log_debug("Failed to parse message, ignoring.");
break;
}
l = le64toh(l);
log_debug("Failed to parse message, ignoring.");
break;
}
k = malloc((e - p) + 1 + l);
if (!k) {
log_error("Out of memory");
break;
}
memcpy(k, p, e - p);
k[e - p] = '=';
if (valid_user_field(p, e - p)) {
n++;
} else
free(k);
}
}
for (j = 0; j < n; j++)
}
unsigned n = 0;
int priority;
assert(s);
assert(p);
if (s->priority_prefix &&
l > 3 &&
p[0] == '<' &&
p[1] >= '0' && p[1] <= '7' &&
p[2] == '>') {
p += 3;
l -= 3;
}
if (l <= 0)
return 0;
if (message) {
if (s->tag) {
}
n++;
}
if (s->tee_console) {
int console;
if (console >= 0) {
n = 0;
if (s->tag) {
}
n++;
}
}
return 0;
}
assert(s);
assert(p);
while (l > 0 && strchr(WHITESPACE, *p)) {
l--;
p++;
}
l--;
switch (s->state) {
case STDOUT_STREAM_TAG:
if (l > 0) {
if (!s->tag) {
log_error("Out of memory");
return -EINVAL;
}
}
s->state = STDOUT_STREAM_PRIORITY;
return 0;
case STDOUT_STREAM_PRIORITY:
if (l != 1 || *p < '0' || *p > '7') {
log_warning("Failed to parse log priority line.");
return -EINVAL;
}
s->priority = *p - '0';
return 0;
if (l != 1 || *p < '0' || *p > '1') {
log_warning("Failed to parse priority prefix line.");
return -EINVAL;
}
s->priority_prefix = *p - '0';
return 0;
if (l != 1 || *p < '0' || *p > '1') {
log_warning("Failed to parse tee to console line.");
return -EINVAL;
}
s->tee_console = *p - '0';
s->state = STDOUT_STREAM_RUNNING;
return 0;
case STDOUT_STREAM_RUNNING:
return stdout_stream_log(s, p, l);
}
assert_not_reached("Unknown stream state");
}
char *p;
int r;
assert(s);
p = s->buffer;
for (;;) {
char *end;
if (!end) {
} else
break;
} else
r = stdout_stream_line(s, p, end - p);
if (r < 0)
return r;
p += skip;
}
if (force_flush && remaining > 0) {
r = stdout_stream_line(s, p, remaining);
if (r < 0)
return r;
p += remaining;
remaining = 0;
}
if (p > s->buffer) {
}
return 0;
}
static int stdout_stream_process(StdoutStream *s) {
ssize_t l;
int r;
assert(s);
if (l < 0) {
return 0;
log_warning("Failed to read from stream: %m");
return -errno;
}
if (l == 0) {
r = stdout_stream_scan(s, true);
if (r < 0)
return r;
return 0;
}
s->length += l;
r = stdout_stream_scan(s, false);
if (r < 0)
return r;
return 1;
}
static void stdout_stream_free(StdoutStream *s) {
assert(s);
if (s->server) {
s->server->n_stdout_streams --;
}
if (s->fd >= 0) {
if (s->server)
close_nointr_nofail(s->fd);
}
free(s);
}
static int stdout_stream_new(Server *s) {
int fd, r;
struct epoll_event ev;
assert(s);
if (fd < 0) {
return 0;
log_error("Failed to accept stdout connection: %m");
return -errno;
}
if (s->n_stdout_streams >= STDOUT_STREAMS_MAX) {
log_warning("Too many stdout streams, refusing connection.");
return 0;
}
if (!stream) {
log_error("Out of memory.");
return -ENOMEM;
}
log_error("Failed to determine peer credentials: %m");
r = -errno;
goto fail;
}
log_error("Failed to shutdown writing side of socket: %m");
r = -errno;
goto fail;
}
log_error("Failed to add stream to event loop: %m");
r = -errno;
goto fail;
}
s->n_stdout_streams ++;
return 0;
fail:
return r;
}
static int system_journal_open(Server *s) {
int r;
char *fn;
char ids[33];
r = sd_id128_get_machine(&machine);
if (r < 0)
return r;
if (!s->system_journal) {
/* First try to create the machine path, but not the prefix */
if (!fn)
return -ENOMEM;
/* The create the system journal file */
if (!fn)
return -ENOMEM;
if (r >= 0) {
fix_perms(s->system_journal, 0);
} else if (r < 0) {
if (r == -ENOENT)
r = 0;
else {
return r;
}
}
}
if (!s->runtime_journal) {
if (!fn)
return -ENOMEM;
if (s->system_journal) {
/* Try to open the runtime journal, but only
* if it already exists, so that we can flush
* it into the system journal */
if (r < 0) {
if (r == -ENOENT)
r = 0;
else {
return r;
}
}
} else {
/* OK, we really need the runtime journal, so create
* it if necessary. */
if (r < 0) {
return r;
}
}
if (s->runtime_journal) {
fix_perms(s->runtime_journal, 0);
}
}
return r;
}
static int server_flush_to_var(Server *s) {
char path[] = "/run/log/journal/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
int r;
sd_journal *j;
assert(s);
if (!s->runtime_journal)
return 0;
return 0;
s->var_available_timestamp = ts;
if (!s->system_journal)
return 0;
r = sd_id128_get_machine(&machine);
if (r < 0) {
return r;
}
r = sd_journal_open(&j, SD_JOURNAL_RUNTIME_ONLY);
if (r < 0) {
return r;
}
SD_JOURNAL_FOREACH(j) {
JournalFile *f;
f = j->current_file;
assert(f && f->current_offset > 0);
if (r < 0) {
goto finish;
}
if (r == -E2BIG) {
log_info("Allocation limit reached.");
server_vacuum(s);
}
if (r < 0) {
goto finish;
}
}
s->runtime_journal = NULL;
if (r >= 0) {
}
return r;
}
static void forward_syslog(Server *s, const void *buffer, size_t length, struct ucred *ucred, struct timeval *tv) {
union {
CMSG_SPACE(sizeof(struct timeval))];
} control;
union sockaddr_union sa;
assert(s);
* the SO_TIMESTAMP auxiliary data, and hence we don't. */
return;
struct ucred u;
/* Hmm, presumably the sender process vanished
* by now, so let's fix it as good as we
* can, and retry */
u = *ucred;
return;
}
log_debug("Failed to forward syslog message: %m");
}
assert(s);
struct signalfd_siginfo sfsi;
ssize_t n;
log_info("Got invalid event from epoll.");
return -EIO;
}
if (n != sizeof(sfsi)) {
if (n >= 0)
return -EIO;
return 0;
return -errno;
}
return 0;
}
return 0;
log_info("Got invalid event from epoll.");
return -EIO;
}
for (;;) {
union {
CMSG_SPACE(sizeof(struct timeval))];
} control;
ssize_t n;
int v;
log_error("SIOCINQ failed: %m");
return -errno;
}
if (v <= 0)
return 1;
if (s->buffer_size < (size_t) v) {
void *b;
size_t l;
if (!b) {
log_error("Couldn't increase buffer.");
return -ENOMEM;
}
s->buffer_size = l;
s->buffer = b;
}
if (n < 0) {
return 1;
log_error("recvmsg() failed: %m");
return -errno;
}
}
char *e;
if (e)
*e = 0;
else
s->buffer[n] = 0;
} else
}
return 1;
log_info("Got invalid event from epoll.");
return -EIO;
}
return 1;
} else {
log_info("Got invalid event from epoll.");
return -EIO;
}
/* If it is none of the well-known fds, it must be an
* stdout stream fd. Note that this is a bit ugly here
* (since we rely that none of the well-known fds
* could be interpreted as pointer), but nonetheless
* safe, since the well-known fds would never get an
* fd > 4096, i.e. beyond the first memory page */
if (stdout_stream_process(stream) <= 0)
return 1;
}
log_error("Unknown event.");
return 0;
}
static int open_syslog_socket(Server *s) {
union sockaddr_union sa;
int one, r;
struct epoll_event ev;
assert(s);
if (s->syslog_fd < 0) {
if (s->syslog_fd < 0) {
log_error("socket() failed: %m");
return -errno;
}
r = bind(s->syslog_fd, &sa.sa, offsetof(union sockaddr_union, un.sun_path) + strlen(sa.un.sun_path));
if (r < 0) {
log_error("bind() failed: %m");
return -errno;
}
}
one = 1;
if (r < 0) {
log_error("SO_PASSCRED failed: %m");
return -errno;
}
one = 1;
if (r < 0) {
log_error("SO_TIMESTAMP failed: %m");
return -errno;
}
/* Since we use the same socket for forwarding this to some
* other syslog implementation, make sure we don't hang
* forever */
log_error("SO_SNDTIMEO failed: %m");
return -errno;
}
log_error("Failed to add syslog server fd to epoll object: %m");
return -errno;
}
return 0;
}
static int open_native_socket(Server*s) {
union sockaddr_union sa;
int one, r;
struct epoll_event ev;
assert(s);
if (s->native_fd < 0) {
if (s->native_fd < 0) {
log_error("socket() failed: %m");
return -errno;
}
r = bind(s->native_fd, &sa.sa, offsetof(union sockaddr_union, un.sun_path) + strlen(sa.un.sun_path));
if (r < 0) {
log_error("bind() failed: %m");
return -errno;
}
}
one = 1;
if (r < 0) {
log_error("SO_PASSCRED failed: %m");
return -errno;
}
one = 1;
if (r < 0) {
log_error("SO_TIMESTAMP failed: %m");
return -errno;
}
log_error("Failed to add native server fd to epoll object: %m");
return -errno;
}
return 0;
}
static int open_stdout_socket(Server *s) {
union sockaddr_union sa;
int r;
struct epoll_event ev;
assert(s);
if (s->stdout_fd < 0) {
if (s->stdout_fd < 0) {
log_error("socket() failed: %m");
return -errno;
}
r = bind(s->stdout_fd, &sa.sa, offsetof(union sockaddr_union, un.sun_path) + strlen(sa.un.sun_path));
if (r < 0) {
log_error("bind() failed: %m");
return -errno;
}
log_error("liste() failed: %m");
return -errno;
}
}
log_error("Failed to add stdout server fd to epoll object: %m");
return -errno;
}
return 0;
}
static int open_signalfd(Server *s) {
struct epoll_event ev;
assert(s);
if (s->signal_fd < 0) {
log_error("signalfd(): %m");
return -errno;
}
log_error("epoll_ctl(): %m");
return -errno;
}
return 0;
}
static int server_init(Server *s) {
int n, r, fd;
assert(s);
zero(*s);
s->compress = true;
if (!s->user_journals) {
log_error("Out of memory.");
return -ENOMEM;
}
if (s->epoll_fd < 0) {
log_error("Failed to create epoll object: %m");
return -errno;
}
n = sd_listen_fds(true);
if (n < 0) {
return n;
}
if (s->native_fd >= 0) {
log_error("Too many native sockets passed.");
return -EINVAL;
}
if (s->stdout_fd >= 0) {
log_error("Too many stdout sockets passed.");
return -EINVAL;
}
if (s->syslog_fd >= 0) {
return -EINVAL;
}
} else {
log_error("Unknown socket passed.");
return -EINVAL;
}
}
r = open_syslog_socket(s);
if (r < 0)
return r;
r = open_native_socket(s);
if (r < 0)
return r;
r = open_stdout_socket(s);
if (r < 0)
return r;
r = system_journal_open(s);
if (r < 0)
return r;
r = open_signalfd(s);
if (r < 0)
return r;
if (!s->rate_limit)
return -ENOMEM;
return 0;
}
static void server_done(Server *s) {
JournalFile *f;
assert(s);
while (s->stdout_streams)
if (s->system_journal)
if (s->runtime_journal)
while ((f = hashmap_steal_first(s->user_journals)))
if (s->epoll_fd >= 0)
if (s->signal_fd >= 0)
if (s->syslog_fd >= 0)
if (s->native_fd >= 0)
if (s->stdout_fd >= 0)
if (s->rate_limit)
}
int r;
/* if (getppid() != 1) { */
/* log_error("This program should be invoked by init only."); */
/* return EXIT_FAILURE; */
/* } */
if (argc > 1) {
log_error("This program does not take arguments.");
return EXIT_FAILURE;
}
log_open();
umask(0022);
r = server_init(&server);
if (r < 0)
goto finish;
sd_notify(false,
"READY=1\n"
"STATUS=Processing requests...");
for (;;) {
struct epoll_event event;
if (r < 0) {
continue;
log_error("epoll_wait() failed: %m");
r = -errno;
goto finish;
} else if (r == 0)
break;
if (r < 0)
goto finish;
else if (r == 0)
break;
}
sd_notify(false,
"STATUS=Shutting down...");
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}