]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/log.h
sd-bus: set creds info for "org.freedesktop.DBus.Local" generated messages, too
[thirdparty/systemd.git] / src / shared / log.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5899f3b7 2
c2f1db8f 3#pragma once
5899f3b7 4
a7334b09
LP
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
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
a7334b09
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.
a7334b09 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
bbe63281 24#include <stdbool.h>
17a94911 25#include <stdarg.h>
4daf54a8
ZJS
26#include <syslog.h>
27#include <sys/signalfd.h>
4104970e
ZJS
28#include <sys/types.h>
29#include <unistd.h>
0d0f0c50 30#include <errno.h>
5899f3b7
LP
31
32#include "macro.h"
20ad4cfd 33#include "sd-id128.h"
5899f3b7 34
16801e90
LP
35typedef enum LogTarget{
36 LOG_TARGET_CONSOLE,
16801e90 37 LOG_TARGET_KMSG,
5ba081b0
LP
38 LOG_TARGET_JOURNAL,
39 LOG_TARGET_JOURNAL_OR_KMSG,
843d2643
LP
40 LOG_TARGET_SYSLOG,
41 LOG_TARGET_SYSLOG_OR_KMSG,
5ba081b0 42 LOG_TARGET_AUTO, /* console if stderr is tty, JOURNAL_OR_KMSG otherwise */
a6903061 43 LOG_TARGET_SAFE, /* console if stderr is tty, KMSG otherwise */
9fae33d2 44 LOG_TARGET_NULL,
16801e90
LP
45 _LOG_TARGET_MAX,
46 _LOG_TARGET_INVALID = -1
47} LogTarget;
48
49void log_set_target(LogTarget target);
50void log_set_max_level(int level);
3eff4208 51void log_set_facility(int facility);
16801e90 52
34f0e866
LP
53int log_set_target_from_string(const char *e);
54int log_set_max_level_from_string(const char *e);
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
ZJS
64LogTarget log_get_target(void) _pure_;
65int log_get_max_level(void) _pure_;
1adf1049 66
843d2643 67int log_open(void);
871e5809 68void log_close(void);
4d8a7798 69void log_forget_fds(void);
843d2643 70
16801e90 71void log_close_syslog(void);
5ba081b0 72void log_close_journal(void);
843d2643
LP
73void log_close_kmsg(void);
74void log_close_console(void);
16801e90 75
34f0e866
LP
76void log_parse_environment(void);
77
843d2643 78int log_meta(
877d54e9
LP
79 int level,
80 const char*file,
81 int line,
82 const char *func,
44b601bc 83 const char *format, ...) _printf_(5,6);
5899f3b7 84
17a94911 85int log_metav(
877d54e9
LP
86 int level,
87 const char*file,
88 int line,
89 const char *func,
90 const char *format,
44b601bc 91 va_list ap) _printf_(5,0);
877d54e9 92
fdf9f9bb
ZJS
93int log_meta_object(
94 int level,
95 const char*file,
96 int line,
97 const char *func,
98 const char *object_name,
99 const char *object,
44b601bc 100 const char *format, ...) _printf_(7,8);
fdf9f9bb
ZJS
101
102int log_metav_object(
103 int level,
104 const char*file,
105 int line,
106 const char *func,
107 const char *object_name,
108 const char *object,
109 const char *format,
44b601bc 110 va_list ap) _printf_(7,0);
fdf9f9bb 111
877d54e9
LP
112int log_struct_internal(
113 int level,
114 const char *file,
115 int line,
116 const char *func,
44b601bc 117 const char *format, ...) _printf_(5,0) _sentinel_;
877d54e9
LP
118
119int log_oom_internal(
120 const char *file,
121 int line,
122 const char *func);
185986c6 123
2149e37c
LP
124/* This modifies the buffer passed! */
125int log_dump_internal(
877d54e9
LP
126 int level,
127 const char*file,
128 int line,
129 const char *func,
130 char *buffer);
131
919ce0b7 132noreturn void log_assert_failed(
877d54e9
LP
133 const char *text,
134 const char *file,
135 int line,
136 const char *func);
137
919ce0b7 138noreturn void log_assert_failed_unreachable(
877d54e9
LP
139 const char *text,
140 const char *file,
141 int line,
142 const char *func);
80514f9c
LP
143
144void log_assert_failed_return(
145 const char *text,
146 const char *file,
147 int line,
148 const char *func);
2149e37c 149
87ff6b1c
KS
150#define log_full(level, ...) \
151do { \
152 if (log_get_max_level() >= (level)) \
f24e8653 153 log_meta((level), __FILE__, __LINE__, __func__, __VA_ARGS__); \
87ff6b1c
KS
154} while (0)
155
4104970e
ZJS
156#define log_debug(...) log_full(LOG_DEBUG, __VA_ARGS__)
157#define log_info(...) log_full(LOG_INFO, __VA_ARGS__)
158#define log_notice(...) log_full(LOG_NOTICE, __VA_ARGS__)
159#define log_warning(...) log_full(LOG_WARNING, __VA_ARGS__)
160#define log_error(...) log_full(LOG_ERR, __VA_ARGS__)
161#define log_emergency(...) log_full(getpid() == 1 ? LOG_EMERG : LOG_ERR, __VA_ARGS__)
5899f3b7 162
cb41ff29
ZJS
163#ifdef LOG_TRACE
164# define log_trace(...) log_debug(__VA_ARGS__)
165#else
166# define log_trace(...) do {} while(0)
167#endif
168
877d54e9
LP
169#define log_struct(level, ...) log_struct_internal(level, __FILE__, __LINE__, __func__, __VA_ARGS__)
170
171#define log_oom() log_oom_internal(__FILE__, __LINE__, __func__)
0d0f0c50 172
2149e37c
LP
173/* This modifies the buffer passed! */
174#define log_dump(level, buffer) log_dump_internal(level, __FILE__, __LINE__, __func__, buffer)
175
44a6b1b6 176bool log_on_console(void) _pure_;
81270860 177
44a6b1b6
ZJS
178const char *log_target_to_string(LogTarget target) _const_;
179LogTarget log_target_from_string(const char *s) _pure_;
706911fb
LP
180
181#define MESSAGE_ID(x) "MESSAGE_ID=" SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(x)
4daf54a8
ZJS
182
183void log_received_signal(int level, const struct signalfd_siginfo *si);
c1dc6153
LP
184
185void log_set_upgrade_syslog_to_journal(bool b);