1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2012 Zbigniew Jędrzejewski-Szmek
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.
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.
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/>.
22 #include "journal-remote.h"
24 int iovw_put(struct iovec_wrapper *iovw, void* data, size_t len) {
25 if (!GREEDY_REALLOC(iovw->iovec, iovw->size_bytes, iovw->count + 1))
28 iovw->iovec[iovw->count++] = (struct iovec) {data, len};
32 void iovw_free_contents(struct iovec_wrapper *iovw) {
35 iovw->size_bytes = iovw->count = 0;
38 size_t iovw_size(struct iovec_wrapper *iovw) {
41 for (i = 0; i < iovw->count; i++)
42 n += iovw->iovec[i].iov_len;
47 void iovw_rebase(struct iovec_wrapper *iovw, char *old, char *new) {
50 for (i = 0; i < iovw->count; i++)
51 iovw->iovec[i].iov_base = (char*) iovw->iovec[i].iov_base - old + new;
54 /**********************************************************************
55 **********************************************************************
56 **********************************************************************/
58 static int do_rotate(JournalFile **f, bool compress, bool seal) {
59 int r = journal_file_rotate(f, compress, seal);
62 log_error("Failed to rotate %s: %s", (*f)->path,
65 log_error("Failed to create rotated journal: %s",
72 Writer* writer_new(RemoteServer *server) {
79 memset(&w->metrics, 0xFF, sizeof(w->metrics));
81 w->mmap = mmap_cache_new();
93 Writer* writer_free(Writer *w) {
98 log_debug("Closing journal file %s.", w->journal->path);
99 journal_file_close(w->journal);
103 w->server->event_count += w->seqnum;
105 hashmap_remove(w->server->writers, w->hashmap_key);
108 free(w->hashmap_key);
111 mmap_cache_unref(w->mmap);
118 Writer* writer_unref(Writer *w) {
119 if (w && (-- w->n_ref <= 0))
125 Writer* writer_ref(Writer *w) {
127 assert_se(++ w->n_ref >= 2);
133 int writer_write(Writer *s,
134 struct iovec_wrapper *iovw,
142 assert(iovw->count > 0);
144 if (journal_file_rotate_suggested(s->journal, 0)) {
145 log_info("%s: Journal header limits reached or header out-of-date, rotating",
147 r = do_rotate(&s->journal, compress, seal);
152 r = journal_file_append_entry(s->journal, ts, iovw->iovec, iovw->count,
153 &s->seqnum, NULL, NULL);
157 log_debug("%s: Write failed, rotating: %s", s->journal->path, strerror(-r));
158 r = do_rotate(&s->journal, compress, seal);
162 log_info("%s: Successfully rotated journal", s->journal->path);
164 log_debug("Retrying write.");
165 r = journal_file_append_entry(s->journal, ts, iovw->iovec, iovw->count,
166 &s->seqnum, NULL, NULL);
167 return r < 0 ? r : 1;