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