1 /* $NetBSD: syslog.c,v 1.48 2010/05/13 22:40:14 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.48 2010/05/13 22:40:14 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 static const char BRCOSP
[] = "]: ";
228 static const char CRLF
[] = "\r\n";
229 size_t cnt
, prlen
, tries
;
235 #define TBUF_LEN 2048
238 char tbuf
[TBUF_LEN
], fmt_cpy
[FMT_LEN
], fmt_cat
[FMT_LEN
] = "";
239 size_t tbuf_left
, fmt_left
, msgsdlen
;
241 int signal_safe
= pri
& LOG_SIGNAL_SAFE
;
242 struct iovec iov
[7]; /* prog + [ + pid + ]: + fmt + crlf */
245 pri
&= ~LOG_SIGNAL_SAFE
;
247 #define INTERNALLOG LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
248 /* Check for invalid bits. */
249 if (pri
& ~(LOG_PRIMASK
|LOG_FACMASK
)) {
250 syslog_r(INTERNALLOG
| signal_safe
, data
,
251 "syslog_r: unknown facility/priority: %x", pri
);
252 pri
&= LOG_PRIMASK
|LOG_FACMASK
;
255 /* Check priority against setlogmask values. */
256 if (!(LOG_MASK(LOG_PRI(pri
)) & data
->log_mask
))
261 /* Set default facility if none specified. */
262 if ((pri
& LOG_FACMASK
) == 0)
263 pri
|= data
->log_fac
;
265 /* Build the message. */
267 tbuf_left
= TBUF_LEN
;
271 if (prlen >= tbuf_left) \
272 prlen = tbuf_left - 1; \
274 tbuf_left -= prlen; \
275 } while (/*CONSTCOND*/0)
277 prlen
= snprintf_ss(p
, tbuf_left
, "<%d>1 ", pri
);
280 if (!signal_safe
&& (gettimeofday(&tv
, NULL
) != -1)) {
281 /* strftime() implies tzset(), localtime_r() doesn't. */
283 now
= (time_t) tv
.tv_sec
;
284 localtime_r(&now
, &tmnow
);
286 prlen
= strftime(p
, tbuf_left
, "%FT%T", &tmnow
);
288 prlen
= snprintf(p
, tbuf_left
, ".%06ld", (long)tv
.tv_usec
);
290 prlen
= strftime(p
, tbuf_left
-1, "%z", &tmnow
);
291 /* strftime gives eg. "+0200", but we need "+02:00" */
293 p
[prlen
+1] = p
[prlen
];
294 p
[prlen
] = p
[prlen
-1];
295 p
[prlen
-1] = p
[prlen
-2];
300 prlen
= snprintf_ss(p
, tbuf_left
, "-");
302 /* if gmtime_r() was signal-safe we could output the UTC-time:
303 gmtime_r(&now, &tmnow);
304 prlen = strftime(p, tbuf_left, "%FT%TZ", &tmnow);
308 prlen
= snprintf_ss(p
, tbuf_left
, " %s ", hostname
);
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
: "-");
316 if (data
->log_stat
& (LOG_PERROR
|LOG_CONS
)) {
318 iov
[iovcnt
].iov_base
= p
;
319 iov
[iovcnt
].iov_len
= prlen
- 1;
324 if (data
->log_stat
& LOG_PID
) {
325 prlen
= snprintf_ss(p
, tbuf_left
, "%d ", getpid());
326 if (data
->log_stat
& (LOG_PERROR
|LOG_CONS
)) {
327 iov
[iovcnt
].iov_base
= __UNCONST("[");
328 iov
[iovcnt
].iov_len
= 1;
330 iov
[iovcnt
].iov_base
= p
;
331 iov
[iovcnt
].iov_len
= prlen
- 1;
333 iov
[iovcnt
].iov_base
= __UNCONST(BRCOSP
);
334 iov
[iovcnt
].iov_len
= 3;
338 prlen
= snprintf_ss(p
, tbuf_left
, "- ");
339 if (data
->log_stat
& (LOG_PERROR
|LOG_CONS
)) {
340 iov
[iovcnt
].iov_base
= __UNCONST(BRCOSP
+ 1);
341 iov
[iovcnt
].iov_len
= 2;
348 * concat the format strings, then use one vsnprintf()
350 if (msgid
!= NULL
&& *msgid
!= '\0') {
351 strlcat(fmt_cat
, msgid
, FMT_LEN
);
352 strlcat(fmt_cat
, " ", FMT_LEN
);
354 strlcat(fmt_cat
, "- ", FMT_LEN
);
356 if (sdfmt
!= NULL
&& *sdfmt
!= '\0') {
357 strlcat(fmt_cat
, sdfmt
, FMT_LEN
);
359 strlcat(fmt_cat
, "-", FMT_LEN
);
361 if (data
->log_stat
& (LOG_PERROR
|LOG_CONS
))
362 msgsdlen
= strlen(fmt_cat
) + 1;
364 msgsdlen
= 0; /* XXX: GCC */
366 if (msgfmt
!= NULL
&& *msgfmt
!= '\0') {
367 strlcat(fmt_cat
, " ", FMT_LEN
);
368 strlcat(fmt_cat
, msgfmt
, FMT_LEN
);
372 * We wouldn't need this mess if printf handled %m, or if
373 * strerror() had been invented before syslog().
375 for (t
= fmt_cpy
, fmt_left
= FMT_LEN
; (ch
= *fmt
) != '\0'; ++fmt
) {
376 if (ch
== '%' && fmt
[1] == 'm') {
380 strerror_r(saved_errno
, ebuf
, sizeof(ebuf
)))
381 prlen
= snprintf_ss(t
, fmt_left
, "Error %d",
384 prlen
= snprintf_ss(t
, fmt_left
, "%s", ebuf
);
385 if (prlen
>= fmt_left
)
386 prlen
= fmt_left
- 1;
389 } else if (ch
== '%' && fmt
[1] == '%' && fmt_left
> 2) {
404 prlen
= vsnprintf_ss(p
, tbuf_left
, fmt_cpy
, ap
);
406 prlen
= vsnprintf(p
, tbuf_left
, fmt_cpy
, ap
);
408 if (data
->log_stat
& (LOG_PERROR
|LOG_CONS
)) {
409 iov
[iovcnt
].iov_base
= p
+ msgsdlen
;
410 iov
[iovcnt
].iov_len
= prlen
- msgsdlen
;
417 /* Output to stderr if requested. */
418 if (data
->log_stat
& LOG_PERROR
) {
419 iov
[iovcnt
].iov_base
= __UNCONST(CRLF
+ 1);
420 iov
[iovcnt
].iov_len
= 1;
421 (void)writev(STDERR_FILENO
, iov
, iovcnt
+ 1);
424 /* Get connected, output the message to the local logger. */
427 mutex_lock(&syslog_mutex
);
429 opened
= !data
->opened
;
431 openlog_unlocked_r(data
->log_tag
, data
->log_stat
, 0, data
);
435 * If the send() failed, there are two likely scenarios:
436 * 1) syslogd was restarted
437 * 2) /dev/log is out of socket buffer space
438 * We attempt to reconnect to /dev/log to take care of
439 * case #1 and keep send()ing data to cover case #2
440 * to give syslogd a chance to empty its socket buffer.
442 for (tries
= 0; tries
< MAXTRIES
; tries
++) {
443 if (send(data
->log_file
, tbuf
, cnt
, 0) != -1)
445 if (errno
!= ENOBUFS
) {
446 disconnectlog_r(data
);
453 * Output the message to the console; try not to block
454 * as a blocking console should not stop other processes.
455 * Make sure the error reported is the one from the syslogd failure.
457 if (tries
== MAXTRIES
&& (data
->log_stat
& LOG_CONS
) &&
458 (fd
= open(_PATH_CONSOLE
, O_WRONLY
|O_NONBLOCK
, 0)) >= 0) {
459 iov
[iovcnt
].iov_base
= __UNCONST(CRLF
);
460 iov
[iovcnt
].iov_len
= 2;
461 (void)writev(fd
, iov
, iovcnt
+ 1);
467 mutex_unlock(&syslog_mutex
);
470 if (data
!= &sdata
&& opened
) {
471 /* preserve log tag */
472 const char *ident
= data
->log_tag
;
474 data
->log_tag
= ident
;
479 disconnectlog_r(struct syslog_data
*data
)
482 * If the user closed the FD and opened another in the same slot,
483 * that's their problem. They should close it before calling on
486 if (data
->log_file
!= -1) {
487 (void)close(data
->log_file
);
490 data
->connected
= 0; /* retry connect */
494 connectlog_r(struct syslog_data
*data
)
496 /* AF_UNIX address of local logger */
497 static const struct sockaddr_un sun
= {
498 .sun_family
= AF_LOCAL
,
500 .sun_len
= sizeof(sun
),
502 .sun_path
= _PATH_LOG
,
505 if (data
->log_file
== -1 || fcntl(data
->log_file
, F_GETFL
, 0) == -1) {
506 if ((data
->log_file
= socket(AF_UNIX
, SOCK_DGRAM
, 0)) == -1)
508 (void)fcntl(data
->log_file
, F_SETFD
, FD_CLOEXEC
);
511 if (!data
->connected
) {
512 if (connect(data
->log_file
,
513 (const struct sockaddr
*)(const void *)&sun
,
514 sizeof(sun
)) == -1) {
515 (void)close(data
->log_file
);
523 openlog_unlocked_r(const char *ident
, int logstat
, int logfac
,
524 struct syslog_data
*data
)
527 data
->log_tag
= ident
;
528 data
->log_stat
= logstat
;
529 if (logfac
!= 0 && (logfac
&~ LOG_FACMASK
) == 0)
530 data
->log_fac
= logfac
;
532 if (data
->log_stat
& LOG_NDELAY
) /* open immediately */
535 /* We could cache this, but then it might change */
536 if (gethostname(hostname
, sizeof(hostname
)) == -1
537 || hostname
[0] == '\0') {
538 /* can this really happen? */
546 openlog_r(const char *ident
, int logstat
, int logfac
, struct syslog_data
*data
)
550 mutex_lock(&syslog_mutex
);
552 openlog_unlocked_r(ident
, logstat
, logfac
, data
);
555 mutex_unlock(&syslog_mutex
);
560 closelog_r(struct syslog_data
*data
)
564 mutex_lock(&syslog_mutex
);
566 (void)close(data
->log_file
);
569 data
->log_tag
= NULL
;
572 mutex_unlock(&syslog_mutex
);
577 setlogmask_r(int pmask
, struct syslog_data
*data
)
581 omask
= data
->log_mask
;
583 data
->log_mask
= pmask
;