VM: simplify slab allocator
[minix.git] / lib / libc / gen / syslog.c
blob225919c993bbbf0bfb293585706b7894b7a8aa9b
1 /* $NetBSD: syslog.c,v 1.48 2010/05/13 22:40:14 christos Exp $ */
3 /*
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
9 * are met:
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
29 * SUCH DAMAGE.
32 #include <sys/cdefs.h>
33 #if defined(LIBC_SCCS) && !defined(lint)
34 #if 0
35 static char sccsid[] = "@(#)syslog.c 8.5 (Berkeley) 4/29/95";
36 #else
37 __RCSID("$NetBSD: syslog.c,v 1.48 2010/05/13 22:40:14 christos Exp $");
38 #endif
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>
46 #include <sys/uio.h>
47 #include <sys/un.h>
48 #include <netdb.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <paths.h>
53 #include <stdarg.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <time.h>
58 #include <unistd.h>
59 #include "reentrant.h"
60 #include "extern.h"
62 #ifdef __weak_alias
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)
82 #endif
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
94 #ifdef _REENTRANT
95 static mutex_t syslog_mutex = MUTEX_INITIALIZER;
96 #endif
98 static char hostname[MAXHOSTNAMELEN];
101 * syslog, vsyslog --
102 * print message on log file; output is intended for syslogd(8).
104 void
105 syslog(int pri, const char *fmt, ...)
107 va_list ap;
109 va_start(ap, fmt);
110 vsyslog(pri, fmt, ap);
111 va_end(ap);
114 void
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
124 void
125 syslogp(int pri, const char *msgid, const char *sdfmt, const char *msgfmt, ...)
127 va_list ap;
129 va_start(ap, msgfmt);
130 vsyslogp(pri, msgid, sdfmt, msgfmt, ap);
131 va_end(ap);
134 void
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);
140 void
141 openlog(const char *ident, int logstat, int logfac)
143 openlog_r(ident, logstat, logfac, &sdata);
146 void
147 closelog(void)
149 closelog_r(&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() */
161 void
162 syslog_r(int pri, struct syslog_data *data, const char *fmt, ...)
164 va_list ap;
166 va_start(ap, fmt);
167 vsyslog_r(pri, data, fmt, ap);
168 va_end(ap);
171 void
172 syslogp_r(int pri, struct syslog_data *data, const char *msgid,
173 const char *sdfmt, const char *msgfmt, ...)
175 va_list ap;
177 va_start(ap, msgfmt);
178 vsyslogp_r(pri, data, msgid, sdfmt, msgfmt, ap);
179 va_end(ap);
182 void
183 syslog_ss(int pri, struct syslog_data *data, const char *fmt, ...)
185 va_list ap;
187 va_start(ap, fmt);
188 vsyslog_r(pri | LOG_SIGNAL_SAFE, data, fmt, ap);
189 va_end(ap);
192 void
193 syslogp_ss(int pri, struct syslog_data *data, const char *msgid,
194 const char *sdfmt, const char *msgfmt, ...)
196 va_list ap;
198 va_start(ap, msgfmt);
199 vsyslogp_r(pri | LOG_SIGNAL_SAFE, data, msgid, sdfmt, msgfmt, ap);
200 va_end(ap);
203 void
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);
209 void
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);
217 void
218 vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap)
220 vsyslogp_r(pri, data, NULL, NULL, fmt, ap);
223 void
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;
230 char ch, *p, *t;
231 struct timeval tv;
232 struct tm tmnow;
233 time_t now;
234 int fd, saved_errno;
235 #define TBUF_LEN 2048
236 #define FMT_LEN 1024
237 #define MAXTRIES 10
238 char tbuf[TBUF_LEN], fmt_cpy[FMT_LEN], fmt_cat[FMT_LEN] = "";
239 size_t tbuf_left, fmt_left, msgsdlen;
240 char *fmt = fmt_cat;
241 int signal_safe = pri & LOG_SIGNAL_SAFE;
242 struct iovec iov[7]; /* prog + [ + pid + ]: + fmt + crlf */
243 int opened, iovcnt;
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))
257 return;
259 saved_errno = errno;
261 /* Set default facility if none specified. */
262 if ((pri & LOG_FACMASK) == 0)
263 pri |= data->log_fac;
265 /* Build the message. */
266 p = tbuf;
267 tbuf_left = TBUF_LEN;
269 #define DEC() \
270 do { \
271 if (prlen >= tbuf_left) \
272 prlen = tbuf_left - 1; \
273 p += prlen; \
274 tbuf_left -= prlen; \
275 } while (/*CONSTCOND*/0)
277 prlen = snprintf_ss(p, tbuf_left, "<%d>1 ", pri);
278 DEC();
280 if (!signal_safe && (gettimeofday(&tv, NULL) != -1)) {
281 /* strftime() implies tzset(), localtime_r() doesn't. */
282 tzset();
283 now = (time_t) tv.tv_sec;
284 localtime_r(&now, &tmnow);
286 prlen = strftime(p, tbuf_left, "%FT%T", &tmnow);
287 DEC();
288 prlen = snprintf(p, tbuf_left, ".%06ld", (long)tv.tv_usec);
289 DEC();
290 prlen = strftime(p, tbuf_left-1, "%z", &tmnow);
291 /* strftime gives eg. "+0200", but we need "+02:00" */
292 if (prlen == 5) {
293 p[prlen+1] = p[prlen];
294 p[prlen] = p[prlen-1];
295 p[prlen-1] = p[prlen-2];
296 p[prlen-2] = ':';
297 prlen += 1;
299 } else {
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);
307 DEC();
308 prlen = snprintf_ss(p, tbuf_left, " %s ", hostname);
309 DEC();
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)) {
317 iovcnt = 0;
318 iov[iovcnt].iov_base = p;
319 iov[iovcnt].iov_len = prlen - 1;
320 iovcnt++;
322 DEC();
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;
329 iovcnt++;
330 iov[iovcnt].iov_base = p;
331 iov[iovcnt].iov_len = prlen - 1;
332 iovcnt++;
333 iov[iovcnt].iov_base = __UNCONST(BRCOSP);
334 iov[iovcnt].iov_len = 3;
335 iovcnt++;
337 } else {
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;
342 iovcnt++;
345 DEC();
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);
353 } else
354 strlcat(fmt_cat, "- ", FMT_LEN);
356 if (sdfmt != NULL && *sdfmt != '\0') {
357 strlcat(fmt_cat, sdfmt, FMT_LEN);
358 } else
359 strlcat(fmt_cat, "-", FMT_LEN);
361 if (data->log_stat & (LOG_PERROR|LOG_CONS))
362 msgsdlen = strlen(fmt_cat) + 1;
363 else
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') {
377 char ebuf[128];
378 ++fmt;
379 if (signal_safe ||
380 strerror_r(saved_errno, ebuf, sizeof(ebuf)))
381 prlen = snprintf_ss(t, fmt_left, "Error %d",
382 saved_errno);
383 else
384 prlen = snprintf_ss(t, fmt_left, "%s", ebuf);
385 if (prlen >= fmt_left)
386 prlen = fmt_left - 1;
387 t += prlen;
388 fmt_left -= prlen;
389 } else if (ch == '%' && fmt[1] == '%' && fmt_left > 2) {
390 *t++ = '%';
391 *t++ = '%';
392 fmt++;
393 fmt_left -= 2;
394 } else {
395 if (fmt_left > 1) {
396 *t++ = ch;
397 fmt_left--;
401 *t = '\0';
403 if (signal_safe)
404 prlen = vsnprintf_ss(p, tbuf_left, fmt_cpy, ap);
405 else
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;
411 iovcnt++;
414 DEC();
415 cnt = p - tbuf;
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. */
425 #ifndef __minix
426 if (data == &sdata)
427 mutex_lock(&syslog_mutex);
428 #endif
429 opened = !data->opened;
430 if (opened)
431 openlog_unlocked_r(data->log_tag, data->log_stat, 0, data);
432 connectlog_r(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)
444 break;
445 if (errno != ENOBUFS) {
446 disconnectlog_r(data);
447 connectlog_r(data);
448 } else
449 (void)usleep(1);
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);
462 (void)close(fd);
465 #ifndef __minix
466 if (data == &sdata)
467 mutex_unlock(&syslog_mutex);
468 #endif
470 if (data != &sdata && opened) {
471 /* preserve log tag */
472 const char *ident = data->log_tag;
473 closelog_r(data);
474 data->log_tag = ident;
478 static void
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
484 * system services.
486 if (data->log_file != -1) {
487 (void)close(data->log_file);
488 data->log_file = -1;
490 data->connected = 0; /* retry connect */
493 static void
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,
499 #ifndef __minix
500 .sun_len = sizeof(sun),
501 #endif
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)
507 return;
508 (void)fcntl(data->log_file, F_SETFD, FD_CLOEXEC);
509 data->connected = 0;
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);
516 data->log_file = -1;
517 } else
518 data->connected = 1;
522 static void
523 openlog_unlocked_r(const char *ident, int logstat, int logfac,
524 struct syslog_data *data)
526 if (ident != NULL)
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 */
533 connectlog_r(data);
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? */
539 hostname[0] = '-';
540 hostname[1] = '\0';
542 data->opened = 1;
545 void
546 openlog_r(const char *ident, int logstat, int logfac, struct syslog_data *data)
548 #ifndef __minix
549 if (data == &sdata)
550 mutex_lock(&syslog_mutex);
551 #endif
552 openlog_unlocked_r(ident, logstat, logfac, data);
553 #ifndef __minix
554 if (data == &sdata)
555 mutex_unlock(&syslog_mutex);
556 #endif
559 void
560 closelog_r(struct syslog_data *data)
562 #ifndef __minix
563 if (data == &sdata)
564 mutex_lock(&syslog_mutex);
565 #endif
566 (void)close(data->log_file);
567 data->log_file = -1;
568 data->connected = 0;
569 data->log_tag = NULL;
570 #ifndef __minix
571 if (data == &sdata)
572 mutex_unlock(&syslog_mutex);
573 #endif
577 setlogmask_r(int pmask, struct syslog_data *data)
579 int omask;
581 omask = data->log_mask;
582 if (pmask != 0)
583 data->log_mask = pmask;
584 return omask;