1 /* 2 * Copyright (c) 1982, 1986, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 20 * 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 31 * SUCH DAMAGE. 32 * 33 * @(#)subr_log.c 8.1 (Berkeley) 6/10/93 34 * $FreeBSD$ 35 */ 36 37 /* 38 * Error log buffer for kernel printf's. 39 */ 40 41 #include <sys/param.h> 42 #include <sys/systm.h> 43 #include <sys/conf.h> 44 #include <sys/proc.h> 45 #include <sys/vnode.h> 46 #include <sys/filio.h> 47 #include <sys/ttycom.h> 48 #include <sys/msgbuf.h> 49 #include <sys/signalvar.h> 50 #include <sys/kernel.h> 51 #include <sys/poll.h> 52 #include <sys/filedesc.h> 53 #include <sys/sysctl.h> 54 55 #define LOG_RDPRI (PZERO + 1) 56 57 #define LOG_ASYNC 0x04 58 #define LOG_RDWAIT 0x08 59 60 static d_open_t logopen; 61 static d_close_t logclose; 62 static d_read_t logread; 63 static d_ioctl_t logioctl; 64 static d_poll_t logpoll; 65 66 static void logtimeout(void *arg); 67 68 #define CDEV_MAJOR 7 69 static struct cdevsw log_cdevsw = { 70 /* open */ logopen, 71 /* close */ logclose, 72 /* read */ logread, 73 /* write */ nowrite, 74 /* ioctl */ logioctl, 75 /* poll */ logpoll, 76 /* mmap */ nommap, 77 /* strategy */ nostrategy, 78 /* name */ "log", 79 /* maj */ CDEV_MAJOR, 80 /* dump */ nodump, 81 /* psize */ nopsize, 82 /* flags */ 0, 83 }; 84 85 static struct logsoftc { 86 int sc_state; /* see above for possibilities */ 87 struct selinfo sc_selp; /* process waiting on select call */ 88 struct sigio *sc_sigio; /* information for async I/O */ 89 struct callout sc_callout; /* callout to wakeup syslog */ 90 } logsoftc; 91 92 int log_open; /* also used in log() */ 93 94 /* Times per second to check for a pending syslog wakeup. */ 95 static int log_wakeups_per_second = 5; 96 SYSCTL_INT(_kern, OID_AUTO, log_wakeups_per_second, CTLFLAG_RW, 97 &log_wakeups_per_second, 0, ""); 98 99 /*ARGSUSED*/ 100 static int 101 logopen(dev_t dev, int flags, int mode, struct thread *td) 102 { 103 if (log_open) 104 return (EBUSY); 105 log_open = 1; 106 callout_init(&logsoftc.sc_callout, 0); 107 fsetown(td->td_proc->p_pid, &logsoftc.sc_sigio); /* signal process only */ 108 callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second, 109 logtimeout, NULL); 110 return (0); 111 } 112 113 /*ARGSUSED*/ 114 static int 115 logclose(dev_t dev, int flag, int mode, struct thread *td) 116 { 117 118 log_open = 0; 119 callout_stop(&logsoftc.sc_callout); 120 logsoftc.sc_state = 0; 121 funsetown(&logsoftc.sc_sigio); 122 return (0); 123 } 124 125 /*ARGSUSED*/ 126 static int 127 logread(dev_t dev, struct uio *uio, int flag) 128 { 129 struct msgbuf *mbp = msgbufp; 130 long l; 131 int s; 132 int error = 0; 133 134 s = splhigh(); 135 while (mbp->msg_bufr == mbp->msg_bufx) { 136 if (flag & IO_NDELAY) { 137 splx(s); 138 return (EWOULDBLOCK); 139 } 140 logsoftc.sc_state |= LOG_RDWAIT; 141 if ((error = tsleep(mbp, LOG_RDPRI | PCATCH, "klog", 0))) { 142 splx(s); 143 return (error); 144 } 145 } 146 splx(s); 147 logsoftc.sc_state &= ~LOG_RDWAIT; 148 149 while (uio->uio_resid > 0) { 150 l = (long)mbp->msg_bufx - mbp->msg_bufr; 151 if (l < 0) 152 l = mbp->msg_size - mbp->msg_bufr; 153 l = min(l, uio->uio_resid); 154 if (l == 0) 155 break; 156 error = uiomove((caddr_t)msgbufp->msg_ptr + mbp->msg_bufr, 157 (int)l, uio); 158 if (error) 159 break; 160 mbp->msg_bufr += l; 161 if (mbp->msg_bufr >= mbp->msg_size) 162 mbp->msg_bufr = 0; 163 } 164 return (error); 165 } 166 167 /*ARGSUSED*/ 168 static int 169 logpoll(dev_t dev, int events, struct thread *td) 170 { 171 int s; 172 int revents = 0; 173 174 s = splhigh(); 175 176 if (events & (POLLIN | POLLRDNORM)) { 177 if (msgbufp->msg_bufr != msgbufp->msg_bufx) 178 revents |= events & (POLLIN | POLLRDNORM); 179 else 180 selrecord(td, &logsoftc.sc_selp); 181 } 182 splx(s); 183 return (revents); 184 } 185 186 static void 187 logtimeout(void *arg) 188 { 189 190 if (!log_open) 191 return; 192 if (msgbuftrigger == 0) { 193 callout_reset(&logsoftc.sc_callout, 194 hz / log_wakeups_per_second, logtimeout, NULL); 195 return; 196 } 197 msgbuftrigger = 0; 198 selwakeup(&logsoftc.sc_selp); 199 if ((logsoftc.sc_state & LOG_ASYNC) && logsoftc.sc_sigio != NULL) 200 pgsigio(&logsoftc.sc_sigio, SIGIO, 0); 201 if (logsoftc.sc_state & LOG_RDWAIT) { 202 wakeup((caddr_t)msgbufp); 203 logsoftc.sc_state &= ~LOG_RDWAIT; 204 } 205 callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second, 206 logtimeout, NULL); 207 } 208 209 /*ARGSUSED*/ 210 static int 211 logioctl(dev_t dev, u_long com, caddr_t data, int flag, struct thread *td) 212 { 213 long l; 214 int s; 215 216 switch (com) { 217 218 /* return number of characters immediately available */ 219 case FIONREAD: 220 s = splhigh(); 221 l = (long)msgbufp->msg_bufx - msgbufp->msg_bufr; 222 splx(s); 223 if (l < 0) 224 l += msgbufp->msg_size; 225 *(int *)data = l; 226 break; 227 228 case FIONBIO: 229 break; 230 231 case FIOASYNC: 232 if (*(int *)data) 233 logsoftc.sc_state |= LOG_ASYNC; 234 else 235 logsoftc.sc_state &= ~LOG_ASYNC; 236 break; 237 238 case FIOSETOWN: 239 return (fsetown(*(int *)data, &logsoftc.sc_sigio)); 240 241 case FIOGETOWN: 242 *(int *)data = fgetown(&logsoftc.sc_sigio); 243 break; 244 245 /* This is deprecated, FIOSETOWN should be used instead. */ 246 case TIOCSPGRP: 247 return (fsetown(-(*(int *)data), &logsoftc.sc_sigio)); 248 249 /* This is deprecated, FIOGETOWN should be used instead */ 250 case TIOCGPGRP: 251 *(int *)data = -fgetown(&logsoftc.sc_sigio); 252 break; 253 254 default: 255 return (ENOTTY); 256 } 257 return (0); 258 } 259 260 static void 261 log_drvinit(void *unused) 262 { 263 264 make_dev(&log_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600, "klog"); 265 } 266 267 SYSINIT(logdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,log_drvinit,NULL) 268