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