1 /* $NetBSD: syslog.c,v 1.45.2.2 2009/01/04 17:02:19 christos Exp $ */
4 * Copyright (c) 1983, 1988, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
33 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)syslog.c 8.5 (Berkeley) 4/29/95";
37 __RCSID("$NetBSD: syslog.c,v 1.45.2.2 2009/01/04 17:02:19 christos Exp $");
39 #endif /* LIBC_SCCS and not lint */
41 #include "namespace.h"
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <sys/socket.h>
45 #include <sys/syslog.h>
59 #include "reentrant.h"
63 __weak_alias(closelog
,_closelog
)
64 __weak_alias(openlog
,_openlog
)
65 __weak_alias(setlogmask
,_setlogmask
)
66 __weak_alias(syslog
,_syslog
)
67 __weak_alias(vsyslog
,_vsyslog
)
68 __weak_alias(syslogp
,_syslogp
)
69 __weak_alias(vsyslogp
,_vsyslogp
)
71 __weak_alias(closelog_r
,_closelog_r
)
72 __weak_alias(openlog_r
,_openlog_r
)
73 __weak_alias(setlogmask_r
,_setlogmask_r
)
74 __weak_alias(syslog_r
,_syslog_r
)
75 __weak_alias(vsyslog_r
,_vsyslog_r
)
76 __weak_alias(syslog_ss
,_syslog_ss
)
77 __weak_alias(vsyslog_ss
,_vsyslog_ss
)
78 __weak_alias(syslogp_r
,_syslogp_r
)
79 __weak_alias(vsyslogp_r
,_vsyslogp_r
)
80 __weak_alias(syslogp_ss
,_syslogp_ss
)
81 __weak_alias(vsyslogp_ss
,_vsyslogp_ss
)
84 static struct syslog_data sdata
= SYSLOG_DATA_INIT
;
86 static void openlog_unlocked_r(const char *, int, int,
87 struct syslog_data
*);
88 static void disconnectlog_r(struct syslog_data
*);
89 static void connectlog_r(struct syslog_data
*);
91 #define LOG_SIGNAL_SAFE (int)0x80000000
95 static mutex_t syslog_mutex
= MUTEX_INITIALIZER
;
98 static char hostname
[MAXHOSTNAMELEN
];
102 * print message on log file; output is intended for syslogd(8).
105 syslog(int pri
, const char *fmt
, ...)
110 vsyslog(pri
, fmt
, ap
);
115 vsyslog(int pri
, const char *fmt
, va_list ap
)
117 vsyslog_r(pri
, &sdata
, fmt
, ap
);
121 * syslogp, vsyslogp --
122 * like syslog but take additional arguments for MSGID and SD
125 syslogp(int pri
, const char *msgid
, const char *sdfmt
, const char *msgfmt
, ...)
129 va_start(ap
, msgfmt
);
130 vsyslogp(pri
, msgid
, sdfmt
, msgfmt
, ap
);
135 vsyslogp(int pri
, const char *msgid
, const char *sdfmt
, const char *msgfmt
, va_list ap
)
137 vsyslogp_r(pri
, &sdata
, msgid
, sdfmt
, msgfmt
, ap
);
141 openlog(const char *ident
, int logstat
, int logfac
)
143 openlog_r(ident
, logstat
, logfac
, &sdata
);
152 /* setlogmask -- set the log mask level */
154 setlogmask(int pmask
)
156 return setlogmask_r(pmask
, &sdata
);
159 /* Reentrant version of syslog, i.e. syslog_r() */
162 syslog_r(int pri
, struct syslog_data
*data
, const char *fmt
, ...)
167 vsyslog_r(pri
, data
, fmt
, ap
);
172 syslogp_r(int pri
, struct syslog_data
*data
, const char *msgid
,
173 const char *sdfmt
, const char *msgfmt
, ...)
177 va_start(ap
, msgfmt
);
178 vsyslogp_r(pri
, data
, msgid
, sdfmt
, msgfmt
, ap
);
183 syslog_ss(int pri
, struct syslog_data
*data
, const char *fmt
, ...)
188 vsyslog_r(pri
| LOG_SIGNAL_SAFE
, data
, fmt
, ap
);
193 syslogp_ss(int pri
, struct syslog_data
*data
, const char *msgid
,
194 const char *sdfmt
, const char *msgfmt
, ...)
198 va_start(ap
, msgfmt
);
199 vsyslogp_r(pri
| LOG_SIGNAL_SAFE
, data
, msgid
, sdfmt
, msgfmt
, ap
);
204 vsyslog_ss(int pri
, struct syslog_data
*data
, const char *fmt
, va_list ap
)
206 vsyslog_r(pri
| LOG_SIGNAL_SAFE
, data
, fmt
, ap
);
210 vsyslogp_ss(int pri
, struct syslog_data
*data
, const char *msgid
,
211 const char *sdfmt
, const char *msgfmt
, va_list ap
)
213 vsyslogp_r(pri
| LOG_SIGNAL_SAFE
, data
, msgid
, sdfmt
, msgfmt
, ap
);
218 vsyslog_r(int pri
, struct syslog_data
*data
, const char *fmt
, va_list ap
)
220 vsyslogp_r(pri
, data
, NULL
, NULL
, fmt
, ap
);
224 vsyslogp_r(int pri
, struct syslog_data
*data
, const char *msgid
,
225 const char *sdfmt
, const char *msgfmt
, va_list ap
)
227 size_t cnt
, prlen
, tries
;
233 #define TBUF_LEN 2048
236 char *stdp
= NULL
; /* pacify gcc */
237 char tbuf
[TBUF_LEN
], fmt_cpy
[FMT_LEN
], fmt_cat
[FMT_LEN
] = "";
238 size_t tbuf_left
, fmt_left
;
240 int signal_safe
= pri
& LOG_SIGNAL_SAFE
;
243 pri
&= ~LOG_SIGNAL_SAFE
;
245 #define INTERNALLOG LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
246 /* Check for invalid bits. */
247 if (pri
& ~(LOG_PRIMASK
|LOG_FACMASK
)) {
248 syslog_r(INTERNALLOG
| signal_safe
, data
,
249 "syslog_r: unknown facility/priority: %x", pri
);
250 pri
&= LOG_PRIMASK
|LOG_FACMASK
;
253 /* Check priority against setlogmask values. */
254 if (!(LOG_MASK(LOG_PRI(pri
)) & data
->log_mask
))
259 /* Set default facility if none specified. */
260 if ((pri
& LOG_FACMASK
) == 0)
261 pri
|= data
->log_fac
;
263 /* Build the message. */
265 tbuf_left
= TBUF_LEN
;
269 if (prlen >= tbuf_left) \
270 prlen = tbuf_left - 1; \
272 tbuf_left -= prlen; \
273 } while (/*CONSTCOND*/0)
275 prlen
= snprintf_ss(p
, tbuf_left
, "<%d>1 ", pri
);
278 if (!signal_safe
&& (gettimeofday(&tv
, NULL
) != -1)) {
279 /* strftime() implies tzset(), localtime_r() doesn't. */
281 now
= (time_t) tv
.tv_sec
;
282 localtime_r(&now
, &tmnow
);
284 prlen
= strftime(p
, tbuf_left
, "%FT%T", &tmnow
);
286 prlen
= snprintf(p
, tbuf_left
, ".%06ld", (long)tv
.tv_usec
);
288 prlen
= strftime(p
, tbuf_left
-1, "%z", &tmnow
);
289 /* strftime gives eg. "+0200", but we need "+02:00" */
291 p
[prlen
+1] = p
[prlen
];
292 p
[prlen
] = p
[prlen
-1];
293 p
[prlen
-1] = p
[prlen
-2];
298 prlen
= snprintf_ss(p
, tbuf_left
, "-");
300 /* if gmtime_r() was signal-safe we could output the UTC-time:
301 gmtime_r(&now, &tmnow);
302 prlen = strftime(p, tbuf_left, "%FT%TZ", &tmnow);
306 prlen
= snprintf_ss(p
, tbuf_left
, " %s ", hostname
);
309 if (data
->log_stat
& LOG_PERROR
)
311 if (data
->log_tag
== NULL
)
312 data
->log_tag
= getprogname();
314 prlen
= snprintf_ss(p
, tbuf_left
, "%s ",
315 data
->log_tag
? data
->log_tag
: "-");
318 if (data
->log_stat
& LOG_PID
)
319 prlen
= snprintf_ss(p
, tbuf_left
, "%d ", getpid());
321 prlen
= snprintf_ss(p
, tbuf_left
, "- ");
325 * concat the format strings, then use one vsnprintf()
327 if (msgid
!= NULL
&& *msgid
!= '\0') {
328 strlcat(fmt_cat
, msgid
, FMT_LEN
);
329 strlcat(fmt_cat
, " ", FMT_LEN
);
331 strlcat(fmt_cat
, "- ", FMT_LEN
);
333 if (sdfmt
!= NULL
&& *sdfmt
!= '\0') {
334 strlcat(fmt_cat
, sdfmt
, FMT_LEN
);
336 strlcat(fmt_cat
, "-", FMT_LEN
);
338 if (msgfmt
!= NULL
&& *msgfmt
!= '\0') {
339 strlcat(fmt_cat
, " ", FMT_LEN
);
340 strlcat(fmt_cat
, msgfmt
, FMT_LEN
);
344 * We wouldn't need this mess if printf handled %m, or if
345 * strerror() had been invented before syslog().
347 for (t
= fmt_cpy
, fmt_left
= FMT_LEN
; (ch
= *fmt
) != '\0'; ++fmt
) {
348 if (ch
== '%' && fmt
[1] == 'm') {
352 strerror_r(saved_errno
, ebuf
, sizeof(ebuf
)))
353 prlen
= snprintf_ss(t
, fmt_left
, "Error %d",
356 prlen
= snprintf_ss(t
, fmt_left
, "%s", ebuf
);
357 if (prlen
>= fmt_left
)
358 prlen
= fmt_left
- 1;
361 } else if (ch
== '%' && fmt
[1] == '%' && fmt_left
> 2) {
376 prlen
= vsnprintf_ss(p
, tbuf_left
, fmt_cpy
, ap
);
378 prlen
= vsnprintf(p
, tbuf_left
, fmt_cpy
, ap
);
382 /* Output to stderr if requested. */
383 if (data
->log_stat
& LOG_PERROR
) {
386 iov
[0].iov_base
= stdp
;
387 iov
[0].iov_len
= cnt
- (stdp
- tbuf
);
388 iov
[1].iov_base
= __UNCONST("\n");
390 (void)writev(STDERR_FILENO
, iov
, 2);
393 /* Get connected, output the message to the local logger. */
395 mutex_lock(&syslog_mutex
);
396 opened
= !data
->opened
;
398 openlog_unlocked_r(data
->log_tag
, data
->log_stat
, 0, data
);
402 * If the send() failed, there are two likely scenarios:
403 * 1) syslogd was restarted
404 * 2) /dev/log is out of socket buffer space
405 * We attempt to reconnect to /dev/log to take care of
406 * case #1 and keep send()ing data to cover case #2
407 * to give syslogd a chance to empty its socket buffer.
409 for (tries
= 0; tries
< MAXTRIES
; tries
++) {
410 if (send(data
->log_file
, tbuf
, cnt
, 0) != -1)
412 if (errno
!= ENOBUFS
) {
413 disconnectlog_r(data
);
420 * Output the message to the console; try not to block
421 * as a blocking console should not stop other processes.
422 * Make sure the error reported is the one from the syslogd failure.
424 if (tries
== MAXTRIES
&& (data
->log_stat
& LOG_CONS
) &&
425 (fd
= open(_PATH_CONSOLE
, O_WRONLY
|O_NONBLOCK
, 0)) >= 0 &&
426 (p
= strchr(tbuf
, '>')) != NULL
) {
428 iov
[0].iov_base
= ++p
;
429 iov
[0].iov_len
= cnt
- (p
- tbuf
);
430 iov
[1].iov_base
= __UNCONST("\r\n");
432 (void)writev(fd
, iov
, 2);
437 mutex_unlock(&syslog_mutex
);
439 if (data
!= &sdata
&& opened
) {
440 /* preserve log tag */
441 const char *ident
= data
->log_tag
;
443 data
->log_tag
= ident
;
448 disconnectlog_r(struct syslog_data
*data
)
451 * If the user closed the FD and opened another in the same slot,
452 * that's their problem. They should close it before calling on
455 if (data
->log_file
!= -1) {
456 (void)close(data
->log_file
);
459 data
->connected
= 0; /* retry connect */
463 connectlog_r(struct syslog_data
*data
)
465 /* AF_UNIX address of local logger */
466 static const struct sockaddr_un sun
= {
467 .sun_family
= AF_LOCAL
,
468 .sun_len
= sizeof(sun
),
469 .sun_path
= _PATH_LOG
,
472 if (data
->log_file
== -1 || fcntl(data
->log_file
, F_GETFL
, 0) == -1) {
473 if ((data
->log_file
= socket(AF_UNIX
, SOCK_DGRAM
, 0)) == -1)
475 (void)fcntl(data
->log_file
, F_SETFD
, FD_CLOEXEC
);
478 if (!data
->connected
) {
479 if (connect(data
->log_file
,
480 (const struct sockaddr
*)(const void *)&sun
,
481 sizeof(sun
)) == -1) {
482 (void)close(data
->log_file
);
490 openlog_unlocked_r(const char *ident
, int logstat
, int logfac
,
491 struct syslog_data
*data
)
494 data
->log_tag
= ident
;
495 data
->log_stat
= logstat
;
496 if (logfac
!= 0 && (logfac
&~ LOG_FACMASK
) == 0)
497 data
->log_fac
= logfac
;
499 if (data
->log_stat
& LOG_NDELAY
) /* open immediately */
502 /* We could cache this, but then it might change */
503 if (gethostname(hostname
, sizeof(hostname
)) == -1
504 || hostname
[0] == '\0') {
505 /* can this really happen? */
513 openlog_r(const char *ident
, int logstat
, int logfac
, struct syslog_data
*data
)
516 mutex_lock(&syslog_mutex
);
517 openlog_unlocked_r(ident
, logstat
, logfac
, data
);
519 mutex_unlock(&syslog_mutex
);
523 closelog_r(struct syslog_data
*data
)
526 mutex_lock(&syslog_mutex
);
527 (void)close(data
->log_file
);
530 data
->log_tag
= NULL
;
532 mutex_unlock(&syslog_mutex
);
536 setlogmask_r(int pmask
, struct syslog_data
*data
)
540 omask
= data
->log_mask
;
542 data
->log_mask
= pmask
;