chiark / gitweb /
Fix service file to match installed elogind binary location
[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         /* Do not call from library code. */
242
243         /* If we don't use the console we close it here, to not get
244          * killed by SAK. If we don't use syslog we close it here so
245          * that we are not confused by somebody deleting the socket in
246          * the fs. If we don't use /dev/kmsg we still keep it open,
247          * because there is no reason to close it. */
248
249         if (log_target == LOG_TARGET_NULL) {
250                 log_close_journal();
251                 log_close_syslog();
252                 log_close_console();
253                 return 0;
254         }
255
256         if (!IN_SET(log_target, LOG_TARGET_AUTO, LOG_TARGET_SAFE) ||
257             getpid() == 1 ||
258             isatty(STDERR_FILENO) <= 0) {
259
260 #if 0 /// elogind does not support logging to systemd-journald
261                 if (IN_SET(log_target, LOG_TARGET_AUTO,
262                                        LOG_TARGET_JOURNAL_OR_KMSG,
263                                        LOG_TARGET_JOURNAL)) {
264                         r = log_open_journal();
265                         if (r >= 0) {
266                                 log_close_syslog();
267                                 log_close_console();
268                                 return r;
269                         }
270                 }
271 #endif // 0
272
273                 if (IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
274                                        LOG_TARGET_SYSLOG)) {
275                         r = log_open_syslog();
276                         if (r >= 0) {
277                                 log_close_journal();
278                                 log_close_console();
279                                 return r;
280                         }
281                 }
282
283                 if (IN_SET(log_target, LOG_TARGET_AUTO,
284                                        LOG_TARGET_SAFE,
285                                        LOG_TARGET_JOURNAL_OR_KMSG,
286                                        LOG_TARGET_SYSLOG_OR_KMSG,
287                                        LOG_TARGET_KMSG)) {
288                         r = log_open_kmsg();
289                         if (r >= 0) {
290                                 log_close_journal();
291                                 log_close_syslog();
292                                 log_close_console();
293                                 return r;
294                         }
295                 }
296         }
297
298         log_close_journal();
299         log_close_syslog();
300
301         return log_open_console();
302 }
303
304 void log_set_target(LogTarget target) {
305         assert(target >= 0);
306         assert(target < _LOG_TARGET_MAX);
307
308 #if 0 /// elogind does not support logging to systemd-journald
309         if (upgrade_syslog_to_journal) {
310                 if (target == LOG_TARGET_SYSLOG)
311                         target = LOG_TARGET_JOURNAL;
312                 else if (target == LOG_TARGET_SYSLOG_OR_KMSG)
313                         target = LOG_TARGET_JOURNAL_OR_KMSG;
314         }
315 #endif // 0
316
317         log_target = target;
318 }
319
320 void log_close(void) {
321         /* Do not call from library code. */
322
323         log_close_journal();
324         log_close_syslog();
325         log_close_kmsg();
326         log_close_console();
327 }
328
329 #if 0 /// UNNEEDED by elogind
330 void log_forget_fds(void) {
331         /* Do not call from library code. */
332
333         console_fd = kmsg_fd = syslog_fd = journal_fd = -1;
334 }
335 #endif // 0
336
337 void log_set_max_level_realm(LogRealm realm, int level) {
338         assert((level & LOG_PRIMASK) == level);
339         assert(realm < ELEMENTSOF(log_max_level));
340
341         log_max_level[realm] = level;
342 }
343
344 void log_set_facility(int facility) {
345         log_facility = facility;
346 }
347
348 static int write_to_console(
349                 int level,
350                 int error,
351                 const char *file,
352                 int line,
353                 const char *func,
354                 const char *buffer) {
355
356         char location[256], prefix[1 + DECIMAL_STR_MAX(int) + 2];
357         struct iovec iovec[6] = {};
358         unsigned n = 0;
359         bool highlight;
360
361         if (console_fd < 0)
362                 return 0;
363
364         if (log_target == LOG_TARGET_CONSOLE_PREFIXED) {
365                 xsprintf(prefix, "<%i>", level);
366                 IOVEC_SET_STRING(iovec[n++], prefix);
367         }
368
369         highlight = LOG_PRI(level) <= LOG_ERR && show_color;
370
371         if (show_location) {
372                 snprintf(location, sizeof(location), "(%s:%i) ", file, line);
373                 IOVEC_SET_STRING(iovec[n++], location);
374         }
375
376         if (highlight)
377                 IOVEC_SET_STRING(iovec[n++], ANSI_HIGHLIGHT_RED);
378         IOVEC_SET_STRING(iovec[n++], buffer);
379         if (highlight)
380                 IOVEC_SET_STRING(iovec[n++], ANSI_NORMAL);
381         IOVEC_SET_STRING(iovec[n++], "\n");
382
383         if (writev(console_fd, iovec, n) < 0) {
384
385                 if (errno == EIO && getpid() == 1) {
386
387                         /* If somebody tried to kick us from our
388                          * console tty (via vhangup() or suchlike),
389                          * try to reconnect */
390
391                         log_close_console();
392                         log_open_console();
393
394                         if (console_fd < 0)
395                                 return 0;
396
397                         if (writev(console_fd, iovec, n) < 0)
398                                 return -errno;
399                 } else
400                         return -errno;
401         }
402
403         return 1;
404 }
405
406 static int write_to_syslog(
407                 int level,
408                 int error,
409                 const char *file,
410                 int line,
411                 const char *func,
412                 const char *buffer) {
413
414         char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
415              header_time[64],
416              header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
417         struct iovec iovec[5] = {};
418         struct msghdr msghdr = {
419                 .msg_iov = iovec,
420                 .msg_iovlen = ELEMENTSOF(iovec),
421         };
422         time_t t;
423         struct tm *tm;
424
425         if (syslog_fd < 0)
426                 return 0;
427
428         xsprintf(header_priority, "<%i>", level);
429
430         t = (time_t) (now(CLOCK_REALTIME) / USEC_PER_SEC);
431         tm = localtime(&t);
432         if (!tm)
433                 return -EINVAL;
434
435         if (strftime(header_time, sizeof(header_time), "%h %e %T ", tm) <= 0)
436                 return -EINVAL;
437
438         xsprintf(header_pid, "["PID_FMT"]: ", getpid());
439
440         IOVEC_SET_STRING(iovec[0], header_priority);
441         IOVEC_SET_STRING(iovec[1], header_time);
442         IOVEC_SET_STRING(iovec[2], program_invocation_short_name);
443         IOVEC_SET_STRING(iovec[3], header_pid);
444         IOVEC_SET_STRING(iovec[4], buffer);
445
446         /* When using syslog via SOCK_STREAM separate the messages by NUL chars */
447         if (syslog_is_stream)
448                 iovec[4].iov_len++;
449
450         for (;;) {
451                 ssize_t n;
452
453                 n = sendmsg(syslog_fd, &msghdr, MSG_NOSIGNAL);
454                 if (n < 0)
455                         return -errno;
456
457                 if (!syslog_is_stream ||
458                     (size_t) n >= IOVEC_TOTAL_SIZE(iovec, ELEMENTSOF(iovec)))
459                         break;
460
461                 IOVEC_INCREMENT(iovec, ELEMENTSOF(iovec), n);
462         }
463
464         return 1;
465 }
466
467 static int write_to_kmsg(
468                 int level,
469                 int error,
470                 const char *file,
471                 int line,
472                 const char *func,
473                 const char *buffer) {
474
475         char header_priority[2 + DECIMAL_STR_MAX(int) + 1],
476              header_pid[4 + DECIMAL_STR_MAX(pid_t) + 1];
477         struct iovec iovec[5] = {};
478
479         if (kmsg_fd < 0)
480                 return 0;
481
482         xsprintf(header_priority, "<%i>", level);
483         xsprintf(header_pid, "["PID_FMT"]: ", getpid());
484
485         IOVEC_SET_STRING(iovec[0], header_priority);
486         IOVEC_SET_STRING(iovec[1], program_invocation_short_name);
487         IOVEC_SET_STRING(iovec[2], header_pid);
488         IOVEC_SET_STRING(iovec[3], buffer);
489         IOVEC_SET_STRING(iovec[4], "\n");
490
491         if (writev(kmsg_fd, iovec, ELEMENTSOF(iovec)) < 0)
492                 return -errno;
493
494         return 1;
495 }
496
497 #if 0 /// UNNEEDED by elogind
498 static int log_do_header(
499                 char *header,
500                 size_t size,
501                 int level,
502                 int error,
503                 const char *file, int line, const char *func,
504                 const char *object_field, const char *object,
505                 const char *extra_field, const char *extra) {
506
507         snprintf(header, size,
508                  "PRIORITY=%i\n"
509                  "SYSLOG_FACILITY=%i\n"
510                  "%s%s%s"
511                  "%s%.*i%s"
512                  "%s%s%s"
513                  "%s%.*i%s"
514                  "%s%s%s"
515                  "%s%s%s"
516                  "SYSLOG_IDENTIFIER=%s\n",
517                  LOG_PRI(level),
518                  LOG_FAC(level),
519                  isempty(file) ? "" : "CODE_FILE=",
520                  isempty(file) ? "" : file,
521                  isempty(file) ? "" : "\n",
522                  line ? "CODE_LINE=" : "",
523                  line ? 1 : 0, line, /* %.0d means no output too, special case for 0 */
524                  line ? "\n" : "",
525                  isempty(func) ? "" : "CODE_FUNC=",
526                  isempty(func) ? "" : func,
527                  isempty(func) ? "" : "\n",
528                  error ? "ERRNO=" : "",
529                  error ? 1 : 0, error,
530                  error ? "\n" : "",
531                  isempty(object) ? "" : object_field,
532                  isempty(object) ? "" : object,
533                  isempty(object) ? "" : "\n",
534                  isempty(extra) ? "" : extra_field,
535                  isempty(extra) ? "" : extra,
536                  isempty(extra) ? "" : "\n",
537                  program_invocation_short_name);
538
539         return 0;
540 }
541
542 static int write_to_journal(
543                 int level,
544                 int error,
545                 const char *file,
546                 int line,
547                 const char *func,
548                 const char *object_field,
549                 const char *object,
550                 const char *extra_field,
551                 const char *extra,
552                 const char *buffer) {
553
554         char header[LINE_MAX];
555         struct iovec iovec[4] = {};
556         struct msghdr mh = {};
557
558         if (journal_fd < 0)
559                 return 0;
560
561         log_do_header(header, sizeof(header), level, error, file, line, func, object_field, object, extra_field, extra);
562
563         IOVEC_SET_STRING(iovec[0], header);
564         IOVEC_SET_STRING(iovec[1], "MESSAGE=");
565         IOVEC_SET_STRING(iovec[2], buffer);
566         IOVEC_SET_STRING(iovec[3], "\n");
567
568         mh.msg_iov = iovec;
569         mh.msg_iovlen = ELEMENTSOF(iovec);
570
571         if (sendmsg(journal_fd, &mh, MSG_NOSIGNAL) < 0)
572                 return -errno;
573
574         return 1;
575 }
576 #endif // 0
577
578 int log_dispatch_internal(
579                 int level,
580                 int error,
581                 const char *file,
582                 int line,
583                 const char *func,
584                 const char *object_field,
585                 const char *object,
586                 const char *extra,
587                 const char *extra_field,
588                 char *buffer) {
589
590         assert(buffer);
591
592         if (error < 0)
593                 error = -error;
594
595         if (log_target == LOG_TARGET_NULL)
596                 return -error;
597
598         /* Patch in LOG_DAEMON facility if necessary */
599         if ((level & LOG_FACMASK) == 0)
600                 level = log_facility | LOG_PRI(level);
601
602         do {
603                 char *e;
604                 int k = 0;
605
606                 buffer += strspn(buffer, NEWLINE);
607
608                 if (buffer[0] == 0)
609                         break;
610
611                 if ((e = strpbrk(buffer, NEWLINE)))
612                         *(e++) = 0;
613
614 #if 0 /// elogind does not support logging to systemd-journald
615                 if (IN_SET(log_target, LOG_TARGET_AUTO,
616                                        LOG_TARGET_JOURNAL_OR_KMSG,
617                                        LOG_TARGET_JOURNAL)) {
618
619                         k = write_to_journal(level, error, file, line, func, object_field, object, extra_field, extra, buffer);
620                         if (k < 0) {
621                                 if (k != -EAGAIN)
622                                         log_close_journal();
623                                 log_open_kmsg();
624                         }
625                 }
626 #endif // 0
627
628                 if (IN_SET(log_target, LOG_TARGET_SYSLOG_OR_KMSG,
629                                        LOG_TARGET_SYSLOG)) {
630
631                         k = write_to_syslog(level, error, file, line, func, buffer);
632                         if (k < 0) {
633                                 if (k != -EAGAIN)
634                                         log_close_syslog();
635                                 log_open_kmsg();
636                         }
637                 }
638
639                 if (k <= 0 &&
640                     IN_SET(log_target, LOG_TARGET_AUTO,
641                                        LOG_TARGET_SAFE,
642                                        LOG_TARGET_SYSLOG_OR_KMSG,
643                                        LOG_TARGET_JOURNAL_OR_KMSG,
644                                        LOG_TARGET_KMSG)) {
645
646                         k = write_to_kmsg(level, error, file, line, func, buffer);
647                         if (k < 0) {
648                                 log_close_kmsg();
649                                 log_open_console();
650                         }
651                 }
652
653                 if (k <= 0)
654                         (void) write_to_console(level, error, file, line, func, buffer);
655
656                 buffer = e;
657         } while (buffer);
658
659         return -error;
660 }
661
662 int log_dump_internal(
663                 int level,
664                 int error,
665                 const char *file,
666                 int line,
667                 const char *func,
668                 char *buffer) {
669
670         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
671         PROTECT_ERRNO;
672
673         /* This modifies the buffer... */
674
675         if (error < 0)
676                 error = -error;
677
678         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
679                 return -error;
680
681         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
682 }
683
684 int log_internalv_realm(
685                 int level,
686                 int error,
687                 const char *file,
688                 int line,
689                 const char *func,
690                 const char *format,
691                 va_list ap) {
692
693         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
694         char buffer[LINE_MAX];
695         PROTECT_ERRNO;
696
697         if (error < 0)
698                 error = -error;
699
700         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
701                 return -error;
702
703         /* Make sure that %m maps to the specified error */
704         if (error != 0)
705                 errno = error;
706
707         vsnprintf(buffer, sizeof(buffer), format, ap);
708
709         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buffer);
710 }
711
712 int log_internal_realm(
713                 int level,
714                 int error,
715                 const char *file,
716                 int line,
717                 const char *func,
718                 const char *format, ...) {
719
720         va_list ap;
721         int r;
722
723         va_start(ap, format);
724         r = log_internalv_realm(level, error, file, line, func, format, ap);
725         va_end(ap);
726
727         return r;
728 }
729
730 int log_object_internalv(
731                 int level,
732                 int error,
733                 const char *file,
734                 int line,
735                 const char *func,
736                 const char *object_field,
737                 const char *object,
738                 const char *extra_field,
739                 const char *extra,
740                 const char *format,
741                 va_list ap) {
742
743         PROTECT_ERRNO;
744         char *buffer, *b;
745
746         if (error < 0)
747                 error = -error;
748
749         if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]))
750                 return -error;
751
752         /* Make sure that %m maps to the specified error */
753         if (error != 0)
754                 errno = error;
755
756         /* Prepend the object name before the message */
757         if (object) {
758                 size_t n;
759
760                 n = strlen(object);
761                 buffer = newa(char, n + 2 + LINE_MAX);
762                 b = stpcpy(stpcpy(buffer, object), ": ");
763         } else
764                 b = buffer = newa(char, LINE_MAX);
765
766         vsnprintf(b, LINE_MAX, format, ap);
767
768         return log_dispatch_internal(level, error, file, line, func,
769                                      object_field, object, extra_field, extra, buffer);
770 }
771
772 int log_object_internal(
773                 int level,
774                 int error,
775                 const char *file,
776                 int line,
777                 const char *func,
778                 const char *object_field,
779                 const char *object,
780                 const char *extra_field,
781                 const char *extra,
782                 const char *format, ...) {
783
784         va_list ap;
785         int r;
786
787         va_start(ap, format);
788         r = log_object_internalv(level, error, file, line, func, object_field, object, extra_field, extra, format, ap);
789         va_end(ap);
790
791         return r;
792 }
793
794 static void log_assert(
795                 int level,
796                 const char *text,
797                 const char *file,
798                 int line,
799                 const char *func,
800                 const char *format) {
801
802         static char buffer[LINE_MAX];
803         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
804
805         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
806                 return;
807
808         DISABLE_WARNING_FORMAT_NONLITERAL;
809         snprintf(buffer, sizeof buffer, format, text, file, line, func);
810         REENABLE_WARNING;
811
812         log_abort_msg = buffer;
813
814         log_dispatch_internal(level, 0, file, line, func, NULL, NULL, NULL, NULL, buffer);
815 }
816
817 noreturn void log_assert_failed_realm(
818                 LogRealm realm,
819                 const char *text,
820                 const char *file,
821                 int line,
822                 const char *func) {
823         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
824                    "Assertion '%s' failed at %s:%u, function %s(). Aborting.");
825         abort();
826 }
827
828 noreturn void log_assert_failed_unreachable_realm(
829                 LogRealm realm,
830                 const char *text,
831                 const char *file,
832                 int line,
833                 const char *func) {
834         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_CRIT), text, file, line, func,
835                    "Code should not be reached '%s' at %s:%u, function %s(). Aborting.");
836         abort();
837 }
838
839 void log_assert_failed_return_realm(
840                 LogRealm realm,
841                 const char *text,
842                 const char *file,
843                 int line,
844                 const char *func) {
845         PROTECT_ERRNO;
846         log_assert(LOG_REALM_PLUS_LEVEL(realm, LOG_DEBUG), text, file, line, func,
847                    "Assertion '%s' failed at %s:%u, function %s(). Ignoring.");
848 }
849
850 int log_oom_internal(LogRealm realm, const char *file, int line, const char *func) {
851         log_internal_realm(LOG_REALM_PLUS_LEVEL(realm, LOG_ERR),
852                            ENOMEM, file, line, func, "Out of memory.");
853         return -ENOMEM;
854 }
855
856 int log_format_iovec(
857                 struct iovec *iovec,
858                 unsigned iovec_len,
859                 unsigned *n,
860                 bool newline_separator,
861                 int error,
862                 const char *format,
863                 va_list ap) {
864
865         static const char nl = '\n';
866
867         while (format && *n + 1 < iovec_len) {
868                 va_list aq;
869                 char *m;
870                 int r;
871
872                 /* We need to copy the va_list structure,
873                  * since vasprintf() leaves it afterwards at
874                  * an undefined location */
875
876                 if (error != 0)
877                         errno = error;
878
879                 va_copy(aq, ap);
880                 r = vasprintf(&m, format, aq);
881                 va_end(aq);
882                 if (r < 0)
883                         return -EINVAL;
884
885                 /* Now, jump enough ahead, so that we point to
886                  * the next format string */
887                 VA_FORMAT_ADVANCE(format, ap);
888
889                 IOVEC_SET_STRING(iovec[(*n)++], m);
890
891                 if (newline_separator) {
892                         iovec[*n].iov_base = (char*) &nl;
893                         iovec[*n].iov_len = 1;
894                         (*n)++;
895                 }
896
897                 format = va_arg(ap, char *);
898         }
899         return 0;
900 }
901
902 int log_struct_internal(
903                 int level,
904                 int error,
905                 const char *file,
906                 int line,
907                 const char *func,
908                 const char *format, ...) {
909
910         char buf[LINE_MAX];
911         bool found = false;
912         LogRealm realm = LOG_REALM_REMOVE_LEVEL(level);
913         PROTECT_ERRNO;
914         va_list ap;
915
916         if (error < 0)
917                 error = -error;
918
919         if (_likely_(LOG_PRI(level) > log_max_level[realm]))
920                 return -error;
921
922         if (log_target == LOG_TARGET_NULL)
923                 return -error;
924
925         if ((level & LOG_FACMASK) == 0)
926                 level = log_facility | LOG_PRI(level);
927
928 #if 0 /// elogind does not support logging to systemd-journald
929         if (IN_SET(log_target, LOG_TARGET_AUTO,
930                                LOG_TARGET_JOURNAL_OR_KMSG,
931                                LOG_TARGET_JOURNAL) &&
932             journal_fd >= 0) {
933                 char header[LINE_MAX];
934                 struct iovec iovec[17] = {};
935                 unsigned n = 0, i;
936                 int r;
937                 struct msghdr mh = {
938                         .msg_iov = iovec,
939                 };
940                 bool fallback = false;
941
942                 /* If the journal is available do structured logging */
943                 log_do_header(header, sizeof(header), level, error, file, line, func, NULL, NULL, NULL, NULL);
944                 IOVEC_SET_STRING(iovec[n++], header);
945
946                 va_start(ap, format);
947                 r = log_format_iovec(iovec, ELEMENTSOF(iovec), &n, true, error, format, ap);
948                 if (r < 0)
949                         fallback = true;
950                 else {
951                         mh.msg_iovlen = n;
952                         (void) sendmsg(journal_fd, &mh, MSG_NOSIGNAL);
953                 }
954
955                 va_end(ap);
956                 for (i = 1; i < n; i += 2)
957                         free(iovec[i].iov_base);
958
959                 if (!fallback)
960                         return -error;
961         }
962 #endif // 0
963
964         /* Fallback if journal logging is not available or didn't work. */
965
966         va_start(ap, format);
967         while (format) {
968                 va_list aq;
969
970                 if (error != 0)
971                         errno = error;
972
973                 va_copy(aq, ap);
974                 vsnprintf(buf, sizeof(buf), format, aq);
975                 va_end(aq);
976
977                 if (startswith(buf, "MESSAGE=")) {
978                         found = true;
979                         break;
980                 }
981
982                 VA_FORMAT_ADVANCE(format, ap);
983
984                 format = va_arg(ap, char *);
985         }
986         va_end(ap);
987
988         if (!found)
989                 return -error;
990
991         return log_dispatch_internal(level, error, file, line, func, NULL, NULL, NULL, NULL, buf + 8);
992 }
993
994 int log_set_target_from_string(const char *e) {
995         LogTarget t;
996
997         t = log_target_from_string(e);
998         if (t < 0)
999                 return -EINVAL;
1000
1001         log_set_target(t);
1002         return 0;
1003 }
1004
1005 int log_set_max_level_from_string_realm(LogRealm realm, const char *e) {
1006         int t;
1007
1008         t = log_level_from_string(e);
1009         if (t < 0)
1010                 return -EINVAL;
1011
1012         log_set_max_level_realm(realm, t);
1013         return 0;
1014 }
1015
1016 static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
1017
1018         /*
1019          * The systemd.log_xyz= settings are parsed by all tools, and
1020          * so is "debug".
1021          *
1022          * However, "quiet" is only parsed by PID 1, and only turns of
1023          * status output to /dev/console, but does not alter the log
1024          * level.
1025          */
1026
1027         if (streq(key, "debug") && !value)
1028                 log_set_max_level(LOG_DEBUG);
1029
1030         else if (proc_cmdline_key_streq(key, "systemd.log_target")) {
1031
1032                 if (proc_cmdline_value_missing(key, value))
1033                         return 0;
1034
1035                 if (log_set_target_from_string(value) < 0)
1036                         log_warning("Failed to parse log target '%s'. Ignoring.", value);
1037
1038         } else if (proc_cmdline_key_streq(key, "systemd.log_level")) {
1039
1040                 if (proc_cmdline_value_missing(key, value))
1041                         return 0;
1042
1043                 if (log_set_max_level_from_string(value) < 0)
1044                         log_warning("Failed to parse log level '%s'. Ignoring.", value);
1045
1046         } else if (proc_cmdline_key_streq(key, "systemd.log_color")) {
1047
1048                 if (log_show_color_from_string(value ?: "1") < 0)
1049                         log_warning("Failed to parse log color setting '%s'. Ignoring.", value);
1050
1051         } else if (proc_cmdline_key_streq(key, "systemd.log_location")) {
1052
1053                 if (log_show_location_from_string(value ?: "1") < 0)
1054                         log_warning("Failed to parse log location setting '%s'. Ignoring.", value);
1055         }
1056
1057         return 0;
1058 }
1059
1060 void log_parse_environment_realm(LogRealm realm) {
1061         /* Do not call from library code. */
1062
1063         const char *e;
1064
1065         if (get_ctty_devnr(0, NULL) < 0)
1066                 /* Only try to read the command line in daemons.  We assume that anything that has a controlling tty is
1067                    user stuff. */
1068                 (void) proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_STRIP_RD_PREFIX);
1069
1070         e = getenv("SYSTEMD_LOG_TARGET");
1071         if (e && log_set_target_from_string(e) < 0)
1072                 log_warning("Failed to parse log target '%s'. Ignoring.", e);
1073
1074         e = getenv("SYSTEMD_LOG_LEVEL");
1075         if (e && log_set_max_level_from_string_realm(realm, e) < 0)
1076                 log_warning("Failed to parse log level '%s'. Ignoring.", e);
1077
1078         e = getenv("SYSTEMD_LOG_COLOR");
1079         if (e && log_show_color_from_string(e) < 0)
1080                 log_warning("Failed to parse bool '%s'. Ignoring.", e);
1081
1082         e = getenv("SYSTEMD_LOG_LOCATION");
1083         if (e && log_show_location_from_string(e) < 0)
1084                 log_warning("Failed to parse bool '%s'. Ignoring.", e);
1085 }
1086
1087 LogTarget log_get_target(void) {
1088         return log_target;
1089 }
1090
1091 int log_get_max_level_realm(LogRealm realm) {
1092         return log_max_level[realm];
1093 }
1094
1095 void log_show_color(bool b) {
1096         show_color = b;
1097 }
1098
1099 bool log_get_show_color(void) {
1100         return show_color;
1101 }
1102
1103 void log_show_location(bool b) {
1104         show_location = b;
1105 }
1106
1107 bool log_get_show_location(void) {
1108         return show_location;
1109 }
1110
1111 int log_show_color_from_string(const char *e) {
1112         int t;
1113
1114         t = parse_boolean(e);
1115         if (t < 0)
1116                 return t;
1117
1118         log_show_color(t);
1119         return 0;
1120 }
1121
1122 int log_show_location_from_string(const char *e) {
1123         int t;
1124
1125         t = parse_boolean(e);
1126         if (t < 0)
1127                 return t;
1128
1129         log_show_location(t);
1130         return 0;
1131 }
1132
1133 bool log_on_console(void) {
1134         if (IN_SET(log_target, LOG_TARGET_CONSOLE,
1135                                LOG_TARGET_CONSOLE_PREFIXED))
1136                 return true;
1137
1138         return syslog_fd < 0 && kmsg_fd < 0 && journal_fd < 0;
1139 }
1140
1141 static const char *const log_target_table[_LOG_TARGET_MAX] = {
1142         [LOG_TARGET_CONSOLE] = "console",
1143         [LOG_TARGET_CONSOLE_PREFIXED] = "console-prefixed",
1144         [LOG_TARGET_KMSG] = "kmsg",
1145 #if 0 /// elogind does not support logging to systemd-journald
1146         [LOG_TARGET_JOURNAL] = "journal",
1147         [LOG_TARGET_JOURNAL_OR_KMSG] = "journal-or-kmsg",
1148 #endif // 0
1149         [LOG_TARGET_SYSLOG] = "syslog",
1150         [LOG_TARGET_SYSLOG_OR_KMSG] = "syslog-or-kmsg",
1151         [LOG_TARGET_AUTO] = "auto",
1152         [LOG_TARGET_SAFE] = "safe",
1153         [LOG_TARGET_NULL] = "null"
1154 };
1155
1156 DEFINE_STRING_TABLE_LOOKUP(log_target, LogTarget);
1157
1158 #if 0 /// UNNEEDED by elogind
1159 void log_received_signal(int level, const struct signalfd_siginfo *si) {
1160         if (si->ssi_pid > 0) {
1161                 _cleanup_free_ char *p = NULL;
1162
1163                 get_process_comm(si->ssi_pid, &p);
1164
1165                 log_full(level,
1166                          "Received SIG%s from PID %"PRIu32" (%s).",
1167                          signal_to_string(si->ssi_signo),
1168                          si->ssi_pid, strna(p));
1169         } else
1170                 log_full(level,
1171                          "Received SIG%s.",
1172                          signal_to_string(si->ssi_signo));
1173
1174 }
1175
1176 void log_set_upgrade_syslog_to_journal(bool b) {
1177         upgrade_syslog_to_journal = b;
1178 }
1179 #endif // 0
1180
1181 int log_syntax_internal(
1182                 const char *unit,
1183                 int level,
1184                 const char *config_file,
1185                 unsigned config_line,
1186                 int error,
1187                 const char *file,
1188                 int line,
1189                 const char *func,
1190                 const char *format, ...) {
1191
1192         PROTECT_ERRNO;
1193         char buffer[LINE_MAX];
1194         va_list ap;
1195         const char *unit_fmt = NULL;
1196
1197         if (error < 0)
1198                 error = -error;
1199
1200         if (_likely_(LOG_PRI(level) > log_max_level[LOG_REALM_SYSTEMD]))
1201                 return -error;
1202
1203         if (log_target == LOG_TARGET_NULL)
1204                 return -error;
1205
1206         if (error != 0)
1207                 errno = error;
1208
1209         va_start(ap, format);
1210         vsnprintf(buffer, sizeof(buffer), format, ap);
1211         va_end(ap);
1212
1213         if (unit)
1214                 unit_fmt = getpid() == 1 ? "UNIT=%s" : "USER_UNIT=%s";
1215
1216         return log_struct_internal(
1217                         LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, level),
1218                         error,
1219                         file, line, func,
1220                         "MESSAGE_ID=" SD_MESSAGE_INVALID_CONFIGURATION_STR,
1221                         "CONFIG_FILE=%s", config_file,
1222                         "CONFIG_LINE=%u", config_line,
1223                         LOG_MESSAGE("%s:%u: %s", config_file, config_line, buffer),
1224                         unit_fmt, unit,
1225                         NULL);
1226 }
1227
1228 #if 0 /// UNNEEDED by elogind
1229 void log_set_always_reopen_console(bool b) {
1230         always_reopen_console = b;
1231 }
1232 #endif // 0