]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/log.h
Merge pull request #6413 from poettering/getpid
[thirdparty/systemd.git] / src / basic / log.h
1 #pragma once
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2010 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 <errno.h>
23 #include <stdarg.h>
24 #include <stdbool.h>
25 #include <stdlib.h>
26 #include <sys/signalfd.h>
27 #include <sys/socket.h>
28 #include <syslog.h>
29
30 #include "sd-id128.h"
31
32 #include "macro.h"
33 #include "process-util.h"
34
35 typedef enum LogRealm {
36 LOG_REALM_SYSTEMD,
37 LOG_REALM_UDEV,
38 _LOG_REALM_MAX,
39 } LogRealm;
40
41 #ifndef LOG_REALM
42 # define LOG_REALM LOG_REALM_SYSTEMD
43 #endif
44
45 typedef enum LogTarget{
46 LOG_TARGET_CONSOLE,
47 LOG_TARGET_CONSOLE_PREFIXED,
48 LOG_TARGET_KMSG,
49 LOG_TARGET_JOURNAL,
50 LOG_TARGET_JOURNAL_OR_KMSG,
51 LOG_TARGET_SYSLOG,
52 LOG_TARGET_SYSLOG_OR_KMSG,
53 LOG_TARGET_AUTO, /* console if stderr is tty, JOURNAL_OR_KMSG otherwise */
54 LOG_TARGET_SAFE, /* console if stderr is tty, KMSG otherwise */
55 LOG_TARGET_NULL,
56 _LOG_TARGET_MAX,
57 _LOG_TARGET_INVALID = -1
58 } LogTarget;
59
60 #define LOG_REALM_PLUS_LEVEL(realm, level) \
61 ((realm) << 10 | (level))
62 #define LOG_REALM_REMOVE_LEVEL(realm_level) \
63 ((realm_level >> 10))
64
65 void log_set_target(LogTarget target);
66 void log_set_max_level_realm(LogRealm realm, int level);
67 #define log_set_max_level(level) \
68 log_set_max_level_realm(LOG_REALM, (level))
69
70 void log_set_facility(int facility);
71
72 int log_set_target_from_string(const char *e);
73 int log_set_max_level_from_string_realm(LogRealm realm, const char *e);
74 #define log_set_max_level_from_string(e) \
75 log_set_max_level_from_string_realm(LOG_REALM, (e))
76
77 void log_show_color(bool b);
78 bool log_get_show_color(void) _pure_;
79 void log_show_location(bool b);
80 bool log_get_show_location(void) _pure_;
81
82 int log_show_color_from_string(const char *e);
83 int log_show_location_from_string(const char *e);
84
85 LogTarget log_get_target(void) _pure_;
86 int log_get_max_level_realm(LogRealm realm) _pure_;
87 #define log_get_max_level() \
88 log_get_max_level_realm(LOG_REALM)
89
90 /* Functions below that open and close logs or configure logging based on the
91 * environment should not be called from library code — this is always a job
92 * for the application itself.
93 */
94
95 int log_open(void);
96 void log_close(void);
97 void log_forget_fds(void);
98
99 void log_close_syslog(void);
100 void log_close_journal(void);
101 void log_close_kmsg(void);
102 void log_close_console(void);
103
104 void log_parse_environment_realm(LogRealm realm);
105 #define log_parse_environment() \
106 log_parse_environment_realm(LOG_REALM)
107
108 int log_dispatch_internal(
109 int level,
110 int error,
111 const char *file,
112 int line,
113 const char *func,
114 const char *object_field,
115 const char *object,
116 const char *extra,
117 const char *extra_field,
118 char *buffer);
119
120 int log_internal_realm(
121 int level,
122 int error,
123 const char *file,
124 int line,
125 const char *func,
126 const char *format, ...) _printf_(6,7);
127 #define log_internal(level, ...) \
128 log_internal_realm(LOG_REALM_PLUS_LEVEL(LOG_REALM, (level)), __VA_ARGS__)
129
130 int log_internalv_realm(
131 int level,
132 int error,
133 const char *file,
134 int line,
135 const char *func,
136 const char *format,
137 va_list ap) _printf_(6,0);
138 #define log_internalv(level, ...) \
139 log_internalv_realm(LOG_REALM_PLUS_LEVEL(LOG_REALM, (level)), __VA_ARGS__)
140
141 /* Realm is fixed to LOG_REALM_SYSTEMD for those */
142 int log_object_internal(
143 int level,
144 int error,
145 const char *file,
146 int line,
147 const char *func,
148 const char *object_field,
149 const char *object,
150 const char *extra_field,
151 const char *extra,
152 const char *format, ...) _printf_(10,11);
153
154 int log_object_internalv(
155 int level,
156 int error,
157 const char *file,
158 int line,
159 const char *func,
160 const char *object_field,
161 const char *object,
162 const char *extra_field,
163 const char *extra,
164 const char *format,
165 va_list ap) _printf_(10,0);
166
167 int log_struct_internal(
168 int level,
169 int error,
170 const char *file,
171 int line,
172 const char *func,
173 const char *format, ...) _printf_(6,0) _sentinel_;
174
175 int log_oom_internal(
176 LogRealm realm,
177 const char *file,
178 int line,
179 const char *func);
180
181 int log_format_iovec(
182 struct iovec *iovec,
183 unsigned iovec_len,
184 unsigned *n,
185 bool newline_separator,
186 int error,
187 const char *format,
188 va_list ap) _printf_(6, 0);
189
190 /* This modifies the buffer passed! */
191 int log_dump_internal(
192 int level,
193 int error,
194 const char *file,
195 int line,
196 const char *func,
197 char *buffer);
198
199 /* Logging for various assertions */
200 noreturn void log_assert_failed_realm(
201 LogRealm realm,
202 const char *text,
203 const char *file,
204 int line,
205 const char *func);
206 #define log_assert_failed(text, ...) \
207 log_assert_failed_realm(LOG_REALM, (text), __VA_ARGS__)
208
209 noreturn void log_assert_failed_unreachable_realm(
210 LogRealm realm,
211 const char *text,
212 const char *file,
213 int line,
214 const char *func);
215 #define log_assert_failed_unreachable(text, ...) \
216 log_assert_failed_unreachable_realm(LOG_REALM, (text), __VA_ARGS__)
217
218 void log_assert_failed_return_realm(
219 LogRealm realm,
220 const char *text,
221 const char *file,
222 int line,
223 const char *func);
224 #define log_assert_failed_return(text, ...) \
225 log_assert_failed_return_realm(LOG_REALM, (text), __VA_ARGS__)
226
227 #define log_dispatch(level, error, buffer) \
228 log_dispatch_internal(level, error, __FILE__, __LINE__, __func__, NULL, NULL, NULL, NULL, buffer)
229
230 /* Logging with level */
231 #define log_full_errno_realm(realm, level, error, ...) \
232 ({ \
233 int _level = (level), _e = (error); \
234 (log_get_max_level_realm((realm)) >= LOG_PRI(_level)) \
235 ? log_internal_realm(LOG_REALM_PLUS_LEVEL((realm), _level), _e, \
236 __FILE__, __LINE__, __func__, __VA_ARGS__) \
237 : -abs(_e); \
238 })
239
240 #define log_full_errno(level, error, ...) \
241 log_full_errno_realm(LOG_REALM, (level), (error), __VA_ARGS__)
242
243 #define log_full(level, ...) log_full_errno((level), 0, __VA_ARGS__)
244
245 /* Normal logging */
246 #define log_debug(...) log_full(LOG_DEBUG, __VA_ARGS__)
247 #define log_info(...) log_full(LOG_INFO, __VA_ARGS__)
248 #define log_notice(...) log_full(LOG_NOTICE, __VA_ARGS__)
249 #define log_warning(...) log_full(LOG_WARNING, __VA_ARGS__)
250 #define log_error(...) log_full(LOG_ERR, __VA_ARGS__)
251 #define log_emergency(...) log_full(getpid_cached() == 1 ? LOG_EMERG : LOG_ERR, __VA_ARGS__)
252
253 /* Logging triggered by an errno-like error */
254 #define log_debug_errno(error, ...) log_full_errno(LOG_DEBUG, error, __VA_ARGS__)
255 #define log_info_errno(error, ...) log_full_errno(LOG_INFO, error, __VA_ARGS__)
256 #define log_notice_errno(error, ...) log_full_errno(LOG_NOTICE, error, __VA_ARGS__)
257 #define log_warning_errno(error, ...) log_full_errno(LOG_WARNING, error, __VA_ARGS__)
258 #define log_error_errno(error, ...) log_full_errno(LOG_ERR, error, __VA_ARGS__)
259 #define log_emergency_errno(error, ...) log_full_errno(getpid_cached() == 1 ? LOG_EMERG : LOG_ERR, error, __VA_ARGS__)
260
261 #ifdef LOG_TRACE
262 # define log_trace(...) log_debug(__VA_ARGS__)
263 #else
264 # define log_trace(...) do {} while (0)
265 #endif
266
267 /* Structured logging */
268 #define log_struct_errno(level, error, ...) \
269 log_struct_internal(LOG_REALM_PLUS_LEVEL(LOG_REALM, level), \
270 error, __FILE__, __LINE__, __func__, __VA_ARGS__)
271 #define log_struct(level, ...) log_struct_errno(level, 0, __VA_ARGS__)
272
273 /* This modifies the buffer passed! */
274 #define log_dump(level, buffer) \
275 log_dump_internal(LOG_REALM_PLUS_LEVEL(LOG_REALM, level), \
276 0, __FILE__, __LINE__, __func__, buffer)
277
278 #define log_oom() log_oom_internal(LOG_REALM, __FILE__, __LINE__, __func__)
279
280 bool log_on_console(void) _pure_;
281
282 const char *log_target_to_string(LogTarget target) _const_;
283 LogTarget log_target_from_string(const char *s) _pure_;
284
285 /* Helper to prepare various field for structured logging */
286 #define LOG_MESSAGE(fmt, ...) "MESSAGE=" fmt, ##__VA_ARGS__
287
288 void log_received_signal(int level, const struct signalfd_siginfo *si);
289
290 void log_set_upgrade_syslog_to_journal(bool b);
291 void log_set_always_reopen_console(bool b);
292
293 int log_syntax_internal(
294 const char *unit,
295 int level,
296 const char *config_file,
297 unsigned config_line,
298 int error,
299 const char *file,
300 int line,
301 const char *func,
302 const char *format, ...) _printf_(9, 10);
303
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 })
311
312 #define log_syntax_invalid_utf8(unit, level, config_file, config_line, rvalue) \
313 ({ \
314 int _level = (level); \
315 if (log_get_max_level() >= LOG_PRI(_level)) { \
316 _cleanup_free_ char *_p = NULL; \
317 _p = utf8_escape_invalid(rvalue); \
318 log_syntax_internal(unit, _level, config_file, config_line, 0, __FILE__, __LINE__, __func__, \
319 "String is not UTF-8 clean, ignoring assignment: %s", strna(_p)); \
320 } \
321 })