]> jfr.im git - solanum.git/blame - libratbox/src/kqueue.c
Rerun autoconf.
[solanum.git] / libratbox / src / kqueue.c
CommitLineData
db137867
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * kqueue.c: FreeBSD kqueue compatible network routines.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2001 Adrian Chadd <adrian@creative.net.au>
8 * Copyright (C) 2002-2005 ircd-ratbox development team
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
23 * USA
24 *
25 * $Id: kqueue.c 25038 2008-01-23 16:03:08Z androsyn $
26 */
27
28#include <libratbox_config.h>
29#include <ratbox_lib.h>
30#include <commio-int.h>
31#include <event-int.h>
32
33#if defined(HAVE_SYS_EVENT_H) && (HAVE_KEVENT)
34
35#include <sys/event.h>
36
db137867
AC
37/* jlemon goofed up and didn't add EV_SET until fbsd 4.3 */
38
39#ifndef EV_SET
40#define EV_SET(kevp, a, b, c, d, e, f) do { \
41 (kevp)->ident = (a); \
42 (kevp)->filter = (b); \
43 (kevp)->flags = (c); \
44 (kevp)->fflags = (d); \
45 (kevp)->data = (e); \
46 (kevp)->udata = (f); \
47} while(0)
48#endif
49
50#ifdef EVFILT_TIMER
51#define KQUEUE_SCHED_EVENT
52#endif
53
54
55static void kq_update_events(rb_fde_t *, short, PF *);
56static int kq;
57static struct timespec zero_timespec;
58
59static struct kevent *kqlst; /* kevent buffer */
3c95b6e7 60static struct kevent *kqout; /* kevent output buffer */
db137867
AC
61static int kqmax; /* max structs to buffer */
62static int kqoff; /* offset into the buffer */
63
64
65int
66rb_setup_fd_kqueue(rb_fde_t * F)
67{
68 return 0;
69}
70
71static void
72kq_update_events(rb_fde_t * F, short filter, PF * handler)
73{
74 PF *cur_handler;
75 int kep_flags;
76
77 switch (filter)
78 {
79 case EVFILT_READ:
80 cur_handler = F->read_handler;
81 break;
82 case EVFILT_WRITE:
83 cur_handler = F->write_handler;
84 break;
85 default:
86 /* XXX bad! -- adrian */
87 return;
88 break;
89 }
90
91 if((cur_handler == NULL && handler != NULL) || (cur_handler != NULL && handler == NULL))
92 {
93 struct kevent *kep;
94
95 kep = kqlst + kqoff;
96
97 if(handler != NULL)
98 {
7b224e33 99 kep_flags = EV_ADD | EV_ONESHOT;
db137867
AC
100 }
101 else
102 {
103 kep_flags = EV_DELETE;
104 }
105
106 EV_SET(kep, (uintptr_t) F->fd, filter, kep_flags, 0, 0, (void *) F);
107
108 if(++kqoff == kqmax)
109 {
3c95b6e7
JT
110 int ret, i;
111
112 /* Add them one at a time, because there may be
113 * already closed fds in it. The kernel will try
114 * to report invalid fds in the output; if there
115 * is no space, it silently stops processing the
116 * array at that point. We cannot give output space
117 * because that would also return events we cannot
118 * process at this point.
119 */
120 for (i = 0; i < kqoff; i++)
db137867 121 {
3c95b6e7
JT
122 ret = kevent(kq, kqlst + i, 1, NULL, 0, &zero_timespec);
123 /* jdc -- someone needs to do error checking... */
124 if(ret == -1)
125 {
126 rb_lib_log("kq_update_events(): kevent(): %s", strerror(errno));
127 kqoff = 0;
128 return;
129 }
db137867
AC
130 }
131 kqoff = 0;
132 }
133 }
134}
135
136
137
138/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
139/* Public functions */
140
141
142/*
143 * rb_init_netio
144 *
145 * This is a needed exported function which will be called to initialise
146 * the network loop code.
147 */
148int
149rb_init_netio_kqueue(void)
150{
151 kq = kqueue();
152 if(kq < 0)
153 {
154 return errno;
155 }
156 kqmax = getdtablesize();
157 kqlst = rb_malloc(sizeof(struct kevent) * kqmax);
3c95b6e7 158 kqout = rb_malloc(sizeof(struct kevent) * kqmax);
db137867
AC
159 rb_open(kq, RB_FD_UNKNOWN, "kqueue fd");
160 zero_timespec.tv_sec = 0;
161 zero_timespec.tv_nsec = 0;
162
163 return 0;
164}
165
166/*
167 * rb_setselect
168 *
169 * This is a needed exported function which will be called to register
170 * and deregister interest in a pending IO state for a given FD.
171 */
172void
173rb_setselect_kqueue(rb_fde_t * F, unsigned int type, PF * handler, void *client_data)
174{
175 lrb_assert(IsFDOpen(F));
176
177 if(type & RB_SELECT_READ)
178 {
179 kq_update_events(F, EVFILT_READ, handler);
180 F->read_handler = handler;
181 F->read_data = client_data;
182 }
183 if(type & RB_SELECT_WRITE)
184 {
185 kq_update_events(F, EVFILT_WRITE, handler);
186 F->write_handler = handler;
187 F->write_data = client_data;
188 }
189}
190
191/*
192 * Check all connections for new connections and input data that is to be
193 * processed. Also check for connections with data queued and whether we can
194 * write it out.
195 */
196
197/*
198 * rb_select
199 *
200 * Called to do the new-style IO, courtesy of squid (like most of this
201 * new IO code). This routine handles the stuff we've hidden in
202 * rb_setselect and fd_table[] and calls callbacks for IO ready
203 * events.
204 */
205
206int
207rb_select_kqueue(long delay)
208{
209 int num, i;
db137867
AC
210 struct timespec poll_time;
211 struct timespec *pt;
212 rb_fde_t *F;
213
214
215 if(delay < 0) {
216 pt = NULL;
217 }
218 else {
219 pt = &poll_time;
220 poll_time.tv_sec = delay / 1000;
221 poll_time.tv_nsec = (delay % 1000) * 1000000;
222 }
223
224 for (;;)
225 {
3c95b6e7 226 num = kevent(kq, kqlst, kqoff, kqout, kqmax, pt);
db137867
AC
227 kqoff = 0;
228
229 if(num >= 0)
230 break;
231
232 if(rb_ignore_errno(errno))
233 break;
234
235 rb_set_time();
236
237 return RB_ERROR;
238
239 /* NOTREACHED */
240 }
241
242 rb_set_time();
243
244 if(num == 0)
245 return RB_OK; /* No error.. */
246
247 for (i = 0; i < num; i++)
248 {
249 PF *hdl = NULL;
250
3c95b6e7 251 if(kqout[i].flags & EV_ERROR)
db137867 252 {
3c95b6e7 253 errno = kqout[i].data;
db137867
AC
254 /* XXX error == bad! -- adrian */
255 continue; /* XXX! */
256 }
257
3c95b6e7 258 switch (kqout[i].filter)
db137867
AC
259 {
260
261 case EVFILT_READ:
3c95b6e7 262 F = kqout[i].udata;
db137867
AC
263 if((hdl = F->read_handler) != NULL)
264 {
265 F->read_handler = NULL;
266 hdl(F, F->read_data);
267 }
268
269 break;
270
271 case EVFILT_WRITE:
3c95b6e7 272 F = kqout[i].udata;
db137867
AC
273 if((hdl = F->write_handler) != NULL)
274 {
275 F->write_handler = NULL;
276 hdl(F, F->write_data);
277 }
278 break;
279#if defined(EVFILT_TIMER)
280 case EVFILT_TIMER:
3c95b6e7 281 rb_run_event(kqout[i].udata);
db137867
AC
282 break;
283#endif
284 default:
285 /* Bad! -- adrian */
286 break;
287 }
288 }
289 return RB_OK;
290}
291static int can_do_event = 0;
292int
293rb_kqueue_supports_event(void)
294{
295 struct kevent kv;
296 struct timespec ts;
297 int xkq;
298
299 if(can_do_event == 1)
300 return 1;
301 if(can_do_event == -1)
302 return 0;
303
304 xkq = kqueue();
305 ts.tv_sec = 0;
306 ts.tv_nsec = 1000;
307
308
309 EV_SET(&kv, (uintptr_t) 0x0, EVFILT_TIMER, EV_ADD | EV_ONESHOT, 0, 1, 0);
310 if(kevent(xkq, &kv, 1, NULL, 0, NULL) < 0)
311 {
312 can_do_event = -1;
313 close(xkq);
314 return 0;
315 }
316 close(xkq);
317 can_do_event = 1;
318 return 1;
319}
320
321int
322rb_kqueue_sched_event(struct ev_entry *event, int when)
323{
324 struct kevent kev;
325 int kep_flags;
326
327 kep_flags = EV_ADD;
328 if(event->frequency == 0)
329 kep_flags |= EV_ONESHOT;
330 EV_SET(&kev, (uintptr_t) event, EVFILT_TIMER, kep_flags, 0, when * 1000, event);
331 if(kevent(kq, &kev, 1, NULL, 0, NULL) < 0)
332 return 0;
333 return 1;
334}
335
336void
337rb_kqueue_unsched_event(struct ev_entry *event)
338{
339 struct kevent kev;
340 EV_SET(&kev, (uintptr_t) event, EVFILT_TIMER, EV_DELETE, 0, 0, event);
341 kevent(kq, &kev, 1, NULL, 0, NULL);
342}
343
344void
345rb_kqueue_init_event(void)
346{
347 return;
348}
349
350#else /* kqueue not supported */
351int
352rb_init_netio_kqueue(void)
353{
354 errno = ENOSYS;
355 return -1;
356}
357
358void
359rb_setselect_kqueue(rb_fde_t * F, unsigned int type, PF * handler, void *client_data)
360{
361 errno = ENOSYS;
362 return;
363}
364
365int
366rb_select_kqueue(long delay)
367{
368 errno = ENOSYS;
369 return -1;
370}
371
372int
373rb_setup_fd_kqueue(rb_fde_t * F)
374{
375 errno = ENOSYS;
376 return -1;
377}
378
379#endif
380
381#if !defined(HAVE_KEVENT) || !defined(KQUEUE_SCHED_EVENT)
382void
383rb_kqueue_init_event(void)
384{
385 return;
386}
387
388int
389rb_kqueue_sched_event(struct ev_entry *event, int when)
390{
391 errno = ENOSYS;
392 return -1;
393}
394
395void
396rb_kqueue_unsched_event(struct ev_entry *event)
397{
398 return;
399}
400
401int
402rb_kqueue_supports_event(void)
403{
404 errno = ENOSYS;
405 return 0;
406}
407#endif /* !HAVE_KEVENT || !KQUEUE_SCHED_EVENT */