]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/journald-server.h
util-lib: split out umask-related code to umask-util.h
[thirdparty/systemd.git] / src / journal / journald-server.h
CommitLineData
e6960940
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
c2f1db8f 3#pragma once
e6960940
LP
4
5/***
6 This file is part of systemd.
7
8 Copyright 2011 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
e6960940
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
e6960940 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
e6960940
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
e6960940 24#include <stdbool.h>
b1bafc00 25#include <sys/types.h>
e6960940 26
f9a810be 27#include "sd-event.h"
e6960940
LP
28#include "journal-file.h"
29#include "hashmap.h"
d7832d2c 30#include "audit.h"
d2bd7630 31#include "journald-rate-limit.h"
e6960940
LP
32#include "list.h"
33
e156d769
LP
34typedef enum Storage {
35 STORAGE_AUTO,
36 STORAGE_VOLATILE,
205c4d1d 37 STORAGE_PERSISTENT,
e156d769
LP
38 STORAGE_NONE,
39 _STORAGE_MAX,
40 _STORAGE_INVALID = -1
41} Storage;
42
182b858f 43typedef enum SplitMode {
182b858f 44 SPLIT_UID,
edc3797f 45 SPLIT_LOGIN,
182b858f
LP
46 SPLIT_NONE,
47 _SPLIT_MAX,
48 _SPLIT_INVALID = -1
49} SplitMode;
50
e6960940
LP
51typedef struct StdoutStream StdoutStream;
52
53typedef struct Server {
e6960940
LP
54 int syslog_fd;
55 int native_fd;
56 int stdout_fd;
51abe64c 57 int dev_kmsg_fd;
875c2e22 58 int audit_fd;
0c24bb23 59 int hostname_fd;
e6960940 60
f9a810be
LP
61 sd_event *event;
62
63 sd_event_source *syslog_event_source;
64 sd_event_source *native_event_source;
65 sd_event_source *stdout_event_source;
66 sd_event_source *dev_kmsg_event_source;
875c2e22 67 sd_event_source *audit_event_source;
f9a810be
LP
68 sd_event_source *sync_event_source;
69 sd_event_source *sigusr1_event_source;
70 sd_event_source *sigusr2_event_source;
71 sd_event_source *sigterm_event_source;
72 sd_event_source *sigint_event_source;
0c24bb23 73 sd_event_source *hostname_event_source;
f9a810be 74
e6960940
LP
75 JournalFile *runtime_journal;
76 JournalFile *system_journal;
43cf8388 77 OrderedHashmap *user_journals;
e6960940
LP
78
79 uint64_t seqnum;
80
81 char *buffer;
82 size_t buffer_size;
83
84 JournalRateLimit *rate_limit;
26687bf8 85 usec_t sync_interval_usec;
e6960940
LP
86 usec_t rate_limit_interval;
87 unsigned rate_limit_burst;
88
89 JournalMetrics runtime_metrics;
90 JournalMetrics system_metrics;
91
92 bool compress;
eb53b74f 93 bool seal;
e6960940 94
224f2ee2
LP
95 bool forward_to_kmsg;
96 bool forward_to_syslog;
97 bool forward_to_console;
40b71e89 98 bool forward_to_wall;
224f2ee2 99
178cc770
LP
100 unsigned n_forward_syslog_missed;
101 usec_t last_warn_forward_syslog_missed;
102
8580d1f7
LP
103 uint64_t cached_space_available;
104 uint64_t cached_space_limit;
105 usec_t cached_space_timestamp;
e6960940
LP
106
107 uint64_t var_available_timestamp;
108
fb0951b0
LP
109 usec_t max_retention_usec;
110 usec_t max_file_usec;
111 usec_t oldest_file_usec;
112
e6960940
LP
113 LIST_HEAD(StdoutStream, stdout_streams);
114 unsigned n_stdout_streams;
0d9243f0
LP
115
116 char *tty_path;
213ba152
LP
117
118 int max_level_store;
119 int max_level_syslog;
120 int max_level_kmsg;
121 int max_level_console;
40b71e89 122 int max_level_wall;
e156d769
LP
123
124 Storage storage;
182b858f 125 SplitMode split_mode;
51abe64c 126
16e9f408
LP
127 MMapCache *mmap;
128
51abe64c 129 bool dev_kmsg_readable;
cee5e9a7
LP
130
131 uint64_t *kernel_seqnum;
bdfb9e7f
LP
132
133 struct udev *udev;
26687bf8 134
26687bf8 135 bool sync_scheduled;
0c24bb23
LP
136
137 char machine_id_field[sizeof("_MACHINE_ID=") + 32];
138 char boot_id_field[sizeof("_BOOT_ID=") + 32];
139 char *hostname_field;
e9174f29
LP
140
141 /* Cached cgroup root, so that we don't have to query that all the time */
142 char *cgroup_root;
e6960940
LP
143} Server;
144
8580d1f7
LP
145#define SERVER_MACHINE_ID(s) ((s)->machine_id_field + strlen("_MACHINE_ID="))
146
0a244b8e 147#define N_IOVEC_META_FIELDS 20
ef63833d
LP
148#define N_IOVEC_KERNEL_FIELDS 64
149#define N_IOVEC_UDEV_FIELDS 32
704e4fe7 150#define N_IOVEC_OBJECT_FIELDS 12
ef63833d 151
3b3154df 152void server_dispatch_message(Server *s, struct iovec *iovec, unsigned n, unsigned m, const struct ucred *ucred, const struct timeval *tv, const char *label, size_t label_len, const char *unit_id, int priority, pid_t object_pid);
44b601bc 153void server_driver_message(Server *s, sd_id128_t message_id, const char *format, ...) _printf_(3,4);
ef63833d 154
e6960940
LP
155/* gperf lookup function */
156const struct ConfigPerfItem* journald_gperf_lookup(const char *key, unsigned length);
157
71a61510 158int config_parse_storage(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
e156d769 159
44a6b1b6
ZJS
160const char *storage_to_string(Storage s) _const_;
161Storage storage_from_string(const char *s) _pure_;
182b858f 162
71a61510 163int config_parse_split_mode(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
182b858f 164
44a6b1b6
ZJS
165const char *split_mode_to_string(SplitMode s) _const_;
166SplitMode split_mode_from_string(const char *s) _pure_;
d025f1e4
ZJS
167
168void server_fix_perms(Server *s, JournalFile *f, uid_t uid);
d025f1e4
ZJS
169int server_init(Server *s);
170void server_done(Server *s);
26687bf8 171void server_sync(Server *s);
8580d1f7 172int server_vacuum(Server *s, bool verbose, bool patch_min_use);
d025f1e4 173void server_rotate(Server *s);
d07f7b9e 174int server_schedule_sync(Server *s, int priority);
d025f1e4 175int server_flush_to_var(Server *s);
d025f1e4 176void server_maybe_append_tags(Server *s);
8531ae70 177int server_process_datagram(sd_event_source *es, int fd, uint32_t revents, void *userdata);