chiark / gitweb /
df1a775f11652969c1439d149ae941e6248071f5
[elogind.git] / src / basic / log.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2010 Lennart Poettering
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <inttypes.h>
23 #include <limits.h>
24 #include <stdarg.h>
25 #include <stddef.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <sys/signalfd.h>
29 #include <sys/socket.h>
30 #include <sys/time.h>
31 #include <sys/uio.h>
32 #include <sys/un.h>
33 #include <time.h>
34 #include <unistd.h>
35
36 #include "sd-messages.h"
37
38 #include "alloc-util.h"
39 #include "fd-util.h"
40 #include "format-util.h"
41 #include "io-util.h"
42 #include "log.h"
43 #include "macro.h"
44 #include "missing.h"
45 #include "parse-util.h"
46 #include "proc-cmdline.h"
47 #include "process-util.h"
48 #include "signal-util.h"
49 #include "socket-util.h"
50 #include "stdio-util.h"
51 #include "string-table.h"
52 #include "string-util.h"
53 #include "syslog-util.h"
54 #include "terminal-util.h"
55 #include "time-util.h"
56 #include "util.h"
57
58 #define SNDBUF_SIZE (8*1024*1024)
59
60 static LogTarget log_target = LOG_TARGET_CONSOLE;
61 static int log_max_level[] = {LOG_INFO, LOG_INFO};
62 assert_cc(ELEMENTSOF(log_max_level) == _LOG_REALM_MAX);
63 static int log_facility = LOG_DAEMON;
64
65 static int console_fd = STDERR_FILENO;
66 static int syslog_fd = -1;
67 static int kmsg_fd = -1;
68 static int journal_fd = -1;
69
70 static bool syslog_is_stream = false;
71
72 static bool show_color = false;
73 static bool show_location = false;
74
75 #if 0 /// UNNEEDED by elogind
76 static bool upgrade_syslog_to_journal = false;
77 #endif // 0
78 static bool always_reopen_console = false;
79
80 /* Akin to glibc's __abort_msg; which is private and we hence cannot
81  * use here. */
82 static char *log_abort_msg = NULL;
83
84 void log_close_console(void) {
85
86         if (console_fd < 0)
87                 return;
88
89         if (getpid() == 1) {
90                 if (console_fd >= 3)
91                         safe_close(console_fd);
92
93                 console_fd = -1;
94         }
95 }
96
97 static int log_open_console(void) {
98
99         if (console_fd >= 0)
100                 return 0;
101
102         if (always_reopen_console) {
103                 console_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
104                 if (console_fd < 0)
105                         return console_fd;
106         } else
107                 console_fd = STDERR_FILENO;
108
109         return 0;
110 }
111
112 void log_close_kmsg(void) {
113         kmsg_fd = safe_close(kmsg_fd);
114 }
115
116 static int log_open_kmsg(void) {
117
118         if (kmsg_fd >= 0)
119                 return 0;
120
121         kmsg_fd = open("/dev/kmsg", O_WRONLY|O_NOCTTY|O_CLOEXEC);
122         if (kmsg_fd < 0)
123                 return -errno;
124
125         return 0;
126 }
127
128 void log_close_syslog(void) {
129         syslog_fd = safe_close(syslog_fd);
130 }
131
132 static int create_log_socket(int type) {
133         struct timeval tv;
134         int fd;
135
136         fd = socket(AF_UNIX, type|SOCK_CLOEXEC, 0);
137         if (fd < 0)
138                 return -errno;
139
140         (void) fd_inc_sndbuf(fd, SNDBUF_SIZE);
141
142         /* We need a blocking fd here since we'd otherwise lose
143         messages way too early. However, let's not hang forever in the
144         unlikely case of a deadlock. */
145         if (getpid() == 1)
146                 timeval_store(&tv, 10 * USEC_PER_MSEC);
147         else
148                 timeval_store(&tv, 10 * USEC_PER_SEC);
149         (void) setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
150
151         return fd;
152 }
153
154 static int log_open_syslog(void) {
155
156         static const union sockaddr_union sa = {
157                 .un.sun_family = AF_UNIX,
158                 .un.sun_path = "/dev/log",
159         };
160
161         int r;
162
163         if (syslog_fd >= 0)
164                 return 0;
165
166         syslog_fd = create_log_socket(SOCK_DGRAM);
167         if (syslog_fd < 0) {
168                 r = syslog_fd;
169                 goto fail;
170         }
171
172         if (connect(syslog_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
173                 safe_close(syslog_fd);
174
175                 /* Some legacy syslog systems still use stream
176                  * sockets. They really shouldn't. But what can we
177                  * do... */
178                 syslog_fd = create_log_socket(SOCK_STREAM);
179                 if (syslog_fd < 0) {
180                         r = syslog_fd;
181                         goto fail;
182                 }
183
184                 if (connect(syslog_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
185                         r = -errno;
186                         goto fail;
187                 }
188
189                 syslog_is_stream = true;
190         } else
191                 syslog_is_stream = false;
192
193         return 0;
194
195 fail:
196         log_close_syslog();
197         return r;
198 }
199
200 void log_close_journal(void) {
201 #if 0 /// elogind does not support journald
202         journal_fd = safe_close(journal_fd);
203 #endif // 0
204 }
205
206 #if 0 /// UNNEEDED by elogind
207 static int log_open_journal(void) {
208
209         static const union sockaddr_union sa = {
210                 .un.sun_family = AF_UNIX,
211                 .un.sun_path = "/run/systemd/journal/socket",
212         };
213
214         int r;
215
216         if (journal_fd >= 0)
217                 return 0;
218
219         journal_fd = create_log_socket(SOCK_DGRAM);
220         if (journal_fd < 0) {
221                 r = journal_fd;
222                 goto fail;
223         }
224
225         if (connect(journal_fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
226                 r = -errno;
227                 goto fail;
228         }
229
230         return 0;
231
232 fail:
233         log_close_journal();
234         return r;
235 }
236 #endif // 0
237
238 int log_open(void) {
239         int r;
240
241         /* If we don't use the console we close it here, to not get
242          * killed by SAK. If we don't use syslog we close it here so
243          * that we are not confused by somebody deleting the socket in
244          * the fs. If we don't use /dev/kmsg we still keep it open,
245          * because there is no reason to close it. */
246
247         if (log_target == LOG_TARGET_NULL) {
248                 log_close_journal();
249                 log_close_syslog();
250                 log_close_console();
251                 return 0;
252         }
253
254         if (!IN_SET(log_target, LOG_TARGET_AUTO, LOG_TARGET_SAFE) ||
255             getpid() == 1 ||
256             isatty(STDERR_FILENO) <= 0) {
257
258 #if 0 /// elogind does not support logging to systemd-journald
259                 if (IN_SET(log_target, LOG_TARGET_AUTO,
260                                        LOG_TARGET_JOURNAL_OR_KMSG,
261                                        LOG_TARGET_JOURNAL)) {
262                         r = log_open_journal();
263                         if (r >= 0) {
264                                 log_close_syslog();
265                                 log_close_console();
266                                 return r;
267                         }
268                 }
269 #endif // 0
270
271                 if (IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
272                                        LOG_TARGET_SYSLOG)) {
273                         r = log_open_syslog();
274                         if (r >= 0) {
275                                 log_close_journal();
276                                 log_close_console();
277                                 return r;
278                         }
279                 }
280
281                 if (IN_SET(log_target, LOG_TARGET_AUTO,
282                                        LOG_TARGET_SAFE,
283                                        LOG_TARGET_JOURNAL_OR_KMSG,
284                                        LOG_TARGET_SYSLOG_OR_KMSG,
285                                        LOG_TARGET_KMSG)) {
286                         r = log_open_kmsg();
287                         if (r >= 0) {
288                                 log_close_journal();
289                                 log_close_syslog();
290                                 log_close_console();
291                                 return r;
292                         }
293                 }
294         }
295
296         log_close_journal();
297         log_close_syslog();
298
299         return log_open_console();
300 }
301
302 void log_set_target(LogTarget target) {
303         assert(target >= 0);
304         assert(target < _LOG_TARGET_MAX);
305
306 #if 0 /// elogind does not support logging to systemd-journald
307         if (upgrade_syslog_to_journal) {
308                 if (target == LOG_TARGET_SYSLOG)
309                         target = LOG_TARGET_JOURNAL;
310                 else if (target == LOG_TARGET_SYSLOG_OR_KMSG)
311                         target = LOG_TARGET_JOURNAL_OR_KMSG;
312         }
313 #endif // 0
314
315         log_target = target;
316 }
317
318 void log_close(void) {
319         log_close_journal();
320         log_close_syslog();
321         log_close_kmsg();
322         log_close_console();
323 }
324
325 #if 0 /// UNNEEDED by elogind
326 void log_forget_fds(void) {
327         console_fd = kmsg_fd = syslog_fd = journal_fd = -1;
328 }
329 #endif // 0
330
331 void log_set_max_level_realm(LogRealm realm, int level) {
332         assert((level & LOG_PRIMASK) == level);
333         assert(realm < ELEMENTSOF(log_max_level));
334
335         log_max_level[realm] = level;
336 }
337
338 void log_set_facility(int facility) {
339         log_facility = facility;
340 }
341
342 static int write_to_console(
343                 int level,
344                 int error,
345                 const char *file,
346                 int line,
347                 const char *func,
348                 const char *buffer) {
349
350         char location[256], prefix[1 + DECIMAL_STR_MAX(int) + 2];
351         struct iovec iovec[6] = {};
352         unsigned n = 0;
353         bool highlight;
354
355         if (console_fd < 0)
356                 return 0;
357
358         if (log_target == LOG_TARGET_CONSOLE_PREFIXED) {
359                 xsprintf(prefix, "<%i>", level);
360                 IOVEC_SET_STRING(iovec[n++], prefix);
361         }
362
363         highlight = LOG_PRI(level) <= LOG_ERR && show_color;
364
365         if (show_location) {
366                 snprintf(location, sizeof(location), "(%s:%i) ", file, line);
367                 IOVEC_SET_STRING(iovec[n++], location);
368         }
369
370         if (highlight)
371                 IOVEC_SET_STRING(iovec[n++], ANSI_HIGHLIGHT_RED);
372         IOVEC_SET_STRING(iovec[n++], buffer);
373         if (highlight)
374                 IOVEC_SET_STRING(iovec[n++], ANSI_NORMAL);
375         IOVEC_SET_STRING(iovec[n++], "\n");
376
377         if (writev(console_fd, iovec, n) < 0) {
378
379                 if (errno == EIO && getpid() == 1) {
380
381                         /* If somebody tried to kick us from our
382                          * console tty (via vhangup() or suchlike),
383                          * try to reconnect */
384
385                         log_close_console();
386                         log_open_console();
387
388                         if (console_fd < 0)
389                                 return 0;
390
391                         if (writev(console_fd, iovec, n) < 0)
392                                 return -errno;
393                 } else
394                         return -errno;
395         }
396
397         return 1;
398 }
399
400 static int write_to_syslog(
401                 int level,
402                 int error,
403                 const char *file,
404                 int line,
405                 const char *func,
406                 const char *buffer) {
407
408         char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
409              header_time[64],
410              header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
411         struct iovec iovec[5] = {};
412         struct msghdr msghdr = {
413                 .msg_iov = iovec,
414                 .msg_iovlen = ELEMENTSOF(iovec),
415         };
416         time_t t;
417         struct tm *tm;
418
419         if (syslog_fd < 0)
420                 return 0;
421
422         xsprintf(header_priority, "<%i>", level);
423
424         t = (time_t) (now(CLOCK_REALTIME) / USEC_PER_SEC);
425         tm = localtime(&t);
426         if (!tm)
427                 return -EINVAL;
428
429         if (strftime(header_time, sizeof(header_time), "%h %e %T ", tm) <= 0)
430                 return -EINVAL;
431
432         xsprintf(header_pid, "["PID_FMT"]: ", getpid());
433
434         IOVEC_SET_STRING(iovec[0], header_priority);
435         IOVEC_SET_STRING(iovec[1], header_time);
436         IOVEC_SET_STRING(iovec[2], program_invocation_short_name);
437         IOVEC_SET_STRING(iovec[3], header_pid);
438         IOVEC_SET_STRING(iovec[4], buffer);
439
440         /* When using syslog via SOCK_STREAM separate the messages by NUL chars */
441         if (syslog_is_stream)
442                 iovec[4].iov_len++;
443
444         for (;;) {
445                 ssize_t n;
446
447                 n = sendmsg(syslog_fd, &msghdr, MSG_NOSIGNAL);
448                 if (n < 0)
449                         return -errno;
450
451                 if (!syslog_is_stream ||
452                     (size_t) n >= IOVEC_TOTAL_SIZE(iovec, ELEMENTSOF(iovec)))
453                         break;
454
455                 IOVEC_INCREMENT(iovec, ELEMENTSOF(iovec), n);
456         }
457
458         return 1;
459 }
460
461 static int write_to_kmsg(
462                 int level,
463                 int error,
464                 const char *file,
465                 int line,
466                 const char *func,
467                 const char *buffer) {
468
469         char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
470              header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
471         struct iovec iovec[5] = {};
472
473         if (kmsg_fd < 0)
474                 return 0;
475
476         xsprintf(header_priority, "<%i>", level);
477         xsprintf(header_pid, "["PID_FMT"]: ", getpid());
478
479         IOVEC_SET_STRING(iovec[0], header_priority);
480         IOVEC_SET_STRING(iovec[1], program_invocation_short_name);
481         IOVEC_SET_STRING(iovec[2], header_pid);
482         IOVEC_SET_STRING(iovec[3], buffer);
483         IOVEC_SET_STRING(iovec[4], "\n");
484
485         if (writev(kmsg_fd, iovec, ELEMENTSOF(iovec)) < 0)
486                 return -errno;
487
488         return 1;
489 }
490
491 #if 0 /// UNNEEDED by elogind
492 static int log_do_header(
493                 char *header,
494                 size_t size,
495                 int level,
496                 int error,
497                 const char *file, int line, const char *func,
498                 const char *object_field, const char *object,
499                 const char *extra_field, const char *extra) {
500
501         snprintf(header, size,
502                  "PRIORITY=%i\n"
503                  "SYSLOG_FACILITY=%i\n"
504                  "%s%s%s"
505                  "%s%.*i%s"
506                  "%s%s%s"
507                  "%s%.*i%s"
508                  "%s%s%s"
509                  "%s%s%s"
510                  "SYSLOG_IDENTIFIER=%s\n",
511                  LOG_PRI(level),
512                  LOG_FAC(level),
513                  isempty(file) ? "" : "CODE_FILE=",
514                  isempty(file) ? "" : file,
515                  isempty(file) ? "" : "\n",
516                  line ? "CODE_LINE=" : "",
517                  line ? 1 : 0, line, /* %.0d means no output too, special case for 0 */
518                  line ? "\n" : "",
519                  isempty(func) ? "" : "CODE_FUNC=",
520                  isempty(func) ? "" : func,
521                  isempty(func) ? "" : "\n",
522                  error ? "ERRNO=" : "",
523                  error ? 1 : 0, error,
524                  error ? "\n" : "",
525                  isempty(object) ? "" : object_field,
526                  isempty(object) ? "" : object,
527                  isempty(object) ? "" : "\n",
528                  isempty(extra) ? "" : extra_field,
529                  isempty(extra) ? "" : extra,
530                  isempty(extra) ? "" : "\n",
531                  program_invocation_short_name);
532
533         return 0;
534 }
535
536 static int write_to_journal(
537                 int level,
538                 int error,
539                 const char *file,
540                 int line,
541                 const char *func,
542                 const char *object_field,
543                 const char *object,
544                 const char *extra_field,
545                 const char *extra,
546                 const char *buffer) {
547
548         char header[LINE_MAX];
549         struct iovec iovec[4] = {};
550         struct msghdr mh = {};
551
552         if (journal_fd < 0)
553                 return 0;
554
555         log_do_header(header, sizeof(header), level, error, file, line, func, object_field, object, extra_field, extra);
556
557         IOVEC_SET_STRING(iovec[0], header);
558         IOVEC_SET_STRING(iovec[1], "MESSAGE=");
559         IOVEC_SET_STRING(iovec[2], buffer);
560         IOVEC_SET_STRING(iovec[3], "\n");
561
562         mh.msg_iov = iovec;
563         mh.msg_iovlen = ELEMENTSOF(iovec);
564
565         if (sendmsg(journal_fd, &mh, MSG_NOSIGNAL) < 0)
566                 return -errno;
567
568         return 1;
569 }
570 #endif // 0
571
572 int log_dispatch_internal(
573                 int level,
574                 int error,
575                 const char *file,
576                 int line,
577                 const char *func,
578                 const char *object_field,
579                 const char *object,
580                 const char *extra,
581                 const char *extra_field,
582                 char *buffer) {
583
584         assert(buffer);
585
586         if (error < 0)
587                 error = -error;
588
589         if (log_target == LOG_TARGET_NULL)
590                 return -error;
591
592         /* Patch in LOG_DAEMON facility if necessary */
593         if ((level & LOG_FACMASK) == 0)
594                 level = log_facility | LOG_PRI(level);
595
596         do {
597                 char *e;
598                 int k = 0;
599
600                 buffer += strspn(buffer, NEWLINE);
601
602                 if (buffer[0] == 0)
603                         break;
604
605                 if ((e = strpbrk(buffer, NEWLINE)))
606                         *(e++) = 0;
607
608 #if 0 /// elogind does not support logging to systemd-journald
609                 if (IN_SET(log_target, LOG_TARGET_AUTO,
610                                        LOG_TARGET_JOURNAL_OR_KMSG,
611                                        LOG_TARGET_JOURNAL)) {
612
613                         k = write_to_journal(level, error, file, line, func, object_field, object, extra_field, extra, buffer);
614                         if (k < 0) {
615                                 if (k != -EAGAIN)
616                                         log_close_journal();
617                                 log_open_kmsg();
618                         }
619                 }
620 #endif // 0
621
622                 if (IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
623                                        LOG_TARGET_SYSLOG)) {
624
625                         k = write_to_syslog(level, error, file, line, func, buffer);
626                         if (k < 0) {
627                                 if (k != -EAGAIN)
628                                         log_close_syslog();
629                                 log_open_kmsg();
630                         }
631                 }
632
633                 if (k <= 0 &&
634                     IN_SET(log_target, LOG_TARGET_AUTO,
635                                        LOG_TARGET_SAFE,
636                                        LOG_TARGET_SYSLOG_OR_KMSG,
637                                        LOG_TARGET_JOURNAL_OR_KMSG,
638                                        LOG_TARGET_KMSG)) {
639
640                         k = write_to_kmsg(level, error, file, line, func, buffer);
641                         if (k < 0) {
642                                 log_close_kmsg();
643                                 log_open_console();
644                         }
645                 }
646
647                 if (k <= 0)
648                         (void) write_to_console(level, error, file, line, func, buffer);
649
650                 buffer = e;
651         } while (buffer);
652
653         return -error;
654 }
655
656 int log_dump_internal(
657                 int level,
658                 int error,
659                 const char *file,
660                 int line,
661                 const char *func,
662                 char *buffer) {
663
664         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
665         PROTECT_ERRNO;
666
667         /* This modifies the buffer... */
668
669         if (error < 0)
670                 error = -error;
671
672         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
673                 return -error;
674
675         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
676 }
677
678 int log_internalv_realm(
679                 int level,
680                 int error,
681                 const char *file,
682                 int line,
683                 const char *func,
684                 const char *format,
685                 va_list ap) {
686
687         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
688         char buffer[LINE_MAX];
689         PROTECT_ERRNO;
690
691         if (error < 0)
692                 error = -error;
693
694         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
695                 return -error;
696
697         /* Make sure that %m maps to the specified error */
698         if (error != 0)
699                 errno = error;
700
701         vsnprintf(buffer, sizeof(buffer), format, ap);
702
703         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
704 }
705
706 int log_internal_realm(
707                 int level,
708                 int error,
709                 const char *file,
710                 int line,
711                 const char *func,
712                 const char *format, ...) {
713
714         va_list ap;
715         int r;
716
717         va_start(ap, format);
718         r = log_internalv_realm(level, error, file, line, func, format, ap);
719         va_end(ap);
720
721         return r;
722 }
723
724 int log_object_internalv(
725                 int level,
726                 int error,
727                 const char *file,
728                 int line,
729                 const char *func,
730                 const char *object_field,
731                 const char *object,
732                 const char *extra_field,
733                 const char *extra,
734                 const char *format,
735                 va_list ap) {
736
737         PROTECT_ERRNO;
738         char *buffer, *b;
739         size_t l;
740
741         if (error < 0)
742                 error = -error;
743
744         if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]))
745                 return -error;
746
747         /* Make sure that %m maps to the specified error */
748         if (error != 0)
749                 errno = error;
750
751         /* Prepend the object name before the message */
752         if (object) {
753                 size_t n;
754
755                 n = strlen(object);
756                 l = n + 2 + LINE_MAX;
757
758                 buffer = newa(char, l);
759                 b = stpcpy(stpcpy(buffer, object), ": ");
760         } else {
761                 l = LINE_MAX;
762                 b = buffer = newa(char, l);
763         }
764
765         vsnprintf(b, l, format, ap);
766
767         return log_dispatch_internal(level, error, file, line, func,
768                                      object_field, object, extra_field, extra, buffer);
769 }
770
771 int log_object_internal(
772                 int level,
773                 int error,
774                 const char *file,
775                 int line,
776                 const char *func,
777                 const char *object_field,
778                 const char *object,
779                 const char *extra_field,
780                 const char *extra,
781                 const char *format, ...) {
782
783         va_list ap;
784         int r;
785
786         va_start(ap, format);
787         r = log_object_internalv(level, error, file, line, func, object_field, object, extra_field, extra, format, ap);
788         va_end(ap);
789
790         return r;
791 }
792
793 static void log_assert(
794                 int level,
795                 const char *text,
796                 const char *file,
797                 int line,
798                 const char *func,
799                 const char *format) {
800
801         static char buffer[LINE_MAX];
802         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
803
804         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
805                 return;
806
807         DISABLE_WARNING_FORMAT_NONLITERAL;
808         snprintf(buffer, sizeof buffer, format, text, file, line, func);
809         REENABLE_WARNING;
810
811         log_abort_msg = buffer;
812
813         log_dispatch_internal(level, 0, file, line, func, NULL, NULL, NULL, NULL, buffer);
814 }
815
816 noreturn void log_assert_failed_realm(
817                 LogRealm realm,
818                 const char *text,
819                 const char *file,
820                 int line,
821                 const char *func) {
822         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
823                    "Assertion '%s' failed at %s:%u, function %s(). Aborting.");
824         abort();
825 }
826
827 noreturn void log_assert_failed_unreachable_realm(
828                 LogRealm realm,
829                 const char *text,
830                 const char *file,
831                 int line,
832                 const char *func) {
833         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
834                    "Code should not be reached '%s' at %s:%u, function %s(). Aborting.");
835         abort();
836 }
837
838 void log_assert_failed_return_realm(
839                 LogRealm realm,
840                 const char *text,
841                 const char *file,
842                 int line,
843                 const char *func) {
844         PROTECT_ERRNO;
845         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_DEBUG), text, file, line, func,
846                    "Assertion '%s' failed at %s:%u, function %s(). Ignoring.");
847 }
848
849 int log_oom_internal(LogRealm realm, const char *file, int line, const char *func) {
850         log_internal_realm(LOG_REALM_PLUS_LEVEL(realm, LOG_ERR),
851                            ENOMEM, file, line, func, "Out of memory.");
852         return -ENOMEM;
853 }
854
855 int log_format_iovec(
856                 struct iovec *iovec,
857                 unsigned iovec_len,
858                 unsigned *n,
859                 bool newline_separator,
860                 int error,
861                 const char *format,
862                 va_list ap) {
863
864         static const char nl = '\n';
865
866         while (format && *n + 1 < iovec_len) {
867                 va_list aq;
868                 char *m;
869                 int r;
870
871                 /* We need to copy the va_list structure,
872                  * since vasprintf() leaves it afterwards at
873                  * an undefined location */
874
875                 if (error != 0)
876                         errno = error;
877
878                 va_copy(aq, ap);
879                 r = vasprintf(&m, format, aq);
880                 va_end(aq);
881                 if (r < 0)
882                         return -EINVAL;
883
884                 /* Now, jump enough ahead, so that we point to
885                  * the next format string */
886                 VA_FORMAT_ADVANCE(format, ap);
887
888                 IOVEC_SET_STRING(iovec[(*n)++], m);
889
890                 if (newline_separator) {
891                         iovec[*n].iov_base = (char*) &nl;
892                         iovec[*n].iov_len = 1;
893                         (*n)++;
894                 }
895
896                 format = va_arg(ap, char *);
897         }
898         return 0;
899 }
900
901 int log_struct_internal(
902                 int level,
903                 int error,
904                 const char *file,
905                 int line,
906                 const char *func,
907                 const char *format, ...) {
908
909         char buf[LINE_MAX];
910         bool found = false;
911         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
912         PROTECT_ERRNO;
913         va_list ap;
914
915         if (error < 0)
916                 error = -error;
917
918         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
919                 return -error;
920
921         if (log_target == LOG_TARGET_NULL)
922                 return -error;
923
924         if ((level & LOG_FACMASK) == 0)
925                 level = log_facility | LOG_PRI(level);
926
927 #if 0 /// elogind does not support logging to systemd-journald
928         if (IN_SET(log_target, LOG_TARGET_AUTO,
929                                LOG_TARGET_JOURNAL_OR_KMSG,
930                                LOG_TARGET_JOURNAL) &&
931             journal_fd >= 0) {
932                 char header[LINE_MAX];
933                 struct iovec iovec[17] = {};
934                 unsigned n = 0, i;
935                 int r;
936                 struct msghdr mh = {
937                         .msg_iov = iovec,
938                 };
939                 bool fallback = false;
940
941                 /* If the journal is available do structured logging */
942                 log_do_header(header, sizeof(header), level, error, file, line, func, NULL, NULL, NULL, NULL);
943                 IOVEC_SET_STRING(iovec[n++], header);
944
945                 va_start(ap, format);
946                 r = log_format_iovec(iovec, ELEMENTSOF(iovec), &n, true, error, format, ap);
947                 if (r < 0)
948                         fallback = true;
949                 else {
950                         mh.msg_iovlen = n;
951                         (void) sendmsg(journal_fd, &mh, MSG_NOSIGNAL);
952                 }
953
954                 va_end(ap);
955                 for (i = 1; i < n; i += 2)
956                         free(iovec[i].iov_base);
957
958                 if (!fallback)
959                         return -error;
960         }
961 #endif // 0
962
963         /* Fallback if journal logging is not available or didn't work. */
964
965         va_start(ap, format);
966         while (format) {
967                 va_list aq;
968
969                 if (error != 0)
970                         errno = error;
971
972                 va_copy(aq, ap);
973                 vsnprintf(buf, sizeof(buf), format, aq);
974                 va_end(aq);
975
976                 if (startswith(buf, "MESSAGE=")) {
977                         found = true;
978                         break;
979                 }
980
981                 VA_FORMAT_ADVANCE(format, ap);
982
983                 format = va_arg(ap, char *);
984         }
985         va_end(ap);
986
987         if (!found)
988                 return -error;
989
990         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buf + 8);
991 }
992
993 int log_set_target_from_string(const char *e) {
994         LogTarget t;
995
996         t = log_target_from_string(e);
997         if (t < 0)
998                 return -EINVAL;
999
1000         log_set_target(t);
1001         return 0;
1002 }
1003
1004 int log_set_max_level_from_string_realm(LogRealm realm, const char *e) {
1005         int t;
1006
1007         t = log_level_from_string(e);
1008         if (t < 0)
1009                 return -EINVAL;
1010
1011         log_set_max_level_realm(realm, t);
1012         return 0;
1013 }
1014
1015 static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
1016
1017         /*
1018          * The systemd.log_xyz= settings are parsed by all tools, and
1019          * so is "debug".
1020          *
1021          * However, "quiet" is only parsed by PID 1, and only turns of
1022          * status output to /dev/console, but does not alter the log
1023          * level.
1024          */
1025
1026         if (streq(key, "debug") && !value)
1027                 log_set_max_level(LOG_DEBUG);
1028
1029         else if (proc_cmdline_key_streq(key, "systemd.log_target")) {
1030
1031                 if (proc_cmdline_value_missing(key, value))
1032                         return 0;
1033
1034                 if (log_set_target_from_string(value) < 0)
1035                         log_warning("Failed to parse log target '%s'. Ignoring.", value);
1036
1037         } else if (proc_cmdline_key_streq(key, "systemd.log_level")) {
1038
1039                 if (proc_cmdline_value_missing(key, value))
1040                         return 0;
1041
1042                 if (log_set_max_level_from_string(value) < 0)
1043                         log_warning("Failed to parse log level '%s'. Ignoring.", value);
1044
1045         } else if (proc_cmdline_key_streq(key, "systemd.log_color")) {
1046
1047                 if (log_show_color_from_string(value ?: "1") < 0)
1048                         log_warning("Failed to parse log color setting '%s'. Ignoring.", value);
1049
1050         } else if (proc_cmdline_key_streq(key, "systemd.log_location")) {
1051
1052                 if (log_show_location_from_string(value ?: "1") < 0)
1053                         log_warning("Failed to parse log location setting '%s'. Ignoring.", value);
1054         }
1055
1056         return 0;
1057 }
1058
1059 void log_parse_environment_realm(LogRealm realm) {
1060         const char *e;
1061
1062         if (get_ctty_devnr(0, NULL) < 0)
1063                 /* Only try to read the command line in daemons.  We assume that anything that has a controlling tty is
1064                    user stuff. */
1065                 (void) proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_STRIP_RD_PREFIX);
1066
1067         e = secure_getenv("SYSTEMD_LOG_TARGET");
1068         if (e && log_set_target_from_string(e) < 0)
1069                 log_warning("Failed to parse log target '%s'. Ignoring.", e);
1070
1071         e = secure_getenv("SYSTEMD_LOG_LEVEL");
1072         if (e && log_set_max_level_from_string_realm(realm, e) < 0)
1073                 log_warning("Failed to parse log level '%s'. Ignoring.", e);
1074
1075         e = secure_getenv("SYSTEMD_LOG_COLOR");
1076         if (e && log_show_color_from_string(e) < 0)
1077                 log_warning("Failed to parse bool '%s'. Ignoring.", e);
1078
1079         e = secure_getenv("SYSTEMD_LOG_LOCATION");
1080         if (e && log_show_location_from_string(e) < 0)
1081                 log_warning("Failed to parse bool '%s'. Ignoring.", e);
1082 }
1083
1084 LogTarget log_get_target(void) {
1085         return log_target;
1086 }
1087
1088 int log_get_max_level_realm(LogRealm realm) {
1089         return log_max_level[realm];
1090 }
1091
1092 void log_show_color(bool b) {
1093         show_color = b;
1094 }
1095
1096 bool log_get_show_color(void) {
1097         return show_color;
1098 }
1099
1100 void log_show_location(bool b) {
1101         show_location = b;
1102 }
1103
1104 bool log_get_show_location(void) {
1105         return show_location;
1106 }
1107
1108 int log_show_color_from_string(const char *e) {
1109         int t;
1110
1111         t = parse_boolean(e);
1112         if (t < 0)
1113                 return t;
1114
1115         log_show_color(t);
1116         return 0;
1117 }
1118
1119 int log_show_location_from_string(const char *e) {
1120         int t;
1121
1122         t = parse_boolean(e);
1123         if (t < 0)
1124                 return t;
1125
1126         log_show_location(t);
1127         return 0;
1128 }
1129
1130 bool log_on_console(void) {
1131         if (IN_SET(log_target, LOG_TARGET_CONSOLE,
1132                                LOG_TARGET_CONSOLE_PREFIXED))
1133                 return true;
1134
1135         return syslog_fd < 0 && kmsg_fd < 0 && journal_fd < 0;
1136 }
1137
1138 static const char *const log_target_table[_LOG_TARGET_MAX] = {
1139         [LOG_TARGET_CONSOLE] = "console",
1140         [LOG_TARGET_CONSOLE_PREFIXED] = "console-prefixed",
1141         [LOG_TARGET_KMSG] = "kmsg",
1142 #if 0 /// elogind does not support logging to systemd-journald
1143         [LOG_TARGET_JOURNAL] = "journal",
1144         [LOG_TARGET_JOURNAL_OR_KMSG] = "journal-or-kmsg",
1145 #endif // 0
1146         [LOG_TARGET_SYSLOG] = "syslog",
1147         [LOG_TARGET_SYSLOG_OR_KMSG] = "syslog-or-kmsg",
1148         [LOG_TARGET_AUTO] = "auto",
1149         [LOG_TARGET_SAFE] = "safe",
1150         [LOG_TARGET_NULL] = "null"
1151 };
1152
1153 DEFINE_STRING_TABLE_LOOKUP(log_target, LogTarget);
1154
1155 #if 0 /// UNNEEDED by elogind
1156 void log_received_signal(int level, const struct signalfd_siginfo *si) {
1157         if (si->ssi_pid > 0) {
1158                 _cleanup_free_ char *p = NULL;
1159
1160                 get_process_comm(si->ssi_pid, &p);
1161
1162                 log_full(level,
1163                          "Received SIG%s from PID %"PRIu32" (%s).",
1164                          signal_to_string(si->ssi_signo),
1165                          si->ssi_pid, strna(p));
1166         } else
1167                 log_full(level,
1168                          "Received SIG%s.",
1169                          signal_to_string(si->ssi_signo));
1170
1171 }
1172
1173 void log_set_upgrade_syslog_to_journal(bool b) {
1174         upgrade_syslog_to_journal = b;
1175 }
1176 #endif // 0
1177
1178 int log_syntax_internal(
1179                 const char *unit,
1180                 int level,
1181                 const char *config_file,
1182                 unsigned config_line,
1183                 int error,
1184                 const char *file,
1185                 int line,
1186                 const char *func,
1187                 const char *format, ...) {
1188
1189         PROTECT_ERRNO;
1190         char buffer[LINE_MAX];
1191         va_list ap;
1192         const char *unit_fmt = NULL;
1193
1194         if (error < 0)
1195                 error = -error;
1196
1197         if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]))
1198                 return -error;
1199
1200         if (log_target == LOG_TARGET_NULL)
1201                 return -error;
1202
1203         if (error != 0)
1204                 errno = error;
1205
1206         va_start(ap, format);
1207         vsnprintf(buffer, sizeof(buffer), format, ap);
1208         va_end(ap);
1209
1210         if (unit)
1211                 unit_fmt = getpid() == 1 ? "UNIT=%s" : "USER_UNIT=%s";
1212
1213         return log_struct_internal(
1214                         LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1215                         error,
1216                         file, line, func,
1217                         "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1218                         "CONFIG_FILE=%s", config_file,
1219                         "CONFIG_LINE=%u", config_line,
1220                         LOG_MESSAGE("%s:%u: %s", config_file, config_line, buffer),
1221                         unit_fmt, unit,
1222                         NULL);
1223 }
1224
1225 #if 0 /// UNNEEDED by elogind
1226 void log_set_always_reopen_console(bool b) {
1227         always_reopen_console = b;
1228 }
1229 #endif // 0