Home | History | Annotate | Line # | Download | only in wscons
wsevent.c revision 1.5.8.1
      1  1.5.8.1   thorpej /* $NetBSD: wsevent.c,v 1.5.8.1 2001/09/08 04:55:31 thorpej Exp $ */
      2      1.1  drochner 
      3      1.1  drochner /*
      4      1.1  drochner  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
      5      1.1  drochner  *
      6      1.1  drochner  * Redistribution and use in source and binary forms, with or without
      7      1.1  drochner  * modification, are permitted provided that the following conditions
      8      1.1  drochner  * are met:
      9      1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     10      1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     11      1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     13      1.1  drochner  *    documentation and/or other materials provided with the distribution.
     14      1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     15      1.1  drochner  *    must display the following acknowledgement:
     16      1.1  drochner  *      This product includes software developed by Christopher G. Demetriou
     17      1.1  drochner  *	for the NetBSD Project.
     18      1.1  drochner  * 4. The name of the author may not be used to endorse or promote products
     19      1.1  drochner  *    derived from this software without specific prior written permission
     20      1.1  drochner  *
     21      1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22      1.1  drochner  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23      1.1  drochner  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24      1.1  drochner  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25      1.1  drochner  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26      1.1  drochner  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27      1.1  drochner  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28      1.1  drochner  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29      1.1  drochner  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30      1.1  drochner  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31      1.1  drochner  */
     32      1.1  drochner 
     33      1.4  drochner #include <sys/cdefs.h>
     34  1.5.8.1   thorpej __KERNEL_RCSID(0, "$NetBSD: wsevent.c,v 1.5.8.1 2001/09/08 04:55:31 thorpej Exp $");
     35      1.1  drochner 
     36      1.1  drochner /*
     37      1.1  drochner  * Copyright (c) 1992, 1993
     38      1.1  drochner  *	The Regents of the University of California.  All rights reserved.
     39      1.1  drochner  *
     40      1.1  drochner  * This software was developed by the Computer Systems Engineering group
     41      1.1  drochner  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     42      1.1  drochner  * contributed to Berkeley.
     43      1.1  drochner  *
     44      1.1  drochner  * All advertising materials mentioning features or use of this software
     45      1.1  drochner  * must display the following acknowledgement:
     46      1.1  drochner  *	This product includes software developed by the University of
     47      1.1  drochner  *	California, Lawrence Berkeley Laboratory.
     48      1.1  drochner  *
     49      1.1  drochner  * Redistribution and use in source and binary forms, with or without
     50      1.1  drochner  * modification, are permitted provided that the following conditions
     51      1.1  drochner  * are met:
     52      1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     53      1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     54      1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     55      1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     56      1.1  drochner  *    documentation and/or other materials provided with the distribution.
     57      1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     58      1.1  drochner  *    must display the following acknowledgement:
     59      1.1  drochner  *	This product includes software developed by the University of
     60      1.1  drochner  *	California, Berkeley and its contributors.
     61      1.1  drochner  * 4. Neither the name of the University nor the names of its contributors
     62      1.1  drochner  *    may be used to endorse or promote products derived from this software
     63      1.1  drochner  *    without specific prior written permission.
     64      1.1  drochner  *
     65      1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     66      1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     67      1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     68      1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     69      1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     70      1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     71      1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     72      1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     73      1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     74      1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     75      1.1  drochner  * SUCH DAMAGE.
     76      1.1  drochner  *
     77      1.1  drochner  *	@(#)event.c	8.1 (Berkeley) 6/11/93
     78      1.1  drochner  */
     79      1.1  drochner 
     80      1.1  drochner /*
     81      1.1  drochner  * Internal "wscons_event" queue interface for the keyboard and mouse drivers.
     82      1.1  drochner  */
     83      1.1  drochner 
     84      1.1  drochner #include <sys/param.h>
     85      1.1  drochner #include <sys/fcntl.h>
     86      1.1  drochner #include <sys/malloc.h>
     87      1.1  drochner #include <sys/proc.h>
     88      1.1  drochner #include <sys/systm.h>
     89      1.1  drochner #include <sys/vnode.h>
     90      1.1  drochner #include <sys/select.h>
     91      1.1  drochner #include <sys/poll.h>
     92      1.1  drochner 
     93      1.1  drochner #include <dev/wscons/wsconsio.h>
     94      1.1  drochner #include <dev/wscons/wseventvar.h>
     95      1.1  drochner 
     96      1.1  drochner /*
     97      1.1  drochner  * Initialize a wscons_event queue.
     98      1.1  drochner  */
     99      1.1  drochner void
    100      1.1  drochner wsevent_init(ev)
    101      1.5  augustss 	struct wseventvar *ev;
    102      1.1  drochner {
    103      1.1  drochner 
    104      1.1  drochner 	ev->get = ev->put = 0;
    105      1.1  drochner 	ev->q = malloc((u_long)WSEVENT_QSIZE * sizeof(struct wscons_event),
    106      1.1  drochner 	    M_DEVBUF, M_WAITOK);
    107      1.3  augustss 	memset((caddr_t)ev->q, 0, WSEVENT_QSIZE * sizeof(struct wscons_event));
    108      1.1  drochner }
    109      1.1  drochner 
    110      1.1  drochner /*
    111      1.1  drochner  * Tear down a wscons_event queue.
    112      1.1  drochner  */
    113      1.1  drochner void
    114      1.1  drochner wsevent_fini(ev)
    115      1.5  augustss 	struct wseventvar *ev;
    116      1.1  drochner {
    117      1.1  drochner 
    118      1.1  drochner 	free(ev->q, M_DEVBUF);
    119      1.1  drochner }
    120      1.1  drochner 
    121      1.1  drochner /*
    122      1.1  drochner  * User-level interface: read, poll.
    123      1.1  drochner  * (User cannot write an event queue.)
    124      1.1  drochner  */
    125      1.1  drochner int
    126      1.1  drochner wsevent_read(ev, uio, flags)
    127      1.5  augustss 	struct wseventvar *ev;
    128      1.1  drochner 	struct uio *uio;
    129      1.1  drochner 	int flags;
    130      1.1  drochner {
    131      1.1  drochner 	int s, n, cnt, error;
    132      1.1  drochner 
    133      1.1  drochner 	/*
    134      1.1  drochner 	 * Make sure we can return at least 1.
    135      1.1  drochner 	 */
    136      1.1  drochner 	if (uio->uio_resid < sizeof(struct wscons_event))
    137      1.1  drochner 		return (EMSGSIZE);	/* ??? */
    138      1.1  drochner 	s = splwsevent();
    139      1.1  drochner 	while (ev->get == ev->put) {
    140      1.1  drochner 		if (flags & IO_NDELAY) {
    141      1.1  drochner 			splx(s);
    142      1.1  drochner 			return (EWOULDBLOCK);
    143      1.1  drochner 		}
    144      1.1  drochner 		ev->wanted = 1;
    145      1.1  drochner 		error = tsleep((caddr_t)ev, PWSEVENT | PCATCH,
    146      1.1  drochner 		    "wsevent_read", 0);
    147      1.1  drochner 		if (error) {
    148      1.1  drochner 			splx(s);
    149      1.1  drochner 			return (error);
    150      1.1  drochner 		}
    151      1.1  drochner 	}
    152      1.1  drochner 	/*
    153      1.1  drochner 	 * Move wscons_event from tail end of queue (there is at least one
    154      1.1  drochner 	 * there).
    155      1.1  drochner 	 */
    156      1.1  drochner 	if (ev->put < ev->get)
    157      1.1  drochner 		cnt = WSEVENT_QSIZE - ev->get;	/* events in [get..QSIZE) */
    158      1.1  drochner 	else
    159      1.1  drochner 		cnt = ev->put - ev->get;	/* events in [get..put) */
    160      1.1  drochner 	splx(s);
    161      1.1  drochner 	n = howmany(uio->uio_resid, sizeof(struct wscons_event));
    162      1.1  drochner 	if (cnt > n)
    163      1.1  drochner 		cnt = n;
    164      1.1  drochner 	error = uiomove((caddr_t)&ev->q[ev->get],
    165      1.1  drochner 	    cnt * sizeof(struct wscons_event), uio);
    166      1.1  drochner 	n -= cnt;
    167      1.1  drochner 	/*
    168      1.1  drochner 	 * If we do not wrap to 0, used up all our space, or had an error,
    169      1.1  drochner 	 * stop.  Otherwise move from front of queue to put index, if there
    170      1.1  drochner 	 * is anything there to move.
    171      1.1  drochner 	 */
    172      1.1  drochner 	if ((ev->get = (ev->get + cnt) % WSEVENT_QSIZE) != 0 ||
    173      1.1  drochner 	    n == 0 || error || (cnt = ev->put) == 0)
    174      1.1  drochner 		return (error);
    175      1.1  drochner 	if (cnt > n)
    176      1.1  drochner 		cnt = n;
    177      1.1  drochner 	error = uiomove((caddr_t)&ev->q[0],
    178      1.1  drochner 	    cnt * sizeof(struct wscons_event), uio);
    179      1.1  drochner 	ev->get = cnt;
    180      1.1  drochner 	return (error);
    181      1.1  drochner }
    182      1.1  drochner 
    183      1.1  drochner int
    184      1.1  drochner wsevent_poll(ev, events, p)
    185      1.5  augustss 	struct wseventvar *ev;
    186      1.1  drochner 	int events;
    187      1.1  drochner 	struct proc *p;
    188      1.1  drochner {
    189      1.1  drochner 	int revents = 0;
    190      1.1  drochner 	int s = splwsevent();
    191      1.1  drochner 
    192      1.2   thorpej         if (events & (POLLIN | POLLRDNORM)) {
    193      1.1  drochner 		if (ev->get != ev->put)
    194      1.2   thorpej 			revents |= events & (POLLIN | POLLRDNORM);
    195      1.2   thorpej 		else
    196      1.2   thorpej 			selrecord(p, &ev->sel);
    197      1.2   thorpej 	}
    198      1.1  drochner 
    199      1.1  drochner 	splx(s);
    200      1.1  drochner 	return (revents);
    201  1.5.8.1   thorpej }
    202  1.5.8.1   thorpej 
    203  1.5.8.1   thorpej static void
    204  1.5.8.1   thorpej filt_wseventrdetach(struct knote *kn)
    205  1.5.8.1   thorpej {
    206  1.5.8.1   thorpej 	struct wseventvar *ev = (void *) kn->kn_hook;
    207  1.5.8.1   thorpej 	int s;
    208  1.5.8.1   thorpej 
    209  1.5.8.1   thorpej 	s = splwsevent();
    210  1.5.8.1   thorpej 	SLIST_REMOVE(&ev->sel.si_klist, kn, knote, kn_selnext);
    211  1.5.8.1   thorpej 	splx(s);
    212  1.5.8.1   thorpej }
    213  1.5.8.1   thorpej 
    214  1.5.8.1   thorpej static int
    215  1.5.8.1   thorpej filt_wseventread(struct knote *kn, long hint)
    216  1.5.8.1   thorpej {
    217  1.5.8.1   thorpej 	struct wseventvar *ev = (void *) kn->kn_hook;
    218  1.5.8.1   thorpej 
    219  1.5.8.1   thorpej 	if (ev->get == ev->put)
    220  1.5.8.1   thorpej 		return (0);
    221  1.5.8.1   thorpej 
    222  1.5.8.1   thorpej 	if (ev->get < ev->put)
    223  1.5.8.1   thorpej 		kn->kn_data = ev->put - ev->get;
    224  1.5.8.1   thorpej 	else
    225  1.5.8.1   thorpej 		kn->kn_data = (WSEVENT_QSIZE - ev->get) +
    226  1.5.8.1   thorpej 		    ev->put;
    227  1.5.8.1   thorpej 
    228  1.5.8.1   thorpej 	kn->kn_data *= sizeof(struct wscons_event);
    229  1.5.8.1   thorpej 
    230  1.5.8.1   thorpej 	return (1);
    231  1.5.8.1   thorpej }
    232  1.5.8.1   thorpej 
    233  1.5.8.1   thorpej static const struct filterops wsevent_filtops =
    234  1.5.8.1   thorpej 	{ 1, NULL, filt_wseventrdetach, filt_wseventread };
    235  1.5.8.1   thorpej 
    236  1.5.8.1   thorpej int
    237  1.5.8.1   thorpej wsevent_kqfilter(struct wseventvar *ev, struct knote *kn)
    238  1.5.8.1   thorpej {
    239  1.5.8.1   thorpej 	struct klist *klist;
    240  1.5.8.1   thorpej 	int s;
    241  1.5.8.1   thorpej 
    242  1.5.8.1   thorpej 	switch (kn->kn_filter) {
    243  1.5.8.1   thorpej 	case EVFILT_READ:
    244  1.5.8.1   thorpej 		klist = &ev->sel.si_klist;
    245  1.5.8.1   thorpej 		kn->kn_fop = &wsevent_filtops;
    246  1.5.8.1   thorpej 		break;
    247  1.5.8.1   thorpej 
    248  1.5.8.1   thorpej 	default:
    249  1.5.8.1   thorpej 		return (1);
    250  1.5.8.1   thorpej 	}
    251  1.5.8.1   thorpej 
    252  1.5.8.1   thorpej 	kn->kn_hook = (void *) ev;
    253  1.5.8.1   thorpej 
    254  1.5.8.1   thorpej 	s = splwsevent();
    255  1.5.8.1   thorpej 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
    256  1.5.8.1   thorpej 	splx(s);
    257  1.5.8.1   thorpej 
    258  1.5.8.1   thorpej 	return (0);
    259      1.1  drochner }
    260