2 * Copyright (c) 1983, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)syslog.c 8.4 (Berkeley) 3/18/94";
36 #endif /* LIBC_SCCS and not lint */
38 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <sys/syslog.h>
59 static int LogFile
= -1; /* fd for log */
60 static int connected
; /* have done connect */
61 static int LogStat
= 0; /* status bits, set by openlog() */
62 static const char *LogTag
= NULL
; /* string to tag the entry with */
63 static int LogFacility
= LOG_USER
; /* default facility code */
64 static int LogMask
= 0xff; /* mask of priorities to be logged */
65 extern char *__progname
; /* Program name, from crt0. */
69 * print message on log file; output is intended for syslogd(8).
73 syslog(int pri
, const char *fmt
, ...)
75 syslog(pri
, fmt
, va_alist
)
88 vsyslog(pri
, fmt
, ap
);
95 register const char *fmt
;
103 size_t prioff
, msgoff
;
105 #define INTERNALLOG LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
106 /* Check for invalid bits. */
107 if (pri
& ~(LOG_PRIMASK
|LOG_FACMASK
)) {
109 "syslog: unknown facility/priority: %x", pri
);
110 pri
&= LOG_PRIMASK
|LOG_FACMASK
;
113 /* Check priority against setlogmask values. */
114 if (!LOG_MASK(LOG_PRI(pri
)) & LogMask
)
117 /* Set default facility if none specified. */
118 if ((pri
& LOG_FACMASK
) == 0)
121 /* Build the message in a memory-buffer stream. */
122 f
= open_memstream (&buf
, &bufsize
);
123 prioff
= fprintf (f
, "<%d>", pri
);
126 f
->_IO_write_ptr
+= strftime (f
->_IO_write_ptr
,
127 f
->_IO_write_end
- f
->_IO_write_ptr
,
128 "%h %e %T ", localtime (&now
));
130 f
->__bufp
+= strftime (f
->__bufp
, f
->__put_limit
- f
->__bufp
,
131 "%h %e %T ", localtime (&now
));
138 if (LogStat
& LOG_PID
)
139 fprintf (f
, "[%d]", getpid ());
141 putc (':', f
), putc (' ', f
);
143 /* We have the header. Print the user's format into the buffer. */
144 vfprintf (f
, fmt
, ap
);
146 /* Close the memory stream; this will finalize the data
147 into a malloc'd buffer in BUF. */
150 /* Output to stderr if requested. */
151 if (LogStat
& LOG_PERROR
) {
153 register struct iovec
*v
= iov
;
155 v
->iov_base
= buf
+ msgoff
;
156 v
->iov_len
= bufsize
- msgoff
;
158 v
->iov_base
= (char *) "\n";
160 (void)writev(STDERR_FILENO
, iov
, 2);
163 /* Get connected, output the message to the local logger. */
165 openlog(LogTag
, LogStat
| LOG_NDELAY
, 0);
166 if (send(LogFile
, buf
, bufsize
, 0) < 0)
169 * Output the message to the console; don't worry about blocking,
170 * if console blocks everything will. Make sure the error reported
171 * is the one from the syslogd failure.
173 if (LogStat
& LOG_CONS
&&
174 (fd
= open(_PATH_CONSOLE
, O_WRONLY
, 0)) >= 0)
176 dprintf (fd
, "%s\r\n", buf
+ msgoff
);
184 static struct sockaddr SyslogAddr
; /* AF_UNIX address of local logger */
187 openlog(ident
, logstat
, logfac
)
194 if (logfac
!= 0 && (logfac
&~ LOG_FACMASK
) == 0)
195 LogFacility
= logfac
;
198 SyslogAddr
.sa_family
= AF_UNIX
;
199 (void)strncpy(SyslogAddr
.sa_data
, _PATH_LOG
,
200 sizeof(SyslogAddr
.sa_data
));
201 if (LogStat
& LOG_NDELAY
) {
202 if ((LogFile
= socket(AF_UNIX
, SOCK_DGRAM
, 0)) == -1)
204 (void)fcntl(LogFile
, F_SETFD
, 1);
207 if (LogFile
!= -1 && !connected
)
208 if (connect(LogFile
, &SyslogAddr
, sizeof(SyslogAddr
)) == -1) {
209 (void)close(LogFile
);
218 (void)close(LogFile
);
223 /* setlogmask -- set the log mask level */