Home | History | Annotate | Line # | Download | only in gen
syslog.c revision 1.38
      1  1.38  christos /*	$NetBSD: syslog.c,v 1.38 2006/11/05 04:35:35 christos Exp $	*/
      2   1.6       cgd 
      3   1.1       cgd /*
      4   1.6       cgd  * Copyright (c) 1983, 1988, 1993
      5   1.6       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.30       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32  1.11  christos #include <sys/cdefs.h>
     33   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     34   1.6       cgd #if 0
     35  1.13     perry static char sccsid[] = "@(#)syslog.c	8.5 (Berkeley) 4/29/95";
     36   1.6       cgd #else
     37  1.38  christos __RCSID("$NetBSD: syslog.c,v 1.38 2006/11/05 04:35:35 christos Exp $");
     38   1.6       cgd #endif
     39   1.1       cgd #endif /* LIBC_SCCS and not lint */
     40   1.1       cgd 
     41  1.12       jtc #include "namespace.h"
     42   1.1       cgd #include <sys/types.h>
     43   1.1       cgd #include <sys/socket.h>
     44   1.1       cgd #include <sys/syslog.h>
     45   1.1       cgd #include <sys/uio.h>
     46  1.21        is #include <sys/un.h>
     47   1.1       cgd #include <netdb.h>
     48   1.2     glass 
     49   1.2     glass #include <errno.h>
     50   1.2     glass #include <fcntl.h>
     51   1.2     glass #include <paths.h>
     52  1.28       wiz #include <stdarg.h>
     53   1.2     glass #include <stdio.h>
     54  1.26       cgd #include <stdlib.h>
     55   1.1       cgd #include <string.h>
     56   1.2     glass #include <time.h>
     57   1.2     glass #include <unistd.h>
     58  1.20    kleink #include "reentrant.h"
     59   1.2     glass 
     60  1.12       jtc #ifdef __weak_alias
     61  1.24   mycroft __weak_alias(closelog,_closelog)
     62  1.24   mycroft __weak_alias(openlog,_openlog)
     63  1.24   mycroft __weak_alias(setlogmask,_setlogmask)
     64  1.24   mycroft __weak_alias(syslog,_syslog)
     65  1.24   mycroft __weak_alias(vsyslog,_vsyslog)
     66  1.32  christos 
     67  1.32  christos __weak_alias(closelog_r,_closelog_r)
     68  1.32  christos __weak_alias(openlog_r,_openlog_r)
     69  1.32  christos __weak_alias(setlogmask_r,_setlogmask_r)
     70  1.32  christos __weak_alias(syslog_r,_syslog_r)
     71  1.32  christos __weak_alias(vsyslog_r,_vsyslog_r)
     72  1.38  christos __weak_alias(syslog_ss,_syslog_ss)
     73  1.38  christos __weak_alias(vsyslog_ss,_vsyslog_ss)
     74   1.1       cgd #endif
     75   1.1       cgd 
     76  1.32  christos static struct syslog_data sdata = SYSLOG_DATA_INIT;
     77   1.1       cgd 
     78  1.32  christos static void	openlog_unlocked_r(const char *, int, int,
     79  1.32  christos     struct syslog_data *);
     80  1.32  christos static void	disconnectlog_r(struct syslog_data *);
     81  1.32  christos static void	connectlog_r(struct syslog_data *);
     82  1.34  christos 
     83  1.34  christos #define LOG_SIGNAL_SAFE	(int)0x80000000
     84  1.32  christos 
     85  1.20    kleink 
     86  1.29   thorpej #ifdef _REENTRANT
     87  1.20    kleink static mutex_t	syslog_mutex = MUTEX_INITIALIZER;
     88  1.20    kleink #endif
     89  1.20    kleink 
     90   1.1       cgd /*
     91   1.1       cgd  * syslog, vsyslog --
     92   1.1       cgd  *	print message on log file; output is intended for syslogd(8).
     93   1.1       cgd  */
     94   1.1       cgd void
     95   1.1       cgd syslog(int pri, const char *fmt, ...)
     96   1.1       cgd {
     97   1.1       cgd 	va_list ap;
     98   1.1       cgd 
     99   1.1       cgd 	va_start(ap, fmt);
    100   1.1       cgd 	vsyslog(pri, fmt, ap);
    101   1.1       cgd 	va_end(ap);
    102   1.1       cgd }
    103   1.1       cgd 
    104   1.1       cgd void
    105  1.32  christos vsyslog(int pri, const char *fmt, va_list ap)
    106  1.32  christos {
    107  1.32  christos 	vsyslog_r(pri, &sdata, fmt, ap);
    108  1.32  christos }
    109  1.32  christos 
    110  1.32  christos void
    111  1.32  christos openlog(const char *ident, int logstat, int logfac)
    112   1.1       cgd {
    113  1.32  christos 	openlog_r(ident, logstat, logfac, &sdata);
    114  1.32  christos }
    115  1.32  christos 
    116  1.32  christos void
    117  1.32  christos closelog(void)
    118  1.32  christos {
    119  1.32  christos 	closelog_r(&sdata);
    120  1.32  christos }
    121  1.32  christos 
    122  1.32  christos /* setlogmask -- set the log mask level */
    123  1.32  christos int
    124  1.32  christos setlogmask(int pmask)
    125  1.32  christos {
    126  1.32  christos 	return setlogmask_r(pmask, &sdata);
    127  1.32  christos }
    128  1.32  christos 
    129  1.32  christos /* Reentrant version of syslog, i.e. syslog_r() */
    130  1.32  christos 
    131  1.32  christos void
    132  1.32  christos syslog_r(int pri, struct syslog_data *data, const char *fmt, ...)
    133  1.32  christos {
    134  1.32  christos 	va_list ap;
    135  1.32  christos 
    136  1.32  christos 	va_start(ap, fmt);
    137  1.32  christos 	vsyslog_r(pri, data, fmt, ap);
    138  1.32  christos 	va_end(ap);
    139  1.32  christos }
    140  1.32  christos 
    141  1.32  christos void
    142  1.34  christos syslog_ss(int pri, struct syslog_data *data, const char *fmt, ...)
    143  1.34  christos {
    144  1.34  christos 	va_list ap;
    145  1.34  christos 
    146  1.34  christos 	va_start(ap, fmt);
    147  1.34  christos 	vsyslog_r(pri | LOG_SIGNAL_SAFE, data, fmt, ap);
    148  1.34  christos 	va_end(ap);
    149  1.34  christos }
    150  1.34  christos 
    151  1.34  christos void
    152  1.34  christos vsyslog_ss(int pri, struct syslog_data *data, const char *fmt, va_list ap)
    153  1.34  christos {
    154  1.34  christos 	vsyslog_r(pri | LOG_SIGNAL_SAFE, data, fmt, ap);
    155  1.34  christos }
    156  1.34  christos 
    157  1.34  christos void
    158  1.32  christos vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap)
    159  1.32  christos {
    160  1.32  christos 	size_t cnt, prlen;
    161  1.14     perry 	char ch, *p, *t;
    162   1.2     glass 	time_t now;
    163  1.18    kleink 	struct tm tmnow;
    164  1.32  christos 	int fd, saved_errno;
    165  1.10   mycroft #define	TBUF_LEN	2048
    166  1.10   mycroft #define	FMT_LEN		1024
    167  1.11  christos 	char *stdp = NULL;	/* pacify gcc */
    168  1.11  christos 	char tbuf[TBUF_LEN], fmt_cpy[FMT_LEN];
    169  1.32  christos 	size_t tbuf_left, fmt_left;
    170  1.34  christos 	int signal_safe = pri & LOG_SIGNAL_SAFE;
    171  1.34  christos 
    172  1.35  christos 	pri &= ~LOG_SIGNAL_SAFE;
    173   1.2     glass 
    174   1.2     glass #define	INTERNALLOG	LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
    175   1.2     glass 	/* Check for invalid bits. */
    176   1.2     glass 	if (pri & ~(LOG_PRIMASK|LOG_FACMASK)) {
    177  1.34  christos 		syslog_r(INTERNALLOG | signal_safe, data,
    178  1.34  christos 		    "syslog_r: unknown facility/priority: %x", pri);
    179   1.2     glass 		pri &= LOG_PRIMASK|LOG_FACMASK;
    180   1.2     glass 	}
    181   1.1       cgd 
    182   1.2     glass 	/* Check priority against setlogmask values. */
    183  1.32  christos 	if (!(LOG_MASK(LOG_PRI(pri)) & data->log_mask))
    184   1.1       cgd 		return;
    185   1.1       cgd 
    186   1.1       cgd 	saved_errno = errno;
    187   1.1       cgd 
    188   1.6       cgd 	/* Set default facility if none specified. */
    189   1.1       cgd 	if ((pri & LOG_FACMASK) == 0)
    190  1.32  christos 		pri |= data->log_fac;
    191   1.1       cgd 
    192   1.6       cgd 	/* Build the message. */
    193   1.9       jtc 
    194  1.10   mycroft 	/*
    195   1.9       jtc  	 * Although it's tempting, we can't ignore the possibility of
    196   1.9       jtc 	 * overflowing the buffer when assembling the "fixed" portion
    197   1.9       jtc 	 * of the message.  Strftime's "%h" directive expands to the
    198   1.9       jtc 	 * locale's abbreviated month name, but if the user has the
    199   1.9       jtc 	 * ability to construct to his own locale files, it may be
    200   1.9       jtc 	 * arbitrarily long.
    201   1.9       jtc 	 */
    202  1.34  christos 	 if (!signal_safe)
    203  1.32  christos 		(void)time(&now);
    204   1.9       jtc 
    205   1.9       jtc 	p = tbuf;
    206  1.10   mycroft 	tbuf_left = TBUF_LEN;
    207   1.9       jtc 
    208  1.19  christos #define	DEC()							\
    209  1.19  christos 	do {							\
    210  1.19  christos 		if (prlen >= tbuf_left)				\
    211  1.19  christos 			prlen = tbuf_left - 1;			\
    212  1.19  christos 		p += prlen;					\
    213  1.19  christos 		tbuf_left -= prlen;				\
    214  1.32  christos 	} while (/*CONSTCOND*/0)
    215  1.10   mycroft 
    216  1.34  christos 	prlen = snprintf_ss(p, tbuf_left, "<%d>", pri);
    217   1.9       jtc 	DEC();
    218   1.9       jtc 
    219  1.34  christos 	if (!signal_safe) {
    220  1.32  christos 		/* strftime() implies tzset(), localtime_r() doesn't. */
    221  1.32  christos 		tzset();
    222  1.32  christos 		prlen = strftime(p, tbuf_left, "%h %e %T ",
    223  1.32  christos 		    localtime_r(&now, &tmnow));
    224  1.32  christos 		DEC();
    225  1.32  christos 	}
    226   1.9       jtc 
    227  1.32  christos 	if (data->log_stat & LOG_PERROR)
    228   1.1       cgd 		stdp = p;
    229  1.32  christos 	if (data->log_tag == NULL)
    230  1.32  christos 		data->log_tag = getprogname();
    231  1.32  christos 	if (data->log_tag != NULL) {
    232  1.34  christos 		prlen = snprintf_ss(p, tbuf_left, "%s", data->log_tag);
    233   1.9       jtc 		DEC();
    234   1.9       jtc 	}
    235  1.32  christos 	if (data->log_stat & LOG_PID) {
    236  1.34  christos 		prlen = snprintf_ss(p, tbuf_left, "[%d]", getpid());
    237   1.9       jtc 		DEC();
    238   1.9       jtc 	}
    239  1.32  christos 	if (data->log_tag != NULL) {
    240  1.10   mycroft 		if (tbuf_left > 1) {
    241   1.9       jtc 			*p++ = ':';
    242  1.10   mycroft 			tbuf_left--;
    243   1.9       jtc 		}
    244  1.10   mycroft 		if (tbuf_left > 1) {
    245   1.9       jtc 			*p++ = ' ';
    246  1.10   mycroft 			tbuf_left--;
    247   1.9       jtc 		}
    248   1.1       cgd 	}
    249   1.1       cgd 
    250   1.9       jtc 	/*
    251   1.9       jtc 	 * We wouldn't need this mess if printf handled %m, or if
    252   1.9       jtc 	 * strerror() had been invented before syslog().
    253   1.9       jtc 	 */
    254  1.11  christos 	for (t = fmt_cpy, fmt_left = FMT_LEN; (ch = *fmt) != '\0'; ++fmt) {
    255   1.6       cgd 		if (ch == '%' && fmt[1] == 'm') {
    256  1.32  christos 			char ebuf[128];
    257   1.6       cgd 			++fmt;
    258  1.34  christos 			if (signal_safe ||
    259  1.33  christos 			    strerror_r(saved_errno, ebuf, sizeof(ebuf)))
    260  1.34  christos 				prlen = snprintf_ss(t, fmt_left, "Error %d",
    261  1.32  christos 				    saved_errno);
    262  1.32  christos 			else
    263  1.34  christos 				prlen = snprintf_ss(t, fmt_left, "%s", ebuf);
    264  1.10   mycroft 			if (prlen >= fmt_left)
    265  1.10   mycroft 				prlen = fmt_left - 1;
    266  1.10   mycroft 			t += prlen;
    267  1.10   mycroft 			fmt_left -= prlen;
    268  1.32  christos 		} else if (ch == '%' && fmt[1] == '%' && fmt_left > 2) {
    269  1.32  christos 			*t++ = '%';
    270  1.32  christos 			*t++ = '%';
    271  1.32  christos 			fmt++;
    272  1.32  christos 			fmt_left -= 2;
    273   1.9       jtc 		} else {
    274  1.10   mycroft 			if (fmt_left > 1) {
    275   1.9       jtc 				*t++ = ch;
    276  1.10   mycroft 				fmt_left--;
    277   1.9       jtc 			}
    278   1.9       jtc 		}
    279   1.9       jtc 	}
    280   1.6       cgd 	*t = '\0';
    281   1.1       cgd 
    282  1.34  christos 	if (signal_safe)
    283  1.34  christos 		prlen = vsnprintf_ss(p, tbuf_left, fmt_cpy, ap);
    284  1.34  christos 	else
    285  1.34  christos 		prlen = vsnprintf(p, tbuf_left, fmt_cpy, ap);
    286   1.9       jtc 	DEC();
    287   1.6       cgd 	cnt = p - tbuf;
    288   1.1       cgd 
    289   1.6       cgd 	/* Output to stderr if requested. */
    290  1.32  christos 	if (data->log_stat & LOG_PERROR) {
    291   1.1       cgd 		struct iovec iov[2];
    292   1.1       cgd 
    293  1.10   mycroft 		iov[0].iov_base = stdp;
    294  1.10   mycroft 		iov[0].iov_len = cnt - (stdp - tbuf);
    295  1.31  christos 		iov[1].iov_base = __UNCONST("\n");
    296  1.10   mycroft 		iov[1].iov_len = 1;
    297   1.1       cgd 		(void)writev(STDERR_FILENO, iov, 2);
    298   1.1       cgd 	}
    299   1.1       cgd 
    300   1.6       cgd 	/* Get connected, output the message to the local logger. */
    301  1.32  christos 	if (data == &sdata)
    302  1.32  christos 		mutex_lock(&syslog_mutex);
    303  1.32  christos 	if (!data->opened)
    304  1.32  christos 		openlog_unlocked_r(data->log_tag, data->log_stat, 0, data);
    305  1.32  christos 	connectlog_r(data);
    306  1.32  christos 
    307  1.27    atatat 	/*
    308  1.32  christos 	 * If the send() failed, there are two likely scenarios:
    309  1.32  christos 	 *  1) syslogd was restarted
    310  1.32  christos 	 *  2) /dev/log is out of socket buffer space
    311  1.32  christos 	 * We attempt to reconnect to /dev/log to take care of
    312  1.32  christos 	 * case #1 and keep send()ing data to cover case #2
    313  1.32  christos 	 * to give syslogd a chance to empty its socket buffer.
    314  1.27    atatat 	 */
    315  1.32  christos 	if (send(data->log_file, tbuf, cnt, 0) == -1) {
    316  1.32  christos 		if (errno != ENOBUFS) {
    317  1.32  christos 			disconnectlog_r(data);
    318  1.32  christos 			connectlog_r(data);
    319  1.32  christos 		}
    320  1.32  christos 		do {
    321  1.32  christos 			usleep(1);
    322  1.32  christos 			if (send(data->log_file, tbuf, cnt, 0) != -1)
    323  1.32  christos 				break;
    324  1.32  christos 		} while (errno == ENOBUFS);
    325  1.27    atatat 	}
    326  1.32  christos 	if (data == &sdata)
    327  1.32  christos 		mutex_unlock(&syslog_mutex);
    328   1.1       cgd 
    329   1.1       cgd 	/*
    330  1.32  christos 	 * Output the message to the console; try not to block
    331  1.32  christos 	 * as a blocking console should not stop other processes.
    332  1.32  christos 	 * Make sure the error reported is the one from the syslogd failure.
    333   1.1       cgd 	 */
    334  1.32  christos 	if ((data->log_stat & LOG_CONS) &&
    335  1.32  christos 	    (fd = open(_PATH_CONSOLE, O_WRONLY|O_NONBLOCK, 0)) >= 0) {
    336   1.9       jtc 		struct iovec iov[2];
    337   1.9       jtc 
    338   1.5       jtc 		p = strchr(tbuf, '>') + 1;
    339  1.10   mycroft 		iov[0].iov_base = p;
    340  1.10   mycroft 		iov[0].iov_len = cnt - (p - tbuf);
    341  1.31  christos 		iov[1].iov_base = __UNCONST("\r\n");
    342  1.10   mycroft 		iov[1].iov_len = 2;
    343   1.9       jtc 		(void)writev(fd, iov, 2);
    344   1.1       cgd 		(void)close(fd);
    345   1.1       cgd 	}
    346  1.32  christos 	if (data != &sdata)
    347  1.32  christos 		closelog_r(data);
    348   1.1       cgd }
    349   1.1       cgd 
    350  1.32  christos static void
    351  1.32  christos disconnectlog_r(struct syslog_data *data)
    352  1.32  christos {
    353  1.32  christos 	/*
    354  1.32  christos 	 * If the user closed the FD and opened another in the same slot,
    355  1.32  christos 	 * that's their problem.  They should close it before calling on
    356  1.32  christos 	 * system services.
    357  1.32  christos 	 */
    358  1.32  christos 	if (data->log_file != -1) {
    359  1.32  christos 		(void)close(data->log_file);
    360  1.32  christos 		data->log_file = -1;
    361  1.32  christos 	}
    362  1.32  christos 	data->connected = 0;		/* retry connect */
    363  1.32  christos }
    364   1.1       cgd 
    365  1.20    kleink static void
    366  1.32  christos connectlog_r(struct syslog_data *data)
    367   1.1       cgd {
    368  1.32  christos 	/* AF_UNIX address of local logger */
    369  1.32  christos 	static const struct sockaddr_un sun = {
    370  1.32  christos 		.sun_family = AF_LOCAL,
    371  1.32  christos 		.sun_len = sizeof(sun),
    372  1.32  christos 		.sun_path = _PATH_LOG,
    373  1.32  christos 	};
    374  1.20    kleink 
    375  1.36  christos 	if (data->log_file == -1 || fcntl(data->log_file, F_GETFL, 0) == -1) {
    376  1.32  christos 		if ((data->log_file = socket(AF_UNIX, SOCK_DGRAM, 0)) == -1)
    377  1.32  christos 			return;
    378  1.37  christos 		(void)fcntl(data->log_file, F_SETFD, FD_CLOEXEC);
    379  1.36  christos 		data->connected = 0;
    380   1.1       cgd 	}
    381  1.36  christos 	if (!data->connected) {
    382  1.32  christos 		if (connect(data->log_file,
    383  1.32  christos 		    (const struct sockaddr *)(const void *)&sun,
    384  1.32  christos 		    sizeof(sun)) == -1) {
    385  1.32  christos 			(void)close(data->log_file);
    386  1.32  christos 			data->log_file = -1;
    387  1.32  christos  		} else
    388  1.32  christos 			data->connected = 1;
    389  1.17   thorpej 	}
    390   1.1       cgd }
    391   1.1       cgd 
    392  1.32  christos static void
    393  1.32  christos openlog_unlocked_r(const char *ident, int logstat, int logfac,
    394  1.32  christos     struct syslog_data *data)
    395  1.20    kleink {
    396  1.32  christos 	if (ident != NULL)
    397  1.32  christos 		data->log_tag = ident;
    398  1.32  christos 	data->log_stat = logstat;
    399  1.32  christos 	if (logfac != 0 && (logfac &~ LOG_FACMASK) == 0)
    400  1.32  christos 		data->log_fac = logfac;
    401  1.20    kleink 
    402  1.32  christos 	if (data->log_stat & LOG_NDELAY)	/* open immediately */
    403  1.32  christos 		connectlog_r(data);
    404  1.20    kleink }
    405  1.20    kleink 
    406  1.32  christos void
    407  1.32  christos openlog_r(const char *ident, int logstat, int logfac, struct syslog_data *data)
    408   1.1       cgd {
    409  1.32  christos 	if (data == &sdata)
    410  1.32  christos 		mutex_lock(&syslog_mutex);
    411  1.32  christos 	openlog_unlocked_r(ident, logstat, logfac, data);
    412  1.32  christos 	if (data == &sdata)
    413  1.32  christos 		mutex_unlock(&syslog_mutex);
    414  1.20    kleink }
    415  1.20    kleink 
    416  1.20    kleink void
    417  1.32  christos closelog_r(struct syslog_data *data)
    418  1.20    kleink {
    419  1.32  christos 	if (data == &sdata)
    420  1.32  christos 		mutex_lock(&syslog_mutex);
    421  1.32  christos 	(void)close(data->log_file);
    422  1.32  christos 	data->log_file = -1;
    423  1.32  christos 	data->connected = 0;
    424  1.32  christos 	data->log_tag = NULL;
    425  1.32  christos 	if (data == &sdata)
    426  1.32  christos 		mutex_unlock(&syslog_mutex);
    427   1.1       cgd }
    428   1.1       cgd 
    429   1.2     glass int
    430  1.32  christos setlogmask_r(int pmask, struct syslog_data *data)
    431   1.1       cgd {
    432   1.1       cgd 	int omask;
    433   1.1       cgd 
    434  1.32  christos 	omask = data->log_mask;
    435   1.1       cgd 	if (pmask != 0)
    436  1.32  christos 		data->log_mask = pmask;
    437  1.32  christos 	return omask;
    438   1.1       cgd }
    439