]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/log.h
log: make socket address structs static const
[thirdparty/systemd.git] / src / shared / log.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
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
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
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <stdbool.h>
25 #include <stdarg.h>
26 #include <syslog.h>
27 #include <sys/signalfd.h>
28 #include <sys/types.h>
29 #include <unistd.h>
30 #include <errno.h>
31
32 #include "macro.h"
33 #include "sd-id128.h"
34
35 typedef enum LogTarget{
36 LOG_TARGET_CONSOLE,
37 LOG_TARGET_KMSG,
38 LOG_TARGET_JOURNAL,
39 LOG_TARGET_JOURNAL_OR_KMSG,
40 LOG_TARGET_SYSLOG,
41 LOG_TARGET_SYSLOG_OR_KMSG,
42 LOG_TARGET_AUTO, /* console if stderr is tty, JOURNAL_OR_KMSG otherwise */
43 LOG_TARGET_SAFE, /* console if stderr is tty, KMSG otherwise */
44 LOG_TARGET_NULL,
45 _LOG_TARGET_MAX,
46 _LOG_TARGET_INVALID = -1
47 } LogTarget;
48
49 void log_set_target(LogTarget target);
50 void log_set_max_level(int level);
51 void log_set_facility(int facility);
52
53 int log_set_target_from_string(const char *e);
54 int log_set_max_level_from_string(const char *e);
55
56 void log_show_color(bool b);
57 bool log_get_show_color(void) _pure_;
58 void log_show_location(bool b);
59 bool log_get_show_location(void) _pure_;
60
61 int log_show_color_from_string(const char *e);
62 int log_show_location_from_string(const char *e);
63
64 LogTarget log_get_target(void) _pure_;
65 int log_get_max_level(void) _pure_;
66
67 int log_open(void);
68 void log_close(void);
69 void log_forget_fds(void);
70
71 void log_close_syslog(void);
72 void log_close_journal(void);
73 void log_close_kmsg(void);
74 void log_close_console(void);
75
76 void log_parse_environment(void);
77
78 int log_internal(
79 int level,
80 int error,
81 const char *file,
82 int line,
83 const char *func,
84 const char *format, ...) _printf_(6,7);
85
86 int log_internalv(
87 int level,
88 int error,
89 const char *file,
90 int line,
91 const char *func,
92 const char *format,
93 va_list ap) _printf_(6,0);
94
95 int log_object_internal(
96 int level,
97 int error,
98 const char *file,
99 int line,
100 const char *func,
101 const char *object_field,
102 const char *object,
103 const char *format, ...) _printf_(8,9);
104
105 int log_object_internalv(
106 int level,
107 int error,
108 const char*file,
109 int line,
110 const char *func,
111 const char *object_field,
112 const char *object,
113 const char *format,
114 va_list ap) _printf_(8,0);
115
116 int log_struct_internal(
117 int level,
118 int error,
119 const char *file,
120 int line,
121 const char *func,
122 const char *format, ...) _printf_(6,0) _sentinel_;
123
124 int log_oom_internal(
125 const char *file,
126 int line,
127 const char *func);
128
129 /* This modifies the buffer passed! */
130 int log_dump_internal(
131 int level,
132 int error,
133 const char *file,
134 int line,
135 const char *func,
136 char *buffer);
137
138 /* Logging for various assertions */
139 noreturn void log_assert_failed(
140 const char *text,
141 const char *file,
142 int line,
143 const char *func);
144
145 noreturn void log_assert_failed_unreachable(
146 const char *text,
147 const char *file,
148 int line,
149 const char *func);
150
151 void log_assert_failed_return(
152 const char *text,
153 const char *file,
154 int line,
155 const char *func);
156
157 /* Logging with level */
158 #define log_full_errno(level, error, ...) \
159 do { \
160 if (log_get_max_level() >= (level)) \
161 log_internal((level), error, __FILE__, __LINE__, __func__, __VA_ARGS__); \
162 } while (false)
163
164 #define log_full(level, ...) log_full_errno(level, 0, __VA_ARGS__)
165
166 /* Normal logging */
167 #define log_debug(...) log_full(LOG_DEBUG, __VA_ARGS__)
168 #define log_info(...) log_full(LOG_INFO, __VA_ARGS__)
169 #define log_notice(...) log_full(LOG_NOTICE, __VA_ARGS__)
170 #define log_warning(...) log_full(LOG_WARNING, __VA_ARGS__)
171 #define log_error(...) log_full(LOG_ERR, __VA_ARGS__)
172 #define log_emergency(...) log_full(getpid() == 1 ? LOG_EMERG : LOG_ERR, __VA_ARGS__)
173
174 /* Logging triggered by an errno-like error */
175 #define log_debug_errno(error, ...) log_full_errno(LOG_DEBUG, error, __VA_ARGS__)
176 #define log_info_errno(error, ...) log_full_errno(LOG_INFO, error, __VA_ARGS__)
177 #define log_notice_errno(error, ...) log_full_errno(LOG_NOTICE, error, __VA_ARGS__)
178 #define log_warning_errno(error, ...) log_full_errno(LOG_WARNING, error, __VA_ARGS__)
179 #define log_error_errno(error, ...) log_full_errno(LOG_ERR, error, __VA_ARGS__)
180 #define log_emergency_errno(error, ...) log_full_errno(getpid() == 1 ? LOG_EMERG : LOG_ERR, __VA_ARGS__)
181
182 #ifdef LOG_TRACE
183 # define log_trace(...) log_debug(__VA_ARGS__)
184 #else
185 # define log_trace(...) do {} while(0)
186 #endif
187
188 /* Structured logging */
189 #define log_struct(level, ...) log_struct_internal(level, 0, __FILE__, __LINE__, __func__, __VA_ARGS__)
190 #define log_struct_errno(level, error, ...) log_struct_internal(level, error, __FILE__, __LINE__, __func__, __VA_ARGS__)
191
192 /* This modifies the buffer passed! */
193 #define log_dump(level, buffer) log_dump_internal(level, 0, __FILE__, __LINE__, __func__, buffer)
194
195 #define log_oom() log_oom_internal(__FILE__, __LINE__, __func__)
196
197 bool log_on_console(void) _pure_;
198
199 const char *log_target_to_string(LogTarget target) _const_;
200 LogTarget log_target_from_string(const char *s) _pure_;
201
202 /* Helpers to prepare various fields for structured logging */
203 #define LOG_MESSAGE(fmt, ...) "MESSAGE=" fmt, ##__VA_ARGS__
204 #define LOG_MESSAGE_ID(x) "MESSAGE_ID=" SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(x)
205 #define LOG_ERRNO(error) "ERRNO=%i", abs(error)
206
207 void log_received_signal(int level, const struct signalfd_siginfo *si);
208
209 void log_set_upgrade_syslog_to_journal(bool b);