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