syscall messaging 2: Change the standard return value storage for system
[dragonfly.git] / sys / kern / kern_event.c
1 /*-
2  * Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon@FreeBSD.org>
3  * 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  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/kern/kern_event.c,v 1.2.2.9 2003/05/08 07:47:16 kbyanc Exp $
27  * $DragonFly: src/sys/kern/kern_event.c,v 1.7 2003/07/26 18:12:44 dillon Exp $
28  */
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kernel.h>
33 #include <sys/proc.h>
34 #include <sys/malloc.h> 
35 #include <sys/unistd.h>
36 #include <sys/file.h>
37 #include <sys/fcntl.h>
38 #include <sys/select.h>
39 #include <sys/queue.h>
40 #include <sys/event.h>
41 #include <sys/eventvar.h>
42 #include <sys/poll.h>
43 #include <sys/protosw.h>
44 #include <sys/socket.h>
45 #include <sys/socketvar.h>
46 #include <sys/stat.h>
47 #include <sys/sysctl.h>
48 #include <sys/sysproto.h>
49 #include <sys/uio.h>
50 #include <sys/file2.h>
51
52 #include <vm/vm_zone.h>
53
54 MALLOC_DEFINE(M_KQUEUE, "kqueue", "memory for kqueue system");
55
56 static int      kqueue_scan(struct file *fp, int maxevents,
57                     struct kevent *ulistp, const struct timespec *timeout,
58                     struct proc *p, int *res);
59 static int      kqueue_read(struct file *fp, struct uio *uio,
60                     struct ucred *cred, int flags, struct thread *td);
61 static int      kqueue_write(struct file *fp, struct uio *uio,
62                     struct ucred *cred, int flags, struct thread *td);
63 static int      kqueue_ioctl(struct file *fp, u_long com, caddr_t data,
64                     struct thread *td);
65 static int      kqueue_poll(struct file *fp, int events, struct ucred *cred,
66                     struct thread *td);
67 static int      kqueue_kqfilter(struct file *fp, struct knote *kn);
68 static int      kqueue_stat(struct file *fp, struct stat *st, struct thread *td);
69 static int      kqueue_close(struct file *fp, struct thread *td);
70 static void     kqueue_wakeup(struct kqueue *kq);
71
72 static struct fileops kqueueops = {
73         kqueue_read,
74         kqueue_write,
75         kqueue_ioctl,
76         kqueue_poll,
77         kqueue_kqfilter,
78         kqueue_stat,
79         kqueue_close
80 };
81
82 static void     knote_attach(struct knote *kn, struct filedesc *fdp);
83 static void     knote_drop(struct knote *kn, struct thread *td);
84 static void     knote_enqueue(struct knote *kn);
85 static void     knote_dequeue(struct knote *kn);
86 static void     knote_init(void);
87 static struct   knote *knote_alloc(void);
88 static void     knote_free(struct knote *kn);
89
90 static void     filt_kqdetach(struct knote *kn);
91 static int      filt_kqueue(struct knote *kn, long hint);
92 static int      filt_procattach(struct knote *kn);
93 static void     filt_procdetach(struct knote *kn);
94 static int      filt_proc(struct knote *kn, long hint);
95 static int      filt_fileattach(struct knote *kn);
96 static void     filt_timerexpire(void *knx);
97 static int      filt_timerattach(struct knote *kn);
98 static void     filt_timerdetach(struct knote *kn);
99 static int      filt_timer(struct knote *kn, long hint);
100
101 static struct filterops file_filtops =
102         { 1, filt_fileattach, NULL, NULL };
103 static struct filterops kqread_filtops =
104         { 1, NULL, filt_kqdetach, filt_kqueue };
105 static struct filterops proc_filtops =
106         { 0, filt_procattach, filt_procdetach, filt_proc };
107 static struct filterops timer_filtops =
108         { 0, filt_timerattach, filt_timerdetach, filt_timer };
109
110 static vm_zone_t        knote_zone;
111 static int              kq_ncallouts = 0;
112 static int              kq_calloutmax = (4 * 1024);
113 SYSCTL_INT(_kern, OID_AUTO, kq_calloutmax, CTLFLAG_RW,
114     &kq_calloutmax, 0, "Maximum number of callouts allocated for kqueue");
115
116 #define KNOTE_ACTIVATE(kn) do {                                         \
117         kn->kn_status |= KN_ACTIVE;                                     \
118         if ((kn->kn_status & (KN_QUEUED | KN_DISABLED)) == 0)           \
119                 knote_enqueue(kn);                                      \
120 } while(0)
121
122 #define KN_HASHSIZE             64              /* XXX should be tunable */
123 #define KN_HASH(val, mask)      (((val) ^ (val >> 8)) & (mask))
124
125 extern struct filterops aio_filtops;
126 extern struct filterops sig_filtops;
127
128 /*
129  * Table for for all system-defined filters.
130  */
131 static struct filterops *sysfilt_ops[] = {
132         &file_filtops,                  /* EVFILT_READ */
133         &file_filtops,                  /* EVFILT_WRITE */
134         &aio_filtops,                   /* EVFILT_AIO */
135         &file_filtops,                  /* EVFILT_VNODE */
136         &proc_filtops,                  /* EVFILT_PROC */
137         &sig_filtops,                   /* EVFILT_SIGNAL */
138         &timer_filtops,                 /* EVFILT_TIMER */
139 };
140
141 static int
142 filt_fileattach(struct knote *kn)
143 {
144         return (fo_kqfilter(kn->kn_fp, kn));
145 }
146
147 /*ARGSUSED*/
148 static int
149 kqueue_kqfilter(struct file *fp, struct knote *kn)
150 {
151         struct kqueue *kq = (struct kqueue *)kn->kn_fp->f_data;
152
153         if (kn->kn_filter != EVFILT_READ)
154                 return (1);
155
156         kn->kn_fop = &kqread_filtops;
157         SLIST_INSERT_HEAD(&kq->kq_sel.si_note, kn, kn_selnext);
158         return (0);
159 }
160
161 static void
162 filt_kqdetach(struct knote *kn)
163 {
164         struct kqueue *kq = (struct kqueue *)kn->kn_fp->f_data;
165
166         SLIST_REMOVE(&kq->kq_sel.si_note, kn, knote, kn_selnext);
167 }
168
169 /*ARGSUSED*/
170 static int
171 filt_kqueue(struct knote *kn, long hint)
172 {
173         struct kqueue *kq = (struct kqueue *)kn->kn_fp->f_data;
174
175         kn->kn_data = kq->kq_count;
176         return (kn->kn_data > 0);
177 }
178
179 static int
180 filt_procattach(struct knote *kn)
181 {
182         struct proc *p;
183         int immediate;
184
185         immediate = 0;
186         p = pfind(kn->kn_id);
187         if (p == NULL && (kn->kn_sfflags & NOTE_EXIT)) {
188                 p = zpfind(kn->kn_id);
189                 immediate = 1;
190         }
191         if (p == NULL)
192                 return (ESRCH);
193         if (! PRISON_CHECK(curproc->p_ucred, p->p_ucred))
194                 return (EACCES);
195
196         kn->kn_ptr.p_proc = p;
197         kn->kn_flags |= EV_CLEAR;               /* automatically set */
198
199         /*
200          * internal flag indicating registration done by kernel
201          */
202         if (kn->kn_flags & EV_FLAG1) {
203                 kn->kn_data = kn->kn_sdata;             /* ppid */
204                 kn->kn_fflags = NOTE_CHILD;
205                 kn->kn_flags &= ~EV_FLAG1;
206         }
207
208         /* XXX lock the proc here while adding to the list? */
209         SLIST_INSERT_HEAD(&p->p_klist, kn, kn_selnext);
210
211         /*
212          * Immediately activate any exit notes if the target process is a
213          * zombie.  This is necessary to handle the case where the target
214          * process, e.g. a child, dies before the kevent is registered.
215          */
216         if (immediate && filt_proc(kn, NOTE_EXIT))
217                 KNOTE_ACTIVATE(kn);
218
219         return (0);
220 }
221
222 /*
223  * The knote may be attached to a different process, which may exit,
224  * leaving nothing for the knote to be attached to.  So when the process
225  * exits, the knote is marked as DETACHED and also flagged as ONESHOT so
226  * it will be deleted when read out.  However, as part of the knote deletion,
227  * this routine is called, so a check is needed to avoid actually performing
228  * a detach, because the original process does not exist any more.
229  */
230 static void
231 filt_procdetach(struct knote *kn)
232 {
233         struct proc *p = kn->kn_ptr.p_proc;
234
235         if (kn->kn_status & KN_DETACHED)
236                 return;
237
238         /* XXX locking?  this might modify another process. */
239         SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);
240 }
241
242 static int
243 filt_proc(struct knote *kn, long hint)
244 {
245         u_int event;
246
247         /*
248          * mask off extra data
249          */
250         event = (u_int)hint & NOTE_PCTRLMASK;
251
252         /*
253          * if the user is interested in this event, record it.
254          */
255         if (kn->kn_sfflags & event)
256                 kn->kn_fflags |= event;
257
258         /*
259          * process is gone, so flag the event as finished.
260          */
261         if (event == NOTE_EXIT) {
262                 kn->kn_status |= KN_DETACHED;
263                 kn->kn_flags |= (EV_EOF | EV_ONESHOT); 
264                 return (1);
265         }
266
267         /*
268          * process forked, and user wants to track the new process,
269          * so attach a new knote to it, and immediately report an
270          * event with the parent's pid.
271          */
272         if ((event == NOTE_FORK) && (kn->kn_sfflags & NOTE_TRACK)) {
273                 struct kevent kev;
274                 int error;
275
276                 /*
277                  * register knote with new process.
278                  */
279                 kev.ident = hint & NOTE_PDATAMASK;      /* pid */
280                 kev.filter = kn->kn_filter;
281                 kev.flags = kn->kn_flags | EV_ADD | EV_ENABLE | EV_FLAG1;
282                 kev.fflags = kn->kn_sfflags;
283                 kev.data = kn->kn_id;                   /* parent */
284                 kev.udata = kn->kn_kevent.udata;        /* preserve udata */
285                 error = kqueue_register(kn->kn_kq, &kev, NULL);
286                 if (error)
287                         kn->kn_fflags |= NOTE_TRACKERR;
288         }
289
290         return (kn->kn_fflags != 0);
291 }
292
293 static void
294 filt_timerexpire(void *knx)
295 {
296         struct knote *kn = knx;
297         struct callout *calloutp;
298         struct timeval tv;
299         int tticks;
300
301         kn->kn_data++;
302         KNOTE_ACTIVATE(kn);
303
304         if ((kn->kn_flags & EV_ONESHOT) == 0) {
305                 tv.tv_sec = kn->kn_sdata / 1000;
306                 tv.tv_usec = (kn->kn_sdata % 1000) * 1000;
307                 tticks = tvtohz(&tv);
308                 calloutp = (struct callout *)kn->kn_hook;
309                 callout_reset(calloutp, tticks, filt_timerexpire, kn);
310         }
311 }
312
313 /*
314  * data contains amount of time to sleep, in milliseconds
315  */ 
316 static int
317 filt_timerattach(struct knote *kn)
318 {
319         struct callout *calloutp;
320         struct timeval tv;
321         int tticks;
322
323         if (kq_ncallouts >= kq_calloutmax)
324                 return (ENOMEM);
325         kq_ncallouts++;
326
327         tv.tv_sec = kn->kn_sdata / 1000;
328         tv.tv_usec = (kn->kn_sdata % 1000) * 1000;
329         tticks = tvtohz(&tv);
330
331         kn->kn_flags |= EV_CLEAR;               /* automatically set */
332         MALLOC(calloutp, struct callout *, sizeof(*calloutp),
333             M_KQUEUE, M_WAITOK);
334         callout_init(calloutp);
335         callout_reset(calloutp, tticks, filt_timerexpire, kn);
336         kn->kn_hook = (caddr_t)calloutp;
337
338         return (0);
339 }
340
341 static void
342 filt_timerdetach(struct knote *kn)
343 {
344         struct callout *calloutp;
345
346         calloutp = (struct callout *)kn->kn_hook;
347         callout_stop(calloutp);
348         FREE(calloutp, M_KQUEUE);
349         kq_ncallouts--;
350 }
351
352 static int
353 filt_timer(struct knote *kn, long hint)
354 {
355
356         return (kn->kn_data != 0);
357 }
358
359 int
360 kqueue(struct kqueue_args *uap)
361 {
362         struct proc *p = curproc;
363         struct filedesc *fdp = p->p_fd;
364         struct kqueue *kq;
365         struct file *fp;
366         int fd, error;
367
368         error = falloc(p, &fp, &fd);
369         if (error)
370                 return (error);
371         fp->f_flag = FREAD | FWRITE;
372         fp->f_type = DTYPE_KQUEUE;
373         fp->f_ops = &kqueueops;
374         kq = malloc(sizeof(struct kqueue), M_KQUEUE, M_WAITOK | M_ZERO);
375         TAILQ_INIT(&kq->kq_head);
376         fp->f_data = (caddr_t)kq;
377         uap->lmsg.u.ms_result = fd;
378         if (fdp->fd_knlistsize < 0)
379                 fdp->fd_knlistsize = 0;         /* this process has a kq */
380         kq->kq_fdp = fdp;
381         return (error);
382 }
383
384 int
385 kevent(struct kevent_args *uap)
386 {
387         struct thread *td = curthread;
388         struct proc *p = td->td_proc;
389         struct filedesc *fdp;
390         struct kevent *kevp;
391         struct kqueue *kq;
392         struct file *fp = NULL;
393         struct timespec ts;
394         int i, n, nerrors, error;
395
396         KKASSERT(p);
397         fdp = p->p_fd;
398
399         if (((u_int)uap->fd) >= fdp->fd_nfiles ||
400             (fp = fdp->fd_ofiles[uap->fd]) == NULL ||
401             (fp->f_type != DTYPE_KQUEUE))
402                 return (EBADF);
403
404         fhold(fp);
405
406         if (uap->timeout != NULL) {
407                 error = copyin(uap->timeout, &ts, sizeof(ts));
408                 if (error)
409                         goto done;
410                 uap->timeout = &ts;
411         }
412
413         kq = (struct kqueue *)fp->f_data;
414         nerrors = 0;
415
416         while (uap->nchanges > 0) {
417                 n = uap->nchanges > KQ_NEVENTS ? KQ_NEVENTS : uap->nchanges;
418                 error = copyin(uap->changelist, kq->kq_kev,
419                     n * sizeof(struct kevent));
420                 if (error)
421                         goto done;
422                 for (i = 0; i < n; i++) {
423                         kevp = &kq->kq_kev[i];
424                         kevp->flags &= ~EV_SYSFLAGS;
425                         error = kqueue_register(kq, kevp, td);
426                         if (error) {
427                                 if (uap->nevents != 0) {
428                                         kevp->flags = EV_ERROR;
429                                         kevp->data = error;
430                                         (void) copyout((caddr_t)kevp,
431                                             (caddr_t)uap->eventlist,
432                                             sizeof(*kevp));
433                                         uap->eventlist++;
434                                         uap->nevents--;
435                                         nerrors++;
436                                 } else {
437                                         goto done;
438                                 }
439                         }
440                 }
441                 uap->nchanges -= n;
442                 uap->changelist += n;
443         }
444         if (nerrors) {
445                 uap->lmsg.u.ms_result = nerrors;
446                 error = 0;
447                 goto done;
448         }
449
450         error = kqueue_scan(fp, uap->nevents, uap->eventlist, uap->timeout, p, &uap->lmsg.u.ms_result);
451 done:
452         if (fp != NULL)
453                 fdrop(fp, p->p_thread);
454         return (error);
455 }
456
457 int
458 kqueue_register(struct kqueue *kq, struct kevent *kev, struct thread *td)
459 {
460         struct filedesc *fdp = kq->kq_fdp;
461         struct filterops *fops;
462         struct file *fp = NULL;
463         struct knote *kn = NULL;
464         int s, error = 0;
465
466         if (kev->filter < 0) {
467                 if (kev->filter + EVFILT_SYSCOUNT < 0)
468                         return (EINVAL);
469                 fops = sysfilt_ops[~kev->filter];       /* to 0-base index */
470         } else {
471                 /*
472                  * XXX
473                  * filter attach routine is responsible for insuring that
474                  * the identifier can be attached to it.
475                  */
476                 printf("unknown filter: %d\n", kev->filter);
477                 return (EINVAL);
478         }
479
480         if (fops->f_isfd) {
481                 /* validate descriptor */
482                 if ((u_int)kev->ident >= fdp->fd_nfiles ||
483                     (fp = fdp->fd_ofiles[kev->ident]) == NULL)
484                         return (EBADF);
485                 fhold(fp);
486
487                 if (kev->ident < fdp->fd_knlistsize) {
488                         SLIST_FOREACH(kn, &fdp->fd_knlist[kev->ident], kn_link)
489                                 if (kq == kn->kn_kq &&
490                                     kev->filter == kn->kn_filter)
491                                         break;
492                 }
493         } else {
494                 if (fdp->fd_knhashmask != 0) {
495                         struct klist *list;
496                         
497                         list = &fdp->fd_knhash[
498                             KN_HASH((u_long)kev->ident, fdp->fd_knhashmask)];
499                         SLIST_FOREACH(kn, list, kn_link)
500                                 if (kev->ident == kn->kn_id &&
501                                     kq == kn->kn_kq &&
502                                     kev->filter == kn->kn_filter)
503                                         break;
504                 }
505         }
506
507         if (kn == NULL && ((kev->flags & EV_ADD) == 0)) {
508                 error = ENOENT;
509                 goto done;
510         }
511
512         /*
513          * kn now contains the matching knote, or NULL if no match
514          */
515         if (kev->flags & EV_ADD) {
516
517                 if (kn == NULL) {
518                         kn = knote_alloc();
519                         if (kn == NULL) {
520                                 error = ENOMEM;
521                                 goto done;
522                         }
523                         kn->kn_fp = fp;
524                         kn->kn_kq = kq;
525                         kn->kn_fop = fops;
526
527                         /*
528                          * apply reference count to knote structure, and
529                          * do not release it at the end of this routine.
530                          */
531                         fp = NULL;
532
533                         kn->kn_sfflags = kev->fflags;
534                         kn->kn_sdata = kev->data;
535                         kev->fflags = 0;
536                         kev->data = 0;
537                         kn->kn_kevent = *kev;
538
539                         knote_attach(kn, fdp);
540                         if ((error = fops->f_attach(kn)) != 0) {
541                                 knote_drop(kn, td);
542                                 goto done;
543                         }
544                 } else {
545                         /*
546                          * The user may change some filter values after the
547                          * initial EV_ADD, but doing so will not reset any 
548                          * filter which have already been triggered.
549                          */
550                         kn->kn_sfflags = kev->fflags;
551                         kn->kn_sdata = kev->data;
552                         kn->kn_kevent.udata = kev->udata;
553                 }
554
555                 s = splhigh();
556                 if (kn->kn_fop->f_event(kn, 0))
557                         KNOTE_ACTIVATE(kn);
558                 splx(s);
559
560         } else if (kev->flags & EV_DELETE) {
561                 kn->kn_fop->f_detach(kn);
562                 knote_drop(kn, td);
563                 goto done;
564         }
565
566         if ((kev->flags & EV_DISABLE) &&
567             ((kn->kn_status & KN_DISABLED) == 0)) {
568                 s = splhigh();
569                 kn->kn_status |= KN_DISABLED;
570                 splx(s);
571         }
572
573         if ((kev->flags & EV_ENABLE) && (kn->kn_status & KN_DISABLED)) {
574                 s = splhigh();
575                 kn->kn_status &= ~KN_DISABLED;
576                 if ((kn->kn_status & KN_ACTIVE) &&
577                     ((kn->kn_status & KN_QUEUED) == 0))
578                         knote_enqueue(kn);
579                 splx(s);
580         }
581
582 done:
583         if (fp != NULL)
584                 fdrop(fp, td);
585         return (error);
586 }
587
588 static int
589 kqueue_scan(struct file *fp, int maxevents, struct kevent *ulistp,
590         const struct timespec *tsp, struct proc *p, int *res)
591 {
592         struct thread *td = p->p_thread;
593         struct kqueue *kq = (struct kqueue *)fp->f_data;
594         struct kevent *kevp;
595         struct timeval atv, rtv, ttv;
596         struct knote *kn, marker;
597         int s, count, timeout, nkev = 0, error = 0;
598
599         count = maxevents;
600         if (count == 0)
601                 goto done;
602
603         if (tsp != NULL) {
604                 TIMESPEC_TO_TIMEVAL(&atv, tsp);
605                 if (itimerfix(&atv)) {
606                         error = EINVAL;
607                         goto done;
608                 }
609                 if (tsp->tv_sec == 0 && tsp->tv_nsec == 0)
610                         timeout = -1;
611                 else 
612                         timeout = atv.tv_sec > 24 * 60 * 60 ?
613                             24 * 60 * 60 * hz : tvtohz(&atv);
614                 getmicrouptime(&rtv);
615                 timevaladd(&atv, &rtv);
616         } else {
617                 atv.tv_sec = 0;
618                 atv.tv_usec = 0;
619                 timeout = 0;
620         }
621         goto start;
622
623 retry:
624         if (atv.tv_sec || atv.tv_usec) {
625                 getmicrouptime(&rtv);
626                 if (timevalcmp(&rtv, &atv, >=))
627                         goto done;
628                 ttv = atv;
629                 timevalsub(&ttv, &rtv);
630                 timeout = ttv.tv_sec > 24 * 60 * 60 ?
631                         24 * 60 * 60 * hz : tvtohz(&ttv);
632         }
633
634 start:
635         kevp = kq->kq_kev;
636         s = splhigh();
637         if (kq->kq_count == 0) {
638                 if (timeout < 0) { 
639                         error = EWOULDBLOCK;
640                 } else {
641                         kq->kq_state |= KQ_SLEEP;
642                         error = tsleep(kq, PCATCH, "kqread", timeout);
643                 }
644                 splx(s);
645                 if (error == 0)
646                         goto retry;
647                 /* don't restart after signals... */
648                 if (error == ERESTART)
649                         error = EINTR;
650                 else if (error == EWOULDBLOCK)
651                         error = 0;
652                 goto done;
653         }
654
655         TAILQ_INSERT_TAIL(&kq->kq_head, &marker, kn_tqe); 
656         while (count) {
657                 kn = TAILQ_FIRST(&kq->kq_head);
658                 TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); 
659                 if (kn == &marker) {
660                         splx(s);
661                         if (count == maxevents)
662                                 goto retry;
663                         goto done;
664                 }
665                 if (kn->kn_status & KN_DISABLED) {
666                         kn->kn_status &= ~KN_QUEUED;
667                         kq->kq_count--;
668                         continue;
669                 }
670                 if ((kn->kn_flags & EV_ONESHOT) == 0 &&
671                     kn->kn_fop->f_event(kn, 0) == 0) {
672                         kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE);
673                         kq->kq_count--;
674                         continue;
675                 }
676                 *kevp = kn->kn_kevent;
677                 kevp++;
678                 nkev++;
679                 if (kn->kn_flags & EV_ONESHOT) {
680                         kn->kn_status &= ~KN_QUEUED;
681                         kq->kq_count--;
682                         splx(s);
683                         kn->kn_fop->f_detach(kn);
684                         knote_drop(kn, td);
685                         s = splhigh();
686                 } else if (kn->kn_flags & EV_CLEAR) {
687                         kn->kn_data = 0;
688                         kn->kn_fflags = 0;
689                         kn->kn_status &= ~(KN_QUEUED | KN_ACTIVE);
690                         kq->kq_count--;
691                 } else {
692                         TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe); 
693                 }
694                 count--;
695                 if (nkev == KQ_NEVENTS) {
696                         splx(s);
697                         error = copyout((caddr_t)&kq->kq_kev, (caddr_t)ulistp,
698                             sizeof(struct kevent) * nkev);
699                         ulistp += nkev;
700                         nkev = 0;
701                         kevp = kq->kq_kev;
702                         s = splhigh();
703                         if (error)
704                                 break;
705                 }
706         }
707         TAILQ_REMOVE(&kq->kq_head, &marker, kn_tqe); 
708         splx(s);
709 done:
710         if (nkev != 0)
711                 error = copyout((caddr_t)&kq->kq_kev, (caddr_t)ulistp,
712                     sizeof(struct kevent) * nkev);
713         *res = maxevents - count;
714         return (error);
715 }
716
717 /*
718  * XXX
719  * This could be expanded to call kqueue_scan, if desired.
720  */
721 /*ARGSUSED*/
722 static int
723 kqueue_read(struct file *fp, struct uio *uio, struct ucred *cred,
724         int flags, struct thread *td)
725 {
726         return (ENXIO);
727 }
728
729 /*ARGSUSED*/
730 static int
731 kqueue_write(struct file *fp, struct uio *uio, struct ucred *cred,
732          int flags, struct thread *td)
733 {
734         return (ENXIO);
735 }
736
737 /*ARGSUSED*/
738 static int
739 kqueue_ioctl(struct file *fp, u_long com, caddr_t data, struct thread *td)
740 {
741         return (ENOTTY);
742 }
743
744 /*ARGSUSED*/
745 static int
746 kqueue_poll(struct file *fp, int events, struct ucred *cred, struct thread *td)
747 {
748         struct kqueue *kq = (struct kqueue *)fp->f_data;
749         int revents = 0;
750         int s = splnet();
751
752         if (events & (POLLIN | POLLRDNORM)) {
753                 if (kq->kq_count) {
754                         revents |= events & (POLLIN | POLLRDNORM);
755                 } else {
756                         selrecord(td, &kq->kq_sel);
757                         kq->kq_state |= KQ_SEL;
758                 }
759         }
760         splx(s);
761         return (revents);
762 }
763
764 /*ARGSUSED*/
765 static int
766 kqueue_stat(struct file *fp, struct stat *st, struct thread *td)
767 {
768         struct kqueue *kq = (struct kqueue *)fp->f_data;
769
770         bzero((void *)st, sizeof(*st));
771         st->st_size = kq->kq_count;
772         st->st_blksize = sizeof(struct kevent);
773         st->st_mode = S_IFIFO;
774         return (0);
775 }
776
777 /*ARGSUSED*/
778 static int
779 kqueue_close(struct file *fp, struct thread *td)
780 {
781         struct proc *p = td->td_proc;
782         struct kqueue *kq = (struct kqueue *)fp->f_data;
783         struct filedesc *fdp;
784         struct knote **knp, *kn, *kn0;
785         int i;
786
787         KKASSERT(p);
788         fdp = p->p_fd;
789         for (i = 0; i < fdp->fd_knlistsize; i++) {
790                 knp = &SLIST_FIRST(&fdp->fd_knlist[i]);
791                 kn = *knp;
792                 while (kn != NULL) {
793                         kn0 = SLIST_NEXT(kn, kn_link);
794                         if (kq == kn->kn_kq) {
795                                 kn->kn_fop->f_detach(kn);
796                                 fdrop(kn->kn_fp, td);
797                                 knote_free(kn);
798                                 *knp = kn0;
799                         } else {
800                                 knp = &SLIST_NEXT(kn, kn_link);
801                         }
802                         kn = kn0;
803                 }
804         }
805         if (fdp->fd_knhashmask != 0) {
806                 for (i = 0; i < fdp->fd_knhashmask + 1; i++) {
807                         knp = &SLIST_FIRST(&fdp->fd_knhash[i]);
808                         kn = *knp;
809                         while (kn != NULL) {
810                                 kn0 = SLIST_NEXT(kn, kn_link);
811                                 if (kq == kn->kn_kq) {
812                                         kn->kn_fop->f_detach(kn);
813                 /* XXX non-fd release of kn->kn_ptr */
814                                         knote_free(kn);
815                                         *knp = kn0;
816                                 } else {
817                                         knp = &SLIST_NEXT(kn, kn_link);
818                                 }
819                                 kn = kn0;
820                         }
821                 }
822         }
823         free(kq, M_KQUEUE);
824         fp->f_data = NULL;
825
826         return (0);
827 }
828
829 static void
830 kqueue_wakeup(struct kqueue *kq)
831 {
832
833         if (kq->kq_state & KQ_SLEEP) {
834                 kq->kq_state &= ~KQ_SLEEP;
835                 wakeup(kq);
836         }
837         if (kq->kq_state & KQ_SEL) {
838                 kq->kq_state &= ~KQ_SEL;
839                 selwakeup(&kq->kq_sel);
840         }
841         KNOTE(&kq->kq_sel.si_note, 0);
842 }
843
844 /*
845  * walk down a list of knotes, activating them if their event has triggered.
846  */
847 void
848 knote(struct klist *list, long hint)
849 {
850         struct knote *kn;
851
852         SLIST_FOREACH(kn, list, kn_selnext)
853                 if (kn->kn_fop->f_event(kn, hint))
854                         KNOTE_ACTIVATE(kn);
855 }
856
857 /*
858  * remove all knotes from a specified klist
859  */
860 void
861 knote_remove(struct thread *td, struct klist *list)
862 {
863         struct knote *kn;
864
865         while ((kn = SLIST_FIRST(list)) != NULL) {
866                 kn->kn_fop->f_detach(kn);
867                 knote_drop(kn, td);
868         }
869 }
870
871 /*
872  * remove all knotes referencing a specified fd
873  */
874 void
875 knote_fdclose(struct proc *p, int fd)
876 {
877         struct filedesc *fdp = p->p_fd;
878         struct klist *list = &fdp->fd_knlist[fd];
879
880         knote_remove(p->p_thread, list);
881 }
882
883 static void
884 knote_attach(struct knote *kn, struct filedesc *fdp)
885 {
886         struct klist *list;
887         int size;
888
889         if (! kn->kn_fop->f_isfd) {
890                 if (fdp->fd_knhashmask == 0)
891                         fdp->fd_knhash = hashinit(KN_HASHSIZE, M_KQUEUE,
892                             &fdp->fd_knhashmask);
893                 list = &fdp->fd_knhash[KN_HASH(kn->kn_id, fdp->fd_knhashmask)];
894                 goto done;
895         }
896
897         if (fdp->fd_knlistsize <= kn->kn_id) {
898                 size = fdp->fd_knlistsize;
899                 while (size <= kn->kn_id)
900                         size += KQEXTENT;
901                 MALLOC(list, struct klist *,
902                     size * sizeof(struct klist *), M_KQUEUE, M_WAITOK);
903                 bcopy((caddr_t)fdp->fd_knlist, (caddr_t)list,
904                     fdp->fd_knlistsize * sizeof(struct klist *));
905                 bzero((caddr_t)list +
906                     fdp->fd_knlistsize * sizeof(struct klist *),
907                     (size - fdp->fd_knlistsize) * sizeof(struct klist *));
908                 if (fdp->fd_knlist != NULL)
909                         FREE(fdp->fd_knlist, M_KQUEUE);
910                 fdp->fd_knlistsize = size;
911                 fdp->fd_knlist = list;
912         }
913         list = &fdp->fd_knlist[kn->kn_id];
914 done:
915         SLIST_INSERT_HEAD(list, kn, kn_link);
916         kn->kn_status = 0;
917 }
918
919 /*
920  * should be called at spl == 0, since we don't want to hold spl
921  * while calling fdrop and free.
922  */
923 static void
924 knote_drop(struct knote *kn, struct thread *td)
925 {
926         struct filedesc *fdp;
927         struct klist *list;
928
929         KKASSERT(td->td_proc);
930         fdp = td->td_proc->p_fd;
931         if (kn->kn_fop->f_isfd)
932                 list = &fdp->fd_knlist[kn->kn_id];
933         else
934                 list = &fdp->fd_knhash[KN_HASH(kn->kn_id, fdp->fd_knhashmask)];
935
936         SLIST_REMOVE(list, kn, knote, kn_link);
937         if (kn->kn_status & KN_QUEUED)
938                 knote_dequeue(kn);
939         if (kn->kn_fop->f_isfd)
940                 fdrop(kn->kn_fp, td);
941         knote_free(kn);
942 }
943
944
945 static void
946 knote_enqueue(struct knote *kn)
947 {
948         struct kqueue *kq = kn->kn_kq;
949         int s = splhigh();
950
951         KASSERT((kn->kn_status & KN_QUEUED) == 0, ("knote already queued"));
952
953         TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe); 
954         kn->kn_status |= KN_QUEUED;
955         kq->kq_count++;
956         splx(s);
957         kqueue_wakeup(kq);
958 }
959
960 static void
961 knote_dequeue(struct knote *kn)
962 {
963         struct kqueue *kq = kn->kn_kq;
964         int s = splhigh();
965
966         KASSERT(kn->kn_status & KN_QUEUED, ("knote not queued"));
967
968         TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe); 
969         kn->kn_status &= ~KN_QUEUED;
970         kq->kq_count--;
971         splx(s);
972 }
973
974 static void
975 knote_init(void)
976 {
977         knote_zone = zinit("KNOTE", sizeof(struct knote), 0, 0, 1);
978 }
979 SYSINIT(knote, SI_SUB_PSEUDO, SI_ORDER_ANY, knote_init, NULL)
980
981 static struct knote *
982 knote_alloc(void)
983 {
984         return ((struct knote *)zalloc(knote_zone));
985 }
986
987 static void
988 knote_free(struct knote *kn)
989 {
990         zfree(knote_zone, kn);
991 }