]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/log.c
log: cast various log_open() calls to (void)
[thirdparty/systemd.git] / src / basic / log.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09 2
c9b97d2a 3#include <errno.h>
16801e90 4#include <fcntl.h>
11c3a366
TA
5#include <inttypes.h>
6#include <limits.h>
07630cea
LP
7#include <stdarg.h>
8#include <stddef.h>
9#include <stdio.h>
11c3a366
TA
10#include <string.h>
11#include <sys/signalfd.h>
16801e90 12#include <sys/socket.h>
11c3a366
TA
13#include <sys/time.h>
14#include <sys/uio.h>
16801e90 15#include <sys/un.h>
11c3a366 16#include <time.h>
07630cea 17#include <unistd.h>
5899f3b7 18
158350e8 19#include "sd-messages.h"
07630cea 20
b5efdb8a 21#include "alloc-util.h"
2b2fec7d 22#include "errno-util.h"
3ffd4af2 23#include "fd-util.h"
f97b34a6 24#include "format-util.h"
afc5dbf3 25#include "io-util.h"
3ffd4af2 26#include "log.h"
07630cea
LP
27#include "macro.h"
28#include "missing.h"
4e731273
LP
29#include "parse-util.h"
30#include "proc-cmdline.h"
0b452006 31#include "process-util.h"
24882e06 32#include "signal-util.h"
07630cea 33#include "socket-util.h"
15a5e950 34#include "stdio-util.h"
8b43440b 35#include "string-table.h"
07630cea 36#include "string-util.h"
7ccbd1ae 37#include "syslog-util.h"
07630cea 38#include "terminal-util.h"
93cc7779 39#include "time-util.h"
d04ce5a9 40#include "utf8.h"
5899f3b7 41
bb99a35a
LP
42#define SNDBUF_SIZE (8*1024*1024)
43
16801e90 44static LogTarget log_target = LOG_TARGET_CONSOLE;
ff524019
ZJS
45static int log_max_level[] = {LOG_INFO, LOG_INFO};
46assert_cc(ELEMENTSOF(log_max_level) == _LOG_REALM_MAX);
3eff4208 47static int log_facility = LOG_DAEMON;
16801e90 48
843d2643 49static int console_fd = STDERR_FILENO;
16801e90
LP
50static int syslog_fd = -1;
51static int kmsg_fd = -1;
5ba081b0 52static int journal_fd = -1;
16801e90 53
c31e1495
LP
54static bool syslog_is_stream = false;
55
bbe63281
LP
56static bool show_color = false;
57static bool show_location = false;
58
c1dc6153 59static bool upgrade_syslog_to_journal = false;
48a601fe 60static bool always_reopen_console = false;
16e4fd87 61static bool open_when_needed = false;
adf47c91 62static bool prohibit_ipc = false;
c1dc6153 63
35b8ca3a 64/* Akin to glibc's __abort_msg; which is private and we hence cannot
185986c6
LP
65 * use here. */
66static char *log_abort_msg = NULL;
67
780747da
ZJS
68/* An assert to use in logging functions that does not call recursively
69 * into our logging functions (since that might lead to a loop). */
70#define assert_raw(expr) \
71 do { \
72 if (_unlikely_(!(expr))) { \
73 fputs(#expr "\n", stderr); \
74 abort(); \
75 } \
76 } while (false)
77
cc2b9e6b 78static void log_close_console(void) {
e7685a77 79 console_fd = safe_close_above_stdio(console_fd);
16801e90
LP
80}
81
843d2643 82static int log_open_console(void) {
16801e90 83
cc2b9e6b
AJ
84 if (!always_reopen_console) {
85 console_fd = STDERR_FILENO;
16801e90 86 return 0;
cc2b9e6b 87 }
843d2643 88
cc2b9e6b 89 if (console_fd < 3) {
5ba081b0 90 console_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
cd15c418 91 if (console_fd < 0)
843d2643 92 return console_fd;
7fe2903c
LP
93
94 console_fd = fd_move_above_stdio(console_fd);
cc2b9e6b 95 }
843d2643
LP
96
97 return 0;
98}
99
cc2b9e6b 100static void log_close_kmsg(void) {
03e334a1 101 kmsg_fd = safe_close(kmsg_fd);
843d2643
LP
102}
103
104static int log_open_kmsg(void) {
16801e90
LP
105
106 if (kmsg_fd >= 0)
107 return 0;
108
674f8283 109 kmsg_fd = open("/dev/kmsg", O_WRONLY|O_NOCTTY|O_CLOEXEC);
cd15c418 110 if (kmsg_fd < 0)
16801e90 111 return -errno;
0dae83f9 112
7fe2903c 113 kmsg_fd = fd_move_above_stdio(kmsg_fd);
16801e90
LP
114 return 0;
115}
116
cc2b9e6b 117static void log_close_syslog(void) {
03e334a1 118 syslog_fd = safe_close(syslog_fd);
16801e90
LP
119}
120
c31e1495 121static int create_log_socket(int type) {
8b18fdc1 122 struct timeval tv;
95066a90 123 int fd;
c31e1495 124
8b18fdc1 125 fd = socket(AF_UNIX, type|SOCK_CLOEXEC, 0);
5ba081b0 126 if (fd < 0)
c31e1495
LP
127 return -errno;
128
7fe2903c 129 fd = fd_move_above_stdio(fd);
0474ef7b 130 (void) fd_inc_sndbuf(fd, SNDBUF_SIZE);
bb99a35a 131
7fe2903c
LP
132 /* We need a blocking fd here since we'd otherwise lose messages way too early. However, let's not hang forever
133 * in the unlikely case of a deadlock. */
df0ff127 134 if (getpid_cached() == 1)
4d89874a
ZJS
135 timeval_store(&tv, 10 * USEC_PER_MSEC);
136 else
137 timeval_store(&tv, 10 * USEC_PER_SEC);
086891e5 138 (void) setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
8b18fdc1 139
c31e1495
LP
140 return fd;
141}
142
843d2643 143static int log_open_syslog(void) {
95066a90
LP
144
145 static const union sockaddr_union sa = {
b92bea5d
ZJS
146 .un.sun_family = AF_UNIX,
147 .un.sun_path = "/dev/log",
148 };
16801e90 149
95066a90
LP
150 int r;
151
16801e90
LP
152 if (syslog_fd >= 0)
153 return 0;
154
5ba081b0
LP
155 syslog_fd = create_log_socket(SOCK_DGRAM);
156 if (syslog_fd < 0) {
157 r = syslog_fd;
843d2643 158 goto fail;
16801e90
LP
159 }
160
fc2fffe7 161 if (connect(syslog_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
03e334a1 162 safe_close(syslog_fd);
c31e1495
LP
163
164 /* Some legacy syslog systems still use stream
165 * sockets. They really shouldn't. But what can we
166 * do... */
5ba081b0
LP
167 syslog_fd = create_log_socket(SOCK_STREAM);
168 if (syslog_fd < 0) {
169 r = syslog_fd;
c31e1495
LP
170 goto fail;
171 }
172
fc2fffe7 173 if (connect(syslog_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
c31e1495
LP
174 r = -errno;
175 goto fail;
176 }
177
178 syslog_is_stream = true;
179 } else
180 syslog_is_stream = false;
181
16801e90 182 return 0;
843d2643
LP
183
184fail:
185 log_close_syslog();
843d2643
LP
186 return r;
187}
188
cc2b9e6b 189static void log_close_journal(void) {
03e334a1 190 journal_fd = safe_close(journal_fd);
5ba081b0
LP
191}
192
193static int log_open_journal(void) {
95066a90
LP
194
195 static const union sockaddr_union sa = {
b92bea5d
ZJS
196 .un.sun_family = AF_UNIX,
197 .un.sun_path = "/run/systemd/journal/socket",
198 };
95066a90 199
5ba081b0
LP
200 int r;
201
202 if (journal_fd >= 0)
203 return 0;
204
205 journal_fd = create_log_socket(SOCK_DGRAM);
206 if (journal_fd < 0) {
207 r = journal_fd;
208 goto fail;
209 }
210
fc2fffe7 211 if (connect(journal_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
5ba081b0
LP
212 r = -errno;
213 goto fail;
214 }
215
5ba081b0
LP
216 return 0;
217
218fail:
219 log_close_journal();
5ba081b0
LP
220 return r;
221}
222
843d2643
LP
223int log_open(void) {
224 int r;
225
e3e42fc2
ZJS
226 /* Do not call from library code. */
227
843d2643
LP
228 /* If we don't use the console we close it here, to not get
229 * killed by SAK. If we don't use syslog we close it here so
230 * that we are not confused by somebody deleting the socket in
cc2b9e6b
AJ
231 * the fs, and to make sure we don't use it if prohibit_ipc is
232 * set. If we don't use /dev/kmsg we still keep it open,
843d2643
LP
233 * because there is no reason to close it. */
234
9fae33d2 235 if (log_target == LOG_TARGET_NULL) {
5ba081b0 236 log_close_journal();
9fae33d2
LP
237 log_close_syslog();
238 log_close_console();
239 return 0;
240 }
241
6c347d50 242 if (log_target != LOG_TARGET_AUTO ||
df0ff127 243 getpid_cached() == 1 ||
f41c094c 244 isatty(STDERR_FILENO) <= 0) {
bb7df0da 245
adf47c91
LP
246 if (!prohibit_ipc &&
247 IN_SET(log_target, LOG_TARGET_AUTO,
5b5688af
ZJS
248 LOG_TARGET_JOURNAL_OR_KMSG,
249 LOG_TARGET_JOURNAL)) {
5ba081b0
LP
250 r = log_open_journal();
251 if (r >= 0) {
252 log_close_syslog();
bb7df0da
LP
253 log_close_console();
254 return r;
255 }
5ba081b0
LP
256 }
257
adf47c91
LP
258 if (!prohibit_ipc &&
259 IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
5b5688af 260 LOG_TARGET_SYSLOG)) {
5ba081b0
LP
261 r = log_open_syslog();
262 if (r >= 0) {
263 log_close_journal();
264 log_close_console();
265 return r;
266 }
267 }
268
5b5688af 269 if (IN_SET(log_target, LOG_TARGET_AUTO,
5b5688af
ZJS
270 LOG_TARGET_JOURNAL_OR_KMSG,
271 LOG_TARGET_SYSLOG_OR_KMSG,
272 LOG_TARGET_KMSG)) {
5ba081b0
LP
273 r = log_open_kmsg();
274 if (r >= 0) {
275 log_close_journal();
bb7df0da
LP
276 log_close_syslog();
277 log_close_console();
278 return r;
279 }
5ba081b0 280 }
bb7df0da 281 }
843d2643 282
5ba081b0 283 log_close_journal();
843d2643 284 log_close_syslog();
dcdf86bb 285
843d2643 286 return log_open_console();
16801e90
LP
287}
288
289void log_set_target(LogTarget target) {
290 assert(target >= 0);
291 assert(target < _LOG_TARGET_MAX);
292
c1dc6153
LP
293 if (upgrade_syslog_to_journal) {
294 if (target == LOG_TARGET_SYSLOG)
295 target = LOG_TARGET_JOURNAL;
296 else if (target == LOG_TARGET_SYSLOG_OR_KMSG)
297 target = LOG_TARGET_JOURNAL_OR_KMSG;
298 }
299
16801e90
LP
300 log_target = target;
301}
302
871e5809 303void log_close(void) {
e3e42fc2
ZJS
304 /* Do not call from library code. */
305
5ba081b0 306 log_close_journal();
871e5809 307 log_close_syslog();
5ba081b0
LP
308 log_close_kmsg();
309 log_close_console();
871e5809
LP
310}
311
4d8a7798 312void log_forget_fds(void) {
e3e42fc2
ZJS
313 /* Do not call from library code. */
314
5ba081b0 315 console_fd = kmsg_fd = syslog_fd = journal_fd = -1;
4d8a7798
MS
316}
317
ff524019 318void log_set_max_level_realm(LogRealm realm, int level) {
16801e90 319 assert((level & LOG_PRIMASK) == level);
ff524019 320 assert(realm < ELEMENTSOF(log_max_level));
16801e90 321
ff524019 322 log_max_level[realm] = level;
16801e90
LP
323}
324
3eff4208
LP
325void log_set_facility(int facility) {
326 log_facility = facility;
327}
328
843d2643 329static int write_to_console(
20c03b7b 330 int level,
086891e5 331 int error,
95066a90 332 const char *file,
20c03b7b
LP
333 int line,
334 const char *func,
335 const char *buffer) {
5899f3b7 336
79c95440 337 char location[256], prefix[1 + DECIMAL_STR_MAX(int) + 2];
aca83a53 338 struct iovec iovec[6] = {};
37b8d2f6 339 const char *on = NULL, *off = NULL;
da6053d0 340 size_t n = 0;
5899f3b7 341
843d2643
LP
342 if (console_fd < 0)
343 return 0;
344
aca83a53 345 if (log_target == LOG_TARGET_CONSOLE_PREFIXED) {
0474ef7b 346 xsprintf(prefix, "<%i>", level);
e6a7ec4b 347 iovec[n++] = IOVEC_MAKE_STRING(prefix);
aca83a53
LP
348 }
349
37b8d2f6
ZJS
350 if (show_color)
351 get_log_colors(LOG_PRI(level), &on, &off, NULL);
843d2643 352
674f8283 353 if (show_location) {
d35305fe
ZJS
354 const char *lon = "", *loff = "";
355 if (show_color) {
356 lon = ANSI_HIGHLIGHT_YELLOW4;
357 loff = ANSI_NORMAL;
358 }
359
360 (void) snprintf(location, sizeof location, "%s%s:%i%s: ", lon, file, line, loff);
e6a7ec4b 361 iovec[n++] = IOVEC_MAKE_STRING(location);
674f8283
LP
362 }
363
37b8d2f6
ZJS
364 if (on)
365 iovec[n++] = IOVEC_MAKE_STRING(on);
e6a7ec4b 366 iovec[n++] = IOVEC_MAKE_STRING(buffer);
37b8d2f6
ZJS
367 if (off)
368 iovec[n++] = IOVEC_MAKE_STRING(off);
e6a7ec4b 369 iovec[n++] = IOVEC_MAKE_STRING("\n");
843d2643 370
0e6eaa2d
LP
371 if (writev(console_fd, iovec, n) < 0) {
372
df0ff127 373 if (errno == EIO && getpid_cached() == 1) {
0e6eaa2d 374
e11a5c72
LP
375 /* If somebody tried to kick us from our console tty (via vhangup() or suchlike), try
376 * to reconnect. */
0e6eaa2d
LP
377
378 log_close_console();
e11a5c72 379 (void) log_open_console();
0e6eaa2d
LP
380 if (console_fd < 0)
381 return 0;
382
383 if (writev(console_fd, iovec, n) < 0)
384 return -errno;
385 } else
386 return -errno;
387 }
5899f3b7 388
843d2643 389 return 1;
16801e90 390}
5899f3b7 391
16801e90 392static int write_to_syslog(
086891e5
LP
393 int level,
394 int error,
95066a90 395 const char *file,
086891e5
LP
396 int line,
397 const char *func,
086891e5 398 const char *buffer) {
16801e90 399
5ffa8c81
ZJS
400 char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
401 header_time[64],
402 header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
b92bea5d
ZJS
403 struct iovec iovec[5] = {};
404 struct msghdr msghdr = {
405 .msg_iov = iovec,
406 .msg_iovlen = ELEMENTSOF(iovec),
407 };
16801e90 408 time_t t;
e0f691e1 409 struct tm tm;
16801e90
LP
410
411 if (syslog_fd < 0)
843d2643 412 return 0;
16801e90 413
5ffa8c81 414 xsprintf(header_priority, "<%i>", level);
16801e90
LP
415
416 t = (time_t) (now(CLOCK_REALTIME) / USEC_PER_SEC);
e0f691e1 417 if (!localtime_r(&t, &tm))
16801e90
LP
418 return -EINVAL;
419
e0f691e1 420 if (strftime(header_time, sizeof(header_time), "%h %e %T ", &tm) <= 0)
16801e90
LP
421 return -EINVAL;
422
df0ff127 423 xsprintf(header_pid, "["PID_FMT"]: ", getpid_cached());
16801e90 424
e6a7ec4b
LP
425 iovec[0] = IOVEC_MAKE_STRING(header_priority);
426 iovec[1] = IOVEC_MAKE_STRING(header_time);
427 iovec[2] = IOVEC_MAKE_STRING(program_invocation_short_name);
428 iovec[3] = IOVEC_MAKE_STRING(header_pid);
429 iovec[4] = IOVEC_MAKE_STRING(buffer);
16801e90 430
c899f8c6 431 /* When using syslog via SOCK_STREAM separate the messages by NUL chars */
c31e1495
LP
432 if (syslog_is_stream)
433 iovec[4].iov_len++;
434
c31e1495
LP
435 for (;;) {
436 ssize_t n;
437
8f7f7a1b
MS
438 n = sendmsg(syslog_fd, &msghdr, MSG_NOSIGNAL);
439 if (n < 0)
c31e1495
LP
440 return -errno;
441
442 if (!syslog_is_stream ||
443 (size_t) n >= IOVEC_TOTAL_SIZE(iovec, ELEMENTSOF(iovec)))
444 break;
445
446 IOVEC_INCREMENT(iovec, ELEMENTSOF(iovec), n);
447 }
16801e90 448
843d2643 449 return 1;
16801e90
LP
450}
451
452static int write_to_kmsg(
086891e5
LP
453 int level,
454 int error,
bcf5c276 455 const char *file,
086891e5
LP
456 int line,
457 const char *func,
086891e5 458 const char *buffer) {
16801e90 459
5ffa8c81
ZJS
460 char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
461 header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
b92bea5d 462 struct iovec iovec[5] = {};
16801e90
LP
463
464 if (kmsg_fd < 0)
843d2643 465 return 0;
16801e90 466
5ffa8c81 467 xsprintf(header_priority, "<%i>", level);
df0ff127 468 xsprintf(header_pid, "["PID_FMT"]: ", getpid_cached());
16801e90 469
e6a7ec4b
LP
470 iovec[0] = IOVEC_MAKE_STRING(header_priority);
471 iovec[1] = IOVEC_MAKE_STRING(program_invocation_short_name);
472 iovec[2] = IOVEC_MAKE_STRING(header_pid);
473 iovec[3] = IOVEC_MAKE_STRING(buffer);
474 iovec[4] = IOVEC_MAKE_STRING("\n");
16801e90
LP
475
476 if (writev(kmsg_fd, iovec, ELEMENTSOF(iovec)) < 0)
477 return -errno;
478
843d2643 479 return 1;
16801e90
LP
480}
481
086891e5
LP
482static int log_do_header(
483 char *header,
484 size_t size,
485 int level,
486 int error,
487 const char *file, int line, const char *func,
4b58153d
LP
488 const char *object_field, const char *object,
489 const char *extra_field, const char *extra) {
f8e6f4aa 490 int r;
086891e5 491
52d86690
ZJS
492 error = IS_SYNTHETIC_ERRNO(error) ? 0 : ERRNO_VALUE(error);
493
f8e6f4aa
ZJS
494 r = snprintf(header, size,
495 "PRIORITY=%i\n"
496 "SYSLOG_FACILITY=%i\n"
497 "%s%.256s%s" /* CODE_FILE */
498 "%s%.*i%s" /* CODE_LINE */
499 "%s%.256s%s" /* CODE_FUNC */
500 "%s%.*i%s" /* ERRNO */
501 "%s%.256s%s" /* object */
502 "%s%.256s%s" /* extra */
503 "SYSLOG_IDENTIFIER=%.256s\n",
504 LOG_PRI(level),
505 LOG_FAC(level),
506 isempty(file) ? "" : "CODE_FILE=",
507 isempty(file) ? "" : file,
508 isempty(file) ? "" : "\n",
509 line ? "CODE_LINE=" : "",
510 line ? 1 : 0, line, /* %.0d means no output too, special case for 0 */
511 line ? "\n" : "",
512 isempty(func) ? "" : "CODE_FUNC=",
513 isempty(func) ? "" : func,
514 isempty(func) ? "" : "\n",
515 error ? "ERRNO=" : "",
516 error ? 1 : 0, error,
517 error ? "\n" : "",
518 isempty(object) ? "" : object_field,
519 isempty(object) ? "" : object,
520 isempty(object) ? "" : "\n",
521 isempty(extra) ? "" : extra_field,
522 isempty(extra) ? "" : extra,
523 isempty(extra) ? "" : "\n",
524 program_invocation_short_name);
780747da 525 assert_raw((size_t) r < size);
086891e5 526
41a79f10
ZJS
527 return 0;
528}
5ba081b0 529
41a79f10 530static int write_to_journal(
086891e5
LP
531 int level,
532 int error,
bcf5c276 533 const char *file,
086891e5
LP
534 int line,
535 const char *func,
536 const char *object_field,
537 const char *object,
4b58153d
LP
538 const char *extra_field,
539 const char *extra,
086891e5 540 const char *buffer) {
41a79f10
ZJS
541
542 char header[LINE_MAX];
b92bea5d
ZJS
543 struct iovec iovec[4] = {};
544 struct msghdr mh = {};
41a79f10
ZJS
545
546 if (journal_fd < 0)
547 return 0;
548
4b58153d 549 log_do_header(header, sizeof(header), level, error, file, line, func, object_field, object, extra_field, extra);
5ba081b0 550
e6a7ec4b
LP
551 iovec[0] = IOVEC_MAKE_STRING(header);
552 iovec[1] = IOVEC_MAKE_STRING("MESSAGE=");
553 iovec[2] = IOVEC_MAKE_STRING(buffer);
554 iovec[3] = IOVEC_MAKE_STRING("\n");
5ba081b0 555
5ba081b0
LP
556 mh.msg_iov = iovec;
557 mh.msg_iovlen = ELEMENTSOF(iovec);
558
559 if (sendmsg(journal_fd, &mh, MSG_NOSIGNAL) < 0)
560 return -errno;
561
562 return 1;
563}
564
93484b47 565int log_dispatch_internal(
086891e5
LP
566 int level,
567 int error,
95066a90 568 const char *file,
086891e5
LP
569 int line,
570 const char *func,
571 const char *object_field,
572 const char *object,
4b58153d 573 const char *extra_field,
4dd09c6a 574 const char *extra,
086891e5 575 char *buffer) {
843d2643 576
780747da 577 assert_raw(buffer);
843d2643 578
9fae33d2 579 if (log_target == LOG_TARGET_NULL)
52d86690 580 return -ERRNO_VALUE(error);
9fae33d2 581
29db5834 582 /* Patch in LOG_DAEMON facility if necessary */
7d76f312 583 if ((level & LOG_FACMASK) == 0)
52d86690 584 level |= log_facility;
29db5834 585
16e4fd87 586 if (open_when_needed)
e11a5c72 587 (void) log_open();
16e4fd87 588
9726b29e
LP
589 do {
590 char *e;
9499b235 591 int k = 0;
843d2643 592
9726b29e 593 buffer += strspn(buffer, NEWLINE);
843d2643 594
9726b29e
LP
595 if (buffer[0] == 0)
596 break;
843d2643 597
9726b29e
LP
598 if ((e = strpbrk(buffer, NEWLINE)))
599 *(e++) = 0;
843d2643 600
5b5688af
ZJS
601 if (IN_SET(log_target, LOG_TARGET_AUTO,
602 LOG_TARGET_JOURNAL_OR_KMSG,
603 LOG_TARGET_JOURNAL)) {
5ba081b0 604
4b58153d 605 k = write_to_journal(level, error, file, line, func, object_field, object, extra_field, extra, buffer);
e38b8a40
LP
606 if (k < 0 && k != -EAGAIN)
607 log_close_journal();
5ba081b0
LP
608 }
609
5b5688af
ZJS
610 if (IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
611 LOG_TARGET_SYSLOG)) {
9726b29e 612
4b58153d 613 k = write_to_syslog(level, error, file, line, func, buffer);
e38b8a40
LP
614 if (k < 0 && k != -EAGAIN)
615 log_close_syslog();
9726b29e
LP
616 }
617
9499b235 618 if (k <= 0 &&
5b5688af 619 IN_SET(log_target, LOG_TARGET_AUTO,
5b5688af
ZJS
620 LOG_TARGET_SYSLOG_OR_KMSG,
621 LOG_TARGET_JOURNAL_OR_KMSG,
622 LOG_TARGET_KMSG)) {
9726b29e 623
e38b8a40
LP
624 if (k < 0)
625 log_open_kmsg();
626
4b58153d 627 k = write_to_kmsg(level, error, file, line, func, buffer);
4e7bc3f3
LP
628 if (k < 0) {
629 log_close_kmsg();
e11a5c72 630 (void) log_open_console();
bf371116 631 }
9726b29e
LP
632 }
633
bf371116 634 if (k <= 0)
4b58153d 635 (void) write_to_console(level, error, file, line, func, buffer);
9726b29e
LP
636
637 buffer = e;
638 } while (buffer);
639
16e4fd87
LP
640 if (open_when_needed)
641 log_close();
642
52d86690 643 return -ERRNO_VALUE(error);
843d2643
LP
644}
645
2149e37c 646int log_dump_internal(
ff524019
ZJS
647 int level,
648 int error,
649 const char *file,
650 int line,
651 const char *func,
652 char *buffer) {
2149e37c 653
ff524019 654 LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
5c0aa72a 655 PROTECT_ERRNO;
2149e37c
LP
656
657 /* This modifies the buffer... */
658
ff524019 659 if (_likely_(LOG_PRI(level) > log_max_level[realm]))
52d86690 660 return -ERRNO_VALUE(error);
2149e37c 661
93484b47 662 return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
2149e37c
LP
663}
664
ff524019 665int log_internalv_realm(
086891e5
LP
666 int level,
667 int error,
bcf5c276 668 const char *file,
086891e5
LP
669 int line,
670 const char *func,
671 const char *format,
672 va_list ap) {
16801e90 673
ff524019 674 LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
addab137 675 char buffer[LINE_MAX];
ff524019 676 PROTECT_ERRNO;
16801e90 677
ff524019 678 if (_likely_(LOG_PRI(level) > log_max_level[realm]))
52d86690 679 return -ERRNO_VALUE(error);
16801e90 680
b29f6480 681 /* Make sure that %m maps to the specified error (or "Success"). */
52d86690 682 errno = ERRNO_VALUE(error);
086891e5 683
4ad2b562 684 (void) vsnprintf(buffer, sizeof buffer, format, ap);
843d2643 685
93484b47 686 return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
185986c6 687}
16801e90 688
ff524019 689int log_internal_realm(
086891e5
LP
690 int level,
691 int error,
bcf5c276 692 const char *file,
086891e5
LP
693 int line,
694 const char *func,
695 const char *format, ...) {
17a94911 696
17a94911 697 va_list ap;
bf371116 698 int r;
17a94911
LP
699
700 va_start(ap, format);
ff524019 701 r = log_internalv_realm(level, error, file, line, func, format, ap);
17a94911
LP
702 va_end(ap);
703
704 return r;
705}
706
f6d6d532 707int log_object_internalv(
086891e5
LP
708 int level,
709 int error,
bcf5c276 710 const char *file,
086891e5
LP
711 int line,
712 const char *func,
713 const char *object_field,
714 const char *object,
4b58153d
LP
715 const char *extra_field,
716 const char *extra,
086891e5
LP
717 const char *format,
718 va_list ap) {
fdf9f9bb 719
5c0aa72a 720 PROTECT_ERRNO;
f2341e0a 721 char *buffer, *b;
fdf9f9bb 722
ff524019 723 if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]))
52d86690 724 return -ERRNO_VALUE(error);
fdf9f9bb 725
d1a1f0aa 726 /* Make sure that %m maps to the specified error (or "Success"). */
52d86690 727 errno = ERRNO_VALUE(error);
086891e5 728
f2341e0a
LP
729 /* Prepend the object name before the message */
730 if (object) {
731 size_t n;
732
733 n = strlen(object);
1741b25c 734 buffer = newa(char, n + 2 + LINE_MAX);
f2341e0a 735 b = stpcpy(stpcpy(buffer, object), ": ");
1741b25c
EV
736 } else
737 b = buffer = newa(char, LINE_MAX);
f2341e0a 738
4ad2b562 739 (void) vsnprintf(b, LINE_MAX, format, ap);
fdf9f9bb 740
93484b47
ZJS
741 return log_dispatch_internal(level, error, file, line, func,
742 object_field, object, extra_field, extra, buffer);
fdf9f9bb
ZJS
743}
744
79008bdd 745int log_object_internal(
086891e5
LP
746 int level,
747 int error,
bcf5c276 748 const char *file,
086891e5
LP
749 int line,
750 const char *func,
751 const char *object_field,
752 const char *object,
4b58153d
LP
753 const char *extra_field,
754 const char *extra,
086891e5 755 const char *format, ...) {
fdf9f9bb 756
fdf9f9bb 757 va_list ap;
bf371116 758 int r;
fdf9f9bb
ZJS
759
760 va_start(ap, format);
4b58153d 761 r = log_object_internalv(level, error, file, line, func, object_field, object, extra_field, extra, format, ap);
fdf9f9bb
ZJS
762 va_end(ap);
763
764 return r;
765}
766
086891e5
LP
767static void log_assert(
768 int level,
769 const char *text,
770 const char *file,
771 int line,
772 const char *func,
773 const char *format) {
774
addab137 775 static char buffer[LINE_MAX];
ff524019 776 LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
185986c6 777
ff524019 778 if (_likely_(LOG_PRI(level) > log_max_level[realm]))
50f72bca
ZJS
779 return;
780
bcfce235 781 DISABLE_WARNING_FORMAT_NONLITERAL;
4ad2b562 782 (void) snprintf(buffer, sizeof buffer, format, text, file, line, func);
bcfce235 783 REENABLE_WARNING;
185986c6 784
185986c6
LP
785 log_abort_msg = buffer;
786
93484b47 787 log_dispatch_internal(level, 0, file, line, func, NULL, NULL, NULL, NULL, buffer);
5899f3b7 788}
34f0e866 789
848e863a 790_noreturn_ void log_assert_failed_realm(
ff524019
ZJS
791 LogRealm realm,
792 const char *text,
793 const char *file,
794 int line,
795 const char *func) {
e11a5c72 796 (void) log_open();
ff524019
ZJS
797 log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
798 "Assertion '%s' failed at %s:%u, function %s(). Aborting.");
80514f9c 799 abort();
b7f33638
MS
800}
801
848e863a 802_noreturn_ void log_assert_failed_unreachable_realm(
ff524019
ZJS
803 LogRealm realm,
804 const char *text,
805 const char *file,
806 int line,
807 const char *func) {
e11a5c72 808 (void) log_open();
ff524019
ZJS
809 log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
810 "Code should not be reached '%s' at %s:%u, function %s(). Aborting.");
80514f9c
LP
811 abort();
812}
813
ff524019
ZJS
814void log_assert_failed_return_realm(
815 LogRealm realm,
816 const char *text,
817 const char *file,
818 int line,
819 const char *func) {
e5ca092c 820 PROTECT_ERRNO;
ff524019
ZJS
821 log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_DEBUG), text, file, line, func,
822 "Assertion '%s' failed at %s:%u, function %s(). Ignoring.");
b7f33638
MS
823}
824
ff524019 825int log_oom_internal(LogRealm realm, const char *file, int line, const char *func) {
7558e10c
LP
826 return log_internal_realm(LOG_REALM_PLUS_LEVEL(realm, LOG_ERR),
827 ENOMEM, file, line, func, "Out of memory.");
6dc1e7e0
MS
828}
829
8a03c9ef
ZJS
830int log_format_iovec(
831 struct iovec *iovec,
d3070fbd
LP
832 size_t iovec_len,
833 size_t *n,
8a03c9ef
ZJS
834 bool newline_separator,
835 int error,
836 const char *format,
837 va_list ap) {
838
839 static const char nl = '\n';
840
841 while (format && *n + 1 < iovec_len) {
842 va_list aq;
843 char *m;
844 int r;
845
846 /* We need to copy the va_list structure,
847 * since vasprintf() leaves it afterwards at
848 * an undefined location */
849
52d86690 850 errno = ERRNO_VALUE(error);
8a03c9ef
ZJS
851
852 va_copy(aq, ap);
853 r = vasprintf(&m, format, aq);
854 va_end(aq);
855 if (r < 0)
856 return -EINVAL;
857
858 /* Now, jump enough ahead, so that we point to
859 * the next format string */
860 VA_FORMAT_ADVANCE(format, ap);
861
e6a7ec4b 862 iovec[(*n)++] = IOVEC_MAKE_STRING(m);
8a03c9ef
ZJS
863
864 if (newline_separator) {
5cfa2c3d 865 iovec[*n] = IOVEC_MAKE((char *)&nl, 1);
8a03c9ef
ZJS
866 (*n)++;
867 }
868
869 format = va_arg(ap, char *);
870 }
871 return 0;
872}
873
877d54e9
LP
874int log_struct_internal(
875 int level,
086891e5 876 int error,
877d54e9
LP
877 const char *file,
878 int line,
879 const char *func,
880 const char *format, ...) {
881
e6a7ec4b 882 LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
bf371116
LP
883 char buf[LINE_MAX];
884 bool found = false;
5c0aa72a 885 PROTECT_ERRNO;
877d54e9 886 va_list ap;
bf371116 887
52d86690
ZJS
888 if (_likely_(LOG_PRI(level) > log_max_level[realm]) ||
889 log_target == LOG_TARGET_NULL)
890 return -ERRNO_VALUE(error);
877d54e9
LP
891
892 if ((level & LOG_FACMASK) == 0)
52d86690 893 level |= log_facility;
877d54e9 894
16e4fd87
LP
895 if (IN_SET(log_target,
896 LOG_TARGET_AUTO,
897 LOG_TARGET_JOURNAL_OR_KMSG,
898 LOG_TARGET_JOURNAL)) {
899
900 if (open_when_needed)
901 log_open_journal();
902
903 if (journal_fd >= 0) {
904 char header[LINE_MAX];
905 struct iovec iovec[17] = {};
d3070fbd 906 size_t n = 0, i;
16e4fd87
LP
907 int r;
908 struct msghdr mh = {
909 .msg_iov = iovec,
910 };
911 bool fallback = false;
912
52d86690
ZJS
913 /* If the journal is available do structured logging.
914 * Do not report the errno if it is synthetic. */
16e4fd87
LP
915 log_do_header(header, sizeof(header), level, error, file, line, func, NULL, NULL, NULL, NULL);
916 iovec[n++] = IOVEC_MAKE_STRING(header);
917
918 va_start(ap, format);
919 r = log_format_iovec(iovec, ELEMENTSOF(iovec), &n, true, error, format, ap);
920 if (r < 0)
921 fallback = true;
922 else {
923 mh.msg_iovlen = n;
924 (void) sendmsg(journal_fd, &mh, MSG_NOSIGNAL);
925 }
877d54e9 926
16e4fd87
LP
927 va_end(ap);
928 for (i = 1; i < n; i += 2)
929 free(iovec[i].iov_base);
877d54e9 930
16e4fd87
LP
931 if (!fallback) {
932 if (open_when_needed)
933 log_close();
877d54e9 934
52d86690 935 return -ERRNO_VALUE(error);
16e4fd87
LP
936 }
937 }
bf371116 938 }
877d54e9 939
bf371116 940 /* Fallback if journal logging is not available or didn't work. */
6357ac66 941
bf371116
LP
942 va_start(ap, format);
943 while (format) {
944 va_list aq;
877d54e9 945
52d86690 946 errno = ERRNO_VALUE(error);
877d54e9 947
bf371116 948 va_copy(aq, ap);
4ad2b562 949 (void) vsnprintf(buf, sizeof buf, format, aq);
bf371116 950 va_end(aq);
963ddb91 951
bf371116
LP
952 if (startswith(buf, "MESSAGE=")) {
953 found = true;
954 break;
877d54e9 955 }
877d54e9 956
bf371116
LP
957 VA_FORMAT_ADVANCE(format, ap);
958
959 format = va_arg(ap, char *);
877d54e9 960 }
bf371116 961 va_end(ap);
877d54e9 962
16e4fd87
LP
963 if (!found) {
964 if (open_when_needed)
965 log_close();
966
52d86690 967 return -ERRNO_VALUE(error);
16e4fd87 968 }
bf371116 969
93484b47 970 return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buf + 8);
877d54e9
LP
971}
972
915b1d01
LP
973int log_struct_iovec_internal(
974 int level,
975 int error,
976 const char *file,
977 int line,
978 const char *func,
979 const struct iovec input_iovec[],
980 size_t n_input_iovec) {
981
982 LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
983 PROTECT_ERRNO;
984 size_t i;
985 char *m;
986
52d86690
ZJS
987 if (_likely_(LOG_PRI(level) > log_max_level[realm]) ||
988 log_target == LOG_TARGET_NULL)
989 return -ERRNO_VALUE(error);
915b1d01
LP
990
991 if ((level & LOG_FACMASK) == 0)
52d86690 992 level |= log_facility;
915b1d01
LP
993
994 if (IN_SET(log_target, LOG_TARGET_AUTO,
995 LOG_TARGET_JOURNAL_OR_KMSG,
996 LOG_TARGET_JOURNAL) &&
997 journal_fd >= 0) {
998
999 struct iovec iovec[1 + n_input_iovec*2];
1000 char header[LINE_MAX];
1001 struct msghdr mh = {
1002 .msg_iov = iovec,
1003 .msg_iovlen = 1 + n_input_iovec*2,
1004 };
1005
1006 log_do_header(header, sizeof(header), level, error, file, line, func, NULL, NULL, NULL, NULL);
1007 iovec[0] = IOVEC_MAKE_STRING(header);
1008
1009 for (i = 0; i < n_input_iovec; i++) {
1010 iovec[1+i*2] = input_iovec[i];
1011 iovec[1+i*2+1] = IOVEC_MAKE_STRING("\n");
1012 }
1013
1014 if (sendmsg(journal_fd, &mh, MSG_NOSIGNAL) >= 0)
52d86690 1015 return -ERRNO_VALUE(error);
915b1d01
LP
1016 }
1017
d27b725a
LP
1018 for (i = 0; i < n_input_iovec; i++)
1019 if (memory_startswith(input_iovec[i].iov_base, input_iovec[i].iov_len, "MESSAGE="))
915b1d01 1020 break;
915b1d01
LP
1021
1022 if (_unlikely_(i >= n_input_iovec)) /* Couldn't find MESSAGE=? */
52d86690 1023 return -ERRNO_VALUE(error);
915b1d01 1024
fbd0b64f
LP
1025 m = strndupa(input_iovec[i].iov_base + STRLEN("MESSAGE="),
1026 input_iovec[i].iov_len - STRLEN("MESSAGE="));
915b1d01
LP
1027
1028 return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, m);
1029}
1030
34f0e866
LP
1031int log_set_target_from_string(const char *e) {
1032 LogTarget t;
1033
5ba081b0
LP
1034 t = log_target_from_string(e);
1035 if (t < 0)
34f0e866
LP
1036 return -EINVAL;
1037
1038 log_set_target(t);
1039 return 0;
1040}
1041
ff524019 1042int log_set_max_level_from_string_realm(LogRealm realm, const char *e) {
34f0e866
LP
1043 int t;
1044
5ba081b0
LP
1045 t = log_level_from_string(e);
1046 if (t < 0)
737af734 1047 return -EINVAL;
34f0e866 1048
ff524019 1049 log_set_max_level_realm(realm, t);
34f0e866
LP
1050 return 0;
1051}
1052
96287a49 1053static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
1de1c9c3
LP
1054
1055 /*
1056 * The systemd.log_xyz= settings are parsed by all tools, and
1057 * so is "debug".
1058 *
5e07a79e
LP
1059 * However, "quiet" is only parsed by PID 1, and only turns of
1060 * status output to /dev/console, but does not alter the log
1061 * level.
1de1c9c3
LP
1062 */
1063
1064 if (streq(key, "debug") && !value)
1065 log_set_max_level(LOG_DEBUG);
1066
1d84ad94
LP
1067 else if (proc_cmdline_key_streq(key, "systemd.log_target")) {
1068
1069 if (proc_cmdline_value_missing(key, value))
1070 return 0;
1de1c9c3
LP
1071
1072 if (log_set_target_from_string(value) < 0)
1073 log_warning("Failed to parse log target '%s'. Ignoring.", value);
1074
1d84ad94
LP
1075 } else if (proc_cmdline_key_streq(key, "systemd.log_level")) {
1076
1077 if (proc_cmdline_value_missing(key, value))
1078 return 0;
1de1c9c3
LP
1079
1080 if (log_set_max_level_from_string(value) < 0)
1081 log_warning("Failed to parse log level '%s'. Ignoring.", value);
1082
1d84ad94 1083 } else if (proc_cmdline_key_streq(key, "systemd.log_color")) {
1de1c9c3 1084
1d84ad94 1085 if (log_show_color_from_string(value ?: "1") < 0)
1de1c9c3
LP
1086 log_warning("Failed to parse log color setting '%s'. Ignoring.", value);
1087
1d84ad94 1088 } else if (proc_cmdline_key_streq(key, "systemd.log_location")) {
1de1c9c3 1089
1d84ad94 1090 if (log_show_location_from_string(value ?: "1") < 0)
1de1c9c3
LP
1091 log_warning("Failed to parse log location setting '%s'. Ignoring.", value);
1092 }
1093
1094 return 0;
1095}
1096
ff524019 1097void log_parse_environment_realm(LogRealm realm) {
e3e42fc2
ZJS
1098 /* Do not call from library code. */
1099
34f0e866 1100 const char *e;
b8d0ffc2 1101
5f4a8823
ZJS
1102 if (getpid_cached() == 1 || get_ctty_devnr(0, NULL) < 0)
1103 /* Only try to read the command line in daemons. We assume that anything that has a
1104 * controlling tty is user stuff. For PID1 we do a special check in case it hasn't
1105 * closed the console yet. */
1d84ad94 1106 (void) proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_STRIP_RD_PREFIX);
34f0e866 1107
a99e002c 1108 e = getenv("SYSTEMD_LOG_TARGET");
88fae6e0 1109 if (e && log_set_target_from_string(e) < 0)
f0ea29ea 1110 log_warning("Failed to parse log target '%s'. Ignoring.", e);
34f0e866 1111
a99e002c 1112 e = getenv("SYSTEMD_LOG_LEVEL");
ff524019 1113 if (e && log_set_max_level_from_string_realm(realm, e) < 0)
f0ea29ea 1114 log_warning("Failed to parse log level '%s'. Ignoring.", e);
bbe63281 1115
a99e002c 1116 e = getenv("SYSTEMD_LOG_COLOR");
88fae6e0 1117 if (e && log_show_color_from_string(e) < 0)
df2452c5 1118 log_warning("Failed to parse log color '%s'. Ignoring.", e);
bbe63281 1119
a99e002c 1120 e = getenv("SYSTEMD_LOG_LOCATION");
88fae6e0 1121 if (e && log_show_location_from_string(e) < 0)
df2452c5 1122 log_warning("Failed to parse log location '%s'. Ignoring.", e);
34f0e866
LP
1123}
1124
1adf1049
LP
1125LogTarget log_get_target(void) {
1126 return log_target;
1127}
1128
ff524019
ZJS
1129int log_get_max_level_realm(LogRealm realm) {
1130 return log_max_level[realm];
1adf1049
LP
1131}
1132
bbe63281
LP
1133void log_show_color(bool b) {
1134 show_color = b;
1135}
1136
b1e90ec5
ZJS
1137bool log_get_show_color(void) {
1138 return show_color;
1139}
1140
bbe63281
LP
1141void log_show_location(bool b) {
1142 show_location = b;
1143}
1144
b1e90ec5
ZJS
1145bool log_get_show_location(void) {
1146 return show_location;
1147}
1148
bbe63281
LP
1149int log_show_color_from_string(const char *e) {
1150 int t;
1151
5ba081b0
LP
1152 t = parse_boolean(e);
1153 if (t < 0)
1154 return t;
bbe63281
LP
1155
1156 log_show_color(t);
1157 return 0;
1158}
1159
1160int log_show_location_from_string(const char *e) {
1161 int t;
1162
5ba081b0
LP
1163 t = parse_boolean(e);
1164 if (t < 0)
1165 return t;
bbe63281
LP
1166
1167 log_show_location(t);
1168 return 0;
1169}
1170
81270860 1171bool log_on_console(void) {
5b5688af
ZJS
1172 if (IN_SET(log_target, LOG_TARGET_CONSOLE,
1173 LOG_TARGET_CONSOLE_PREFIXED))
81270860
LP
1174 return true;
1175
1176 return syslog_fd < 0 && kmsg_fd < 0 && journal_fd < 0;
1177}
1178
2c5859af 1179static const char *const log_target_table[_LOG_TARGET_MAX] = {
34f0e866 1180 [LOG_TARGET_CONSOLE] = "console",
aca83a53 1181 [LOG_TARGET_CONSOLE_PREFIXED] = "console-prefixed",
34f0e866 1182 [LOG_TARGET_KMSG] = "kmsg",
5ba081b0
LP
1183 [LOG_TARGET_JOURNAL] = "journal",
1184 [LOG_TARGET_JOURNAL_OR_KMSG] = "journal-or-kmsg",
1185 [LOG_TARGET_SYSLOG] = "syslog",
843d2643 1186 [LOG_TARGET_SYSLOG_OR_KMSG] = "syslog-or-kmsg",
5ba081b0 1187 [LOG_TARGET_AUTO] = "auto",
6c347d50 1188 [LOG_TARGET_NULL] = "null",
34f0e866
LP
1189};
1190
1191DEFINE_STRING_TABLE_LOOKUP(log_target, LogTarget);
4daf54a8
ZJS
1192
1193void log_received_signal(int level, const struct signalfd_siginfo *si) {
a6ab2365
LP
1194 assert(si);
1195
1196 if (pid_is_valid(si->ssi_pid)) {
4daf54a8
ZJS
1197 _cleanup_free_ char *p = NULL;
1198
a6ab2365 1199 (void) get_process_comm(si->ssi_pid, &p);
4daf54a8
ZJS
1200
1201 log_full(level,
1fa2f38f 1202 "Received SIG%s from PID %"PRIu32" (%s).",
4daf54a8
ZJS
1203 signal_to_string(si->ssi_signo),
1204 si->ssi_pid, strna(p));
1205 } else
1206 log_full(level,
1207 "Received SIG%s.",
1208 signal_to_string(si->ssi_signo));
4daf54a8 1209}
c1dc6153 1210
158350e8
LP
1211int log_syntax_internal(
1212 const char *unit,
1213 int level,
1214 const char *config_file,
1215 unsigned config_line,
1216 int error,
1217 const char *file,
1218 int line,
1219 const char *func,
1220 const char *format, ...) {
1221
1222 PROTECT_ERRNO;
1223 char buffer[LINE_MAX];
158350e8 1224 va_list ap;
c2dec702 1225 const char *unit_fmt = NULL;
158350e8 1226
52d86690
ZJS
1227 if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]) ||
1228 log_target == LOG_TARGET_NULL)
1229 return -ERRNO_VALUE(error);
158350e8 1230
ee96382f 1231 errno = ERRNO_VALUE(error);
158350e8
LP
1232
1233 va_start(ap, format);
4ad2b562 1234 (void) vsnprintf(buffer, sizeof buffer, format, ap);
158350e8
LP
1235 va_end(ap);
1236
1237 if (unit)
df0ff127 1238 unit_fmt = getpid_cached() == 1 ? "UNIT=%s" : "USER_UNIT=%s";
c2dec702 1239
bdc34268
ZJS
1240 if (config_file) {
1241 if (config_line > 0)
1242 return log_struct_internal(
1243 LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1244 error,
1245 file, line, func,
1246 "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1247 "CONFIG_FILE=%s", config_file,
1248 "CONFIG_LINE=%u", config_line,
1249 LOG_MESSAGE("%s:%u: %s", config_file, config_line, buffer),
1250 unit_fmt, unit,
1251 NULL);
1252 else
1253 return log_struct_internal(
1254 LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1255 error,
1256 file, line, func,
1257 "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1258 "CONFIG_FILE=%s", config_file,
1259 LOG_MESSAGE("%s: %s", config_file, buffer),
1260 unit_fmt, unit,
1261 NULL);
1262 } else if (unit)
6bfb1daf
ZJS
1263 return log_struct_internal(
1264 LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1265 error,
1266 file, line, func,
1267 "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1268 LOG_MESSAGE("%s: %s", unit, buffer),
1269 unit_fmt, unit,
1270 NULL);
1271 else
1272 return log_struct_internal(
1273 LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1274 error,
1275 file, line, func,
1276 "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1277 LOG_MESSAGE("%s", buffer),
1278 NULL);
158350e8 1279}
48a601fe 1280
d04ce5a9
LP
1281int log_syntax_invalid_utf8_internal(
1282 const char *unit,
1283 int level,
1284 const char *config_file,
1285 unsigned config_line,
1286 const char *file,
1287 int line,
1288 const char *func,
1289 const char *rvalue) {
1290
1291 _cleanup_free_ char *p = NULL;
1292
1293 if (rvalue)
1294 p = utf8_escape_invalid(rvalue);
1295
1296 log_syntax_internal(unit, level, config_file, config_line, 0, file, line, func,
1297 "String is not UTF-8 clean, ignoring assignment: %s", strna(p));
1298
1299 return -EINVAL;
1300}
1301
16e4fd87
LP
1302void log_set_upgrade_syslog_to_journal(bool b) {
1303 upgrade_syslog_to_journal = b;
6fdb8de4
LP
1304
1305 /* Make the change effective immediately */
1306 if (b) {
1307 if (log_target == LOG_TARGET_SYSLOG)
1308 log_target = LOG_TARGET_JOURNAL;
1309 else if (log_target == LOG_TARGET_SYSLOG_OR_KMSG)
1310 log_target = LOG_TARGET_JOURNAL_OR_KMSG;
1311 }
16e4fd87
LP
1312}
1313
48a601fe
LP
1314void log_set_always_reopen_console(bool b) {
1315 always_reopen_console = b;
1316}
16e4fd87
LP
1317
1318void log_set_open_when_needed(bool b) {
1319 open_when_needed = b;
1320}
dccca82b 1321
adf47c91
LP
1322void log_set_prohibit_ipc(bool b) {
1323 prohibit_ipc = b;
1324}
1325
dccca82b
LP
1326int log_emergency_level(void) {
1327 /* Returns the log level to use for log_emergency() logging. We use LOG_EMERG only when we are PID 1, as only
1328 * then the system of the whole system is obviously affected. */
1329
1330 return getpid_cached() == 1 ? LOG_EMERG : LOG_ERR;
1331}
17cac366
LP
1332
1333int log_dup_console(void) {
1334 int copy;
1335
1336 /* Duplicate the fd we use for fd logging if it's < 3 and use the copy from now on. This call is useful
1337 * whenever we want to continue logging through the original fd, but want to rearrange stderr. */
1338
1339 if (console_fd >= 3)
1340 return 0;
1341
1342 copy = fcntl(console_fd, F_DUPFD_CLOEXEC, 3);
1343 if (copy < 0)
1344 return -errno;
1345
1346 console_fd = copy;
1347 return 0;
1348}
6bf3c61c
LP
1349
1350void log_setup_service(void) {
1351 /* Sets up logging the way it is most appropriate for running a program as a service. Note that using this
1352 * doesn't make the binary unsuitable for invocation on the command line, as log output will still go to the
1353 * terminal if invoked interactively. */
1354
1355 log_set_target(LOG_TARGET_AUTO);
1356 log_parse_environment();
e11a5c72 1357 (void) log_open();
6bf3c61c 1358}