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
);
125 f
->__bufp
+= strftime (f
->__bufp
, f
->__put_limit
- f
->__bufp
,
126 "%h %e %T ", localtime (&now
));
132 if (LogStat
& LOG_PID
)
133 fprintf (f
, "[%d]", getpid ());
135 putc (':', f
), putc (' ', f
);
137 /* We have the header. Print the user's format into the buffer. */
138 vfprintf (f
, fmt
, ap
);
140 /* Close the memory stream; this will finalize the data
141 into a malloc'd buffer in BUF. */
144 /* Output to stderr if requested. */
145 if (LogStat
& LOG_PERROR
) {
147 register struct iovec
*v
= iov
;
149 v
->iov_base
= buf
+ msgoff
;
150 v
->iov_len
= bufsize
- msgoff
;
152 v
->iov_base
= (char *) "\n";
154 (void)writev(STDERR_FILENO
, iov
, 2);
157 /* Get connected, output the message to the local logger. */
159 openlog(LogTag
, LogStat
| LOG_NDELAY
, 0);
160 if (send(LogFile
, buf
, bufsize
, 0) < 0)
163 * Output the message to the console; don't worry about blocking,
164 * if console blocks everything will. Make sure the error reported
165 * is the one from the syslogd failure.
167 if (LogStat
& LOG_CONS
&&
168 (fd
= open(_PATH_CONSOLE
, O_WRONLY
, 0)) >= 0)
170 dprintf (fd
, "%s\r\n", buf
+ msgoff
);
178 static struct sockaddr SyslogAddr
; /* AF_UNIX address of local logger */
181 openlog(ident
, logstat
, logfac
)
188 if (logfac
!= 0 && (logfac
&~ LOG_FACMASK
) == 0)
189 LogFacility
= logfac
;
192 SyslogAddr
.sa_family
= AF_UNIX
;
193 (void)strncpy(SyslogAddr
.sa_data
, _PATH_LOG
,
194 sizeof(SyslogAddr
.sa_data
));
195 if (LogStat
& LOG_NDELAY
) {
196 if ((LogFile
= socket(AF_UNIX
, SOCK_DGRAM
, 0)) == -1)
198 (void)fcntl(LogFile
, F_SETFD
, 1);
201 if (LogFile
!= -1 && !connected
)
202 if (connect(LogFile
, &SyslogAddr
, sizeof(SyslogAddr
)) == -1) {
203 (void)close(LogFile
);
212 (void)close(LogFile
);
217 /* setlogmask -- set the log mask level */