]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/logger.c
d6cee8287b0f3088f3099259e564eaa7e95616b9
[thirdparty/util-linux.git] / misc-utils / logger.c
1 /*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
34 * - added Native Language Support
35 * Sun Mar 21 1999 - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
36 * - fixed strerr(errno) in gettext calls
37 */
38
39 #include <errno.h>
40 #include <limits.h>
41 #include <unistd.h>
42 #include <stdlib.h>
43 #include <sys/time.h>
44 #include <stdio.h>
45 #include <ctype.h>
46 #include <string.h>
47 #include <sys/types.h>
48 #include <sys/socket.h>
49 #include <sys/un.h>
50 #include <arpa/inet.h>
51 #include <netdb.h>
52 #include <getopt.h>
53 #include <pwd.h>
54 #include <signal.h>
55 #include <sys/uio.h>
56
57 #include "all-io.h"
58 #include "c.h"
59 #include "closestream.h"
60 #include "nls.h"
61 #include "pathnames.h"
62 #include "strutils.h"
63 #include "xalloc.h"
64 #include "strv.h"
65 #include "list.h"
66
67 #define SYSLOG_NAMES
68 #include <syslog.h>
69
70 #ifdef HAVE_LIBSYSTEMD
71 # define SD_JOURNAL_SUPPRESS_LOCATION
72 # include <systemd/sd-daemon.h>
73 # include <systemd/sd-journal.h>
74 #endif
75
76 #ifdef HAVE_SYS_TIMEX_H
77 # include <sys/timex.h>
78 #endif
79
80 enum {
81 TYPE_UDP = (1 << 1),
82 TYPE_TCP = (1 << 2),
83 ALL_TYPES = TYPE_UDP | TYPE_TCP
84 };
85
86 enum {
87 AF_UNIX_ERRORS_OFF = 0,
88 AF_UNIX_ERRORS_ON,
89 AF_UNIX_ERRORS_AUTO
90 };
91
92 enum {
93 OPT_PRIO_PREFIX = CHAR_MAX + 1,
94 OPT_JOURNALD,
95 OPT_RFC3164,
96 OPT_RFC5424,
97 OPT_SOCKET_ERRORS,
98 OPT_MSGID,
99 OPT_NOACT,
100 OPT_ID,
101 OPT_STRUCTURED_DATA_ID,
102 OPT_STRUCTURED_DATA_PARAM,
103 OPT_OCTET_COUNT
104 };
105
106 /* rfc5424 structured data */
107 struct structured_data {
108 char *id; /* SD-ID */
109 char **params; /* array with SD-PARAMs */
110
111 struct list_head sds;
112 };
113
114 struct logger_ctl {
115 int fd;
116 int pri;
117 pid_t pid; /* zero when unwanted */
118 char *hdr; /* the syslog header (based on protocol) */
119 char const *tag;
120 char *msgid;
121 char *unix_socket; /* -u <path> or default to _PATH_DEVLOG */
122 char *server;
123 char *port;
124 int socket_type;
125 size_t max_message_size;
126 struct list_head user_sds; /* user defined rfc5424 structured data */
127 struct list_head reserved_sds; /* standard rfc5424 structured data */
128
129 void (*syslogfp)(struct logger_ctl *ctl);
130
131 unsigned int
132 unix_socket_errors:1, /* whether to report or not errors */
133 noact:1, /* do not write to sockets */
134 prio_prefix:1, /* read priority from input */
135 stderr_printout:1, /* output message to stderr */
136 rfc5424_time:1, /* include time stamp */
137 rfc5424_tq:1, /* include time quality markup */
138 rfc5424_host:1, /* include hostname */
139 skip_empty_lines:1, /* do not send empty lines when processing files */
140 octet_count:1; /* use RFC6587 octet counting */
141 };
142
143 #define is_connected(_ctl) ((_ctl)->fd >= 0)
144 static void logger_reopen(struct logger_ctl *ctl);
145
146 /*
147 * For tests we want to be able to control datetime outputs
148 */
149 #ifdef TEST_LOGGER
150 static inline int logger_gettimeofday(struct timeval *tv, struct timezone *tz)
151 {
152 char *str = getenv("LOGGER_TEST_TIMEOFDAY");
153 uintmax_t sec, usec;
154
155 if (str && sscanf(str, "%ju.%ju", &sec, &usec) == 2) {
156 tv->tv_sec = sec;
157 tv->tv_usec = usec;
158 return tv->tv_sec >= 0 && tv->tv_usec >= 0 ? 0 : -EINVAL;
159 }
160
161 return gettimeofday(tv, tz);
162 }
163
164 static inline char *logger_xgethostname(void)
165 {
166 char *str = getenv("LOGGER_TEST_HOSTNAME");
167 return str ? xstrdup(str) : xgethostname();
168 }
169
170 static inline pid_t logger_getpid(void)
171 {
172 char *str = getenv("LOGGER_TEST_GETPID");
173 unsigned int pid;
174
175 if (str && sscanf(str, "%u", &pid) == 1)
176 return pid;
177 return getpid();
178 }
179
180
181 #undef HAVE_NTP_GETTIME /* force to default non-NTP */
182
183 #else /* !TEST_LOGGER */
184 # define logger_gettimeofday(x, y) gettimeofday(x, y)
185 # define logger_xgethostname xgethostname
186 # define logger_getpid getpid
187 #endif
188
189
190 static int decode(const char *name, const CODE *codetab)
191 {
192 register const CODE *c;
193
194 if (name == NULL || *name == '\0')
195 return -1;
196 if (isdigit(*name)) {
197 int num;
198 char *end = NULL;
199
200 errno = 0;
201 num = strtol(name, &end, 10);
202 if (errno || name == end || (end && *end))
203 return -1;
204 for (c = codetab; c->c_name; c++)
205 if (num == c->c_val)
206 return num;
207 return -1;
208 }
209 for (c = codetab; c->c_name; c++)
210 if (!strcasecmp(name, c->c_name))
211 return (c->c_val);
212
213 return -1;
214 }
215
216 static int pencode(char *s)
217 {
218 int facility, level;
219 char *separator;
220
221 separator = strchr(s, '.');
222 if (separator) {
223 *separator = '\0';
224 facility = decode(s, facilitynames);
225 if (facility < 0)
226 errx(EXIT_FAILURE, _("unknown facility name: %s"), s);
227 s = ++separator;
228 } else
229 facility = LOG_USER;
230 level = decode(s, prioritynames);
231 if (level < 0)
232 errx(EXIT_FAILURE, _("unknown priority name: %s"), s);
233 if (facility == LOG_KERN)
234 facility = LOG_USER; /* kern is forbidden */
235 return ((level & LOG_PRIMASK) | (facility & LOG_FACMASK));
236 }
237
238 static int unix_socket(struct logger_ctl *ctl, const char *path, int *socket_type)
239 {
240 int fd = -1, i, type = -1;
241 static struct sockaddr_un s_addr; /* AF_UNIX address of local logger */
242
243 if (strlen(path) >= sizeof(s_addr.sun_path))
244 errx(EXIT_FAILURE, _("openlog %s: pathname too long"), path);
245
246 s_addr.sun_family = AF_UNIX;
247 strcpy(s_addr.sun_path, path);
248
249 for (i = 2; i; i--) {
250 int st = -1;
251
252 if (i == 2 && *socket_type & TYPE_UDP) {
253 st = SOCK_DGRAM;
254 type = TYPE_UDP;
255 }
256 if (i == 1 && *socket_type & TYPE_TCP) {
257 st = SOCK_STREAM;
258 type = TYPE_TCP;
259 }
260 if (st == -1 || (fd = socket(AF_UNIX, st, 0)) == -1)
261 continue;
262 if (connect(fd, (struct sockaddr *)&s_addr, sizeof(s_addr)) == -1) {
263 close(fd);
264 continue;
265 }
266 break;
267 }
268
269 if (i == 0) {
270 if (ctl->unix_socket_errors)
271 err(EXIT_FAILURE, _("socket %s"), path);
272
273 /* write_output() will try to reconnect */
274 return -1;
275 }
276
277 /* replace ALL_TYPES with the real TYPE_* */
278 if (type > 0 && type != *socket_type)
279 *socket_type = type;
280 return fd;
281 }
282
283 static int inet_socket(const char *servername, const char *port, int *socket_type)
284 {
285 int fd, errcode, i, type = -1;
286 struct addrinfo hints, *res;
287 const char *p = port;
288
289 for (i = 2; i; i--) {
290 memset(&hints, 0, sizeof(hints));
291 if (i == 2 && *socket_type & TYPE_UDP) {
292 hints.ai_socktype = SOCK_DGRAM;
293 type = TYPE_UDP;
294 if (port == NULL)
295 p = "syslog";
296 }
297 if (i == 1 && *socket_type & TYPE_TCP) {
298 hints.ai_socktype = SOCK_STREAM;
299 type = TYPE_TCP;
300 if (port == NULL)
301 p = "syslog-conn";
302 }
303 if (hints.ai_socktype == 0)
304 continue;
305 hints.ai_family = AF_UNSPEC;
306 errcode = getaddrinfo(servername, p, &hints, &res);
307 if (errcode != 0)
308 errx(EXIT_FAILURE, _("failed to resolve name %s port %s: %s"),
309 servername, p, gai_strerror(errcode));
310 if ((fd = socket(res->ai_family, res->ai_socktype, res->ai_protocol)) == -1) {
311 freeaddrinfo(res);
312 continue;
313 }
314 if (connect(fd, res->ai_addr, res->ai_addrlen) == -1) {
315 freeaddrinfo(res);
316 close(fd);
317 continue;
318 }
319
320 freeaddrinfo(res);
321 break;
322 }
323
324 if (i == 0)
325 errx(EXIT_FAILURE, _("failed to connect to %s port %s"), servername, p);
326
327 /* replace ALL_TYPES with the real TYPE_* */
328 if (type > 0 && type != *socket_type)
329 *socket_type = type;
330 return fd;
331 }
332
333 #ifdef HAVE_LIBSYSTEMD
334 static int journald_entry(struct logger_ctl *ctl, FILE *fp)
335 {
336 struct iovec *iovec;
337 char *buf = NULL;
338 ssize_t sz;
339 int n, lines = 0, vectors = 8, ret = 0, msgline = -1;
340 size_t dummy = 0;
341
342 iovec = xmalloc(vectors * sizeof(struct iovec));
343 while (1) {
344 buf = NULL;
345 sz = getline(&buf, &dummy, fp);
346 if (sz == -1 ||
347 (sz = rtrim_whitespace((unsigned char *) buf)) == 0) {
348 free(buf);
349 break;
350 }
351
352 if (strncmp(buf, "MESSAGE=", 8) == 0) {
353 if (msgline == -1)
354 msgline = lines; /* remember the first message */
355 else {
356 char *p = xrealloc(iovec[msgline].iov_base,
357 iovec[msgline].iov_len + sz - 8 + 2);
358
359 iovec[msgline].iov_base = p;
360 p += iovec[msgline].iov_len;
361 *p++ = '\n';
362 memcpy(p, buf + 8, sz - 8);
363 free(buf);
364
365 iovec[msgline].iov_len += sz - 8 + 1;
366 continue;
367 }
368 }
369
370 if (lines == vectors) {
371 vectors *= 2;
372 if (IOV_MAX < vectors)
373 errx(EXIT_FAILURE, _("maximum input lines (%d) exceeded"), IOV_MAX);
374 iovec = xrealloc(iovec, vectors * sizeof(struct iovec));
375 }
376 iovec[lines].iov_base = buf;
377 iovec[lines].iov_len = sz;
378 ++lines;
379 }
380
381 if (!ctl->noact)
382 ret = sd_journal_sendv(iovec, lines);
383 if (ctl->stderr_printout) {
384 for (n = 0; n < lines; n++)
385 fprintf(stderr, "%s\n", (char *) iovec[n].iov_base);
386 }
387 for (n = 0; n < lines; n++)
388 free(iovec[n].iov_base);
389 free(iovec);
390 return ret;
391 }
392 #endif
393
394 static char const *xgetlogin(void)
395 {
396 char const *cp;
397 struct passwd *pw;
398
399 if (!(cp = getlogin()) || !*cp)
400 cp = (pw = getpwuid(geteuid()))? pw->pw_name : "<someone>";
401 return cp;
402 }
403
404 /* this creates a timestamp based on current time according to the
405 * fine rules of RFC3164, most importantly it ensures in a portable
406 * way that the month day is correctly written (with a SP instead
407 * of a leading 0). The function uses a static buffer which is
408 * overwritten on the next call (just like ctime() does).
409 */
410 static char const *rfc3164_current_time(void)
411 {
412 static char time[32];
413 struct timeval tv;
414 struct tm *tm;
415 static char const * const monthnames[] = {
416 "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug",
417 "Sep", "Oct", "Nov", "Dec"
418 };
419
420 logger_gettimeofday(&tv, NULL);
421 tm = localtime(&tv.tv_sec);
422 snprintf(time, sizeof(time),"%s %2d %2.2d:%2.2d:%2.2d",
423 monthnames[tm->tm_mon], tm->tm_mday,
424 tm->tm_hour, tm->tm_min, tm->tm_sec);
425 return time;
426 }
427
428 #define next_iovec(ary, idx) __extension__ ({ \
429 assert(ARRAY_SIZE(ary) > (size_t)idx); \
430 assert(idx >= 0); \
431 &ary[idx++]; \
432 })
433
434 #define iovec_add_string(ary, idx, str, len) \
435 do { \
436 struct iovec *v = next_iovec(ary, idx); \
437 v->iov_base = (void *) str; \
438 v->iov_len = len ? len : strlen(str); \
439 } while (0)
440
441 #define iovec_memcmp(ary, idx, str, len) \
442 memcmp((ary)[(idx) - 1].iov_base, str, len)
443
444 /* writes generated buffer to desired destination. For TCP syslog,
445 * we use RFC6587 octet-stuffing (unless octet-counting is selected).
446 * This is not great, but doing full blown RFC5425 (TLS) looks like
447 * it is too much for the logger utility. If octet-counting is
448 * selected, we use that.
449 */
450 static void write_output(struct logger_ctl *ctl, const char *const msg)
451 {
452 struct iovec iov[4];
453 int iovlen = 0;
454 char *octet = NULL;
455
456 /* initial connect failed? */
457 if (!ctl->noact && !is_connected(ctl))
458 logger_reopen(ctl);
459
460 /* 1) octen count */
461 if (ctl->octet_count) {
462 size_t len = xasprintf(&octet, "%zu ", strlen(ctl->hdr) + strlen(msg));
463 iovec_add_string(iov, iovlen, octet, len);
464 }
465
466 /* 2) header */
467 iovec_add_string(iov, iovlen, ctl->hdr, 0);
468
469 /* 3) message */
470 iovec_add_string(iov, iovlen, msg, 0);
471
472 if (!ctl->noact && is_connected(ctl)) {
473 struct msghdr message = { 0 };
474 #ifdef SCM_CREDENTIALS
475 struct cmsghdr *cmhp;
476 struct ucred *cred;
477 union {
478 struct cmsghdr cmh;
479 char control[CMSG_SPACE(sizeof(struct ucred))];
480 } cbuf;
481 #endif
482
483 /* 4) add extra \n to make sure message is terminated */
484 if ((ctl->socket_type == TYPE_TCP) && !ctl->octet_count)
485 iovec_add_string(iov, iovlen, "\n", 1);
486
487 message.msg_iov = iov;
488 message.msg_iovlen = iovlen;
489
490 #ifdef SCM_CREDENTIALS
491 /* syslog/journald may follow local socket credentials rather
492 * than in the message PID. If we use --id as root than we can
493 * force kernel to accept another valid PID than the real logger(1)
494 * PID.
495 */
496 if (ctl->pid && !ctl->server && ctl->pid != getpid()
497 && geteuid() == 0 && kill(ctl->pid, 0) == 0) {
498
499 message.msg_control = cbuf.control;
500 message.msg_controllen = CMSG_SPACE(sizeof(struct ucred));
501
502 cmhp = CMSG_FIRSTHDR(&message);
503 cmhp->cmsg_len = CMSG_LEN(sizeof(struct ucred));
504 cmhp->cmsg_level = SOL_SOCKET;
505 cmhp->cmsg_type = SCM_CREDENTIALS;
506 cred = (struct ucred *) CMSG_DATA(cmhp);
507
508 cred->pid = ctl->pid;
509 }
510 #endif
511 /* Note that logger(1) maybe executed for long time (as pipe
512 * reader) and connection endpoint (syslogd) may be restarted.
513 *
514 * The libc syslog() function reconnects on failed send().
515 * Let's do the same to be robust. [kzak -- Oct 2017]
516 *
517 * MSG_NOSIGNAL is POSIX.1-2008 compatible, but it for example
518 * not supported by apple-darwin15.6.0.
519 */
520 #ifndef MSG_NOSIGNAL
521 # define MSG_NOSIGNAL 0
522 #endif
523 if (sendmsg(ctl->fd, &message, MSG_NOSIGNAL) < 0) {
524 logger_reopen(ctl);
525 if (sendmsg(ctl->fd, &message, MSG_NOSIGNAL) < 0)
526 warn(_("send message failed"));
527 }
528 }
529
530 if (ctl->stderr_printout) {
531 /* make sure it's terminated for stderr */
532 if (iovec_memcmp(iov, iovlen, "\n", 1) != 0)
533 iovec_add_string(iov, iovlen, "\n", 1);
534
535 ignore_result( writev(STDERR_FILENO, iov, iovlen) );
536 }
537
538 free(octet);
539 }
540
541 #define NILVALUE "-"
542 static void syslog_rfc3164_header(struct logger_ctl *const ctl)
543 {
544 char pid[30], *hostname;
545
546 *pid = '\0';
547 if (ctl->pid)
548 snprintf(pid, sizeof(pid), "[%d]", ctl->pid);
549
550 if ((hostname = logger_xgethostname())) {
551 char *dot = strchr(hostname, '.');
552 if (dot)
553 *dot = '\0';
554 } else
555 hostname = xstrdup(NILVALUE);
556
557 xasprintf(&ctl->hdr, "<%d>%.15s %s %.200s%s: ",
558 ctl->pri, rfc3164_current_time(), hostname, ctl->tag, pid);
559
560 free(hostname);
561 }
562
563 static inline struct list_head *get_user_structured_data(struct logger_ctl *ctl)
564 {
565 return &ctl->user_sds;
566 }
567
568 static inline struct list_head *get_reserved_structured_data(struct logger_ctl *ctl)
569 {
570 return &ctl->reserved_sds;
571 }
572
573 static int has_structured_data_id(struct list_head *ls, const char *id)
574 {
575 struct list_head *p;
576
577 if (!ls || list_empty(ls))
578 return 0;
579
580 list_for_each(p, ls) {
581 struct structured_data *sd = list_entry(p, struct structured_data, sds);
582 if (sd->id && strcmp(sd->id, id) == 0)
583 return 1;
584 }
585
586 return 0;
587 }
588
589 static void add_structured_data_id(struct list_head *ls, const char *id)
590 {
591 struct structured_data *sd;
592
593 assert(id);
594
595 if (has_structured_data_id(ls, id))
596 errx(EXIT_FAILURE, _("structured data ID '%s' is not unique"), id);
597
598 sd = xcalloc(1, sizeof(*sd));
599 INIT_LIST_HEAD(&sd->sds);
600 sd->id = xstrdup(id);
601
602 list_add_tail(&sd->sds, ls);
603 }
604
605 static void add_structured_data_param(struct list_head *ls, const char *param)
606 {
607 struct structured_data *sd;
608
609 if (list_empty(ls))
610 errx(EXIT_FAILURE, _("--sd-id was not specified for --sd-param %s"), param);
611
612 assert(param);
613
614 sd = list_last_entry(ls, struct structured_data, sds);
615
616 if (strv_extend(&sd->params, param))
617 err_oom();
618 }
619
620 static void add_structured_data_paramf(struct list_head *ls, const char *fmt, ...)
621 {
622 struct structured_data *sd;
623 va_list ap;
624 int x;
625
626 assert(!list_empty(ls));
627 assert(fmt);
628
629 sd = list_last_entry(ls, struct structured_data, sds);
630 va_start(ap, fmt);
631 x = strv_extendv(&sd->params, fmt, ap);
632 va_end(ap);
633
634 if (x)
635 err_oom();
636 }
637
638 static char *strdup_structured_data(struct structured_data *sd)
639 {
640 char *res, *tmp;
641
642 if (strv_isempty(sd->params))
643 return NULL;
644
645 xasprintf(&res, "[%s %s]", sd->id,
646 (tmp = strv_join(sd->params, " ")));
647 free(tmp);
648 return res;
649 }
650
651 static char *strdup_structured_data_list(struct list_head *ls)
652 {
653 struct list_head *p;
654 char *res = NULL;
655
656 list_for_each(p, ls) {
657 struct structured_data *sd = list_entry(p, struct structured_data, sds);
658 char *one = strdup_structured_data(sd);
659 char *tmp = res;
660
661 if (!one)
662 continue;
663 res = strappend(tmp, one);
664 free(tmp);
665 free(one);
666 }
667
668 return res;
669 }
670
671 static char *get_structured_data_string(struct logger_ctl *ctl)
672 {
673 char *sys = NULL, *usr = NULL, *res;
674
675 if (!list_empty(&ctl->reserved_sds))
676 sys = strdup_structured_data_list(&ctl->reserved_sds);
677 if (!list_empty(&ctl->user_sds))
678 usr = strdup_structured_data_list(&ctl->user_sds);
679
680 if (sys && usr) {
681 res = strappend(sys, usr);
682 free(sys);
683 free(usr);
684 } else
685 res = sys ? sys : usr;
686
687 return res;
688 }
689
690 static int valid_structured_data_param(const char *str)
691 {
692 char *eq = strchr(str, '='),
693 *qm1 = strchr(str, '"'),
694 *qm2 = qm1 ? strchr(qm1 + 1, '"') : NULL;
695
696 if (!eq || !qm1 || !qm2) /* something is missing */
697 return 0;
698
699 /* foo="bar" */
700 return eq > str && eq < qm1 && eq + 1 == qm1 && qm1 < qm2 && *(qm2 + 1) == '\0';
701 }
702
703 /* SD-ID format:
704 * name@<private enterprise number>, e.g., "ourSDID@32473"
705 */
706 static int valid_structured_data_id(const char *str)
707 {
708 char *at = strchr(str, '@');
709 const char *p;
710
711 /* standardized IDs without @<digits> */
712 if (!at && (strcmp(str, "timeQuality") == 0 ||
713 strcmp(str, "origin") == 0 ||
714 strcmp(str, "meta") == 0))
715 return 1;
716
717 if (!at || at == str || !*(at + 1))
718 return 0;
719
720 /* <digits> or <digits>.<digits>[...] */
721 for (p = at + 1; p && *p; p++) {
722 const char *end;
723
724 if (isdigit_strend(p, &end))
725 break; /* only digits in the string */
726
727 if (end == NULL || end == p ||
728 *end != '.' || *(end + 1) == '\0')
729 return 0;
730 p = end;
731 }
732
733 /* check for forbidden chars in the <name> */
734 for (p = str; p < at; p++) {
735 if (*p == '[' || *p == '=' || *p == '"' || *p == '@')
736 return 0;
737 if (isblank((unsigned char) *p) || iscntrl((unsigned char) *p))
738 return 0;
739 }
740 return 1;
741 }
742
743
744 /* Some field mappings may be controversial, thus I give the reason
745 * why this specific mapping was used:
746 * APP-NAME <-- tag
747 * Some may argue that "logger" is a better fit, but we think
748 * this is better inline of what other implementations do. In
749 * rsyslog, for example, the TAG value is populated from APP-NAME.
750 * PROCID <-- pid
751 * This is a relatively straightforward interpretation from
752 * RFC5424, sect. 6.2.6.
753 * MSGID <-- msgid (from --msgid)
754 * One may argue that the string "logger" would be better suited
755 * here so that a receiver can identify the sender process.
756 * However, this does not sound like a good match to RFC5424,
757 * sect. 6.2.7.
758 * Note that appendix A.1 of RFC5424 does not provide clear guidance
759 * of how these fields should be used. This is the case because the
760 * IETF working group couldn't arrive at a clear agreement when we
761 * specified RFC5424. The rest of the field mappings should be
762 * pretty clear from RFC5424. -- Rainer Gerhards, 2015-03-10
763 */
764 static void syslog_rfc5424_header(struct logger_ctl *const ctl)
765 {
766 char *time;
767 char *hostname;
768 char const *app_name = ctl->tag;
769 char *procid;
770 char *const msgid = xstrdup(ctl->msgid ? ctl->msgid : NILVALUE);
771 char *structured = NULL;
772 struct list_head *sd;
773
774 if (ctl->rfc5424_time) {
775 struct timeval tv;
776 struct tm *tm;
777
778 logger_gettimeofday(&tv, NULL);
779 if ((tm = localtime(&tv.tv_sec)) != NULL) {
780 char fmt[64];
781 const size_t i = strftime(fmt, sizeof(fmt),
782 "%Y-%m-%dT%H:%M:%S.%%06u%z ", tm);
783 /* patch TZ info to comply with RFC3339 (we left SP at end) */
784 fmt[i - 1] = fmt[i - 2];
785 fmt[i - 2] = fmt[i - 3];
786 fmt[i - 3] = ':';
787 xasprintf(&time, fmt, tv.tv_usec);
788 } else
789 err(EXIT_FAILURE, _("localtime() failed"));
790 } else
791 time = xstrdup(NILVALUE);
792
793 if (ctl->rfc5424_host) {
794 if (!(hostname = logger_xgethostname()))
795 hostname = xstrdup(NILVALUE);
796 /* Arbitrary looking 'if (var < strlen()) checks originate from
797 * RFC 5424 - 6 Syslog Message Format definition. */
798 if (255 < strlen(hostname))
799 errx(EXIT_FAILURE, _("hostname '%s' is too long"),
800 hostname);
801 } else
802 hostname = xstrdup(NILVALUE);
803
804 if (48 < strlen(ctl->tag))
805 errx(EXIT_FAILURE, _("tag '%s' is too long"), ctl->tag);
806
807 if (ctl->pid)
808 xasprintf(&procid, "%d", ctl->pid);
809 else
810 procid = xstrdup(NILVALUE);
811
812 sd = get_reserved_structured_data(ctl);
813
814 /* time quality structured data (maybe overwritten by --sd-id timeQuality) */
815 if (ctl->rfc5424_tq && !has_structured_data_id(sd, "timeQuality")) {
816
817 add_structured_data_id(sd, "timeQuality");
818 add_structured_data_param(sd, "tzKnown=\"1\"");
819
820 #ifdef HAVE_NTP_GETTIME
821 struct ntptimeval ntptv;
822
823 if (ntp_gettime(&ntptv) == TIME_OK) {
824 add_structured_data_param(sd, "isSynced=\"1\"");
825 add_structured_data_paramf(sd, "syncAccuracy=\"%ld\"", ntptv.maxerror);
826 } else
827 #endif
828 add_structured_data_paramf(sd, "isSynced=\"0\"");
829 }
830
831 /* convert all structured data to string */
832 structured = get_structured_data_string(ctl);
833 if (!structured)
834 structured = xstrdup(NILVALUE);
835
836 xasprintf(&ctl->hdr, "<%d>1 %s %s %s %s %s %s ",
837 ctl->pri,
838 time,
839 hostname,
840 app_name,
841 procid,
842 msgid,
843 structured);
844
845 free(time);
846 free(hostname);
847 /* app_name points to ctl->tag, do NOT free! */
848 free(procid);
849 free(msgid);
850 free(structured);
851 }
852
853 static void parse_rfc5424_flags(struct logger_ctl *ctl, char *s)
854 {
855 char *in, *tok;
856
857 in = s;
858 while ((tok = strtok(in, ","))) {
859 in = NULL;
860 if (!strcmp(tok, "notime")) {
861 ctl->rfc5424_time = 0;
862 ctl->rfc5424_tq = 0;
863 } else if (!strcmp(tok, "notq"))
864 ctl->rfc5424_tq = 0;
865 else if (!strcmp(tok, "nohost"))
866 ctl->rfc5424_host = 0;
867 else
868 warnx(_("ignoring unknown option argument: %s"), tok);
869 }
870 }
871
872 static int parse_unix_socket_errors_flags(char *s)
873 {
874 if (!strcmp(s, "off"))
875 return AF_UNIX_ERRORS_OFF;
876 if (!strcmp(s, "on"))
877 return AF_UNIX_ERRORS_ON;
878 if (!strcmp(s, "auto"))
879 return AF_UNIX_ERRORS_AUTO;
880 warnx(_("invalid argument: %s: using automatic errors"), s);
881 return AF_UNIX_ERRORS_AUTO;
882 }
883
884 static void syslog_local_header(struct logger_ctl *const ctl)
885 {
886 char pid[32];
887
888 if (ctl->pid)
889 snprintf(pid, sizeof(pid), "[%d]", ctl->pid);
890 else
891 pid[0] = '\0';
892
893 xasprintf(&ctl->hdr, "<%d>%s %s%s: ", ctl->pri, rfc3164_current_time(),
894 ctl->tag, pid);
895 }
896
897 static void generate_syslog_header(struct logger_ctl *const ctl)
898 {
899 free(ctl->hdr);
900 ctl->hdr = NULL;
901 ctl->syslogfp(ctl);
902 }
903
904 /* just open, nothing else */
905 static void __logger_open(struct logger_ctl *ctl)
906 {
907 if (ctl->server) {
908 ctl->fd = inet_socket(ctl->server, ctl->port, &ctl->socket_type);
909 } else {
910 if (!ctl->unix_socket)
911 ctl->unix_socket = _PATH_DEVLOG;
912
913 ctl->fd = unix_socket(ctl, ctl->unix_socket, &ctl->socket_type);
914 }
915 }
916
917 /* open and initialize relevant @ctl tuff */
918 static void logger_open(struct logger_ctl *ctl)
919 {
920 __logger_open(ctl);
921
922 if (!ctl->syslogfp)
923 ctl->syslogfp = ctl->server ? syslog_rfc5424_header :
924 syslog_local_header;
925 if (!ctl->tag)
926 ctl->tag = xgetlogin();
927
928 generate_syslog_header(ctl);
929 }
930
931 /* re-open; usually after failed connection */
932 static void logger_reopen(struct logger_ctl *ctl)
933 {
934 if (ctl->fd != -1)
935 close(ctl->fd);
936 ctl->fd = -1;
937
938 __logger_open(ctl);
939 }
940
941 static void logger_command_line(struct logger_ctl *ctl, char **argv)
942 {
943 /* note: we never re-generate the syslog header here, even if we
944 * generate multiple messages. If so, we think it is the right thing
945 * to do to report them with the same timestamp, as the user actually
946 * intended to send a single message.
947 */
948 char *const buf = xmalloc(ctl->max_message_size + 1);
949 char *p = buf;
950 const char *endp = buf + ctl->max_message_size - 1;
951 size_t len;
952
953 while (*argv) {
954 len = strlen(*argv);
955 if (endp < p + len && p != buf) {
956 write_output(ctl, buf);
957 p = buf;
958 }
959 if (ctl->max_message_size < len) {
960 (*argv)[ctl->max_message_size] = '\0'; /* truncate */
961 write_output(ctl, *argv++);
962 continue;
963 }
964 if (p != buf)
965 *p++ = ' ';
966 memmove(p, *argv++, len);
967 *(p += len) = '\0';
968 }
969 if (p != buf)
970 write_output(ctl, buf);
971 free(buf);
972 }
973
974 static void logger_stdin(struct logger_ctl *ctl)
975 {
976 /* note: we re-generate the syslog header for each log message to
977 * update header timestamps and to reflect possible priority changes.
978 * The initial header is generated by logger_open().
979 */
980 int has_header = 1;
981 int default_priority = ctl->pri;
982 int last_pri = default_priority;
983 size_t max_usrmsg_size = ctl->max_message_size - strlen(ctl->hdr);
984 char *const buf = xmalloc(max_usrmsg_size + 2 + 2);
985 int pri;
986 int c;
987 size_t i;
988
989 c = getchar();
990 while (c != EOF) {
991 i = 0;
992 if (ctl->prio_prefix && c == '<') {
993 pri = 0;
994 buf[i++] = c;
995 while (isdigit(c = getchar()) && pri <= 191) {
996 buf[i++] = c;
997 pri = pri * 10 + c - '0';
998 }
999 if (c != EOF && c != '\n')
1000 buf[i++] = c;
1001 if (c == '>' && 0 <= pri && pri <= 191) {
1002 /* valid RFC PRI values */
1003 i = 0;
1004 if (pri < 8) /* kern facility is forbidden */
1005 pri |= 8;
1006 ctl->pri = pri;
1007 } else
1008 ctl->pri = default_priority;
1009
1010 if (ctl->pri != last_pri) {
1011 has_header = 0;
1012 max_usrmsg_size =
1013 ctl->max_message_size - strlen(ctl->hdr);
1014 last_pri = ctl->pri;
1015 }
1016 if (c != EOF && c != '\n')
1017 c = getchar();
1018 }
1019
1020 while (c != EOF && c != '\n' && i < max_usrmsg_size) {
1021 buf[i++] = c;
1022 c = getchar();
1023 }
1024 buf[i] = '\0';
1025
1026 if (i > 0 || !ctl->skip_empty_lines) {
1027 if (!has_header)
1028 generate_syslog_header(ctl);
1029 write_output(ctl, buf);
1030 has_header = 0;
1031 }
1032
1033 if (c == '\n') /* discard line terminator */
1034 c = getchar();
1035 }
1036
1037 free(buf);
1038 }
1039
1040 static void logger_close(const struct logger_ctl *ctl)
1041 {
1042 if (ctl->fd != -1 && close(ctl->fd) != 0)
1043 err(EXIT_FAILURE, _("close failed"));
1044 free(ctl->hdr);
1045 }
1046
1047 static void __attribute__((__noreturn__)) usage(void)
1048 {
1049 FILE *out = stdout;
1050 fputs(USAGE_HEADER, out);
1051 fprintf(out, _(" %s [options] [<message>]\n"), program_invocation_short_name);
1052
1053 fputs(USAGE_SEPARATOR, out);
1054 fputs(_("Enter messages into the system log.\n"), out);
1055
1056 fputs(USAGE_OPTIONS, out);
1057 fputs(_(" -i log the logger command's PID\n"), out);
1058 fputs(_(" --id[=<id>] log the given <id>, or otherwise the PID\n"), out);
1059 fputs(_(" -f, --file <file> log the contents of this file\n"), out);
1060 fputs(_(" -e, --skip-empty do not log empty lines when processing files\n"), out);
1061 fputs(_(" --no-act do everything except the write the log\n"), out);
1062 fputs(_(" -p, --priority <prio> mark given message with this priority\n"), out);
1063 fputs(_(" --octet-count use rfc6587 octet counting\n"), out);
1064 fputs(_(" --prio-prefix look for a prefix on every line read from stdin\n"), out);
1065 fputs(_(" -s, --stderr output message to standard error as well\n"), out);
1066 fputs(_(" -S, --size <size> maximum size for a single message\n"), out);
1067 fputs(_(" -t, --tag <tag> mark every line with this tag\n"), out);
1068 fputs(_(" -n, --server <name> write to this remote syslog server\n"), out);
1069 fputs(_(" -P, --port <port> use this port for UDP or TCP connection\n"), out);
1070 fputs(_(" -T, --tcp use TCP only\n"), out);
1071 fputs(_(" -d, --udp use UDP only\n"), out);
1072 fputs(_(" --rfc3164 use the obsolete BSD syslog protocol\n"), out);
1073 fputs(_(" --rfc5424[=<snip>] use the syslog protocol (the default for remote);\n"
1074 " <snip> can be notime, or notq, and/or nohost\n"), out);
1075 fputs(_(" --sd-id <id> rfc5424 structured data ID\n"), out);
1076 fputs(_(" --sd-param <data> rfc5424 structured data name=value\n"), out);
1077 fputs(_(" --msgid <msgid> set rfc5424 message id field\n"), out);
1078 fputs(_(" -u, --socket <socket> write to this Unix socket\n"), out);
1079 fputs(_(" --socket-errors[=<on|off|auto>]\n"
1080 " print connection errors when using Unix sockets\n"), out);
1081 #ifdef HAVE_LIBSYSTEMD
1082 fputs(_(" --journald[=<file>] write journald entry\n"), out);
1083 #endif
1084
1085 fputs(USAGE_SEPARATOR, out);
1086 printf(USAGE_HELP_OPTIONS(26));
1087 printf(USAGE_MAN_TAIL("logger(1)"));
1088
1089 exit(EXIT_SUCCESS);
1090 }
1091
1092 /*
1093 * logger -- read and log utility
1094 *
1095 * Reads from an input and arranges to write the result on the system
1096 * log.
1097 */
1098 int main(int argc, char **argv)
1099 {
1100 struct logger_ctl ctl = {
1101 .fd = -1,
1102 .pid = 0,
1103 .pri = LOG_USER | LOG_NOTICE,
1104 .prio_prefix = 0,
1105 .tag = NULL,
1106 .unix_socket = NULL,
1107 .unix_socket_errors = 0,
1108 .server = NULL,
1109 .port = NULL,
1110 .hdr = NULL,
1111 .msgid = NULL,
1112 .socket_type = ALL_TYPES,
1113 .max_message_size = 1024,
1114 .rfc5424_time = 1,
1115 .rfc5424_tq = 1,
1116 .rfc5424_host = 1,
1117 .skip_empty_lines = 0
1118 };
1119 int ch;
1120 int stdout_reopened = 0;
1121 int unix_socket_errors_mode = AF_UNIX_ERRORS_AUTO;
1122 #ifdef HAVE_LIBSYSTEMD
1123 FILE *jfd = NULL;
1124 #endif
1125 static const struct option longopts[] = {
1126 { "id", optional_argument, 0, OPT_ID },
1127 { "stderr", no_argument, 0, 's' },
1128 { "file", required_argument, 0, 'f' },
1129 { "no-act", no_argument, 0, OPT_NOACT, },
1130 { "priority", required_argument, 0, 'p' },
1131 { "tag", required_argument, 0, 't' },
1132 { "socket", required_argument, 0, 'u' },
1133 { "socket-errors", required_argument, 0, OPT_SOCKET_ERRORS },
1134 { "udp", no_argument, 0, 'd' },
1135 { "tcp", no_argument, 0, 'T' },
1136 { "server", required_argument, 0, 'n' },
1137 { "port", required_argument, 0, 'P' },
1138 { "version", no_argument, 0, 'V' },
1139 { "help", no_argument, 0, 'h' },
1140 { "octet-count", no_argument, 0, OPT_OCTET_COUNT },
1141 { "prio-prefix", no_argument, 0, OPT_PRIO_PREFIX },
1142 { "rfc3164", no_argument, 0, OPT_RFC3164 },
1143 { "rfc5424", optional_argument, 0, OPT_RFC5424 },
1144 { "size", required_argument, 0, 'S' },
1145 { "msgid", required_argument, 0, OPT_MSGID },
1146 { "skip-empty", no_argument, 0, 'e' },
1147 { "sd-id", required_argument, 0, OPT_STRUCTURED_DATA_ID },
1148 { "sd-param", required_argument, 0, OPT_STRUCTURED_DATA_PARAM },
1149 #ifdef HAVE_LIBSYSTEMD
1150 { "journald", optional_argument, 0, OPT_JOURNALD },
1151 #endif
1152 { NULL, 0, 0, 0 }
1153 };
1154
1155 setlocale(LC_ALL, "");
1156 bindtextdomain(PACKAGE, LOCALEDIR);
1157 textdomain(PACKAGE);
1158 atexit(close_stdout);
1159
1160 INIT_LIST_HEAD(&ctl.user_sds);
1161 INIT_LIST_HEAD(&ctl.reserved_sds);
1162
1163 while ((ch = getopt_long(argc, argv, "ef:ip:S:st:u:dTn:P:Vh",
1164 longopts, NULL)) != -1) {
1165 switch (ch) {
1166 case 'f': /* file to log */
1167 if (freopen(optarg, "r", stdin) == NULL)
1168 err(EXIT_FAILURE, _("file %s"), optarg);
1169 stdout_reopened = 1;
1170 break;
1171 case 'e':
1172 ctl.skip_empty_lines = 1;
1173 break;
1174 case 'i': /* log process id also */
1175 ctl.pid = logger_getpid();
1176 break;
1177 case OPT_ID:
1178 if (optarg) {
1179 const char *p = optarg;
1180
1181 if (*p == '=')
1182 p++;
1183 ctl.pid = strtoul_or_err(optarg, _("failed to parse id"));
1184 } else
1185 ctl.pid = logger_getpid();
1186 break;
1187 case 'p': /* priority */
1188 ctl.pri = pencode(optarg);
1189 break;
1190 case 's': /* log to standard error */
1191 ctl.stderr_printout = 1;
1192 break;
1193 case 't': /* tag */
1194 ctl.tag = optarg;
1195 break;
1196 case 'u': /* unix socket */
1197 ctl.unix_socket = optarg;
1198 break;
1199 case 'S': /* max message size */
1200 ctl.max_message_size = strtosize_or_err(optarg,
1201 _("failed to parse message size"));
1202 break;
1203 case 'd':
1204 ctl.socket_type = TYPE_UDP;
1205 break;
1206 case 'T':
1207 ctl.socket_type = TYPE_TCP;
1208 break;
1209 case 'n':
1210 ctl.server = optarg;
1211 break;
1212 case 'P':
1213 ctl.port = optarg;
1214 break;
1215 case 'V':
1216 printf(UTIL_LINUX_VERSION);
1217 exit(EXIT_SUCCESS);
1218 case 'h':
1219 usage();
1220 case OPT_OCTET_COUNT:
1221 ctl.octet_count = 1;
1222 break;
1223 case OPT_PRIO_PREFIX:
1224 ctl.prio_prefix = 1;
1225 break;
1226 case OPT_RFC3164:
1227 ctl.syslogfp = syslog_rfc3164_header;
1228 break;
1229 case OPT_RFC5424:
1230 ctl.syslogfp = syslog_rfc5424_header;
1231 if (optarg)
1232 parse_rfc5424_flags(&ctl, optarg);
1233 break;
1234 case OPT_MSGID:
1235 if (strchr(optarg, ' '))
1236 errx(EXIT_FAILURE, _("--msgid cannot contain space"));
1237 ctl.msgid = optarg;
1238 break;
1239 #ifdef HAVE_LIBSYSTEMD
1240 case OPT_JOURNALD:
1241 if (optarg) {
1242 jfd = fopen(optarg, "r");
1243 if (!jfd)
1244 err(EXIT_FAILURE, _("cannot open %s"),
1245 optarg);
1246 } else
1247 jfd = stdin;
1248 break;
1249 #endif
1250 case OPT_SOCKET_ERRORS:
1251 unix_socket_errors_mode = parse_unix_socket_errors_flags(optarg);
1252 break;
1253 case OPT_NOACT:
1254 ctl.noact = 1;
1255 break;
1256 case OPT_STRUCTURED_DATA_ID:
1257 if (!valid_structured_data_id(optarg))
1258 errx(EXIT_FAILURE, _("invalid structured data ID: '%s'"), optarg);
1259 add_structured_data_id(get_user_structured_data(&ctl), optarg);
1260 break;
1261 case OPT_STRUCTURED_DATA_PARAM:
1262 if (!valid_structured_data_param(optarg))
1263 errx(EXIT_FAILURE, _("invalid structured data parameter: '%s'"), optarg);
1264 add_structured_data_param(get_user_structured_data(&ctl), optarg);
1265 break;
1266 default:
1267 errtryhelp(EXIT_FAILURE);
1268 }
1269 }
1270 argc -= optind;
1271 argv += optind;
1272 if (stdout_reopened && argc)
1273 warnx(_("--file <file> and <message> are mutually exclusive, message is ignored"));
1274 #ifdef HAVE_LIBSYSTEMD
1275 if (jfd) {
1276 int ret = journald_entry(&ctl, jfd);
1277 if (stdin != jfd)
1278 fclose(jfd);
1279 if (ret)
1280 errx(EXIT_FAILURE, _("journald entry could not be written"));
1281 return EXIT_SUCCESS;
1282 }
1283 #endif
1284
1285 /* user overwrites built-in SD-ELEMENT */
1286 if (has_structured_data_id(get_user_structured_data(&ctl), "timeQuality"))
1287 ctl.rfc5424_tq = 0;
1288
1289 switch (unix_socket_errors_mode) {
1290 case AF_UNIX_ERRORS_OFF:
1291 ctl.unix_socket_errors = 0;
1292 break;
1293 case AF_UNIX_ERRORS_ON:
1294 ctl.unix_socket_errors = 1;
1295 break;
1296 case AF_UNIX_ERRORS_AUTO:
1297 ctl.unix_socket_errors = ctl.noact || ctl.stderr_printout;
1298 #ifdef HAVE_LIBSYSTEMD
1299 ctl.unix_socket_errors |= !!sd_booted();
1300 #endif
1301 break;
1302 default:
1303 abort();
1304 }
1305 logger_open(&ctl);
1306 if (0 < argc)
1307 logger_command_line(&ctl, argv);
1308 else
1309 /* Note. --file <arg> reopens stdin making the below
1310 * function to be used for file inputs. */
1311 logger_stdin(&ctl);
1312 logger_close(&ctl);
1313 return EXIT_SUCCESS;
1314 }