Home | History | Annotate | Line # | Download | only in kern
kern_event.c revision 1.76.2.4
      1  1.76.2.3       tls /*	$NetBSD: kern_event.c,v 1.76.2.4 2017/12/03 11:38:44 jdolecek Exp $	*/
      2      1.49        ad 
      3      1.49        ad /*-
      4      1.64        ad  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
      5      1.49        ad  * All rights reserved.
      6      1.49        ad  *
      7      1.64        ad  * This code is derived from software contributed to The NetBSD Foundation
      8      1.64        ad  * by Andrew Doran.
      9      1.64        ad  *
     10      1.49        ad  * Redistribution and use in source and binary forms, with or without
     11      1.49        ad  * modification, are permitted provided that the following conditions
     12      1.49        ad  * are met:
     13      1.49        ad  * 1. Redistributions of source code must retain the above copyright
     14      1.49        ad  *    notice, this list of conditions and the following disclaimer.
     15      1.49        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.49        ad  *    notice, this list of conditions and the following disclaimer in the
     17      1.49        ad  *    documentation and/or other materials provided with the distribution.
     18      1.49        ad  *
     19      1.49        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.49        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.49        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.49        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.49        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.49        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.49        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.49        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.49        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.49        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.49        ad  * POSSIBILITY OF SUCH DAMAGE.
     30      1.49        ad  */
     31      1.28    kardel 
     32       1.1     lukem /*-
     33       1.1     lukem  * Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon (at) FreeBSD.org>
     34       1.1     lukem  * All rights reserved.
     35       1.1     lukem  *
     36       1.1     lukem  * Redistribution and use in source and binary forms, with or without
     37       1.1     lukem  * modification, are permitted provided that the following conditions
     38       1.1     lukem  * are met:
     39       1.1     lukem  * 1. Redistributions of source code must retain the above copyright
     40       1.1     lukem  *    notice, this list of conditions and the following disclaimer.
     41       1.1     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     42       1.1     lukem  *    notice, this list of conditions and the following disclaimer in the
     43       1.1     lukem  *    documentation and/or other materials provided with the distribution.
     44       1.1     lukem  *
     45       1.1     lukem  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     46       1.1     lukem  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47       1.1     lukem  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48       1.1     lukem  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     49       1.1     lukem  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50       1.1     lukem  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51       1.1     lukem  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52       1.1     lukem  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53       1.1     lukem  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54       1.1     lukem  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55       1.1     lukem  * SUCH DAMAGE.
     56       1.1     lukem  *
     57      1.49        ad  * FreeBSD: src/sys/kern/kern_event.c,v 1.27 2001/07/05 17:10:44 rwatson Exp
     58       1.1     lukem  */
     59      1.14  jdolecek 
     60      1.14  jdolecek #include <sys/cdefs.h>
     61  1.76.2.3       tls __KERNEL_RCSID(0, "$NetBSD: kern_event.c,v 1.76.2.4 2017/12/03 11:38:44 jdolecek Exp $");
     62       1.1     lukem 
     63       1.1     lukem #include <sys/param.h>
     64       1.1     lukem #include <sys/systm.h>
     65       1.1     lukem #include <sys/kernel.h>
     66  1.76.2.4  jdolecek #include <sys/wait.h>
     67       1.1     lukem #include <sys/proc.h>
     68       1.1     lukem #include <sys/file.h>
     69       1.3  jdolecek #include <sys/select.h>
     70       1.1     lukem #include <sys/queue.h>
     71       1.1     lukem #include <sys/event.h>
     72       1.1     lukem #include <sys/eventvar.h>
     73       1.1     lukem #include <sys/poll.h>
     74      1.49        ad #include <sys/kmem.h>
     75       1.1     lukem #include <sys/stat.h>
     76       1.3  jdolecek #include <sys/filedesc.h>
     77       1.3  jdolecek #include <sys/syscallargs.h>
     78      1.27      elad #include <sys/kauth.h>
     79      1.40        ad #include <sys/conf.h>
     80      1.49        ad #include <sys/atomic.h>
     81       1.1     lukem 
     82      1.49        ad static int	kqueue_scan(file_t *, size_t, struct kevent *,
     83      1.49        ad 			    const struct timespec *, register_t *,
     84      1.49        ad 			    const struct kevent_ops *, struct kevent *,
     85      1.49        ad 			    size_t);
     86      1.49        ad static int	kqueue_ioctl(file_t *, u_long, void *);
     87      1.49        ad static int	kqueue_fcntl(file_t *, u_int, void *);
     88      1.49        ad static int	kqueue_poll(file_t *, int);
     89      1.49        ad static int	kqueue_kqfilter(file_t *, struct knote *);
     90      1.49        ad static int	kqueue_stat(file_t *, struct stat *);
     91      1.49        ad static int	kqueue_close(file_t *);
     92      1.49        ad static int	kqueue_register(struct kqueue *, struct kevent *);
     93      1.49        ad static void	kqueue_doclose(struct kqueue *, struct klist *, int);
     94      1.49        ad 
     95      1.49        ad static void	knote_detach(struct knote *, filedesc_t *fdp, bool);
     96      1.49        ad static void	knote_enqueue(struct knote *);
     97      1.49        ad static void	knote_activate(struct knote *);
     98      1.49        ad 
     99      1.49        ad static void	filt_kqdetach(struct knote *);
    100      1.49        ad static int	filt_kqueue(struct knote *, long hint);
    101      1.49        ad static int	filt_procattach(struct knote *);
    102      1.49        ad static void	filt_procdetach(struct knote *);
    103      1.49        ad static int	filt_proc(struct knote *, long hint);
    104      1.49        ad static int	filt_fileattach(struct knote *);
    105      1.49        ad static void	filt_timerexpire(void *x);
    106      1.49        ad static int	filt_timerattach(struct knote *);
    107      1.49        ad static void	filt_timerdetach(struct knote *);
    108      1.49        ad static int	filt_timer(struct knote *, long hint);
    109       1.1     lukem 
    110      1.21  christos static const struct fileops kqueueops = {
    111  1.76.2.4  jdolecek 	.fo_name = "kqueue",
    112      1.64        ad 	.fo_read = (void *)enxio,
    113      1.64        ad 	.fo_write = (void *)enxio,
    114      1.64        ad 	.fo_ioctl = kqueue_ioctl,
    115      1.64        ad 	.fo_fcntl = kqueue_fcntl,
    116      1.64        ad 	.fo_poll = kqueue_poll,
    117      1.64        ad 	.fo_stat = kqueue_stat,
    118      1.64        ad 	.fo_close = kqueue_close,
    119      1.64        ad 	.fo_kqfilter = kqueue_kqfilter,
    120      1.68       dsl 	.fo_restart = fnullop_restart,
    121       1.1     lukem };
    122       1.1     lukem 
    123  1.76.2.4  jdolecek static const struct filterops kqread_filtops = {
    124  1.76.2.4  jdolecek 	.f_isfd = 1,
    125  1.76.2.4  jdolecek 	.f_attach = NULL,
    126  1.76.2.4  jdolecek 	.f_detach = filt_kqdetach,
    127  1.76.2.4  jdolecek 	.f_event = filt_kqueue,
    128  1.76.2.4  jdolecek };
    129  1.76.2.4  jdolecek 
    130  1.76.2.4  jdolecek static const struct filterops proc_filtops = {
    131  1.76.2.4  jdolecek 	.f_isfd = 0,
    132  1.76.2.4  jdolecek 	.f_attach = filt_procattach,
    133  1.76.2.4  jdolecek 	.f_detach = filt_procdetach,
    134  1.76.2.4  jdolecek 	.f_event = filt_proc,
    135  1.76.2.4  jdolecek };
    136  1.76.2.4  jdolecek 
    137  1.76.2.4  jdolecek static const struct filterops file_filtops = {
    138  1.76.2.4  jdolecek 	.f_isfd = 1,
    139  1.76.2.4  jdolecek 	.f_attach = filt_fileattach,
    140  1.76.2.4  jdolecek 	.f_detach = NULL,
    141  1.76.2.4  jdolecek 	.f_event = NULL,
    142  1.76.2.4  jdolecek };
    143  1.76.2.4  jdolecek 
    144  1.76.2.4  jdolecek static const struct filterops timer_filtops = {
    145  1.76.2.4  jdolecek 	.f_isfd = 0,
    146  1.76.2.4  jdolecek 	.f_attach = filt_timerattach,
    147  1.76.2.4  jdolecek 	.f_detach = filt_timerdetach,
    148  1.76.2.4  jdolecek 	.f_event = filt_timer,
    149  1.76.2.4  jdolecek };
    150       1.1     lukem 
    151      1.49        ad static u_int	kq_ncallouts = 0;
    152       1.8  jdolecek static int	kq_calloutmax = (4 * 1024);
    153       1.7   thorpej 
    154       1.1     lukem #define	KN_HASHSIZE		64		/* XXX should be tunable */
    155       1.3  jdolecek #define	KN_HASH(val, mask)	(((val) ^ (val >> 8)) & (mask))
    156       1.1     lukem 
    157       1.3  jdolecek extern const struct filterops sig_filtops;
    158       1.1     lukem 
    159       1.1     lukem /*
    160       1.1     lukem  * Table for for all system-defined filters.
    161       1.3  jdolecek  * These should be listed in the numeric order of the EVFILT_* defines.
    162       1.3  jdolecek  * If filtops is NULL, the filter isn't implemented in NetBSD.
    163       1.3  jdolecek  * End of list is when name is NULL.
    164  1.76.2.4  jdolecek  *
    165      1.49        ad  * Note that 'refcnt' is meaningless for built-in filters.
    166       1.1     lukem  */
    167       1.3  jdolecek struct kfilter {
    168      1.49        ad 	const char	*name;		/* name of filter */
    169      1.49        ad 	uint32_t	filter;		/* id of filter */
    170      1.49        ad 	unsigned	refcnt;		/* reference count */
    171       1.3  jdolecek 	const struct filterops *filtops;/* operations for filter */
    172      1.49        ad 	size_t		namelen;	/* length of name string */
    173       1.3  jdolecek };
    174       1.3  jdolecek 
    175      1.49        ad /* System defined filters */
    176      1.49        ad static struct kfilter sys_kfilters[] = {
    177      1.49        ad 	{ "EVFILT_READ",	EVFILT_READ,	0, &file_filtops, 0 },
    178      1.49        ad 	{ "EVFILT_WRITE",	EVFILT_WRITE,	0, &file_filtops, 0, },
    179      1.49        ad 	{ "EVFILT_AIO",		EVFILT_AIO,	0, NULL, 0 },
    180      1.49        ad 	{ "EVFILT_VNODE",	EVFILT_VNODE,	0, &file_filtops, 0 },
    181      1.49        ad 	{ "EVFILT_PROC",	EVFILT_PROC,	0, &proc_filtops, 0 },
    182      1.49        ad 	{ "EVFILT_SIGNAL",	EVFILT_SIGNAL,	0, &sig_filtops, 0 },
    183      1.49        ad 	{ "EVFILT_TIMER",	EVFILT_TIMER,	0, &timer_filtops, 0 },
    184      1.49        ad 	{ NULL,			0,		0, NULL, 0 },
    185       1.1     lukem };
    186       1.1     lukem 
    187      1.49        ad /* User defined kfilters */
    188       1.3  jdolecek static struct kfilter	*user_kfilters;		/* array */
    189       1.3  jdolecek static int		user_kfilterc;		/* current offset */
    190       1.3  jdolecek static int		user_kfiltermaxc;	/* max size so far */
    191      1.49        ad static size_t		user_kfiltersz;		/* size of allocated memory */
    192      1.49        ad 
    193  1.76.2.4  jdolecek /*
    194  1.76.2.4  jdolecek  * Global Locks.
    195  1.76.2.4  jdolecek  *
    196  1.76.2.4  jdolecek  * Lock order:
    197  1.76.2.4  jdolecek  *
    198  1.76.2.4  jdolecek  *	kqueue_filter_lock
    199  1.76.2.4  jdolecek  *	-> kn_kq->kq_fdp->fd_lock
    200  1.76.2.4  jdolecek  *	-> object lock (e.g., device driver lock, kqueue_misc_lock, &c.)
    201  1.76.2.4  jdolecek  *	-> kn_kq->kq_lock
    202  1.76.2.4  jdolecek  *
    203  1.76.2.4  jdolecek  * Locking rules:
    204  1.76.2.4  jdolecek  *
    205  1.76.2.4  jdolecek  *	f_attach: fdp->fd_lock, KERNEL_LOCK
    206  1.76.2.4  jdolecek  *	f_detach: fdp->fd_lock, KERNEL_LOCK
    207  1.76.2.4  jdolecek  *	f_event(!NOTE_SUBMIT) via kevent: fdp->fd_lock, _no_ object lock
    208  1.76.2.4  jdolecek  *	f_event via knote: whatever caller guarantees
    209  1.76.2.4  jdolecek  *		Typically,	f_event(NOTE_SUBMIT) via knote: object lock
    210  1.76.2.4  jdolecek  *				f_event(!NOTE_SUBMIT) via knote: nothing,
    211  1.76.2.4  jdolecek  *					acquires/releases object lock inside.
    212  1.76.2.4  jdolecek  */
    213      1.49        ad static krwlock_t	kqueue_filter_lock;	/* lock on filter lists */
    214      1.49        ad static kmutex_t		kqueue_misc_lock;	/* miscellaneous */
    215      1.49        ad 
    216      1.66      elad static kauth_listener_t	kqueue_listener;
    217      1.66      elad 
    218      1.66      elad static int
    219      1.66      elad kqueue_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
    220      1.66      elad     void *arg0, void *arg1, void *arg2, void *arg3)
    221      1.66      elad {
    222      1.66      elad 	struct proc *p;
    223      1.66      elad 	int result;
    224      1.66      elad 
    225      1.66      elad 	result = KAUTH_RESULT_DEFER;
    226      1.66      elad 	p = arg0;
    227      1.66      elad 
    228      1.66      elad 	if (action != KAUTH_PROCESS_KEVENT_FILTER)
    229      1.66      elad 		return result;
    230      1.66      elad 
    231      1.66      elad 	if ((kauth_cred_getuid(p->p_cred) != kauth_cred_getuid(cred) ||
    232      1.66      elad 	    ISSET(p->p_flag, PK_SUGID)))
    233      1.66      elad 		return result;
    234      1.66      elad 
    235      1.66      elad 	result = KAUTH_RESULT_ALLOW;
    236      1.66      elad 
    237      1.66      elad 	return result;
    238      1.66      elad }
    239      1.66      elad 
    240      1.49        ad /*
    241      1.49        ad  * Initialize the kqueue subsystem.
    242      1.49        ad  */
    243      1.49        ad void
    244      1.49        ad kqueue_init(void)
    245      1.49        ad {
    246      1.49        ad 
    247      1.49        ad 	rw_init(&kqueue_filter_lock);
    248      1.49        ad 	mutex_init(&kqueue_misc_lock, MUTEX_DEFAULT, IPL_NONE);
    249      1.66      elad 
    250      1.66      elad 	kqueue_listener = kauth_listen_scope(KAUTH_SCOPE_PROCESS,
    251      1.66      elad 	    kqueue_listener_cb, NULL);
    252      1.49        ad }
    253       1.3  jdolecek 
    254       1.3  jdolecek /*
    255       1.3  jdolecek  * Find kfilter entry by name, or NULL if not found.
    256       1.3  jdolecek  */
    257      1.49        ad static struct kfilter *
    258       1.3  jdolecek kfilter_byname_sys(const char *name)
    259       1.3  jdolecek {
    260       1.3  jdolecek 	int i;
    261       1.3  jdolecek 
    262      1.49        ad 	KASSERT(rw_lock_held(&kqueue_filter_lock));
    263      1.49        ad 
    264       1.3  jdolecek 	for (i = 0; sys_kfilters[i].name != NULL; i++) {
    265       1.3  jdolecek 		if (strcmp(name, sys_kfilters[i].name) == 0)
    266      1.49        ad 			return &sys_kfilters[i];
    267       1.3  jdolecek 	}
    268      1.49        ad 	return NULL;
    269       1.3  jdolecek }
    270       1.3  jdolecek 
    271       1.3  jdolecek static struct kfilter *
    272       1.3  jdolecek kfilter_byname_user(const char *name)
    273       1.3  jdolecek {
    274       1.3  jdolecek 	int i;
    275       1.3  jdolecek 
    276      1.49        ad 	KASSERT(rw_lock_held(&kqueue_filter_lock));
    277      1.49        ad 
    278      1.31     seanb 	/* user filter slots have a NULL name if previously deregistered */
    279      1.31     seanb 	for (i = 0; i < user_kfilterc ; i++) {
    280      1.31     seanb 		if (user_kfilters[i].name != NULL &&
    281       1.3  jdolecek 		    strcmp(name, user_kfilters[i].name) == 0)
    282      1.49        ad 			return &user_kfilters[i];
    283       1.3  jdolecek 	}
    284      1.49        ad 	return NULL;
    285       1.3  jdolecek }
    286       1.3  jdolecek 
    287      1.49        ad static struct kfilter *
    288       1.3  jdolecek kfilter_byname(const char *name)
    289       1.3  jdolecek {
    290      1.49        ad 	struct kfilter *kfilter;
    291      1.49        ad 
    292      1.49        ad 	KASSERT(rw_lock_held(&kqueue_filter_lock));
    293       1.3  jdolecek 
    294       1.3  jdolecek 	if ((kfilter = kfilter_byname_sys(name)) != NULL)
    295      1.49        ad 		return kfilter;
    296       1.3  jdolecek 
    297      1.49        ad 	return kfilter_byname_user(name);
    298       1.3  jdolecek }
    299       1.3  jdolecek 
    300       1.3  jdolecek /*
    301       1.3  jdolecek  * Find kfilter entry by filter id, or NULL if not found.
    302       1.3  jdolecek  * Assumes entries are indexed in filter id order, for speed.
    303       1.3  jdolecek  */
    304      1.49        ad static struct kfilter *
    305       1.3  jdolecek kfilter_byfilter(uint32_t filter)
    306       1.3  jdolecek {
    307      1.49        ad 	struct kfilter *kfilter;
    308      1.49        ad 
    309      1.49        ad 	KASSERT(rw_lock_held(&kqueue_filter_lock));
    310       1.3  jdolecek 
    311       1.3  jdolecek 	if (filter < EVFILT_SYSCOUNT)	/* it's a system filter */
    312       1.3  jdolecek 		kfilter = &sys_kfilters[filter];
    313       1.3  jdolecek 	else if (user_kfilters != NULL &&
    314       1.3  jdolecek 	    filter < EVFILT_SYSCOUNT + user_kfilterc)
    315       1.3  jdolecek 					/* it's a user filter */
    316       1.3  jdolecek 		kfilter = &user_kfilters[filter - EVFILT_SYSCOUNT];
    317       1.3  jdolecek 	else
    318       1.3  jdolecek 		return (NULL);		/* out of range */
    319       1.3  jdolecek 	KASSERT(kfilter->filter == filter);	/* sanity check! */
    320       1.3  jdolecek 	return (kfilter);
    321       1.3  jdolecek }
    322       1.3  jdolecek 
    323       1.3  jdolecek /*
    324       1.3  jdolecek  * Register a new kfilter. Stores the entry in user_kfilters.
    325       1.3  jdolecek  * Returns 0 if operation succeeded, or an appropriate errno(2) otherwise.
    326       1.3  jdolecek  * If retfilter != NULL, the new filterid is returned in it.
    327       1.3  jdolecek  */
    328       1.3  jdolecek int
    329       1.3  jdolecek kfilter_register(const char *name, const struct filterops *filtops,
    330      1.49        ad 		 int *retfilter)
    331       1.1     lukem {
    332       1.3  jdolecek 	struct kfilter *kfilter;
    333      1.49        ad 	size_t len;
    334      1.31     seanb 	int i;
    335       1.3  jdolecek 
    336       1.3  jdolecek 	if (name == NULL || name[0] == '\0' || filtops == NULL)
    337       1.3  jdolecek 		return (EINVAL);	/* invalid args */
    338      1.49        ad 
    339      1.49        ad 	rw_enter(&kqueue_filter_lock, RW_WRITER);
    340      1.49        ad 	if (kfilter_byname(name) != NULL) {
    341      1.49        ad 		rw_exit(&kqueue_filter_lock);
    342       1.3  jdolecek 		return (EEXIST);	/* already exists */
    343      1.49        ad 	}
    344      1.49        ad 	if (user_kfilterc > 0xffffffff - EVFILT_SYSCOUNT) {
    345      1.49        ad 		rw_exit(&kqueue_filter_lock);
    346       1.3  jdolecek 		return (EINVAL);	/* too many */
    347      1.49        ad 	}
    348       1.3  jdolecek 
    349      1.31     seanb 	for (i = 0; i < user_kfilterc; i++) {
    350      1.31     seanb 		kfilter = &user_kfilters[i];
    351      1.31     seanb 		if (kfilter->name == NULL) {
    352      1.31     seanb 			/* Previously deregistered slot.  Reuse. */
    353      1.31     seanb 			goto reuse;
    354      1.31     seanb 		}
    355      1.31     seanb 	}
    356      1.31     seanb 
    357       1.3  jdolecek 	/* check if need to grow user_kfilters */
    358       1.3  jdolecek 	if (user_kfilterc + 1 > user_kfiltermaxc) {
    359      1.49        ad 		/* Grow in KFILTER_EXTENT chunks. */
    360       1.3  jdolecek 		user_kfiltermaxc += KFILTER_EXTENT;
    361      1.69       dsl 		len = user_kfiltermaxc * sizeof(*kfilter);
    362      1.49        ad 		kfilter = kmem_alloc(len, KM_SLEEP);
    363      1.49        ad 		memset((char *)kfilter + user_kfiltersz, 0, len - user_kfiltersz);
    364      1.49        ad 		if (user_kfilters != NULL) {
    365      1.49        ad 			memcpy(kfilter, user_kfilters, user_kfiltersz);
    366      1.49        ad 			kmem_free(user_kfilters, user_kfiltersz);
    367      1.49        ad 		}
    368      1.49        ad 		user_kfiltersz = len;
    369       1.3  jdolecek 		user_kfilters = kfilter;
    370       1.3  jdolecek 	}
    371      1.31     seanb 	/* Adding new slot */
    372      1.31     seanb 	kfilter = &user_kfilters[user_kfilterc++];
    373      1.31     seanb reuse:
    374  1.76.2.4  jdolecek 	kfilter->name = kmem_strdupsize(name, &kfilter->namelen, KM_SLEEP);
    375       1.3  jdolecek 
    376      1.31     seanb 	kfilter->filter = (kfilter - user_kfilters) + EVFILT_SYSCOUNT;
    377       1.3  jdolecek 
    378      1.49        ad 	kfilter->filtops = kmem_alloc(sizeof(*filtops), KM_SLEEP);
    379      1.49        ad 	memcpy(__UNCONST(kfilter->filtops), filtops, sizeof(*filtops));
    380       1.3  jdolecek 
    381       1.3  jdolecek 	if (retfilter != NULL)
    382      1.31     seanb 		*retfilter = kfilter->filter;
    383      1.49        ad 	rw_exit(&kqueue_filter_lock);
    384      1.49        ad 
    385       1.3  jdolecek 	return (0);
    386       1.1     lukem }
    387       1.1     lukem 
    388       1.3  jdolecek /*
    389       1.3  jdolecek  * Unregister a kfilter previously registered with kfilter_register.
    390       1.3  jdolecek  * This retains the filter id, but clears the name and frees filtops (filter
    391       1.3  jdolecek  * operations), so that the number isn't reused during a boot.
    392       1.3  jdolecek  * Returns 0 if operation succeeded, or an appropriate errno(2) otherwise.
    393       1.3  jdolecek  */
    394       1.3  jdolecek int
    395       1.3  jdolecek kfilter_unregister(const char *name)
    396       1.1     lukem {
    397       1.3  jdolecek 	struct kfilter *kfilter;
    398       1.3  jdolecek 
    399       1.3  jdolecek 	if (name == NULL || name[0] == '\0')
    400       1.3  jdolecek 		return (EINVAL);	/* invalid name */
    401       1.3  jdolecek 
    402      1.49        ad 	rw_enter(&kqueue_filter_lock, RW_WRITER);
    403      1.49        ad 	if (kfilter_byname_sys(name) != NULL) {
    404      1.49        ad 		rw_exit(&kqueue_filter_lock);
    405       1.3  jdolecek 		return (EINVAL);	/* can't detach system filters */
    406      1.49        ad 	}
    407       1.1     lukem 
    408       1.3  jdolecek 	kfilter = kfilter_byname_user(name);
    409      1.49        ad 	if (kfilter == NULL) {
    410      1.49        ad 		rw_exit(&kqueue_filter_lock);
    411       1.3  jdolecek 		return (ENOENT);
    412      1.49        ad 	}
    413      1.49        ad 	if (kfilter->refcnt != 0) {
    414      1.49        ad 		rw_exit(&kqueue_filter_lock);
    415      1.49        ad 		return (EBUSY);
    416      1.49        ad 	}
    417       1.1     lukem 
    418      1.49        ad 	/* Cast away const (but we know it's safe. */
    419      1.49        ad 	kmem_free(__UNCONST(kfilter->name), kfilter->namelen);
    420      1.31     seanb 	kfilter->name = NULL;	/* mark as `not implemented' */
    421      1.31     seanb 
    422       1.3  jdolecek 	if (kfilter->filtops != NULL) {
    423      1.49        ad 		/* Cast away const (but we know it's safe. */
    424      1.49        ad 		kmem_free(__UNCONST(kfilter->filtops),
    425      1.49        ad 		    sizeof(*kfilter->filtops));
    426       1.3  jdolecek 		kfilter->filtops = NULL; /* mark as `not implemented' */
    427       1.3  jdolecek 	}
    428      1.49        ad 	rw_exit(&kqueue_filter_lock);
    429      1.49        ad 
    430       1.1     lukem 	return (0);
    431       1.1     lukem }
    432       1.1     lukem 
    433       1.3  jdolecek 
    434       1.3  jdolecek /*
    435       1.3  jdolecek  * Filter attach method for EVFILT_READ and EVFILT_WRITE on normal file
    436      1.49        ad  * descriptors. Calls fileops kqfilter method for given file descriptor.
    437       1.3  jdolecek  */
    438       1.3  jdolecek static int
    439       1.3  jdolecek filt_fileattach(struct knote *kn)
    440       1.3  jdolecek {
    441      1.49        ad 	file_t *fp;
    442      1.49        ad 
    443      1.49        ad 	fp = kn->kn_obj;
    444       1.3  jdolecek 
    445      1.49        ad 	return (*fp->f_ops->fo_kqfilter)(fp, kn);
    446       1.3  jdolecek }
    447       1.3  jdolecek 
    448       1.3  jdolecek /*
    449       1.3  jdolecek  * Filter detach method for EVFILT_READ on kqueue descriptor.
    450       1.3  jdolecek  */
    451       1.1     lukem static void
    452       1.1     lukem filt_kqdetach(struct knote *kn)
    453       1.1     lukem {
    454       1.3  jdolecek 	struct kqueue *kq;
    455       1.1     lukem 
    456  1.76.2.4  jdolecek 	kq = ((file_t *)kn->kn_obj)->f_kqueue;
    457      1.49        ad 
    458      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
    459       1.5  christos 	SLIST_REMOVE(&kq->kq_sel.sel_klist, kn, knote, kn_selnext);
    460      1.49        ad 	mutex_spin_exit(&kq->kq_lock);
    461       1.1     lukem }
    462       1.1     lukem 
    463       1.3  jdolecek /*
    464       1.3  jdolecek  * Filter event method for EVFILT_READ on kqueue descriptor.
    465       1.3  jdolecek  */
    466       1.1     lukem /*ARGSUSED*/
    467       1.1     lukem static int
    468      1.33      yamt filt_kqueue(struct knote *kn, long hint)
    469       1.1     lukem {
    470       1.3  jdolecek 	struct kqueue *kq;
    471      1.49        ad 	int rv;
    472      1.49        ad 
    473  1.76.2.4  jdolecek 	kq = ((file_t *)kn->kn_obj)->f_kqueue;
    474       1.1     lukem 
    475      1.49        ad 	if (hint != NOTE_SUBMIT)
    476      1.49        ad 		mutex_spin_enter(&kq->kq_lock);
    477       1.1     lukem 	kn->kn_data = kq->kq_count;
    478      1.49        ad 	rv = (kn->kn_data > 0);
    479      1.49        ad 	if (hint != NOTE_SUBMIT)
    480      1.49        ad 		mutex_spin_exit(&kq->kq_lock);
    481      1.49        ad 
    482      1.49        ad 	return rv;
    483       1.1     lukem }
    484       1.1     lukem 
    485       1.3  jdolecek /*
    486       1.3  jdolecek  * Filter attach method for EVFILT_PROC.
    487       1.3  jdolecek  */
    488       1.1     lukem static int
    489       1.1     lukem filt_procattach(struct knote *kn)
    490       1.1     lukem {
    491  1.76.2.1       tls 	struct proc *p;
    492      1.30        ad 	struct lwp *curl;
    493      1.30        ad 
    494      1.30        ad 	curl = curlwp;
    495       1.1     lukem 
    496      1.56        ad 	mutex_enter(proc_lock);
    497  1.76.2.1       tls 	if (kn->kn_flags & EV_FLAG1) {
    498  1.76.2.1       tls 		/*
    499  1.76.2.1       tls 		 * NOTE_TRACK attaches to the child process too early
    500  1.76.2.1       tls 		 * for proc_find, so do a raw look up and check the state
    501  1.76.2.1       tls 		 * explicitly.
    502  1.76.2.1       tls 		 */
    503  1.76.2.1       tls 		p = proc_find_raw(kn->kn_id);
    504  1.76.2.1       tls 		if (p != NULL && p->p_stat != SIDL)
    505  1.76.2.1       tls 			p = NULL;
    506  1.76.2.1       tls 	} else {
    507  1.76.2.1       tls 		p = proc_find(kn->kn_id);
    508  1.76.2.1       tls 	}
    509  1.76.2.1       tls 
    510      1.49        ad 	if (p == NULL) {
    511      1.56        ad 		mutex_exit(proc_lock);
    512      1.49        ad 		return ESRCH;
    513      1.49        ad 	}
    514       1.3  jdolecek 
    515       1.3  jdolecek 	/*
    516       1.3  jdolecek 	 * Fail if it's not owned by you, or the last exec gave us
    517       1.3  jdolecek 	 * setuid/setgid privs (unless you're root).
    518       1.3  jdolecek 	 */
    519      1.57        ad 	mutex_enter(p->p_lock);
    520      1.56        ad 	mutex_exit(proc_lock);
    521      1.46      elad 	if (kauth_authorize_process(curl->l_cred, KAUTH_PROCESS_KEVENT_FILTER,
    522      1.49        ad 	    p, NULL, NULL, NULL) != 0) {
    523      1.57        ad 	    	mutex_exit(p->p_lock);
    524      1.49        ad 		return EACCES;
    525      1.49        ad 	}
    526       1.1     lukem 
    527      1.49        ad 	kn->kn_obj = p;
    528       1.3  jdolecek 	kn->kn_flags |= EV_CLEAR;	/* automatically set */
    529       1.1     lukem 
    530       1.1     lukem 	/*
    531       1.1     lukem 	 * internal flag indicating registration done by kernel
    532       1.1     lukem 	 */
    533       1.1     lukem 	if (kn->kn_flags & EV_FLAG1) {
    534       1.3  jdolecek 		kn->kn_data = kn->kn_sdata;	/* ppid */
    535       1.1     lukem 		kn->kn_fflags = NOTE_CHILD;
    536       1.1     lukem 		kn->kn_flags &= ~EV_FLAG1;
    537       1.1     lukem 	}
    538       1.1     lukem 	SLIST_INSERT_HEAD(&p->p_klist, kn, kn_selnext);
    539      1.57        ad     	mutex_exit(p->p_lock);
    540       1.1     lukem 
    541      1.49        ad 	return 0;
    542       1.1     lukem }
    543       1.1     lukem 
    544       1.1     lukem /*
    545       1.3  jdolecek  * Filter detach method for EVFILT_PROC.
    546       1.3  jdolecek  *
    547       1.1     lukem  * The knote may be attached to a different process, which may exit,
    548       1.1     lukem  * leaving nothing for the knote to be attached to.  So when the process
    549       1.1     lukem  * exits, the knote is marked as DETACHED and also flagged as ONESHOT so
    550       1.1     lukem  * it will be deleted when read out.  However, as part of the knote deletion,
    551       1.1     lukem  * this routine is called, so a check is needed to avoid actually performing
    552       1.3  jdolecek  * a detach, because the original process might not exist any more.
    553       1.1     lukem  */
    554       1.1     lukem static void
    555       1.1     lukem filt_procdetach(struct knote *kn)
    556       1.1     lukem {
    557       1.3  jdolecek 	struct proc *p;
    558       1.1     lukem 
    559       1.1     lukem 	if (kn->kn_status & KN_DETACHED)
    560       1.1     lukem 		return;
    561       1.1     lukem 
    562      1.49        ad 	p = kn->kn_obj;
    563       1.3  jdolecek 
    564      1.57        ad 	mutex_enter(p->p_lock);
    565       1.1     lukem 	SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);
    566      1.57        ad 	mutex_exit(p->p_lock);
    567       1.1     lukem }
    568       1.1     lukem 
    569       1.3  jdolecek /*
    570       1.3  jdolecek  * Filter event method for EVFILT_PROC.
    571       1.3  jdolecek  */
    572       1.1     lukem static int
    573       1.1     lukem filt_proc(struct knote *kn, long hint)
    574       1.1     lukem {
    575      1.49        ad 	u_int event, fflag;
    576      1.49        ad 	struct kevent kev;
    577      1.49        ad 	struct kqueue *kq;
    578      1.49        ad 	int error;
    579       1.1     lukem 
    580       1.1     lukem 	event = (u_int)hint & NOTE_PCTRLMASK;
    581      1.49        ad 	kq = kn->kn_kq;
    582      1.49        ad 	fflag = 0;
    583       1.1     lukem 
    584      1.49        ad 	/* If the user is interested in this event, record it. */
    585       1.1     lukem 	if (kn->kn_sfflags & event)
    586      1.49        ad 		fflag |= event;
    587       1.1     lukem 
    588       1.1     lukem 	if (event == NOTE_EXIT) {
    589  1.76.2.4  jdolecek 		struct proc *p = kn->kn_obj;
    590  1.76.2.4  jdolecek 
    591  1.76.2.4  jdolecek 		if (p != NULL)
    592  1.76.2.4  jdolecek 			kn->kn_data = P_WAITSTATUS(p);
    593       1.3  jdolecek 		/*
    594      1.49        ad 		 * Process is gone, so flag the event as finished.
    595      1.49        ad 		 *
    596       1.3  jdolecek 		 * Detach the knote from watched process and mark
    597       1.3  jdolecek 		 * it as such. We can't leave this to kqueue_scan(),
    598       1.3  jdolecek 		 * since the process might not exist by then. And we
    599       1.3  jdolecek 		 * have to do this now, since psignal KNOTE() is called
    600       1.3  jdolecek 		 * also for zombies and we might end up reading freed
    601       1.3  jdolecek 		 * memory if the kevent would already be picked up
    602      1.22     perry 		 * and knote g/c'ed.
    603       1.3  jdolecek 		 */
    604      1.49        ad 		filt_procdetach(kn);
    605      1.49        ad 
    606      1.49        ad 		mutex_spin_enter(&kq->kq_lock);
    607       1.1     lukem 		kn->kn_status |= KN_DETACHED;
    608       1.3  jdolecek 		/* Mark as ONESHOT, so that the knote it g/c'ed when read */
    609      1.22     perry 		kn->kn_flags |= (EV_EOF | EV_ONESHOT);
    610      1.49        ad 		kn->kn_fflags |= fflag;
    611      1.49        ad 		mutex_spin_exit(&kq->kq_lock);
    612      1.49        ad 
    613      1.49        ad 		return 1;
    614       1.1     lukem 	}
    615       1.1     lukem 
    616      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
    617       1.1     lukem 	if ((event == NOTE_FORK) && (kn->kn_sfflags & NOTE_TRACK)) {
    618       1.1     lukem 		/*
    619      1.49        ad 		 * Process forked, and user wants to track the new process,
    620      1.49        ad 		 * so attach a new knote to it, and immediately report an
    621      1.49        ad 		 * event with the parent's pid.  Register knote with new
    622      1.49        ad 		 * process.
    623       1.1     lukem 		 */
    624       1.1     lukem 		kev.ident = hint & NOTE_PDATAMASK;	/* pid */
    625       1.1     lukem 		kev.filter = kn->kn_filter;
    626       1.1     lukem 		kev.flags = kn->kn_flags | EV_ADD | EV_ENABLE | EV_FLAG1;
    627       1.1     lukem 		kev.fflags = kn->kn_sfflags;
    628       1.1     lukem 		kev.data = kn->kn_id;			/* parent */
    629       1.1     lukem 		kev.udata = kn->kn_kevent.udata;	/* preserve udata */
    630      1.49        ad 		mutex_spin_exit(&kq->kq_lock);
    631      1.49        ad 		error = kqueue_register(kq, &kev);
    632      1.49        ad 		mutex_spin_enter(&kq->kq_lock);
    633      1.49        ad 		if (error != 0)
    634       1.1     lukem 			kn->kn_fflags |= NOTE_TRACKERR;
    635       1.1     lukem 	}
    636      1.49        ad 	kn->kn_fflags |= fflag;
    637      1.49        ad 	fflag = kn->kn_fflags;
    638      1.49        ad 	mutex_spin_exit(&kq->kq_lock);
    639       1.1     lukem 
    640      1.49        ad 	return fflag != 0;
    641       1.8  jdolecek }
    642       1.8  jdolecek 
    643       1.8  jdolecek static void
    644       1.8  jdolecek filt_timerexpire(void *knx)
    645       1.8  jdolecek {
    646       1.8  jdolecek 	struct knote *kn = knx;
    647       1.8  jdolecek 	int tticks;
    648       1.8  jdolecek 
    649      1.49        ad 	mutex_enter(&kqueue_misc_lock);
    650       1.8  jdolecek 	kn->kn_data++;
    651      1.49        ad 	knote_activate(kn);
    652       1.8  jdolecek 	if ((kn->kn_flags & EV_ONESHOT) == 0) {
    653       1.8  jdolecek 		tticks = mstohz(kn->kn_sdata);
    654      1.73  christos 		if (tticks <= 0)
    655      1.73  christos 			tticks = 1;
    656      1.39        ad 		callout_schedule((callout_t *)kn->kn_hook, tticks);
    657       1.8  jdolecek 	}
    658      1.49        ad 	mutex_exit(&kqueue_misc_lock);
    659       1.8  jdolecek }
    660       1.8  jdolecek 
    661       1.8  jdolecek /*
    662       1.8  jdolecek  * data contains amount of time to sleep, in milliseconds
    663      1.22     perry  */
    664       1.8  jdolecek static int
    665       1.8  jdolecek filt_timerattach(struct knote *kn)
    666       1.8  jdolecek {
    667      1.39        ad 	callout_t *calloutp;
    668      1.49        ad 	struct kqueue *kq;
    669       1.8  jdolecek 	int tticks;
    670       1.8  jdolecek 
    671       1.8  jdolecek 	tticks = mstohz(kn->kn_sdata);
    672       1.8  jdolecek 
    673       1.8  jdolecek 	/* if the supplied value is under our resolution, use 1 tick */
    674       1.8  jdolecek 	if (tticks == 0) {
    675       1.8  jdolecek 		if (kn->kn_sdata == 0)
    676      1.49        ad 			return EINVAL;
    677       1.8  jdolecek 		tticks = 1;
    678       1.8  jdolecek 	}
    679       1.8  jdolecek 
    680      1.49        ad 	if (atomic_inc_uint_nv(&kq_ncallouts) >= kq_calloutmax ||
    681      1.49        ad 	    (calloutp = kmem_alloc(sizeof(*calloutp), KM_NOSLEEP)) == NULL) {
    682      1.49        ad 		atomic_dec_uint(&kq_ncallouts);
    683      1.49        ad 		return ENOMEM;
    684      1.49        ad 	}
    685      1.54        ad 	callout_init(calloutp, CALLOUT_MPSAFE);
    686      1.49        ad 
    687      1.49        ad 	kq = kn->kn_kq;
    688      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
    689       1.8  jdolecek 	kn->kn_flags |= EV_CLEAR;		/* automatically set */
    690      1.49        ad 	kn->kn_hook = calloutp;
    691      1.49        ad 	mutex_spin_exit(&kq->kq_lock);
    692      1.49        ad 
    693       1.8  jdolecek 	callout_reset(calloutp, tticks, filt_timerexpire, kn);
    694       1.8  jdolecek 
    695       1.8  jdolecek 	return (0);
    696       1.8  jdolecek }
    697       1.8  jdolecek 
    698       1.8  jdolecek static void
    699       1.8  jdolecek filt_timerdetach(struct knote *kn)
    700       1.8  jdolecek {
    701      1.39        ad 	callout_t *calloutp;
    702       1.8  jdolecek 
    703      1.39        ad 	calloutp = (callout_t *)kn->kn_hook;
    704      1.55        ad 	callout_halt(calloutp, NULL);
    705      1.39        ad 	callout_destroy(calloutp);
    706      1.49        ad 	kmem_free(calloutp, sizeof(*calloutp));
    707      1.49        ad 	atomic_dec_uint(&kq_ncallouts);
    708       1.8  jdolecek }
    709       1.8  jdolecek 
    710       1.8  jdolecek static int
    711      1.33      yamt filt_timer(struct knote *kn, long hint)
    712       1.8  jdolecek {
    713      1.49        ad 	int rv;
    714      1.49        ad 
    715      1.49        ad 	mutex_enter(&kqueue_misc_lock);
    716      1.49        ad 	rv = (kn->kn_data != 0);
    717      1.49        ad 	mutex_exit(&kqueue_misc_lock);
    718      1.49        ad 
    719      1.49        ad 	return rv;
    720       1.1     lukem }
    721       1.1     lukem 
    722       1.3  jdolecek /*
    723       1.3  jdolecek  * filt_seltrue:
    724       1.3  jdolecek  *
    725       1.3  jdolecek  *	This filter "event" routine simulates seltrue().
    726       1.3  jdolecek  */
    727       1.1     lukem int
    728      1.33      yamt filt_seltrue(struct knote *kn, long hint)
    729       1.1     lukem {
    730       1.1     lukem 
    731       1.3  jdolecek 	/*
    732       1.3  jdolecek 	 * We don't know how much data can be read/written,
    733       1.3  jdolecek 	 * but we know that it *can* be.  This is about as
    734       1.3  jdolecek 	 * good as select/poll does as well.
    735       1.3  jdolecek 	 */
    736       1.3  jdolecek 	kn->kn_data = 0;
    737       1.3  jdolecek 	return (1);
    738       1.3  jdolecek }
    739       1.3  jdolecek 
    740       1.3  jdolecek /*
    741       1.3  jdolecek  * This provides full kqfilter entry for device switch tables, which
    742       1.3  jdolecek  * has same effect as filter using filt_seltrue() as filter method.
    743       1.3  jdolecek  */
    744       1.3  jdolecek static void
    745      1.33      yamt filt_seltruedetach(struct knote *kn)
    746       1.3  jdolecek {
    747       1.3  jdolecek 	/* Nothing to do */
    748       1.3  jdolecek }
    749       1.3  jdolecek 
    750  1.76.2.4  jdolecek const struct filterops seltrue_filtops = {
    751  1.76.2.4  jdolecek 	.f_isfd = 1,
    752  1.76.2.4  jdolecek 	.f_attach = NULL,
    753  1.76.2.4  jdolecek 	.f_detach = filt_seltruedetach,
    754  1.76.2.4  jdolecek 	.f_event = filt_seltrue,
    755  1.76.2.4  jdolecek };
    756       1.3  jdolecek 
    757       1.3  jdolecek int
    758      1.33      yamt seltrue_kqfilter(dev_t dev, struct knote *kn)
    759       1.3  jdolecek {
    760       1.3  jdolecek 	switch (kn->kn_filter) {
    761       1.3  jdolecek 	case EVFILT_READ:
    762       1.3  jdolecek 	case EVFILT_WRITE:
    763       1.3  jdolecek 		kn->kn_fop = &seltrue_filtops;
    764       1.3  jdolecek 		break;
    765       1.3  jdolecek 	default:
    766      1.43     pooka 		return (EINVAL);
    767       1.3  jdolecek 	}
    768       1.3  jdolecek 
    769       1.3  jdolecek 	/* Nothing more to do */
    770       1.3  jdolecek 	return (0);
    771       1.3  jdolecek }
    772       1.3  jdolecek 
    773       1.3  jdolecek /*
    774       1.3  jdolecek  * kqueue(2) system call.
    775       1.3  jdolecek  */
    776      1.72  christos static int
    777      1.72  christos kqueue1(struct lwp *l, int flags, register_t *retval)
    778       1.3  jdolecek {
    779      1.49        ad 	struct kqueue *kq;
    780      1.49        ad 	file_t *fp;
    781      1.49        ad 	int fd, error;
    782       1.3  jdolecek 
    783      1.49        ad 	if ((error = fd_allocfile(&fp, &fd)) != 0)
    784      1.49        ad 		return error;
    785      1.75  christos 	fp->f_flag = FREAD | FWRITE | (flags & (FNONBLOCK|FNOSIGPIPE));
    786       1.1     lukem 	fp->f_type = DTYPE_KQUEUE;
    787       1.1     lukem 	fp->f_ops = &kqueueops;
    788      1.49        ad 	kq = kmem_zalloc(sizeof(*kq), KM_SLEEP);
    789      1.49        ad 	mutex_init(&kq->kq_lock, MUTEX_DEFAULT, IPL_SCHED);
    790      1.49        ad 	cv_init(&kq->kq_cv, "kqueue");
    791      1.49        ad 	selinit(&kq->kq_sel);
    792       1.1     lukem 	TAILQ_INIT(&kq->kq_head);
    793  1.76.2.4  jdolecek 	fp->f_kqueue = kq;
    794       1.3  jdolecek 	*retval = fd;
    795      1.49        ad 	kq->kq_fdp = curlwp->l_fd;
    796      1.72  christos 	fd_set_exclose(l, fd, (flags & O_CLOEXEC) != 0);
    797      1.49        ad 	fd_affix(curproc, fp, fd);
    798      1.49        ad 	return error;
    799       1.1     lukem }
    800       1.1     lukem 
    801       1.3  jdolecek /*
    802      1.72  christos  * kqueue(2) system call.
    803      1.72  christos  */
    804      1.72  christos int
    805      1.72  christos sys_kqueue(struct lwp *l, const void *v, register_t *retval)
    806      1.72  christos {
    807      1.72  christos 	return kqueue1(l, 0, retval);
    808      1.72  christos }
    809      1.72  christos 
    810      1.72  christos int
    811      1.72  christos sys_kqueue1(struct lwp *l, const struct sys_kqueue1_args *uap,
    812      1.72  christos     register_t *retval)
    813      1.72  christos {
    814      1.72  christos 	/* {
    815      1.72  christos 		syscallarg(int) flags;
    816      1.72  christos 	} */
    817      1.72  christos 	return kqueue1(l, SCARG(uap, flags), retval);
    818      1.72  christos }
    819      1.72  christos 
    820      1.72  christos /*
    821       1.3  jdolecek  * kevent(2) system call.
    822       1.3  jdolecek  */
    823      1.61  christos int
    824  1.76.2.4  jdolecek kevent_fetch_changes(void *ctx, const struct kevent *changelist,
    825      1.61  christos     struct kevent *changes, size_t index, int n)
    826      1.24      cube {
    827      1.49        ad 
    828      1.24      cube 	return copyin(changelist + index, changes, n * sizeof(*changes));
    829      1.24      cube }
    830      1.24      cube 
    831      1.61  christos int
    832  1.76.2.4  jdolecek kevent_put_events(void *ctx, struct kevent *events,
    833      1.61  christos     struct kevent *eventlist, size_t index, int n)
    834      1.24      cube {
    835      1.49        ad 
    836      1.24      cube 	return copyout(events, eventlist + index, n * sizeof(*events));
    837      1.24      cube }
    838      1.24      cube 
    839      1.24      cube static const struct kevent_ops kevent_native_ops = {
    840      1.60  gmcgarry 	.keo_private = NULL,
    841      1.60  gmcgarry 	.keo_fetch_timeout = copyin,
    842      1.60  gmcgarry 	.keo_fetch_changes = kevent_fetch_changes,
    843      1.60  gmcgarry 	.keo_put_events = kevent_put_events,
    844      1.24      cube };
    845      1.24      cube 
    846       1.1     lukem int
    847      1.61  christos sys___kevent50(struct lwp *l, const struct sys___kevent50_args *uap,
    848      1.61  christos     register_t *retval)
    849       1.1     lukem {
    850      1.44       dsl 	/* {
    851       1.3  jdolecek 		syscallarg(int) fd;
    852       1.3  jdolecek 		syscallarg(const struct kevent *) changelist;
    853       1.3  jdolecek 		syscallarg(size_t) nchanges;
    854       1.3  jdolecek 		syscallarg(struct kevent *) eventlist;
    855       1.3  jdolecek 		syscallarg(size_t) nevents;
    856       1.3  jdolecek 		syscallarg(const struct timespec *) timeout;
    857      1.44       dsl 	} */
    858      1.24      cube 
    859      1.49        ad 	return kevent1(retval, SCARG(uap, fd), SCARG(uap, changelist),
    860      1.24      cube 	    SCARG(uap, nchanges), SCARG(uap, eventlist), SCARG(uap, nevents),
    861      1.24      cube 	    SCARG(uap, timeout), &kevent_native_ops);
    862      1.24      cube }
    863      1.24      cube 
    864      1.24      cube int
    865      1.49        ad kevent1(register_t *retval, int fd,
    866      1.49        ad 	const struct kevent *changelist, size_t nchanges,
    867      1.49        ad 	struct kevent *eventlist, size_t nevents,
    868      1.49        ad 	const struct timespec *timeout,
    869      1.49        ad 	const struct kevent_ops *keops)
    870      1.24      cube {
    871      1.49        ad 	struct kevent *kevp;
    872      1.49        ad 	struct kqueue *kq;
    873       1.3  jdolecek 	struct timespec	ts;
    874      1.49        ad 	size_t i, n, ichange;
    875      1.49        ad 	int nerrors, error;
    876  1.76.2.3       tls 	struct kevent kevbuf[KQ_NEVENTS];	/* approx 300 bytes on 64-bit */
    877      1.49        ad 	file_t *fp;
    878       1.3  jdolecek 
    879       1.3  jdolecek 	/* check that we're dealing with a kq */
    880      1.49        ad 	fp = fd_getfile(fd);
    881      1.10        pk 	if (fp == NULL)
    882       1.1     lukem 		return (EBADF);
    883      1.10        pk 
    884      1.10        pk 	if (fp->f_type != DTYPE_KQUEUE) {
    885      1.49        ad 		fd_putfile(fd);
    886      1.10        pk 		return (EBADF);
    887      1.10        pk 	}
    888       1.1     lukem 
    889      1.24      cube 	if (timeout != NULL) {
    890      1.24      cube 		error = (*keops->keo_fetch_timeout)(timeout, &ts, sizeof(ts));
    891       1.1     lukem 		if (error)
    892       1.1     lukem 			goto done;
    893      1.24      cube 		timeout = &ts;
    894       1.1     lukem 	}
    895       1.1     lukem 
    896  1.76.2.4  jdolecek 	kq = fp->f_kqueue;
    897       1.1     lukem 	nerrors = 0;
    898      1.24      cube 	ichange = 0;
    899       1.1     lukem 
    900       1.3  jdolecek 	/* traverse list of events to register */
    901      1.24      cube 	while (nchanges > 0) {
    902      1.49        ad 		n = MIN(nchanges, __arraycount(kevbuf));
    903      1.24      cube 		error = (*keops->keo_fetch_changes)(keops->keo_private,
    904      1.49        ad 		    changelist, kevbuf, ichange, n);
    905       1.1     lukem 		if (error)
    906       1.1     lukem 			goto done;
    907       1.1     lukem 		for (i = 0; i < n; i++) {
    908      1.49        ad 			kevp = &kevbuf[i];
    909       1.1     lukem 			kevp->flags &= ~EV_SYSFLAGS;
    910       1.3  jdolecek 			/* register each knote */
    911      1.49        ad 			error = kqueue_register(kq, kevp);
    912  1.76.2.4  jdolecek 			if (!error && !(kevp->flags & EV_RECEIPT))
    913  1.76.2.4  jdolecek 				continue;
    914  1.76.2.4  jdolecek 			if (nevents == 0)
    915  1.76.2.4  jdolecek 				goto done;
    916  1.76.2.4  jdolecek 			kevp->flags = EV_ERROR;
    917  1.76.2.4  jdolecek 			kevp->data = error;
    918  1.76.2.4  jdolecek 			error = (*keops->keo_put_events)
    919  1.76.2.4  jdolecek 				(keops->keo_private, kevp,
    920  1.76.2.4  jdolecek 				 eventlist, nerrors, 1);
    921  1.76.2.4  jdolecek 			if (error)
    922  1.76.2.4  jdolecek 				goto done;
    923  1.76.2.4  jdolecek 			nevents--;
    924  1.76.2.4  jdolecek 			nerrors++;
    925       1.1     lukem 		}
    926      1.24      cube 		nchanges -= n;	/* update the results */
    927      1.24      cube 		ichange += n;
    928       1.1     lukem 	}
    929       1.1     lukem 	if (nerrors) {
    930       1.3  jdolecek 		*retval = nerrors;
    931       1.1     lukem 		error = 0;
    932       1.1     lukem 		goto done;
    933       1.1     lukem 	}
    934       1.1     lukem 
    935       1.3  jdolecek 	/* actually scan through the events */
    936      1.49        ad 	error = kqueue_scan(fp, nevents, eventlist, timeout, retval, keops,
    937      1.49        ad 	    kevbuf, __arraycount(kevbuf));
    938       1.3  jdolecek  done:
    939      1.49        ad 	fd_putfile(fd);
    940       1.1     lukem 	return (error);
    941       1.1     lukem }
    942       1.1     lukem 
    943       1.3  jdolecek /*
    944       1.3  jdolecek  * Register a given kevent kev onto the kqueue
    945       1.3  jdolecek  */
    946      1.49        ad static int
    947      1.49        ad kqueue_register(struct kqueue *kq, struct kevent *kev)
    948       1.1     lukem {
    949      1.49        ad 	struct kfilter *kfilter;
    950      1.49        ad 	filedesc_t *fdp;
    951      1.49        ad 	file_t *fp;
    952      1.49        ad 	fdfile_t *ff;
    953      1.49        ad 	struct knote *kn, *newkn;
    954      1.49        ad 	struct klist *list;
    955      1.49        ad 	int error, fd, rv;
    956       1.3  jdolecek 
    957       1.3  jdolecek 	fdp = kq->kq_fdp;
    958       1.3  jdolecek 	fp = NULL;
    959       1.3  jdolecek 	kn = NULL;
    960       1.3  jdolecek 	error = 0;
    961      1.49        ad 	fd = 0;
    962      1.49        ad 
    963      1.49        ad 	newkn = kmem_zalloc(sizeof(*newkn), KM_SLEEP);
    964      1.49        ad 
    965      1.49        ad 	rw_enter(&kqueue_filter_lock, RW_READER);
    966       1.3  jdolecek 	kfilter = kfilter_byfilter(kev->filter);
    967       1.3  jdolecek 	if (kfilter == NULL || kfilter->filtops == NULL) {
    968       1.3  jdolecek 		/* filter not found nor implemented */
    969      1.49        ad 		rw_exit(&kqueue_filter_lock);
    970      1.49        ad 		kmem_free(newkn, sizeof(*newkn));
    971       1.1     lukem 		return (EINVAL);
    972       1.1     lukem 	}
    973       1.1     lukem 
    974       1.3  jdolecek 	/* search if knote already exists */
    975       1.3  jdolecek 	if (kfilter->filtops->f_isfd) {
    976       1.3  jdolecek 		/* monitoring a file descriptor */
    977  1.76.2.4  jdolecek 		/* validate descriptor */
    978  1.76.2.4  jdolecek 		if (kev->ident > INT_MAX
    979  1.76.2.4  jdolecek 		    || (fp = fd_getfile(fd = kev->ident)) == NULL) {
    980      1.49        ad 			rw_exit(&kqueue_filter_lock);
    981      1.49        ad 			kmem_free(newkn, sizeof(*newkn));
    982      1.49        ad 			return EBADF;
    983      1.49        ad 		}
    984      1.74     rmind 		mutex_enter(&fdp->fd_lock);
    985      1.65        ad 		ff = fdp->fd_dt->dt_ff[fd];
    986  1.76.2.4  jdolecek 		if (ff->ff_refcnt & FR_CLOSING) {
    987  1.76.2.4  jdolecek 			error = EBADF;
    988  1.76.2.4  jdolecek 			goto doneunlock;
    989  1.76.2.4  jdolecek 		}
    990      1.49        ad 		if (fd <= fdp->fd_lastkqfile) {
    991      1.49        ad 			SLIST_FOREACH(kn, &ff->ff_knlist, kn_link) {
    992       1.1     lukem 				if (kq == kn->kn_kq &&
    993       1.1     lukem 				    kev->filter == kn->kn_filter)
    994       1.1     lukem 					break;
    995      1.49        ad 			}
    996       1.1     lukem 		}
    997       1.1     lukem 	} else {
    998       1.3  jdolecek 		/*
    999       1.3  jdolecek 		 * not monitoring a file descriptor, so
   1000       1.3  jdolecek 		 * lookup knotes in internal hash table
   1001       1.3  jdolecek 		 */
   1002      1.74     rmind 		mutex_enter(&fdp->fd_lock);
   1003       1.1     lukem 		if (fdp->fd_knhashmask != 0) {
   1004       1.1     lukem 			list = &fdp->fd_knhash[
   1005       1.1     lukem 			    KN_HASH((u_long)kev->ident, fdp->fd_knhashmask)];
   1006      1.49        ad 			SLIST_FOREACH(kn, list, kn_link) {
   1007       1.1     lukem 				if (kev->ident == kn->kn_id &&
   1008       1.1     lukem 				    kq == kn->kn_kq &&
   1009       1.1     lukem 				    kev->filter == kn->kn_filter)
   1010       1.1     lukem 					break;
   1011      1.49        ad 			}
   1012       1.1     lukem 		}
   1013       1.1     lukem 	}
   1014       1.1     lukem 
   1015       1.1     lukem 	/*
   1016       1.1     lukem 	 * kn now contains the matching knote, or NULL if no match
   1017       1.1     lukem 	 */
   1018       1.1     lukem 	if (kev->flags & EV_ADD) {
   1019       1.1     lukem 		if (kn == NULL) {
   1020       1.3  jdolecek 			/* create new knote */
   1021      1.49        ad 			kn = newkn;
   1022      1.49        ad 			newkn = NULL;
   1023      1.49        ad 			kn->kn_obj = fp;
   1024  1.76.2.2       tls 			kn->kn_id = kev->ident;
   1025       1.1     lukem 			kn->kn_kq = kq;
   1026       1.3  jdolecek 			kn->kn_fop = kfilter->filtops;
   1027      1.49        ad 			kn->kn_kfilter = kfilter;
   1028      1.49        ad 			kn->kn_sfflags = kev->fflags;
   1029      1.49        ad 			kn->kn_sdata = kev->data;
   1030      1.49        ad 			kev->fflags = 0;
   1031      1.49        ad 			kev->data = 0;
   1032      1.49        ad 			kn->kn_kevent = *kev;
   1033       1.1     lukem 
   1034  1.76.2.4  jdolecek 			KASSERT(kn->kn_fop != NULL);
   1035       1.1     lukem 			/*
   1036       1.1     lukem 			 * apply reference count to knote structure, and
   1037       1.1     lukem 			 * do not release it at the end of this routine.
   1038       1.1     lukem 			 */
   1039       1.1     lukem 			fp = NULL;
   1040       1.1     lukem 
   1041      1.49        ad 			if (!kn->kn_fop->f_isfd) {
   1042      1.49        ad 				/*
   1043      1.49        ad 				 * If knote is not on an fd, store on
   1044      1.49        ad 				 * internal hash table.
   1045      1.49        ad 				 */
   1046      1.49        ad 				if (fdp->fd_knhashmask == 0) {
   1047      1.49        ad 					/* XXXAD can block with fd_lock held */
   1048      1.49        ad 					fdp->fd_knhash = hashinit(KN_HASHSIZE,
   1049      1.59        ad 					    HASH_LIST, true,
   1050      1.49        ad 					    &fdp->fd_knhashmask);
   1051      1.49        ad 				}
   1052      1.49        ad 				list = &fdp->fd_knhash[KN_HASH(kn->kn_id,
   1053      1.49        ad 				    fdp->fd_knhashmask)];
   1054      1.49        ad 			} else {
   1055      1.49        ad 				/* Otherwise, knote is on an fd. */
   1056      1.49        ad 				list = (struct klist *)
   1057      1.65        ad 				    &fdp->fd_dt->dt_ff[kn->kn_id]->ff_knlist;
   1058      1.49        ad 				if ((int)kn->kn_id > fdp->fd_lastkqfile)
   1059      1.49        ad 					fdp->fd_lastkqfile = kn->kn_id;
   1060      1.49        ad 			}
   1061      1.49        ad 			SLIST_INSERT_HEAD(list, kn, kn_link);
   1062       1.1     lukem 
   1063      1.49        ad 			KERNEL_LOCK(1, NULL);		/* XXXSMP */
   1064      1.49        ad 			error = (*kfilter->filtops->f_attach)(kn);
   1065      1.49        ad 			KERNEL_UNLOCK_ONE(NULL);	/* XXXSMP */
   1066      1.49        ad 			if (error != 0) {
   1067  1.76.2.4  jdolecek #ifdef DEBUG
   1068  1.76.2.4  jdolecek 				const file_t *ft = kn->kn_obj;
   1069  1.76.2.4  jdolecek 				uprintf("%s: event type %d not supported for "
   1070  1.76.2.4  jdolecek 				    "file type %d/%s (error %d)\n", __func__,
   1071  1.76.2.4  jdolecek 				    kn->kn_filter, ft ? ft->f_type : -1,
   1072  1.76.2.4  jdolecek 				    ft ? ft->f_ops->fo_name : "?", error);
   1073  1.76.2.2       tls #endif
   1074  1.76.2.4  jdolecek 
   1075      1.49        ad 				/* knote_detach() drops fdp->fd_lock */
   1076      1.49        ad 				knote_detach(kn, fdp, false);
   1077       1.1     lukem 				goto done;
   1078       1.1     lukem 			}
   1079      1.49        ad 			atomic_inc_uint(&kfilter->refcnt);
   1080       1.1     lukem 		} else {
   1081       1.1     lukem 			/*
   1082       1.1     lukem 			 * The user may change some filter values after the
   1083      1.22     perry 			 * initial EV_ADD, but doing so will not reset any
   1084       1.1     lukem 			 * filter which have already been triggered.
   1085       1.1     lukem 			 */
   1086       1.1     lukem 			kn->kn_sfflags = kev->fflags;
   1087       1.1     lukem 			kn->kn_sdata = kev->data;
   1088       1.1     lukem 			kn->kn_kevent.udata = kev->udata;
   1089       1.1     lukem 		}
   1090  1.76.2.2       tls 		/*
   1091  1.76.2.2       tls 		 * We can get here if we are trying to attach
   1092  1.76.2.2       tls 		 * an event to a file descriptor that does not
   1093  1.76.2.2       tls 		 * support events, and the attach routine is
   1094  1.76.2.2       tls 		 * broken and does not return an error.
   1095  1.76.2.2       tls 		 */
   1096  1.76.2.4  jdolecek 		KASSERT(kn->kn_fop != NULL);
   1097  1.76.2.2       tls 		KASSERT(kn->kn_fop->f_event != NULL);
   1098      1.49        ad 		KERNEL_LOCK(1, NULL);			/* XXXSMP */
   1099      1.49        ad 		rv = (*kn->kn_fop->f_event)(kn, 0);
   1100      1.49        ad 		KERNEL_UNLOCK_ONE(NULL);		/* XXXSMP */
   1101      1.49        ad 		if (rv)
   1102      1.49        ad 			knote_activate(kn);
   1103      1.49        ad 	} else {
   1104      1.49        ad 		if (kn == NULL) {
   1105      1.49        ad 			error = ENOENT;
   1106  1.76.2.4  jdolecek 			goto doneunlock;
   1107      1.49        ad 		}
   1108      1.49        ad 		if (kev->flags & EV_DELETE) {
   1109      1.49        ad 			/* knote_detach() drops fdp->fd_lock */
   1110      1.49        ad 			knote_detach(kn, fdp, true);
   1111      1.49        ad 			goto done;
   1112      1.49        ad 		}
   1113       1.1     lukem 	}
   1114       1.1     lukem 
   1115       1.3  jdolecek 	/* disable knote */
   1116      1.49        ad 	if ((kev->flags & EV_DISABLE)) {
   1117      1.49        ad 		mutex_spin_enter(&kq->kq_lock);
   1118      1.49        ad 		if ((kn->kn_status & KN_DISABLED) == 0)
   1119      1.49        ad 			kn->kn_status |= KN_DISABLED;
   1120      1.49        ad 		mutex_spin_exit(&kq->kq_lock);
   1121       1.1     lukem 	}
   1122       1.1     lukem 
   1123       1.3  jdolecek 	/* enable knote */
   1124      1.49        ad 	if ((kev->flags & EV_ENABLE)) {
   1125      1.49        ad 		knote_enqueue(kn);
   1126       1.1     lukem 	}
   1127  1.76.2.4  jdolecek doneunlock:
   1128      1.49        ad 	mutex_exit(&fdp->fd_lock);
   1129       1.3  jdolecek  done:
   1130      1.49        ad 	rw_exit(&kqueue_filter_lock);
   1131      1.49        ad 	if (newkn != NULL)
   1132      1.49        ad 		kmem_free(newkn, sizeof(*newkn));
   1133       1.1     lukem 	if (fp != NULL)
   1134      1.49        ad 		fd_putfile(fd);
   1135       1.1     lukem 	return (error);
   1136       1.1     lukem }
   1137       1.1     lukem 
   1138      1.52      yamt #if defined(DEBUG)
   1139  1.76.2.4  jdolecek #define KN_FMT(buf, kn) \
   1140  1.76.2.4  jdolecek     (snprintb((buf), sizeof(buf), __KN_FLAG_BITS, (kn)->kn_status), buf)
   1141  1.76.2.4  jdolecek 
   1142      1.52      yamt static void
   1143  1.76.2.4  jdolecek kqueue_check(const char *func, size_t line, const struct kqueue *kq)
   1144      1.52      yamt {
   1145      1.52      yamt 	const struct knote *kn;
   1146      1.52      yamt 	int count;
   1147      1.52      yamt 	int nmarker;
   1148  1.76.2.4  jdolecek 	char buf[128];
   1149      1.52      yamt 
   1150      1.52      yamt 	KASSERT(mutex_owned(&kq->kq_lock));
   1151      1.52      yamt 	KASSERT(kq->kq_count >= 0);
   1152      1.52      yamt 
   1153      1.52      yamt 	count = 0;
   1154      1.52      yamt 	nmarker = 0;
   1155      1.52      yamt 	TAILQ_FOREACH(kn, &kq->kq_head, kn_tqe) {
   1156      1.52      yamt 		if ((kn->kn_status & (KN_MARKER | KN_QUEUED)) == 0) {
   1157  1.76.2.4  jdolecek 			panic("%s,%zu: kq=%p kn=%p !(MARKER|QUEUED) %s",
   1158  1.76.2.4  jdolecek 			    func, line, kq, kn, KN_FMT(buf, kn));
   1159      1.52      yamt 		}
   1160      1.52      yamt 		if ((kn->kn_status & KN_MARKER) == 0) {
   1161      1.52      yamt 			if (kn->kn_kq != kq) {
   1162  1.76.2.4  jdolecek 				panic("%s,%zu: kq=%p kn(%p) != kn->kq(%p): %s",
   1163  1.76.2.4  jdolecek 				    func, line, kq, kn, kn->kn_kq,
   1164  1.76.2.4  jdolecek 				    KN_FMT(buf, kn));
   1165      1.52      yamt 			}
   1166      1.52      yamt 			if ((kn->kn_status & KN_ACTIVE) == 0) {
   1167  1.76.2.4  jdolecek 				panic("%s,%zu: kq=%p kn=%p: !ACTIVE %s",
   1168  1.76.2.4  jdolecek 				    func, line, kq, kn, KN_FMT(buf, kn));
   1169      1.52      yamt 			}
   1170      1.52      yamt 			count++;
   1171      1.52      yamt 			if (count > kq->kq_count) {
   1172      1.52      yamt 				goto bad;
   1173      1.52      yamt 			}
   1174      1.52      yamt 		} else {
   1175      1.52      yamt 			nmarker++;
   1176      1.52      yamt #if 0
   1177      1.52      yamt 			if (nmarker > 10000) {
   1178  1.76.2.4  jdolecek 				panic("%s,%zu: kq=%p too many markers: "
   1179  1.76.2.4  jdolecek 				    "%d != %d, nmarker=%d",
   1180  1.76.2.4  jdolecek 				    func, line, kq, kq->kq_count, count,
   1181  1.76.2.4  jdolecek 				    nmarker);
   1182      1.52      yamt 			}
   1183      1.52      yamt #endif
   1184      1.52      yamt 		}
   1185      1.52      yamt 	}
   1186      1.52      yamt 	if (kq->kq_count != count) {
   1187      1.52      yamt bad:
   1188  1.76.2.4  jdolecek 		panic("%s,%zu: kq=%p kq->kq_count(%d) != count(%d), nmarker=%d",
   1189  1.76.2.4  jdolecek 		    func, line, kq, kq->kq_count, count, nmarker);
   1190      1.52      yamt 	}
   1191      1.52      yamt }
   1192  1.76.2.4  jdolecek #define kq_check(a) kqueue_check(__func__, __LINE__, (a))
   1193      1.52      yamt #else /* defined(DEBUG) */
   1194      1.52      yamt #define	kq_check(a)	/* nothing */
   1195      1.52      yamt #endif /* defined(DEBUG) */
   1196      1.52      yamt 
   1197       1.3  jdolecek /*
   1198       1.3  jdolecek  * Scan through the list of events on fp (for a maximum of maxevents),
   1199       1.3  jdolecek  * returning the results in to ulistp. Timeout is determined by tsp; if
   1200       1.3  jdolecek  * NULL, wait indefinitely, if 0 valued, perform a poll, otherwise wait
   1201       1.3  jdolecek  * as appropriate.
   1202       1.3  jdolecek  */
   1203       1.1     lukem static int
   1204      1.49        ad kqueue_scan(file_t *fp, size_t maxevents, struct kevent *ulistp,
   1205      1.49        ad 	    const struct timespec *tsp, register_t *retval,
   1206      1.49        ad 	    const struct kevent_ops *keops, struct kevent *kevbuf,
   1207      1.49        ad 	    size_t kevcnt)
   1208       1.1     lukem {
   1209       1.3  jdolecek 	struct kqueue	*kq;
   1210       1.3  jdolecek 	struct kevent	*kevp;
   1211      1.62  christos 	struct timespec	ats, sleepts;
   1212  1.76.2.4  jdolecek 	struct knote	*kn, *marker, morker;
   1213      1.24      cube 	size_t		count, nkev, nevents;
   1214      1.49        ad 	int		timeout, error, rv;
   1215      1.49        ad 	filedesc_t	*fdp;
   1216       1.1     lukem 
   1217      1.49        ad 	fdp = curlwp->l_fd;
   1218  1.76.2.4  jdolecek 	kq = fp->f_kqueue;
   1219       1.1     lukem 	count = maxevents;
   1220      1.24      cube 	nkev = nevents = error = 0;
   1221      1.49        ad 	if (count == 0) {
   1222      1.49        ad 		*retval = 0;
   1223      1.49        ad 		return 0;
   1224      1.49        ad 	}
   1225       1.1     lukem 
   1226       1.9  jdolecek 	if (tsp) {				/* timeout supplied */
   1227      1.63  christos 		ats = *tsp;
   1228      1.62  christos 		if (inittimeleft(&ats, &sleepts) == -1) {
   1229      1.49        ad 			*retval = maxevents;
   1230      1.49        ad 			return EINVAL;
   1231       1.1     lukem 		}
   1232      1.62  christos 		timeout = tstohz(&ats);
   1233       1.9  jdolecek 		if (timeout <= 0)
   1234      1.29    kardel 			timeout = -1;           /* do poll */
   1235       1.1     lukem 	} else {
   1236       1.9  jdolecek 		/* no timeout, wait forever */
   1237       1.1     lukem 		timeout = 0;
   1238  1.76.2.4  jdolecek 	}
   1239       1.1     lukem 
   1240  1.76.2.4  jdolecek 	memset(&morker, 0, sizeof(morker));
   1241  1.76.2.4  jdolecek 	marker = &morker;
   1242      1.49        ad 	marker->kn_status = KN_MARKER;
   1243      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
   1244       1.3  jdolecek  retry:
   1245      1.49        ad 	kevp = kevbuf;
   1246       1.1     lukem 	if (kq->kq_count == 0) {
   1247      1.49        ad 		if (timeout >= 0) {
   1248      1.49        ad 			error = cv_timedwait_sig(&kq->kq_cv,
   1249      1.49        ad 			    &kq->kq_lock, timeout);
   1250      1.49        ad 			if (error == 0) {
   1251      1.49        ad 				 if (tsp == NULL || (timeout =
   1252      1.62  christos 				     gettimeleft(&ats, &sleepts)) > 0)
   1253      1.49        ad 					goto retry;
   1254      1.49        ad 			} else {
   1255      1.49        ad 				/* don't restart after signals... */
   1256      1.49        ad 				if (error == ERESTART)
   1257      1.49        ad 					error = EINTR;
   1258      1.49        ad 				if (error == EWOULDBLOCK)
   1259      1.49        ad 					error = 0;
   1260      1.49        ad 			}
   1261       1.1     lukem 		}
   1262  1.76.2.4  jdolecek 		mutex_spin_exit(&kq->kq_lock);
   1263      1.49        ad 	} else {
   1264      1.49        ad 		/* mark end of knote list */
   1265      1.49        ad 		TAILQ_INSERT_TAIL(&kq->kq_head, marker, kn_tqe);
   1266       1.1     lukem 
   1267  1.76.2.4  jdolecek 		/*
   1268  1.76.2.4  jdolecek 		 * Acquire the fdp->fd_lock interlock to avoid races with
   1269  1.76.2.4  jdolecek 		 * file creation/destruction from other threads.
   1270  1.76.2.4  jdolecek 		 */
   1271  1.76.2.4  jdolecek 		mutex_spin_exit(&kq->kq_lock);
   1272  1.76.2.4  jdolecek 		mutex_enter(&fdp->fd_lock);
   1273  1.76.2.4  jdolecek 		mutex_spin_enter(&kq->kq_lock);
   1274  1.76.2.4  jdolecek 
   1275      1.49        ad 		while (count != 0) {
   1276      1.49        ad 			kn = TAILQ_FIRST(&kq->kq_head);	/* get next knote */
   1277      1.51      yamt 			while ((kn->kn_status & KN_MARKER) != 0) {
   1278      1.51      yamt 				if (kn == marker) {
   1279      1.51      yamt 					/* it's our marker, stop */
   1280      1.51      yamt 					TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe);
   1281      1.51      yamt 					if (count < maxevents || (tsp != NULL &&
   1282      1.62  christos 					    (timeout = gettimeleft(&ats,
   1283      1.62  christos 					    &sleepts)) <= 0))
   1284      1.51      yamt 						goto done;
   1285  1.76.2.4  jdolecek 					mutex_exit(&fdp->fd_lock);
   1286      1.51      yamt 					goto retry;
   1287      1.51      yamt 				}
   1288      1.49        ad 				/* someone else's marker. */
   1289      1.49        ad 				kn = TAILQ_NEXT(kn, kn_tqe);
   1290      1.49        ad 			}
   1291      1.52      yamt 			kq_check(kq);
   1292      1.49        ad 			kq->kq_count--;
   1293  1.76.2.4  jdolecek 			TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe);
   1294       1.1     lukem 			kn->kn_status &= ~KN_QUEUED;
   1295  1.76.2.4  jdolecek 			kn->kn_status |= KN_BUSY;
   1296      1.52      yamt 			kq_check(kq);
   1297      1.49        ad 			if (kn->kn_status & KN_DISABLED) {
   1298  1.76.2.4  jdolecek 				kn->kn_status &= ~KN_BUSY;
   1299      1.49        ad 				/* don't want disabled events */
   1300      1.49        ad 				continue;
   1301      1.49        ad 			}
   1302      1.49        ad 			if ((kn->kn_flags & EV_ONESHOT) == 0) {
   1303      1.49        ad 				mutex_spin_exit(&kq->kq_lock);
   1304  1.76.2.4  jdolecek 				KASSERT(kn->kn_fop != NULL);
   1305  1.76.2.4  jdolecek 				KASSERT(kn->kn_fop->f_event != NULL);
   1306      1.49        ad 				KERNEL_LOCK(1, NULL);		/* XXXSMP */
   1307  1.76.2.4  jdolecek 				KASSERT(mutex_owned(&fdp->fd_lock));
   1308      1.49        ad 				rv = (*kn->kn_fop->f_event)(kn, 0);
   1309      1.49        ad 				KERNEL_UNLOCK_ONE(NULL);	/* XXXSMP */
   1310      1.53        ad 				mutex_spin_enter(&kq->kq_lock);
   1311      1.53        ad 				/* Re-poll if note was re-enqueued. */
   1312  1.76.2.4  jdolecek 				if ((kn->kn_status & KN_QUEUED) != 0) {
   1313  1.76.2.4  jdolecek 					kn->kn_status &= ~KN_BUSY;
   1314      1.53        ad 					continue;
   1315  1.76.2.4  jdolecek 				}
   1316      1.49        ad 				if (rv == 0) {
   1317      1.49        ad 					/*
   1318      1.49        ad 					 * non-ONESHOT event that hasn't
   1319      1.49        ad 					 * triggered again, so de-queue.
   1320      1.49        ad 					 */
   1321  1.76.2.4  jdolecek 					kn->kn_status &= ~(KN_ACTIVE|KN_BUSY);
   1322      1.49        ad 					continue;
   1323      1.49        ad 				}
   1324      1.49        ad 			}
   1325      1.53        ad 			/* XXXAD should be got from f_event if !oneshot. */
   1326      1.49        ad 			*kevp++ = kn->kn_kevent;
   1327      1.49        ad 			nkev++;
   1328      1.49        ad 			if (kn->kn_flags & EV_ONESHOT) {
   1329      1.49        ad 				/* delete ONESHOT events after retrieval */
   1330  1.76.2.4  jdolecek 				kn->kn_status &= ~KN_BUSY;
   1331      1.49        ad 				mutex_spin_exit(&kq->kq_lock);
   1332      1.49        ad 				knote_detach(kn, fdp, true);
   1333  1.76.2.4  jdolecek 				mutex_enter(&fdp->fd_lock);
   1334      1.49        ad 				mutex_spin_enter(&kq->kq_lock);
   1335      1.49        ad 			} else if (kn->kn_flags & EV_CLEAR) {
   1336      1.49        ad 				/* clear state after retrieval */
   1337      1.49        ad 				kn->kn_data = 0;
   1338      1.49        ad 				kn->kn_fflags = 0;
   1339  1.76.2.4  jdolecek 				kn->kn_status &= ~(KN_QUEUED|KN_ACTIVE|KN_BUSY);
   1340  1.76.2.4  jdolecek 			} else if (kn->kn_flags & EV_DISPATCH) {
   1341  1.76.2.4  jdolecek 				kn->kn_status |= KN_DISABLED;
   1342  1.76.2.4  jdolecek 				kn->kn_status &= ~(KN_QUEUED|KN_ACTIVE|KN_BUSY);
   1343      1.49        ad 			} else {
   1344      1.49        ad 				/* add event back on list */
   1345      1.52      yamt 				kq_check(kq);
   1346  1.76.2.4  jdolecek 				kn->kn_status |= KN_QUEUED;
   1347  1.76.2.4  jdolecek 				kn->kn_status &= ~KN_BUSY;
   1348      1.49        ad 				TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe);
   1349      1.49        ad 				kq->kq_count++;
   1350      1.52      yamt 				kq_check(kq);
   1351      1.49        ad 			}
   1352      1.49        ad 			if (nkev == kevcnt) {
   1353      1.49        ad 				/* do copyouts in kevcnt chunks */
   1354      1.49        ad 				mutex_spin_exit(&kq->kq_lock);
   1355  1.76.2.4  jdolecek 				mutex_exit(&fdp->fd_lock);
   1356      1.50      yamt 				error = (*keops->keo_put_events)
   1357      1.50      yamt 				    (keops->keo_private,
   1358      1.49        ad 				    kevbuf, ulistp, nevents, nkev);
   1359  1.76.2.4  jdolecek 				mutex_enter(&fdp->fd_lock);
   1360      1.49        ad 				mutex_spin_enter(&kq->kq_lock);
   1361      1.49        ad 				nevents += nkev;
   1362      1.49        ad 				nkev = 0;
   1363      1.49        ad 				kevp = kevbuf;
   1364      1.49        ad 			}
   1365      1.49        ad 			count--;
   1366      1.49        ad 			if (error != 0 || count == 0) {
   1367      1.49        ad 				/* remove marker */
   1368      1.49        ad 				TAILQ_REMOVE(&kq->kq_head, marker, kn_tqe);
   1369       1.1     lukem 				break;
   1370      1.49        ad 			}
   1371       1.1     lukem 		}
   1372      1.51      yamt  done:
   1373  1.76.2.4  jdolecek 		mutex_spin_exit(&kq->kq_lock);
   1374  1.76.2.4  jdolecek 		mutex_exit(&fdp->fd_lock);
   1375  1.76.2.4  jdolecek 	}
   1376      1.49        ad 	if (nkev != 0) {
   1377       1.3  jdolecek 		/* copyout remaining events */
   1378      1.24      cube 		error = (*keops->keo_put_events)(keops->keo_private,
   1379      1.49        ad 		    kevbuf, ulistp, nevents, nkev);
   1380      1.49        ad 	}
   1381       1.3  jdolecek 	*retval = maxevents - count;
   1382       1.3  jdolecek 
   1383      1.49        ad 	return error;
   1384       1.1     lukem }
   1385       1.1     lukem 
   1386       1.1     lukem /*
   1387      1.49        ad  * fileops ioctl method for a kqueue descriptor.
   1388       1.3  jdolecek  *
   1389       1.3  jdolecek  * Two ioctls are currently supported. They both use struct kfilter_mapping:
   1390       1.3  jdolecek  *	KFILTER_BYNAME		find name for filter, and return result in
   1391       1.3  jdolecek  *				name, which is of size len.
   1392       1.3  jdolecek  *	KFILTER_BYFILTER	find filter for name. len is ignored.
   1393       1.3  jdolecek  */
   1394       1.1     lukem /*ARGSUSED*/
   1395       1.1     lukem static int
   1396      1.49        ad kqueue_ioctl(file_t *fp, u_long com, void *data)
   1397       1.1     lukem {
   1398       1.3  jdolecek 	struct kfilter_mapping	*km;
   1399       1.3  jdolecek 	const struct kfilter	*kfilter;
   1400       1.3  jdolecek 	char			*name;
   1401       1.3  jdolecek 	int			error;
   1402       1.3  jdolecek 
   1403      1.49        ad 	km = data;
   1404       1.3  jdolecek 	error = 0;
   1405      1.49        ad 	name = kmem_alloc(KFILTER_MAXNAME, KM_SLEEP);
   1406       1.3  jdolecek 
   1407       1.3  jdolecek 	switch (com) {
   1408       1.3  jdolecek 	case KFILTER_BYFILTER:	/* convert filter -> name */
   1409      1.49        ad 		rw_enter(&kqueue_filter_lock, RW_READER);
   1410       1.3  jdolecek 		kfilter = kfilter_byfilter(km->filter);
   1411      1.49        ad 		if (kfilter != NULL) {
   1412      1.49        ad 			strlcpy(name, kfilter->name, KFILTER_MAXNAME);
   1413      1.49        ad 			rw_exit(&kqueue_filter_lock);
   1414      1.49        ad 			error = copyoutstr(name, km->name, km->len, NULL);
   1415      1.49        ad 		} else {
   1416      1.49        ad 			rw_exit(&kqueue_filter_lock);
   1417       1.3  jdolecek 			error = ENOENT;
   1418      1.49        ad 		}
   1419       1.3  jdolecek 		break;
   1420       1.3  jdolecek 
   1421       1.3  jdolecek 	case KFILTER_BYNAME:	/* convert name -> filter */
   1422       1.3  jdolecek 		error = copyinstr(km->name, name, KFILTER_MAXNAME, NULL);
   1423       1.3  jdolecek 		if (error) {
   1424       1.3  jdolecek 			break;
   1425       1.3  jdolecek 		}
   1426      1.49        ad 		rw_enter(&kqueue_filter_lock, RW_READER);
   1427       1.3  jdolecek 		kfilter = kfilter_byname(name);
   1428       1.3  jdolecek 		if (kfilter != NULL)
   1429       1.3  jdolecek 			km->filter = kfilter->filter;
   1430       1.3  jdolecek 		else
   1431       1.3  jdolecek 			error = ENOENT;
   1432      1.49        ad 		rw_exit(&kqueue_filter_lock);
   1433       1.3  jdolecek 		break;
   1434       1.3  jdolecek 
   1435       1.3  jdolecek 	default:
   1436       1.3  jdolecek 		error = ENOTTY;
   1437      1.49        ad 		break;
   1438       1.3  jdolecek 
   1439       1.3  jdolecek 	}
   1440      1.49        ad 	kmem_free(name, KFILTER_MAXNAME);
   1441       1.3  jdolecek 	return (error);
   1442       1.3  jdolecek }
   1443       1.3  jdolecek 
   1444       1.3  jdolecek /*
   1445      1.49        ad  * fileops fcntl method for a kqueue descriptor.
   1446       1.3  jdolecek  */
   1447       1.3  jdolecek static int
   1448      1.49        ad kqueue_fcntl(file_t *fp, u_int com, void *data)
   1449       1.3  jdolecek {
   1450       1.3  jdolecek 
   1451       1.1     lukem 	return (ENOTTY);
   1452       1.1     lukem }
   1453       1.1     lukem 
   1454       1.3  jdolecek /*
   1455      1.49        ad  * fileops poll method for a kqueue descriptor.
   1456       1.3  jdolecek  * Determine if kqueue has events pending.
   1457       1.3  jdolecek  */
   1458       1.1     lukem static int
   1459      1.49        ad kqueue_poll(file_t *fp, int events)
   1460       1.1     lukem {
   1461       1.3  jdolecek 	struct kqueue	*kq;
   1462       1.3  jdolecek 	int		revents;
   1463       1.3  jdolecek 
   1464  1.76.2.4  jdolecek 	kq = fp->f_kqueue;
   1465      1.49        ad 
   1466       1.3  jdolecek 	revents = 0;
   1467       1.3  jdolecek 	if (events & (POLLIN | POLLRDNORM)) {
   1468      1.49        ad 		mutex_spin_enter(&kq->kq_lock);
   1469      1.49        ad 		if (kq->kq_count != 0) {
   1470       1.3  jdolecek 			revents |= events & (POLLIN | POLLRDNORM);
   1471       1.1     lukem 		} else {
   1472      1.49        ad 			selrecord(curlwp, &kq->kq_sel);
   1473       1.1     lukem 		}
   1474      1.52      yamt 		kq_check(kq);
   1475      1.49        ad 		mutex_spin_exit(&kq->kq_lock);
   1476       1.1     lukem 	}
   1477      1.49        ad 
   1478      1.49        ad 	return revents;
   1479       1.1     lukem }
   1480       1.1     lukem 
   1481       1.3  jdolecek /*
   1482      1.49        ad  * fileops stat method for a kqueue descriptor.
   1483       1.3  jdolecek  * Returns dummy info, with st_size being number of events pending.
   1484       1.3  jdolecek  */
   1485       1.1     lukem static int
   1486      1.49        ad kqueue_stat(file_t *fp, struct stat *st)
   1487       1.1     lukem {
   1488      1.49        ad 	struct kqueue *kq;
   1489      1.49        ad 
   1490  1.76.2.4  jdolecek 	kq = fp->f_kqueue;
   1491       1.1     lukem 
   1492      1.49        ad 	memset(st, 0, sizeof(*st));
   1493       1.1     lukem 	st->st_size = kq->kq_count;
   1494       1.1     lukem 	st->st_blksize = sizeof(struct kevent);
   1495       1.1     lukem 	st->st_mode = S_IFIFO;
   1496      1.49        ad 
   1497      1.49        ad 	return 0;
   1498      1.49        ad }
   1499      1.49        ad 
   1500      1.49        ad static void
   1501      1.49        ad kqueue_doclose(struct kqueue *kq, struct klist *list, int fd)
   1502      1.49        ad {
   1503      1.49        ad 	struct knote *kn;
   1504      1.49        ad 	filedesc_t *fdp;
   1505      1.49        ad 
   1506      1.49        ad 	fdp = kq->kq_fdp;
   1507      1.49        ad 
   1508      1.49        ad 	KASSERT(mutex_owned(&fdp->fd_lock));
   1509      1.49        ad 
   1510      1.49        ad 	for (kn = SLIST_FIRST(list); kn != NULL;) {
   1511      1.49        ad 		if (kq != kn->kn_kq) {
   1512      1.49        ad 			kn = SLIST_NEXT(kn, kn_link);
   1513      1.49        ad 			continue;
   1514      1.49        ad 		}
   1515      1.49        ad 		knote_detach(kn, fdp, true);
   1516      1.49        ad 		mutex_enter(&fdp->fd_lock);
   1517      1.49        ad 		kn = SLIST_FIRST(list);
   1518      1.49        ad 	}
   1519       1.1     lukem }
   1520       1.1     lukem 
   1521      1.49        ad 
   1522       1.3  jdolecek /*
   1523      1.49        ad  * fileops close method for a kqueue descriptor.
   1524       1.3  jdolecek  */
   1525       1.1     lukem static int
   1526      1.49        ad kqueue_close(file_t *fp)
   1527       1.1     lukem {
   1528      1.49        ad 	struct kqueue *kq;
   1529      1.49        ad 	filedesc_t *fdp;
   1530      1.49        ad 	fdfile_t *ff;
   1531      1.49        ad 	int i;
   1532      1.49        ad 
   1533  1.76.2.4  jdolecek 	kq = fp->f_kqueue;
   1534  1.76.2.4  jdolecek 	fp->f_kqueue = NULL;
   1535  1.76.2.2       tls 	fp->f_type = 0;
   1536      1.49        ad 	fdp = curlwp->l_fd;
   1537       1.1     lukem 
   1538      1.49        ad 	mutex_enter(&fdp->fd_lock);
   1539      1.49        ad 	for (i = 0; i <= fdp->fd_lastkqfile; i++) {
   1540      1.65        ad 		if ((ff = fdp->fd_dt->dt_ff[i]) == NULL)
   1541      1.49        ad 			continue;
   1542      1.49        ad 		kqueue_doclose(kq, (struct klist *)&ff->ff_knlist, i);
   1543       1.1     lukem 	}
   1544       1.1     lukem 	if (fdp->fd_knhashmask != 0) {
   1545       1.1     lukem 		for (i = 0; i < fdp->fd_knhashmask + 1; i++) {
   1546      1.49        ad 			kqueue_doclose(kq, &fdp->fd_knhash[i], -1);
   1547       1.1     lukem 		}
   1548       1.1     lukem 	}
   1549      1.49        ad 	mutex_exit(&fdp->fd_lock);
   1550      1.49        ad 
   1551      1.49        ad 	KASSERT(kq->kq_count == 0);
   1552      1.49        ad 	mutex_destroy(&kq->kq_lock);
   1553      1.49        ad 	cv_destroy(&kq->kq_cv);
   1554      1.48     rmind 	seldestroy(&kq->kq_sel);
   1555      1.49        ad 	kmem_free(kq, sizeof(*kq));
   1556       1.1     lukem 
   1557       1.1     lukem 	return (0);
   1558       1.1     lukem }
   1559       1.1     lukem 
   1560       1.3  jdolecek /*
   1561       1.3  jdolecek  * struct fileops kqfilter method for a kqueue descriptor.
   1562       1.3  jdolecek  * Event triggered when monitored kqueue changes.
   1563       1.3  jdolecek  */
   1564       1.3  jdolecek static int
   1565      1.49        ad kqueue_kqfilter(file_t *fp, struct knote *kn)
   1566       1.3  jdolecek {
   1567       1.3  jdolecek 	struct kqueue *kq;
   1568      1.49        ad 
   1569  1.76.2.4  jdolecek 	kq = ((file_t *)kn->kn_obj)->f_kqueue;
   1570      1.49        ad 
   1571      1.49        ad 	KASSERT(fp == kn->kn_obj);
   1572       1.3  jdolecek 
   1573       1.3  jdolecek 	if (kn->kn_filter != EVFILT_READ)
   1574      1.49        ad 		return 1;
   1575      1.49        ad 
   1576       1.3  jdolecek 	kn->kn_fop = &kqread_filtops;
   1577      1.49        ad 	mutex_enter(&kq->kq_lock);
   1578       1.5  christos 	SLIST_INSERT_HEAD(&kq->kq_sel.sel_klist, kn, kn_selnext);
   1579      1.49        ad 	mutex_exit(&kq->kq_lock);
   1580      1.49        ad 
   1581      1.49        ad 	return 0;
   1582       1.3  jdolecek }
   1583       1.3  jdolecek 
   1584       1.3  jdolecek 
   1585       1.3  jdolecek /*
   1586      1.49        ad  * Walk down a list of knotes, activating them if their event has
   1587      1.49        ad  * triggered.  The caller's object lock (e.g. device driver lock)
   1588      1.49        ad  * must be held.
   1589       1.1     lukem  */
   1590       1.1     lukem void
   1591       1.1     lukem knote(struct klist *list, long hint)
   1592       1.1     lukem {
   1593      1.71  drochner 	struct knote *kn, *tmpkn;
   1594       1.1     lukem 
   1595      1.71  drochner 	SLIST_FOREACH_SAFE(kn, list, kn_selnext, tmpkn) {
   1596  1.76.2.4  jdolecek 		KASSERT(kn->kn_fop != NULL);
   1597  1.76.2.4  jdolecek 		KASSERT(kn->kn_fop->f_event != NULL);
   1598      1.49        ad 		if ((*kn->kn_fop->f_event)(kn, hint))
   1599      1.49        ad 			knote_activate(kn);
   1600      1.49        ad 	}
   1601       1.1     lukem }
   1602       1.1     lukem 
   1603       1.1     lukem /*
   1604      1.49        ad  * Remove all knotes referencing a specified fd
   1605       1.1     lukem  */
   1606       1.1     lukem void
   1607      1.49        ad knote_fdclose(int fd)
   1608       1.1     lukem {
   1609      1.49        ad 	struct klist *list;
   1610       1.1     lukem 	struct knote *kn;
   1611      1.49        ad 	filedesc_t *fdp;
   1612       1.1     lukem 
   1613      1.49        ad 	fdp = curlwp->l_fd;
   1614      1.65        ad 	list = (struct klist *)&fdp->fd_dt->dt_ff[fd]->ff_knlist;
   1615      1.49        ad 	mutex_enter(&fdp->fd_lock);
   1616       1.1     lukem 	while ((kn = SLIST_FIRST(list)) != NULL) {
   1617      1.49        ad 		knote_detach(kn, fdp, true);
   1618      1.49        ad 		mutex_enter(&fdp->fd_lock);
   1619       1.1     lukem 	}
   1620      1.49        ad 	mutex_exit(&fdp->fd_lock);
   1621       1.1     lukem }
   1622       1.1     lukem 
   1623       1.1     lukem /*
   1624      1.49        ad  * Drop knote.  Called with fdp->fd_lock held, and will drop before
   1625      1.49        ad  * returning.
   1626       1.3  jdolecek  */
   1627       1.1     lukem static void
   1628      1.49        ad knote_detach(struct knote *kn, filedesc_t *fdp, bool dofop)
   1629       1.1     lukem {
   1630      1.49        ad 	struct klist *list;
   1631      1.53        ad 	struct kqueue *kq;
   1632      1.53        ad 
   1633      1.53        ad 	kq = kn->kn_kq;
   1634       1.1     lukem 
   1635      1.49        ad 	KASSERT((kn->kn_status & KN_MARKER) == 0);
   1636      1.49        ad 	KASSERT(mutex_owned(&fdp->fd_lock));
   1637       1.3  jdolecek 
   1638  1.76.2.4  jdolecek 	KASSERT(kn->kn_fop != NULL);
   1639      1.53        ad 	/* Remove from monitored object. */
   1640      1.49        ad 	if (dofop) {
   1641  1.76.2.4  jdolecek 		KASSERT(kn->kn_fop->f_detach != NULL);
   1642      1.49        ad 		KERNEL_LOCK(1, NULL);		/* XXXSMP */
   1643      1.49        ad 		(*kn->kn_fop->f_detach)(kn);
   1644      1.49        ad 		KERNEL_UNLOCK_ONE(NULL);	/* XXXSMP */
   1645       1.1     lukem 	}
   1646       1.3  jdolecek 
   1647      1.53        ad 	/* Remove from descriptor table. */
   1648       1.1     lukem 	if (kn->kn_fop->f_isfd)
   1649      1.65        ad 		list = (struct klist *)&fdp->fd_dt->dt_ff[kn->kn_id]->ff_knlist;
   1650       1.1     lukem 	else
   1651       1.1     lukem 		list = &fdp->fd_knhash[KN_HASH(kn->kn_id, fdp->fd_knhashmask)];
   1652       1.1     lukem 
   1653       1.1     lukem 	SLIST_REMOVE(list, kn, knote, kn_link);
   1654      1.53        ad 
   1655      1.53        ad 	/* Remove from kqueue. */
   1656  1.76.2.4  jdolecek again:
   1657      1.53        ad 	mutex_spin_enter(&kq->kq_lock);
   1658      1.53        ad 	if ((kn->kn_status & KN_QUEUED) != 0) {
   1659      1.53        ad 		kq_check(kq);
   1660  1.76.2.4  jdolecek 		kq->kq_count--;
   1661      1.53        ad 		TAILQ_REMOVE(&kq->kq_head, kn, kn_tqe);
   1662      1.53        ad 		kn->kn_status &= ~KN_QUEUED;
   1663      1.53        ad 		kq_check(kq);
   1664  1.76.2.4  jdolecek 	} else if (kn->kn_status & KN_BUSY) {
   1665  1.76.2.4  jdolecek 		mutex_spin_exit(&kq->kq_lock);
   1666  1.76.2.4  jdolecek 		goto again;
   1667      1.53        ad 	}
   1668      1.53        ad 	mutex_spin_exit(&kq->kq_lock);
   1669      1.53        ad 
   1670      1.49        ad 	mutex_exit(&fdp->fd_lock);
   1671  1.76.2.4  jdolecek 	if (kn->kn_fop->f_isfd)
   1672      1.49        ad 		fd_putfile(kn->kn_id);
   1673      1.49        ad 	atomic_dec_uint(&kn->kn_kfilter->refcnt);
   1674      1.49        ad 	kmem_free(kn, sizeof(*kn));
   1675       1.1     lukem }
   1676       1.1     lukem 
   1677       1.3  jdolecek /*
   1678       1.3  jdolecek  * Queue new event for knote.
   1679       1.3  jdolecek  */
   1680       1.1     lukem static void
   1681       1.1     lukem knote_enqueue(struct knote *kn)
   1682       1.1     lukem {
   1683      1.49        ad 	struct kqueue *kq;
   1684      1.49        ad 
   1685      1.49        ad 	KASSERT((kn->kn_status & KN_MARKER) == 0);
   1686       1.1     lukem 
   1687       1.3  jdolecek 	kq = kn->kn_kq;
   1688       1.1     lukem 
   1689      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
   1690      1.49        ad 	if ((kn->kn_status & KN_DISABLED) != 0) {
   1691      1.49        ad 		kn->kn_status &= ~KN_DISABLED;
   1692      1.49        ad 	}
   1693      1.49        ad 	if ((kn->kn_status & (KN_ACTIVE | KN_QUEUED)) == KN_ACTIVE) {
   1694      1.52      yamt 		kq_check(kq);
   1695      1.49        ad 		kn->kn_status |= KN_QUEUED;
   1696  1.76.2.4  jdolecek 		TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe);
   1697      1.49        ad 		kq->kq_count++;
   1698      1.52      yamt 		kq_check(kq);
   1699      1.49        ad 		cv_broadcast(&kq->kq_cv);
   1700      1.49        ad 		selnotify(&kq->kq_sel, 0, NOTE_SUBMIT);
   1701      1.49        ad 	}
   1702      1.49        ad 	mutex_spin_exit(&kq->kq_lock);
   1703       1.1     lukem }
   1704      1.49        ad /*
   1705      1.49        ad  * Queue new event for knote.
   1706      1.49        ad  */
   1707      1.49        ad static void
   1708      1.49        ad knote_activate(struct knote *kn)
   1709      1.49        ad {
   1710      1.49        ad 	struct kqueue *kq;
   1711      1.49        ad 
   1712      1.49        ad 	KASSERT((kn->kn_status & KN_MARKER) == 0);
   1713       1.1     lukem 
   1714       1.3  jdolecek 	kq = kn->kn_kq;
   1715      1.12        pk 
   1716      1.49        ad 	mutex_spin_enter(&kq->kq_lock);
   1717      1.49        ad 	kn->kn_status |= KN_ACTIVE;
   1718      1.49        ad 	if ((kn->kn_status & (KN_QUEUED | KN_DISABLED)) == 0) {
   1719      1.52      yamt 		kq_check(kq);
   1720      1.49        ad 		kn->kn_status |= KN_QUEUED;
   1721  1.76.2.4  jdolecek 		TAILQ_INSERT_TAIL(&kq->kq_head, kn, kn_tqe);
   1722      1.49        ad 		kq->kq_count++;
   1723      1.52      yamt 		kq_check(kq);
   1724      1.49        ad 		cv_broadcast(&kq->kq_cv);
   1725      1.49        ad 		selnotify(&kq->kq_sel, 0, NOTE_SUBMIT);
   1726      1.49        ad 	}
   1727      1.49        ad 	mutex_spin_exit(&kq->kq_lock);
   1728       1.1     lukem }
   1729