Home | History | Annotate | Line # | Download | only in gen
syslog.c revision 1.1.1.3
      1      1.1    cgd /*
      2  1.1.1.2    cgd  * Copyright (c) 1983, 1988, 1993
      3  1.1.1.2    cgd  *	The Regents of the University of California.  All rights reserved.
      4      1.1    cgd  *
      5      1.1    cgd  * Redistribution and use in source and binary forms, with or without
      6      1.1    cgd  * modification, are permitted provided that the following conditions
      7      1.1    cgd  * are met:
      8      1.1    cgd  * 1. Redistributions of source code must retain the above copyright
      9      1.1    cgd  *    notice, this list of conditions and the following disclaimer.
     10      1.1    cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11      1.1    cgd  *    notice, this list of conditions and the following disclaimer in the
     12      1.1    cgd  *    documentation and/or other materials provided with the distribution.
     13      1.1    cgd  * 3. All advertising materials mentioning features or use of this software
     14      1.1    cgd  *    must display the following acknowledgement:
     15      1.1    cgd  *	This product includes software developed by the University of
     16      1.1    cgd  *	California, Berkeley and its contributors.
     17      1.1    cgd  * 4. Neither the name of the University nor the names of its contributors
     18      1.1    cgd  *    may be used to endorse or promote products derived from this software
     19      1.1    cgd  *    without specific prior written permission.
     20      1.1    cgd  *
     21      1.1    cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22      1.1    cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23      1.1    cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24      1.1    cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25      1.1    cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26      1.1    cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27      1.1    cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28      1.1    cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29      1.1    cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30      1.1    cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31      1.1    cgd  * SUCH DAMAGE.
     32      1.1    cgd  */
     33      1.1    cgd 
     34      1.1    cgd #if defined(LIBC_SCCS) && !defined(lint)
     35  1.1.1.3  perry static char sccsid[] = "@(#)syslog.c	8.5 (Berkeley) 4/29/95";
     36      1.1    cgd #endif /* LIBC_SCCS and not lint */
     37      1.1    cgd 
     38      1.1    cgd #include <sys/types.h>
     39      1.1    cgd #include <sys/socket.h>
     40      1.1    cgd #include <sys/syslog.h>
     41      1.1    cgd #include <sys/uio.h>
     42      1.1    cgd #include <netdb.h>
     43  1.1.1.2    cgd 
     44  1.1.1.2    cgd #include <errno.h>
     45  1.1.1.2    cgd #include <fcntl.h>
     46  1.1.1.2    cgd #include <paths.h>
     47  1.1.1.2    cgd #include <stdio.h>
     48      1.1    cgd #include <string.h>
     49  1.1.1.2    cgd #include <time.h>
     50  1.1.1.2    cgd #include <unistd.h>
     51  1.1.1.2    cgd 
     52      1.1    cgd #if __STDC__
     53      1.1    cgd #include <stdarg.h>
     54      1.1    cgd #else
     55      1.1    cgd #include <varargs.h>
     56      1.1    cgd #endif
     57      1.1    cgd 
     58      1.1    cgd static int	LogFile = -1;		/* fd for log */
     59      1.1    cgd static int	connected;		/* have done connect */
     60      1.1    cgd static int	LogStat = 0;		/* status bits, set by openlog() */
     61  1.1.1.2    cgd static const char *LogTag = NULL;	/* string to tag the entry with */
     62      1.1    cgd static int	LogFacility = LOG_USER;	/* default facility code */
     63      1.1    cgd static int	LogMask = 0xff;		/* mask of priorities to be logged */
     64  1.1.1.2    cgd extern char	*__progname;		/* Program name, from crt0. */
     65      1.1    cgd 
     66      1.1    cgd /*
     67      1.1    cgd  * syslog, vsyslog --
     68      1.1    cgd  *	print message on log file; output is intended for syslogd(8).
     69      1.1    cgd  */
     70      1.1    cgd void
     71      1.1    cgd #if __STDC__
     72      1.1    cgd syslog(int pri, const char *fmt, ...)
     73      1.1    cgd #else
     74      1.1    cgd syslog(pri, fmt, va_alist)
     75      1.1    cgd 	int pri;
     76      1.1    cgd 	char *fmt;
     77      1.1    cgd 	va_dcl
     78      1.1    cgd #endif
     79      1.1    cgd {
     80      1.1    cgd 	va_list ap;
     81      1.1    cgd 
     82      1.1    cgd #if __STDC__
     83      1.1    cgd 	va_start(ap, fmt);
     84      1.1    cgd #else
     85      1.1    cgd 	va_start(ap);
     86      1.1    cgd #endif
     87      1.1    cgd 	vsyslog(pri, fmt, ap);
     88      1.1    cgd 	va_end(ap);
     89      1.1    cgd }
     90      1.1    cgd 
     91      1.1    cgd void
     92      1.1    cgd vsyslog(pri, fmt, ap)
     93      1.1    cgd 	int pri;
     94      1.1    cgd 	register const char *fmt;
     95      1.1    cgd 	va_list ap;
     96      1.1    cgd {
     97      1.1    cgd 	register int cnt;
     98  1.1.1.2    cgd 	register char ch, *p, *t;
     99  1.1.1.2    cgd 	time_t now;
    100      1.1    cgd 	int fd, saved_errno;
    101  1.1.1.2    cgd 	char *stdp, tbuf[2048], fmt_cpy[1024];
    102      1.1    cgd 
    103  1.1.1.2    cgd #define	INTERNALLOG	LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
    104  1.1.1.2    cgd 	/* Check for invalid bits. */
    105  1.1.1.2    cgd 	if (pri & ~(LOG_PRIMASK|LOG_FACMASK)) {
    106  1.1.1.2    cgd 		syslog(INTERNALLOG,
    107  1.1.1.2    cgd 		    "syslog: unknown facility/priority: %x", pri);
    108  1.1.1.2    cgd 		pri &= LOG_PRIMASK|LOG_FACMASK;
    109  1.1.1.2    cgd 	}
    110  1.1.1.2    cgd 
    111  1.1.1.2    cgd 	/* Check priority against setlogmask values. */
    112  1.1.1.3  perry 	if (!(LOG_MASK(LOG_PRI(pri)) & LogMask))
    113      1.1    cgd 		return;
    114      1.1    cgd 
    115      1.1    cgd 	saved_errno = errno;
    116      1.1    cgd 
    117  1.1.1.2    cgd 	/* Set default facility if none specified. */
    118      1.1    cgd 	if ((pri & LOG_FACMASK) == 0)
    119      1.1    cgd 		pri |= LogFacility;
    120      1.1    cgd 
    121  1.1.1.2    cgd 	/* Build the message. */
    122      1.1    cgd 	(void)time(&now);
    123  1.1.1.2    cgd 	p = tbuf + sprintf(tbuf, "<%d>", pri);
    124  1.1.1.2    cgd 	p += strftime(p, sizeof (tbuf) - (p - tbuf), "%h %e %T ",
    125  1.1.1.2    cgd 	    localtime(&now));
    126      1.1    cgd 	if (LogStat & LOG_PERROR)
    127      1.1    cgd 		stdp = p;
    128  1.1.1.2    cgd 	if (LogTag == NULL)
    129  1.1.1.2    cgd 		LogTag = __progname;
    130  1.1.1.2    cgd 	if (LogTag != NULL)
    131  1.1.1.2    cgd 		p += sprintf(p, "%s", LogTag);
    132  1.1.1.2    cgd 	if (LogStat & LOG_PID)
    133  1.1.1.2    cgd 		p += sprintf(p, "[%d]", getpid());
    134  1.1.1.2    cgd 	if (LogTag != NULL) {
    135      1.1    cgd 		*p++ = ':';
    136      1.1    cgd 		*p++ = ' ';
    137      1.1    cgd 	}
    138      1.1    cgd 
    139  1.1.1.2    cgd 	/* Substitute error message for %m. */
    140  1.1.1.2    cgd 	for (t = fmt_cpy; ch = *fmt; ++fmt)
    141  1.1.1.2    cgd 		if (ch == '%' && fmt[1] == 'm') {
    142  1.1.1.2    cgd 			++fmt;
    143  1.1.1.2    cgd 			t += sprintf(t, "%s", strerror(saved_errno));
    144  1.1.1.2    cgd 		} else
    145  1.1.1.2    cgd 			*t++ = ch;
    146  1.1.1.2    cgd 	*t = '\0';
    147      1.1    cgd 
    148  1.1.1.2    cgd 	p += vsprintf(p, fmt_cpy, ap);
    149  1.1.1.2    cgd 	cnt = p - tbuf;
    150      1.1    cgd 
    151  1.1.1.2    cgd 	/* Output to stderr if requested. */
    152      1.1    cgd 	if (LogStat & LOG_PERROR) {
    153      1.1    cgd 		struct iovec iov[2];
    154      1.1    cgd 		register struct iovec *v = iov;
    155      1.1    cgd 
    156      1.1    cgd 		v->iov_base = stdp;
    157      1.1    cgd 		v->iov_len = cnt - (stdp - tbuf);
    158      1.1    cgd 		++v;
    159      1.1    cgd 		v->iov_base = "\n";
    160      1.1    cgd 		v->iov_len = 1;
    161      1.1    cgd 		(void)writev(STDERR_FILENO, iov, 2);
    162      1.1    cgd 	}
    163      1.1    cgd 
    164  1.1.1.2    cgd 	/* Get connected, output the message to the local logger. */
    165      1.1    cgd 	if (!connected)
    166      1.1    cgd 		openlog(LogTag, LogStat | LOG_NDELAY, 0);
    167      1.1    cgd 	if (send(LogFile, tbuf, cnt, 0) >= 0)
    168      1.1    cgd 		return;
    169      1.1    cgd 
    170      1.1    cgd 	/*
    171      1.1    cgd 	 * Output the message to the console; don't worry about blocking,
    172      1.1    cgd 	 * if console blocks everything will.  Make sure the error reported
    173      1.1    cgd 	 * is the one from the syslogd failure.
    174      1.1    cgd 	 */
    175  1.1.1.2    cgd 	if (LogStat & LOG_CONS &&
    176  1.1.1.2    cgd 	    (fd = open(_PATH_CONSOLE, O_WRONLY, 0)) >= 0) {
    177      1.1    cgd 		(void)strcat(tbuf, "\r\n");
    178      1.1    cgd 		cnt += 2;
    179      1.1    cgd 		p = index(tbuf, '>') + 1;
    180      1.1    cgd 		(void)write(fd, p, cnt - (p - tbuf));
    181      1.1    cgd 		(void)close(fd);
    182      1.1    cgd 	}
    183      1.1    cgd }
    184      1.1    cgd 
    185      1.1    cgd static struct sockaddr SyslogAddr;	/* AF_UNIX address of local logger */
    186      1.1    cgd 
    187      1.1    cgd void
    188      1.1    cgd openlog(ident, logstat, logfac)
    189      1.1    cgd 	const char *ident;
    190      1.1    cgd 	int logstat, logfac;
    191      1.1    cgd {
    192      1.1    cgd 	if (ident != NULL)
    193      1.1    cgd 		LogTag = ident;
    194      1.1    cgd 	LogStat = logstat;
    195      1.1    cgd 	if (logfac != 0 && (logfac &~ LOG_FACMASK) == 0)
    196      1.1    cgd 		LogFacility = logfac;
    197      1.1    cgd 
    198      1.1    cgd 	if (LogFile == -1) {
    199      1.1    cgd 		SyslogAddr.sa_family = AF_UNIX;
    200      1.1    cgd 		(void)strncpy(SyslogAddr.sa_data, _PATH_LOG,
    201      1.1    cgd 		    sizeof(SyslogAddr.sa_data));
    202      1.1    cgd 		if (LogStat & LOG_NDELAY) {
    203      1.1    cgd 			if ((LogFile = socket(AF_UNIX, SOCK_DGRAM, 0)) == -1)
    204      1.1    cgd 				return;
    205      1.1    cgd 			(void)fcntl(LogFile, F_SETFD, 1);
    206      1.1    cgd 		}
    207      1.1    cgd 	}
    208      1.1    cgd 	if (LogFile != -1 && !connected)
    209      1.1    cgd 		if (connect(LogFile, &SyslogAddr, sizeof(SyslogAddr)) == -1) {
    210      1.1    cgd 			(void)close(LogFile);
    211      1.1    cgd 			LogFile = -1;
    212      1.1    cgd 		} else
    213      1.1    cgd 			connected = 1;
    214      1.1    cgd }
    215      1.1    cgd 
    216      1.1    cgd void
    217      1.1    cgd closelog()
    218      1.1    cgd {
    219      1.1    cgd 	(void)close(LogFile);
    220      1.1    cgd 	LogFile = -1;
    221      1.1    cgd 	connected = 0;
    222      1.1    cgd }
    223      1.1    cgd 
    224      1.1    cgd /* setlogmask -- set the log mask level */
    225  1.1.1.2    cgd int
    226      1.1    cgd setlogmask(pmask)
    227      1.1    cgd 	int pmask;
    228      1.1    cgd {
    229      1.1    cgd 	int omask;
    230      1.1    cgd 
    231      1.1    cgd 	omask = LogMask;
    232      1.1    cgd 	if (pmask != 0)
    233      1.1    cgd 		LogMask = pmask;
    234      1.1    cgd 	return (omask);
    235      1.1    cgd }
    236