1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)subr_log.c 8.1 (Berkeley) 6/10/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error log buffer for kernel printf's.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1995-12-02 18:58:56 +00:00
|
|
|
#include <sys/conf.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/vnode.h>
|
1997-03-24 11:52:29 +00:00
|
|
|
#include <sys/filio.h>
|
|
|
|
#include <sys/ttycom.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/msgbuf.h>
|
1994-10-02 17:35:40 +00:00
|
|
|
#include <sys/signalvar.h>
|
1995-11-29 10:49:16 +00:00
|
|
|
#include <sys/kernel.h>
|
1997-09-14 02:46:44 +00:00
|
|
|
#include <sys/poll.h>
|
Installed the second patch attached to kern/7899 with some changes suggested
by bde, a few other tweaks to get the patch to apply cleanly again and
some improvements to the comments.
This change closes some fairly minor security holes associated with
F_SETOWN, fixes a few bugs, and removes some limitations that F_SETOWN
had on tty devices. For more details, see the description on the PR.
Because this patch increases the size of the proc and pgrp structures,
it is necessary to re-install the includes and recompile libkvm,
the vinum lkm, fstat, gcore, gdb, ipfilter, ps, top, and w.
PR: kern/7899
Reviewed by: bde, elvind
1998-11-11 10:04:13 +00:00
|
|
|
#include <sys/filedesc.h>
|
2000-12-15 21:23:32 +00:00
|
|
|
#include <sys/sysctl.h>
|
1995-11-29 10:49:16 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#define LOG_RDPRI (PZERO + 1)
|
|
|
|
|
|
|
|
#define LOG_ASYNC 0x04
|
|
|
|
#define LOG_RDWAIT 0x08
|
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static d_open_t logopen;
|
|
|
|
static d_close_t logclose;
|
|
|
|
static d_read_t logread;
|
|
|
|
static d_ioctl_t logioctl;
|
1997-09-14 02:46:44 +00:00
|
|
|
static d_poll_t logpoll;
|
1995-12-08 11:19:42 +00:00
|
|
|
|
2000-12-15 21:23:32 +00:00
|
|
|
static void logtimeout(void *arg);
|
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
#define CDEV_MAJOR 7
|
1999-05-30 16:53:49 +00:00
|
|
|
static struct cdevsw log_cdevsw = {
|
2003-03-03 12:15:54 +00:00
|
|
|
.d_open = logopen,
|
|
|
|
.d_close = logclose,
|
|
|
|
.d_read = logread,
|
|
|
|
.d_ioctl = logioctl,
|
|
|
|
.d_poll = logpoll,
|
|
|
|
.d_name = "log",
|
|
|
|
.d_maj = CDEV_MAJOR,
|
1999-05-30 16:53:49 +00:00
|
|
|
};
|
1995-12-08 11:19:42 +00:00
|
|
|
|
1995-12-14 08:32:45 +00:00
|
|
|
static struct logsoftc {
|
1994-05-24 10:09:53 +00:00
|
|
|
int sc_state; /* see above for possibilities */
|
|
|
|
struct selinfo sc_selp; /* process waiting on select call */
|
1998-11-11 10:56:07 +00:00
|
|
|
struct sigio *sc_sigio; /* information for async I/O */
|
2000-12-15 21:23:32 +00:00
|
|
|
struct callout sc_callout; /* callout to wakeup syslog */
|
1994-05-24 10:09:53 +00:00
|
|
|
} logsoftc;
|
|
|
|
|
|
|
|
int log_open; /* also used in log() */
|
|
|
|
|
2000-12-15 21:23:32 +00:00
|
|
|
/* Times per second to check for a pending syslog wakeup. */
|
|
|
|
static int log_wakeups_per_second = 5;
|
|
|
|
SYSCTL_INT(_kern, OID_AUTO, log_wakeups_per_second, CTLFLAG_RW,
|
|
|
|
&log_wakeups_per_second, 0, "");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
logopen(dev_t dev, int flags, int mode, struct thread *td)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
if (log_open)
|
|
|
|
return (EBUSY);
|
|
|
|
log_open = 1;
|
2000-12-15 21:23:32 +00:00
|
|
|
callout_init(&logsoftc.sc_callout, 0);
|
2001-09-12 08:38:13 +00:00
|
|
|
fsetown(td->td_proc->p_pid, &logsoftc.sc_sigio); /* signal process only */
|
2003-06-20 22:18:38 +00:00
|
|
|
if (log_wakeups_per_second < 1) {
|
|
|
|
printf("syslog wakeup is less than one. Adjusting to 1.\n");
|
|
|
|
log_wakeups_per_second = 1;
|
|
|
|
}
|
2000-12-15 21:23:32 +00:00
|
|
|
callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second,
|
|
|
|
logtimeout, NULL);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
logclose(dev_t dev, int flag, int mode, struct thread *td)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
log_open = 0;
|
2001-05-23 19:02:50 +00:00
|
|
|
callout_stop(&logsoftc.sc_callout);
|
1994-05-24 10:09:53 +00:00
|
|
|
logsoftc.sc_state = 0;
|
2002-05-06 19:31:28 +00:00
|
|
|
funsetown(&logsoftc.sc_sigio);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2000-12-08 06:57:39 +00:00
|
|
|
logread(dev_t dev, struct uio *uio, int flag)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2003-06-22 02:18:31 +00:00
|
|
|
char buf[128];
|
2000-12-08 06:57:39 +00:00
|
|
|
struct msgbuf *mbp = msgbufp;
|
2002-11-14 16:11:12 +00:00
|
|
|
int error = 0, l, s;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
s = splhigh();
|
2003-06-22 02:18:31 +00:00
|
|
|
while (msgbuf_getcount(mbp) == 0) {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (flag & IO_NDELAY) {
|
|
|
|
splx(s);
|
|
|
|
return (EWOULDBLOCK);
|
|
|
|
}
|
|
|
|
logsoftc.sc_state |= LOG_RDWAIT;
|
2002-06-29 02:00:02 +00:00
|
|
|
if ((error = tsleep(mbp, LOG_RDPRI | PCATCH, "klog", 0))) {
|
1994-05-24 10:09:53 +00:00
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
logsoftc.sc_state &= ~LOG_RDWAIT;
|
|
|
|
|
|
|
|
while (uio->uio_resid > 0) {
|
2003-06-22 02:18:31 +00:00
|
|
|
l = imin(sizeof(buf), uio->uio_resid);
|
|
|
|
l = msgbuf_getbytes(mbp, buf, l);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (l == 0)
|
|
|
|
break;
|
2003-06-22 02:18:31 +00:00
|
|
|
error = uiomove(buf, l, uio);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
logpoll(dev_t dev, int events, struct thread *td)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1997-09-14 02:46:44 +00:00
|
|
|
int s;
|
|
|
|
int revents = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-09-14 02:46:44 +00:00
|
|
|
s = splhigh();
|
|
|
|
|
1999-05-06 18:13:11 +00:00
|
|
|
if (events & (POLLIN | POLLRDNORM)) {
|
2003-06-22 02:18:31 +00:00
|
|
|
if (msgbuf_getcount(msgbufp) > 0)
|
1997-09-14 02:46:44 +00:00
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
|
|
|
else
|
2001-09-21 22:46:54 +00:00
|
|
|
selrecord(td, &logsoftc.sc_selp);
|
1999-05-06 18:13:11 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
splx(s);
|
1997-09-14 02:46:44 +00:00
|
|
|
return (revents);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
2000-12-15 21:23:32 +00:00
|
|
|
static void
|
|
|
|
logtimeout(void *arg)
|
|
|
|
{
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (!log_open)
|
|
|
|
return;
|
2003-06-20 22:18:38 +00:00
|
|
|
if (log_wakeups_per_second < 1) {
|
|
|
|
printf("syslog wakeup is less than one. Adjusting to 1.\n");
|
|
|
|
log_wakeups_per_second = 1;
|
|
|
|
}
|
2001-05-23 19:02:50 +00:00
|
|
|
if (msgbuftrigger == 0) {
|
|
|
|
callout_reset(&logsoftc.sc_callout,
|
|
|
|
hz / log_wakeups_per_second, logtimeout, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
msgbuftrigger = 0;
|
2003-11-09 09:17:26 +00:00
|
|
|
selwakeuppri(&logsoftc.sc_selp, LOG_RDPRI);
|
Installed the second patch attached to kern/7899 with some changes suggested
by bde, a few other tweaks to get the patch to apply cleanly again and
some improvements to the comments.
This change closes some fairly minor security holes associated with
F_SETOWN, fixes a few bugs, and removes some limitations that F_SETOWN
had on tty devices. For more details, see the description on the PR.
Because this patch increases the size of the proc and pgrp structures,
it is necessary to re-install the includes and recompile libkvm,
the vinum lkm, fstat, gcore, gdb, ipfilter, ps, top, and w.
PR: kern/7899
Reviewed by: bde, elvind
1998-11-11 10:04:13 +00:00
|
|
|
if ((logsoftc.sc_state & LOG_ASYNC) && logsoftc.sc_sigio != NULL)
|
2002-05-01 20:44:46 +00:00
|
|
|
pgsigio(&logsoftc.sc_sigio, SIGIO, 0);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (logsoftc.sc_state & LOG_RDWAIT) {
|
2003-03-02 16:54:40 +00:00
|
|
|
wakeup(msgbufp);
|
1994-05-24 10:09:53 +00:00
|
|
|
logsoftc.sc_state &= ~LOG_RDWAIT;
|
|
|
|
}
|
2000-12-15 21:23:32 +00:00
|
|
|
callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second,
|
|
|
|
logtimeout, NULL);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
logioctl(dev_t dev, u_long com, caddr_t data, int flag, struct thread *td)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
switch (com) {
|
|
|
|
|
|
|
|
/* return number of characters immediately available */
|
|
|
|
case FIONREAD:
|
2003-06-22 02:18:31 +00:00
|
|
|
*(int *)data = msgbuf_getcount(msgbufp);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FIONBIO:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIOASYNC:
|
|
|
|
if (*(int *)data)
|
|
|
|
logsoftc.sc_state |= LOG_ASYNC;
|
|
|
|
else
|
|
|
|
logsoftc.sc_state &= ~LOG_ASYNC;
|
|
|
|
break;
|
|
|
|
|
Installed the second patch attached to kern/7899 with some changes suggested
by bde, a few other tweaks to get the patch to apply cleanly again and
some improvements to the comments.
This change closes some fairly minor security holes associated with
F_SETOWN, fixes a few bugs, and removes some limitations that F_SETOWN
had on tty devices. For more details, see the description on the PR.
Because this patch increases the size of the proc and pgrp structures,
it is necessary to re-install the includes and recompile libkvm,
the vinum lkm, fstat, gcore, gdb, ipfilter, ps, top, and w.
PR: kern/7899
Reviewed by: bde, elvind
1998-11-11 10:04:13 +00:00
|
|
|
case FIOSETOWN:
|
|
|
|
return (fsetown(*(int *)data, &logsoftc.sc_sigio));
|
|
|
|
|
|
|
|
case FIOGETOWN:
|
2002-10-03 02:13:00 +00:00
|
|
|
*(int *)data = fgetown(&logsoftc.sc_sigio);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
Installed the second patch attached to kern/7899 with some changes suggested
by bde, a few other tweaks to get the patch to apply cleanly again and
some improvements to the comments.
This change closes some fairly minor security holes associated with
F_SETOWN, fixes a few bugs, and removes some limitations that F_SETOWN
had on tty devices. For more details, see the description on the PR.
Because this patch increases the size of the proc and pgrp structures,
it is necessary to re-install the includes and recompile libkvm,
the vinum lkm, fstat, gcore, gdb, ipfilter, ps, top, and w.
PR: kern/7899
Reviewed by: bde, elvind
1998-11-11 10:04:13 +00:00
|
|
|
/* This is deprecated, FIOSETOWN should be used instead. */
|
|
|
|
case TIOCSPGRP:
|
|
|
|
return (fsetown(-(*(int *)data), &logsoftc.sc_sigio));
|
|
|
|
|
|
|
|
/* This is deprecated, FIOGETOWN should be used instead */
|
1994-05-24 10:09:53 +00:00
|
|
|
case TIOCGPGRP:
|
2002-10-03 02:13:00 +00:00
|
|
|
*(int *)data = -fgetown(&logsoftc.sc_sigio);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1995-04-29 11:36:47 +00:00
|
|
|
return (ENOTTY);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
1995-11-29 10:49:16 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static void
|
2000-12-08 06:57:39 +00:00
|
|
|
log_drvinit(void *unused)
|
1995-11-29 10:49:16 +00:00
|
|
|
{
|
2000-12-08 06:57:39 +00:00
|
|
|
|
1999-08-23 20:59:21 +00:00
|
|
|
make_dev(&log_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600, "klog");
|
1995-11-29 10:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SYSINIT(logdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,log_drvinit,NULL)
|