1 /* $NetBSD: kqueue.c,v 1.1.1.2 2013/04/11 16:43:24 christos Exp $ */
2 /* $OpenBSD: kqueue.c,v 1.5 2002/07/10 14:41:31 art Exp $ */
5 * Copyright 2000-2007 Niels Provos <provos@citi.umich.edu>
6 * Copyright 2007-2012 Niels Provos and Nick Mathewson
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "event2/event-config.h"
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: kqueue.c,v 1.1.1.2 2013/04/11 16:43:24 christos Exp $");
36 #include <sys/types.h>
37 #ifdef _EVENT_HAVE_SYS_TIME_H
40 #include <sys/queue.h>
41 #include <sys/event.h>
48 #ifdef _EVENT_HAVE_INTTYPES_H
52 /* Some platforms apparently define the udata field of struct kevent as
53 * intptr_t, whereas others define it as void*. There doesn't seem to be an
54 * easy way to tell them apart via autoconf, so we need to use OS macros. */
55 #if defined(_EVENT_HAVE_INTTYPES_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__darwin__) && !defined(__APPLE__)
56 #define PTR_TO_UDATA(x) ((intptr_t)(x))
57 #define INT_TO_UDATA(x) ((intptr_t)(x))
59 #define PTR_TO_UDATA(x) (x)
60 #define INT_TO_UDATA(x) ((void*)(x))
63 #include "event-internal.h"
64 #include "log-internal.h"
65 #include "evmap-internal.h"
66 #include "event2/thread.h"
67 #include "evthread-internal.h"
68 #include "changelist-internal.h"
73 struct kevent
*changes
;
76 struct kevent
*events
;
82 static void kqop_free(struct kqop
*kqop
);
84 static void *kq_init(struct event_base
*);
85 static int kq_sig_add(struct event_base
*, int, short, short, void *);
86 static int kq_sig_del(struct event_base
*, int, short, short, void *);
87 static int kq_dispatch(struct event_base
*, struct timeval
*);
88 static void kq_dealloc(struct event_base
*);
90 const struct eventop kqops
= {
98 EV_FEATURE_ET
|EV_FEATURE_O1
|EV_FEATURE_FDS
,
99 EVENT_CHANGELIST_FDINFO_SIZE
102 static const struct eventop kqsigops
= {
115 kq_init(struct event_base
*base
)
118 struct kqop
*kqueueop
= NULL
;
120 if (!(kqueueop
= mm_calloc(1, sizeof(struct kqop
))))
123 /* Initialize the kernel queue */
125 if ((kq
= kqueue()) == -1) {
126 event_warn("kqueue");
132 kqueueop
->pid
= getpid();
134 /* Initialize fields */
135 kqueueop
->changes
= mm_calloc(NEVENT
, sizeof(struct kevent
));
136 if (kqueueop
->changes
== NULL
)
138 kqueueop
->events
= mm_calloc(NEVENT
, sizeof(struct kevent
));
139 if (kqueueop
->events
== NULL
)
141 kqueueop
->events_size
= kqueueop
->changes_size
= NEVENT
;
143 /* Check for Mac OS X kqueue bug. */
144 memset(&kqueueop
->changes
[0], 0, sizeof kqueueop
->changes
[0]);
145 kqueueop
->changes
[0].ident
= -1;
146 kqueueop
->changes
[0].filter
= EVFILT_READ
;
147 kqueueop
->changes
[0].flags
= EV_ADD
;
149 * If kqueue works, then kevent will succeed, and it will
150 * stick an error in events[0]. If kqueue is broken, then
154 kqueueop
->changes
, 1, kqueueop
->events
, NEVENT
, NULL
) != 1 ||
155 (int)kqueueop
->events
[0].ident
!= -1 ||
156 kqueueop
->events
[0].flags
!= EV_ERROR
) {
157 event_warn("%s: detected broken kqueue; not using.", __func__
);
161 base
->evsigsel
= &kqsigops
;
172 kq_sighandler(int sig
)
174 /* Do nothing here */
177 #define ADD_UDATA 0x30303
180 kq_setup_kevent(struct kevent
*out
, evutil_socket_t fd
, int filter
, short change
)
182 memset(out
, 0, sizeof(struct kevent
));
184 out
->filter
= filter
;
186 if (change
& EV_CHANGE_ADD
) {
188 /* We set a magic number here so that we can tell 'add'
189 * errors from 'del' errors. */
190 out
->udata
= INT_TO_UDATA(ADD_UDATA
);
192 out
->flags
|= EV_CLEAR
;
194 /* Make it behave like select() and poll() */
195 if (filter
== EVFILT_READ
)
196 out
->fflags
= NOTE_EOF
;
199 EVUTIL_ASSERT(change
& EV_CHANGE_DEL
);
200 out
->flags
= EV_DELETE
;
205 kq_build_changes_list(const struct event_changelist
*changelist
,
211 for (i
= 0; i
< changelist
->n_changes
; ++i
) {
212 struct event_change
*in_ch
= &changelist
->changes
[i
];
213 struct kevent
*out_ch
;
214 if (n_changes
>= kqop
->changes_size
- 1) {
215 int newsize
= kqop
->changes_size
* 2;
216 struct kevent
*newchanges
;
218 newchanges
= mm_realloc(kqop
->changes
,
219 newsize
* sizeof(struct kevent
));
220 if (newchanges
== NULL
) {
221 event_warn("%s: realloc", __func__
);
224 kqop
->changes
= newchanges
;
225 kqop
->changes_size
= newsize
;
227 if (in_ch
->read_change
) {
228 out_ch
= &kqop
->changes
[n_changes
++];
229 kq_setup_kevent(out_ch
, in_ch
->fd
, EVFILT_READ
,
232 if (in_ch
->write_change
) {
233 out_ch
= &kqop
->changes
[n_changes
++];
234 kq_setup_kevent(out_ch
, in_ch
->fd
, EVFILT_WRITE
,
235 in_ch
->write_change
);
242 kq_grow_events(struct kqop
*kqop
, size_t new_size
)
244 struct kevent
*newresult
;
246 newresult
= mm_realloc(kqop
->events
,
247 new_size
* sizeof(struct kevent
));
250 kqop
->events
= newresult
;
251 kqop
->events_size
= new_size
;
259 kq_dispatch(struct event_base
*base
, struct timeval
*tv
)
261 struct kqop
*kqop
= base
->evbase
;
262 struct kevent
*events
= kqop
->events
;
263 struct kevent
*changes
;
264 struct timespec ts
, *ts_p
= NULL
;
265 int i
, n_changes
, res
;
268 TIMEVAL_TO_TIMESPEC(tv
, &ts
);
272 /* Build "changes" from "base->changes" */
273 EVUTIL_ASSERT(kqop
->changes
);
274 n_changes
= kq_build_changes_list(&base
->changelist
, kqop
);
278 event_changelist_remove_all(&base
->changelist
, base
);
280 /* steal the changes array in case some broken code tries to call
281 * dispatch twice at once. */
282 changes
= kqop
->changes
;
283 kqop
->changes
= NULL
;
285 /* Make sure that 'events' is at least as long as the list of changes:
286 * otherwise errors in the changes can get reported as a -1 return
287 * value from kevent() rather than as EV_ERROR events in the events
290 * (We could instead handle -1 return values from kevent() by
291 * retrying with a smaller changes array or a larger events array,
292 * but this approach seems less risky for now.)
294 if (kqop
->events_size
< n_changes
) {
295 int new_size
= kqop
->events_size
;
298 } while (new_size
< n_changes
);
300 kq_grow_events(kqop
, new_size
);
301 events
= kqop
->events
;
304 EVBASE_RELEASE_LOCK(base
, th_base_lock
);
306 res
= kevent(kqop
->kq
, changes
, n_changes
,
307 events
, kqop
->events_size
, ts_p
);
309 EVBASE_ACQUIRE_LOCK(base
, th_base_lock
);
311 EVUTIL_ASSERT(kqop
->changes
== NULL
);
312 kqop
->changes
= changes
;
315 if (errno
!= EINTR
) {
316 event_warn("kevent");
323 event_debug(("%s: kevent reports %d", __func__
, res
));
325 for (i
= 0; i
< res
; i
++) {
328 if (events
[i
].flags
& EV_ERROR
) {
329 switch (events
[i
].data
) {
331 /* Can occur on delete if we are not currently
332 * watching any events on this fd. That can
333 * happen when the fd was closed and another
334 * file was opened with that fd. */
336 /* Can occur for reasons not fully understood
341 /* Can occur on a delete if the fd is closed. */
343 /* XXXX On NetBSD, we can also get EBADF if we
344 * try to add the write side of a pipe, but
345 * the read side has already been closed.
346 * Other BSDs call this situation 'EPIPE'. It
347 * would be good if we had a way to report
350 /* These two can occur on an add if the fd was one side
351 * of a pipe, and the other side was closed. */
354 /* Report read events, if we're listening for
355 * them, so that the user can learn about any
356 * add errors. (If the operation was a
357 * delete, then udata should be cleared.) */
358 if (events
[i
].udata
) {
359 /* The operation was an add:
360 * report the error as a read. */
364 /* The operation was a del:
369 /* Other errors shouldn't occur. */
371 errno
= events
[i
].data
;
374 } else if (events
[i
].filter
== EVFILT_READ
) {
376 } else if (events
[i
].filter
== EVFILT_WRITE
) {
378 } else if (events
[i
].filter
== EVFILT_SIGNAL
) {
385 if (events
[i
].filter
== EVFILT_SIGNAL
) {
386 evmap_signal_active(base
, events
[i
].ident
, 1);
388 evmap_io_active(base
, events
[i
].ident
, which
| EV_ET
);
392 if (res
== kqop
->events_size
) {
393 /* We used all the events space that we have. Maybe we should
395 kq_grow_events(kqop
, kqop
->events_size
* 2);
402 kqop_free(struct kqop
*kqop
)
405 mm_free(kqop
->changes
);
407 mm_free(kqop
->events
);
408 if (kqop
->kq
>= 0 && kqop
->pid
== getpid())
410 memset(kqop
, 0, sizeof(struct kqop
));
415 kq_dealloc(struct event_base
*base
)
417 struct kqop
*kqop
= base
->evbase
;
422 /* signal handling */
424 kq_sig_add(struct event_base
*base
, int nsignal
, short old
, short events
, void *p
)
426 struct kqop
*kqop
= base
->evbase
;
428 struct timespec timeout
= { 0, 0 };
431 EVUTIL_ASSERT(nsignal
>= 0 && nsignal
< NSIG
);
433 memset(&kev
, 0, sizeof(kev
));
435 kev
.filter
= EVFILT_SIGNAL
;
438 /* Be ready for the signal if it is sent any
439 * time between now and the next call to
441 if (kevent(kqop
->kq
, &kev
, 1, NULL
, 0, &timeout
) == -1)
444 /* XXXX The manpage suggest we could use SIG_IGN instead of a
445 * do-nothing handler */
446 if (_evsig_set_handler(base
, nsignal
, kq_sighandler
) == -1)
453 kq_sig_del(struct event_base
*base
, int nsignal
, short old
, short events
, void *p
)
455 struct kqop
*kqop
= base
->evbase
;
458 struct timespec timeout
= { 0, 0 };
461 EVUTIL_ASSERT(nsignal
>= 0 && nsignal
< NSIG
);
463 memset(&kev
, 0, sizeof(kev
));
465 kev
.filter
= EVFILT_SIGNAL
;
466 kev
.flags
= EV_DELETE
;
468 /* Because we insert signal events
469 * immediately, we need to delete them
470 * immediately, too */
471 if (kevent(kqop
->kq
, &kev
, 1, NULL
, 0, &timeout
) == -1)
474 if (_evsig_restore_handler(base
, nsignal
) == -1)