]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/log.h
cgroup-util: add mask definitions for sets of controllers supported by cgroupsv1...
[thirdparty/systemd.git] / src / basic / log.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
5899f3b7 3
17a94911 4#include <stdarg.h>
07630cea 5#include <stdbool.h>
6410074b 6#include <stdlib.h>
07630cea 7#include <syslog.h>
5899f3b7 8
158350e8 9#include "macro.h"
dccca82b
LP
10
11/* Some structures we reference but don't want to pull in headers for */
12struct iovec;
13struct signalfd_siginfo;
5899f3b7 14
ff524019
ZJS
15typedef enum LogRealm {
16 LOG_REALM_SYSTEMD,
17 LOG_REALM_UDEV,
18 _LOG_REALM_MAX,
19} LogRealm;
20
21#ifndef LOG_REALM
22# define LOG_REALM LOG_REALM_SYSTEMD
23#endif
24
16801e90
LP
25typedef enum LogTarget{
26 LOG_TARGET_CONSOLE,
aca83a53 27 LOG_TARGET_CONSOLE_PREFIXED,
16801e90 28 LOG_TARGET_KMSG,
5ba081b0
LP
29 LOG_TARGET_JOURNAL,
30 LOG_TARGET_JOURNAL_OR_KMSG,
843d2643
LP
31 LOG_TARGET_SYSLOG,
32 LOG_TARGET_SYSLOG_OR_KMSG,
5ba081b0 33 LOG_TARGET_AUTO, /* console if stderr is tty, JOURNAL_OR_KMSG otherwise */
9fae33d2 34 LOG_TARGET_NULL,
16801e90
LP
35 _LOG_TARGET_MAX,
36 _LOG_TARGET_INVALID = -1
ff524019
ZJS
37} LogTarget;
38
39#define LOG_REALM_PLUS_LEVEL(realm, level) \
40 ((realm) << 10 | (level))
41#define LOG_REALM_REMOVE_LEVEL(realm_level) \
42 ((realm_level >> 10))
16801e90
LP
43
44void log_set_target(LogTarget target);
ff524019
ZJS
45void log_set_max_level_realm(LogRealm realm, int level);
46#define log_set_max_level(level) \
47 log_set_max_level_realm(LOG_REALM, (level))
48
3eff4208 49void log_set_facility(int facility);
16801e90 50
34f0e866 51int log_set_target_from_string(const char *e);
ff524019
ZJS
52int log_set_max_level_from_string_realm(LogRealm realm, const char *e);
53#define log_set_max_level_from_string(e) \
54 log_set_max_level_from_string_realm(LOG_REALM, (e))
34f0e866 55
bbe63281 56void log_show_color(bool b);
b1e90ec5 57bool log_get_show_color(void) _pure_;
bbe63281 58void log_show_location(bool b);
b1e90ec5 59bool log_get_show_location(void) _pure_;
bbe63281
LP
60
61int log_show_color_from_string(const char *e);
62int log_show_location_from_string(const char *e);
63
44a6b1b6 64LogTarget log_get_target(void) _pure_;
ff524019
ZJS
65int log_get_max_level_realm(LogRealm realm) _pure_;
66#define log_get_max_level() \
67 log_get_max_level_realm(LOG_REALM)
1adf1049 68
e3e42fc2
ZJS
69/* Functions below that open and close logs or configure logging based on the
70 * environment should not be called from library code — this is always a job
71 * for the application itself.
72 */
73
843d2643 74int log_open(void);
871e5809 75void log_close(void);
4d8a7798 76void log_forget_fds(void);
843d2643 77
ff524019
ZJS
78void log_parse_environment_realm(LogRealm realm);
79#define log_parse_environment() \
80 log_parse_environment_realm(LOG_REALM)
34f0e866 81
93484b47
ZJS
82int log_dispatch_internal(
83 int level,
84 int error,
85 const char *file,
86 int line,
87 const char *func,
88 const char *object_field,
89 const char *object,
90 const char *extra,
91 const char *extra_field,
92 char *buffer);
93
ff524019 94int log_internal_realm(
877d54e9 95 int level,
086891e5 96 int error,
79008bdd 97 const char *file,
877d54e9
LP
98 int line,
99 const char *func,
086891e5 100 const char *format, ...) _printf_(6,7);
ff524019
ZJS
101#define log_internal(level, ...) \
102 log_internal_realm(LOG_REALM_PLUS_LEVEL(LOG_REALM, (level)), __VA_ARGS__)
5899f3b7 103
ff524019 104int log_internalv_realm(
877d54e9 105 int level,
086891e5 106 int error,
79008bdd 107 const char *file,
877d54e9
LP
108 int line,
109 const char *func,
110 const char *format,
086891e5 111 va_list ap) _printf_(6,0);
ff524019
ZJS
112#define log_internalv(level, ...) \
113 log_internalv_realm(LOG_REALM_PLUS_LEVEL(LOG_REALM, (level)), __VA_ARGS__)
877d54e9 114
ff524019 115/* Realm is fixed to LOG_REALM_SYSTEMD for those */
79008bdd 116int log_object_internal(
fdf9f9bb 117 int level,
086891e5 118 int error,
79008bdd 119 const char *file,
fdf9f9bb
ZJS
120 int line,
121 const char *func,
79008bdd 122 const char *object_field,
fdf9f9bb 123 const char *object,
4b58153d
LP
124 const char *extra_field,
125 const char *extra,
126 const char *format, ...) _printf_(10,11);
fdf9f9bb 127
877d54e9
LP
128int log_struct_internal(
129 int level,
086891e5 130 int error,
877d54e9
LP
131 const char *file,
132 int line,
133 const char *func,
086891e5 134 const char *format, ...) _printf_(6,0) _sentinel_;
877d54e9
LP
135
136int log_oom_internal(
ff524019 137 LogRealm realm,
877d54e9
LP
138 const char *file,
139 int line,
140 const char *func);
185986c6 141
8a03c9ef
ZJS
142int log_format_iovec(
143 struct iovec *iovec,
d3070fbd
LP
144 size_t iovec_len,
145 size_t *n,
8a03c9ef
ZJS
146 bool newline_separator,
147 int error,
148 const char *format,
ba360bb0 149 va_list ap) _printf_(6, 0);
8a03c9ef 150
915b1d01
LP
151int log_struct_iovec_internal(
152 int level,
153 int error,
154 const char *file,
155 int line,
156 const char *func,
dccca82b 157 const struct iovec *input_iovec,
915b1d01
LP
158 size_t n_input_iovec);
159
2149e37c
LP
160/* This modifies the buffer passed! */
161int log_dump_internal(
877d54e9 162 int level,
086891e5 163 int error,
79008bdd 164 const char *file,
877d54e9
LP
165 int line,
166 const char *func,
167 char *buffer);
168
086891e5 169/* Logging for various assertions */
848e863a 170_noreturn_ void log_assert_failed_realm(
ff524019 171 LogRealm realm,
877d54e9
LP
172 const char *text,
173 const char *file,
174 int line,
175 const char *func);
ff524019
ZJS
176#define log_assert_failed(text, ...) \
177 log_assert_failed_realm(LOG_REALM, (text), __VA_ARGS__)
877d54e9 178
848e863a 179_noreturn_ void log_assert_failed_unreachable_realm(
ff524019 180 LogRealm realm,
877d54e9
LP
181 const char *text,
182 const char *file,
183 int line,
184 const char *func);
ff524019
ZJS
185#define log_assert_failed_unreachable(text, ...) \
186 log_assert_failed_unreachable_realm(LOG_REALM, (text), __VA_ARGS__)
80514f9c 187
ff524019
ZJS
188void log_assert_failed_return_realm(
189 LogRealm realm,
80514f9c
LP
190 const char *text,
191 const char *file,
192 int line,
193 const char *func);
ff524019
ZJS
194#define log_assert_failed_return(text, ...) \
195 log_assert_failed_return_realm(LOG_REALM, (text), __VA_ARGS__)
2149e37c 196
93484b47
ZJS
197#define log_dispatch(level, error, buffer) \
198 log_dispatch_internal(level, error, __FILE__, __LINE__, __func__, NULL, NULL, NULL, NULL, buffer)
199
086891e5 200/* Logging with level */
ff524019 201#define log_full_errno_realm(realm, level, error, ...) \
1cfa9a4c 202 ({ \
c1e83af8
LP
203 int _level = (level), _e = (error), _realm = (realm); \
204 (log_get_max_level_realm(_realm) >= LOG_PRI(_level)) \
205 ? log_internal_realm(LOG_REALM_PLUS_LEVEL(_realm, _level), _e, \
ff524019 206 __FILE__, __LINE__, __func__, __VA_ARGS__) \
1cfa9a4c 207 : -abs(_e); \
bf371116 208 })
87ff6b1c 209
ff524019
ZJS
210#define log_full_errno(level, error, ...) \
211 log_full_errno_realm(LOG_REALM, (level), (error), __VA_ARGS__)
212
213#define log_full(level, ...) log_full_errno((level), 0, __VA_ARGS__)
086891e5 214
dccca82b
LP
215int log_emergency_level(void);
216
086891e5 217/* Normal logging */
4104970e
ZJS
218#define log_debug(...) log_full(LOG_DEBUG, __VA_ARGS__)
219#define log_info(...) log_full(LOG_INFO, __VA_ARGS__)
220#define log_notice(...) log_full(LOG_NOTICE, __VA_ARGS__)
221#define log_warning(...) log_full(LOG_WARNING, __VA_ARGS__)
222#define log_error(...) log_full(LOG_ERR, __VA_ARGS__)
dccca82b 223#define log_emergency(...) log_full(log_emergency_level(), __VA_ARGS__)
5899f3b7 224
086891e5
LP
225/* Logging triggered by an errno-like error */
226#define log_debug_errno(error, ...) log_full_errno(LOG_DEBUG, error, __VA_ARGS__)
227#define log_info_errno(error, ...) log_full_errno(LOG_INFO, error, __VA_ARGS__)
228#define log_notice_errno(error, ...) log_full_errno(LOG_NOTICE, error, __VA_ARGS__)
229#define log_warning_errno(error, ...) log_full_errno(LOG_WARNING, error, __VA_ARGS__)
230#define log_error_errno(error, ...) log_full_errno(LOG_ERR, error, __VA_ARGS__)
dccca82b 231#define log_emergency_errno(error, ...) log_full_errno(log_emergency_level(), error, __VA_ARGS__)
086891e5 232
cb41ff29
ZJS
233#ifdef LOG_TRACE
234# define log_trace(...) log_debug(__VA_ARGS__)
235#else
9ed794a3 236# define log_trace(...) do {} while (0)
cb41ff29
ZJS
237#endif
238
086891e5 239/* Structured logging */
ff524019
ZJS
240#define log_struct_errno(level, error, ...) \
241 log_struct_internal(LOG_REALM_PLUS_LEVEL(LOG_REALM, level), \
a1230ff9 242 error, __FILE__, __LINE__, __func__, __VA_ARGS__, NULL)
ff524019 243#define log_struct(level, ...) log_struct_errno(level, 0, __VA_ARGS__)
0d0f0c50 244
915b1d01
LP
245#define log_struct_iovec_errno(level, error, iovec, n_iovec) \
246 log_struct_iovec_internal(LOG_REALM_PLUS_LEVEL(LOG_REALM, level), \
247 error, __FILE__, __LINE__, __func__, iovec, n_iovec)
248#define log_struct_iovec(level, iovec, n_iovec) log_struct_iovec_errno(level, 0, iovec, n_iovec)
249
2149e37c 250/* This modifies the buffer passed! */
ff524019
ZJS
251#define log_dump(level, buffer) \
252 log_dump_internal(LOG_REALM_PLUS_LEVEL(LOG_REALM, level), \
253 0, __FILE__, __LINE__, __func__, buffer)
086891e5 254
ff524019 255#define log_oom() log_oom_internal(LOG_REALM, __FILE__, __LINE__, __func__)
2149e37c 256
44a6b1b6 257bool log_on_console(void) _pure_;
81270860 258
44a6b1b6
ZJS
259const char *log_target_to_string(LogTarget target) _const_;
260LogTarget log_target_from_string(const char *s) _pure_;
706911fb 261
2b044526 262/* Helper to prepare various field for structured logging */
e2cc6eca 263#define LOG_MESSAGE(fmt, ...) "MESSAGE=" fmt, ##__VA_ARGS__
4daf54a8
ZJS
264
265void log_received_signal(int level, const struct signalfd_siginfo *si);
c1dc6153 266
6fdb8de4 267/* If turned on, any requests for a log target involving "syslog" will be implicitly upgraded to the equivalent journal target */
c1dc6153 268void log_set_upgrade_syslog_to_journal(bool b);
7a3be263
LP
269
270/* If turned on, and log_open() is called, we'll not use STDERR_FILENO for logging ever, but rather open /dev/console */
48a601fe 271void log_set_always_reopen_console(bool b);
7a3be263
LP
272
273/* If turned on, we'll open the log stream implicitly if needed on each individual log call. This is normally not
274 * desired as we want to reuse our logging streams. It is useful however */
16e4fd87 275void log_set_open_when_needed(bool b);
158350e8 276
adf47c91
LP
277/* If turned on, then we'll never use IPC-based logging, i.e. never log to syslog or the journal. We'll only log to
278 * stderr, the console or kmsg */
279void log_set_prohibit_ipc(bool b);
280
17cac366
LP
281int log_dup_console(void);
282
158350e8
LP
283int log_syntax_internal(
284 const char *unit,
285 int level,
286 const char *config_file,
287 unsigned config_line,
288 int error,
289 const char *file,
290 int line,
291 const char *func,
292 const char *format, ...) _printf_(9, 10);
293
d04ce5a9
LP
294int log_syntax_invalid_utf8_internal(
295 const char *unit,
296 int level,
297 const char *config_file,
298 unsigned config_line,
299 const char *file,
300 int line,
301 const char *func,
302 const char *rvalue);
303
158350e8
LP
304#define log_syntax(unit, level, config_file, config_line, error, ...) \
305 ({ \
306 int _level = (level), _e = (error); \
307 (log_get_max_level() >= LOG_PRI(_level)) \
308 ? log_syntax_internal(unit, _level, config_file, config_line, _e, __FILE__, __LINE__, __func__, __VA_ARGS__) \
309 : -abs(_e); \
310 })
0e05ee04
LP
311
312#define log_syntax_invalid_utf8(unit, level, config_file, config_line, rvalue) \
313 ({ \
314 int _level = (level); \
d04ce5a9
LP
315 (log_get_max_level() >= LOG_PRI(_level)) \
316 ? log_syntax_invalid_utf8_internal(unit, _level, config_file, config_line, __FILE__, __LINE__, __func__, rvalue) \
317 : -EINVAL; \
0e05ee04 318 })
f1d34068
LP
319
320#define DEBUG_LOGGING _unlikely_(log_get_max_level() >= LOG_DEBUG)