NetBSD/sys/kern/subr_log.c

313 lines
7.3 KiB
C
Raw Normal View History

2006-09-03 10:24:21 +04:00
/* $NetBSD: subr_log.c,v 1.37 2006/09/03 06:24:21 christos Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* 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.
*
1998-03-01 05:20:01 +03:00
* @(#)subr_log.c 8.3 (Berkeley) 2/14/95
1993-03-21 12:45:37 +03:00
*/
/*
* Error log buffer for kernel printf's.
*/
2001-11-12 18:25:01 +03:00
#include <sys/cdefs.h>
2006-09-03 10:24:21 +04:00
__KERNEL_RCSID(0, "$NetBSD: subr_log.c,v 1.37 2006/09/03 06:24:21 christos Exp $");
2001-11-12 18:25:01 +03:00
1993-12-18 06:59:02 +03:00
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/msgbuf.h>
#include <sys/file.h>
1996-02-04 05:15:01 +03:00
#include <sys/signalvar.h>
1996-02-09 21:59:18 +03:00
#include <sys/syslog.h>
1996-03-31 01:24:38 +03:00
#include <sys/conf.h>
1996-09-07 16:40:22 +04:00
#include <sys/select.h>
#include <sys/poll.h>
1993-03-21 12:45:37 +03:00
#define LOG_RDPRI (PZERO + 1)
#define LOG_ASYNC 0x04
#define LOG_RDWAIT 0x08
struct logsoftc {
int sc_state; /* see above for possibilities */
struct selinfo sc_selp; /* process waiting on select call */
pid_t sc_pgid; /* process/group for async I/O */
1993-03-21 12:45:37 +03:00
} logsoftc;
int log_open; /* also used in log() */
int msgbufmapped; /* is the message buffer mapped */
int msgbufenabled; /* is logging to the buffer enabled */
struct kern_msgbuf *msgbufp; /* the mapped buffer, itself. */
void
2005-06-23 22:46:17 +04:00
initmsgbuf(void *bf, size_t bufsize)
{
2000-03-30 13:27:11 +04:00
struct kern_msgbuf *mbp;
long new_bufs;
/* Sanity-check the given size. */
if (bufsize < sizeof(struct kern_msgbuf))
return;
mbp = msgbufp = (struct kern_msgbuf *)bf;
new_bufs = bufsize - offsetof(struct kern_msgbuf, msg_bufc);
if ((mbp->msg_magic != MSG_MAGIC) || (mbp->msg_bufs != new_bufs) ||
(mbp->msg_bufr < 0) || (mbp->msg_bufr >= mbp->msg_bufs) ||
(mbp->msg_bufx < 0) || (mbp->msg_bufx >= mbp->msg_bufs)) {
/*
* If the buffer magic number is wrong, has changed
* size (which shouldn't happen often), or is
* internally inconsistent, initialize it.
*/
memset(bf, 0, bufsize);
mbp->msg_magic = MSG_MAGIC;
mbp->msg_bufs = new_bufs;
}
/* mark it as ready for use. */
msgbufmapped = msgbufenabled = 1;
}
1993-03-21 12:45:37 +03:00
/*ARGSUSED*/
2005-06-23 22:46:17 +04:00
static int
2005-12-11 15:16:03 +03:00
logopen(dev_t dev, int flags, int mode, struct lwp *l)
1993-03-21 12:45:37 +03:00
{
2000-03-30 13:27:11 +04:00
struct kern_msgbuf *mbp = msgbufp;
1993-03-21 12:45:37 +03:00
if (log_open)
return (EBUSY);
log_open = 1;
2005-12-11 15:16:03 +03:00
logsoftc.sc_pgid = l->l_proc->p_pid; /* signal process only */
1993-03-21 12:45:37 +03:00
/*
* The message buffer is initialized during system configuration.
* If it's been clobbered, note that and return an error. (This
* allows a user to potentially read the buffer via /dev/kmem,
* and try to figure out what clobbered it.
1993-03-21 12:45:37 +03:00
*/
if (mbp->msg_magic != MSG_MAGIC) {
msgbufenabled = 0;
return (ENXIO);
1993-03-21 12:45:37 +03:00
}
1993-03-21 12:45:37 +03:00
return (0);
}
/*ARGSUSED*/
2005-06-23 22:46:17 +04:00
static int
2005-12-11 15:16:03 +03:00
logclose(dev_t dev, int flag, int mode, struct lwp *l)
1993-03-21 12:45:37 +03:00
{
1993-03-21 12:45:37 +03:00
log_open = 0;
logsoftc.sc_state = 0;
return (0);
1993-03-21 12:45:37 +03:00
}
/*ARGSUSED*/
2005-06-23 22:46:17 +04:00
static int
logread(dev_t dev, struct uio *uio, int flag)
1993-03-21 12:45:37 +03:00
{
2000-03-30 13:27:11 +04:00
struct kern_msgbuf *mbp = msgbufp;
long l;
int s;
1993-03-21 12:45:37 +03:00
int error = 0;
s = splhigh();
while (mbp->msg_bufr == mbp->msg_bufx) {
if (flag & IO_NDELAY) {
splx(s);
return (EWOULDBLOCK);
}
logsoftc.sc_state |= LOG_RDWAIT;
1996-02-04 05:15:01 +03:00
error = tsleep((caddr_t)mbp, LOG_RDPRI | PCATCH,
"klog", 0);
if (error) {
1993-03-21 12:45:37 +03:00
splx(s);
return (error);
}
}
splx(s);
logsoftc.sc_state &= ~LOG_RDWAIT;
while (uio->uio_resid > 0) {
l = mbp->msg_bufx - mbp->msg_bufr;
if (l < 0)
l = mbp->msg_bufs - mbp->msg_bufr;
l = min(l, uio->uio_resid);
1993-03-21 12:45:37 +03:00
if (l == 0)
break;
error = uiomove((caddr_t)&mbp->msg_bufc[mbp->msg_bufr],
(int)l, uio);
if (error)
break;
mbp->msg_bufr += l;
if (mbp->msg_bufr < 0 || mbp->msg_bufr >= mbp->msg_bufs)
1993-03-21 12:45:37 +03:00
mbp->msg_bufr = 0;
}
return (error);
}
/*ARGSUSED*/
2005-06-23 22:46:17 +04:00
static int
2005-12-11 15:16:03 +03:00
logpoll(dev_t dev, int events, struct lwp *l)
1993-03-21 12:45:37 +03:00
{
1996-09-07 16:40:22 +04:00
int revents = 0;
1993-03-21 12:45:37 +03:00
int s = splhigh();
if (events & (POLLIN | POLLRDNORM)) {
1996-09-07 16:40:22 +04:00
if (msgbufp->msg_bufr != msgbufp->msg_bufx)
revents |= events & (POLLIN | POLLRDNORM);
else
2005-12-11 15:16:03 +03:00
selrecord(l, &logsoftc.sc_selp);
}
1993-03-21 12:45:37 +03:00
splx(s);
1996-09-07 16:40:22 +04:00
return (revents);
1993-03-21 12:45:37 +03:00
}
static void
filt_logrdetach(struct knote *kn)
{
int s;
s = splhigh();
SLIST_REMOVE(&logsoftc.sc_selp.sel_klist, kn, knote, kn_selnext);
splx(s);
}
static int
filt_logread(struct knote *kn, long hint)
{
if (msgbufp->msg_bufr == msgbufp->msg_bufx)
return (0);
if (msgbufp->msg_bufr < msgbufp->msg_bufx)
kn->kn_data = msgbufp->msg_bufx - msgbufp->msg_bufr;
else
kn->kn_data = (msgbufp->msg_bufs - msgbufp->msg_bufr) +
msgbufp->msg_bufx;
return (1);
}
static const struct filterops logread_filtops =
{ 1, NULL, filt_logrdetach, filt_logread };
2005-06-23 22:46:17 +04:00
static int
logkqfilter(dev_t dev, struct knote *kn)
{
struct klist *klist;
int s;
switch (kn->kn_filter) {
case EVFILT_READ:
klist = &logsoftc.sc_selp.sel_klist;
kn->kn_fop = &logread_filtops;
break;
default:
return (1);
}
kn->kn_hook = NULL;
s = splhigh();
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
splx(s);
return (0);
}
void
2005-06-23 22:46:17 +04:00
logwakeup(void)
1993-03-21 12:45:37 +03:00
{
if (!log_open)
return;
selnotify(&logsoftc.sc_selp, 0);
if (logsoftc.sc_state & LOG_ASYNC)
fownsignal(logsoftc.sc_pgid, SIGIO, 0, 0, NULL);
1993-03-21 12:45:37 +03:00
if (logsoftc.sc_state & LOG_RDWAIT) {
wakeup((caddr_t)msgbufp);
logsoftc.sc_state &= ~LOG_RDWAIT;
}
}
/*ARGSUSED*/
2005-06-23 22:46:17 +04:00
static int
2005-12-11 15:16:03 +03:00
logioctl(dev_t dev, u_long com, caddr_t data, int flag, struct lwp *lwp)
1993-03-21 12:45:37 +03:00
{
2005-12-11 15:16:03 +03:00
struct proc *p = lwp->l_proc;
1993-03-21 12:45:37 +03:00
long l;
int s;
switch (com) {
/* return number of characters immediately available */
case FIONREAD:
s = splhigh();
l = msgbufp->msg_bufx - msgbufp->msg_bufr;
splx(s);
if (l < 0)
l += msgbufp->msg_bufs;
1994-04-12 23:41:48 +04:00
*(int *)data = l;
1993-03-21 12:45:37 +03:00
break;
case FIONBIO:
break;
case FIOASYNC:
if (*(int *)data)
logsoftc.sc_state |= LOG_ASYNC;
else
logsoftc.sc_state &= ~LOG_ASYNC;
break;
case TIOCSPGRP:
case FIOSETOWN:
return fsetown(p, &logsoftc.sc_pgid, com, data);
1993-03-21 12:45:37 +03:00
case TIOCGPGRP:
case FIOGETOWN:
return fgetown(p, logsoftc.sc_pgid, com, data);
1993-03-21 12:45:37 +03:00
default:
return (EPASSTHROUGH);
1993-03-21 12:45:37 +03:00
}
return (0);
}
2005-06-23 22:46:17 +04:00
const struct cdevsw log_cdevsw = {
logopen, logclose, logread, nowrite, logioctl,
2006-09-03 10:24:21 +04:00
nostop, notty, logpoll, nommap, logkqfilter, D_OTHER,
2005-06-23 22:46:17 +04:00
};