1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 2000-2018 ircd-hybrid development team |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
19 |
* USA |
20 |
*/ |
21 |
|
22 |
/*! \file s_bsd_kqueue.c |
23 |
* \brief kqueue() compatible network routines. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#include "stdinc.h" |
28 |
#if USE_IOPOLL_MECHANISM == __IOPOLL_MECHANISM_KQUEUE |
29 |
#include <sys/event.h> |
30 |
#include "fdlist.h" |
31 |
#include "ircd.h" |
32 |
#include "s_bsd.h" |
33 |
#include "log.h" |
34 |
|
35 |
enum { KE_LENGTH = 128 }; |
36 |
|
37 |
static int kqueue_fd; |
38 |
static struct kevent kq_fdlist[KE_LENGTH]; /* kevent buffer */ |
39 |
static int kqoff; /* offset into the buffer */ |
40 |
|
41 |
|
42 |
/* |
43 |
* netio_init |
44 |
* |
45 |
* This is a needed exported function which will be called to initialise |
46 |
* the network loop code. |
47 |
*/ |
48 |
void |
49 |
netio_init(void) |
50 |
{ |
51 |
if ((kqueue_fd = kqueue()) < 0) |
52 |
{ |
53 |
ilog(LOG_TYPE_IRCD, "netio_init: couldn't open kqueue fd: %s", strerror(errno)); |
54 |
exit(EXIT_FAILURE); /* Whee! */ |
55 |
} |
56 |
|
57 |
fd_open(kqueue_fd, 0, "kqueue() file descriptor"); |
58 |
} |
59 |
|
60 |
/* |
61 |
* Write a single update to the kqueue list. |
62 |
*/ |
63 |
static void |
64 |
kq_update_events(fde_t *F, int filter, int what) |
65 |
{ |
66 |
const struct timespec zero_timespec = { .tv_sec = 0, .tv_nsec = 0 }; |
67 |
struct kevent *kep = kq_fdlist + kqoff; |
68 |
|
69 |
EV_SET(kep, (uintptr_t) F->fd, (short) filter, what, 0, 0, F); |
70 |
|
71 |
if (++kqoff == KE_LENGTH) |
72 |
{ |
73 |
int i; |
74 |
|
75 |
for (i = 0; i < kqoff; ++i) |
76 |
kevent(kqueue_fd, &kq_fdlist[i], 1, NULL, 0, &zero_timespec); |
77 |
kqoff = 0; |
78 |
} |
79 |
} |
80 |
|
81 |
/* |
82 |
* comm_setselect |
83 |
* |
84 |
* This is a needed exported function which will be called to register |
85 |
* and deregister interest in a pending IO state for a given FD. |
86 |
*/ |
87 |
void |
88 |
comm_setselect(fde_t *F, unsigned int type, void (*handler)(fde_t *, void *), |
89 |
void *client_data, uintmax_t timeout) |
90 |
{ |
91 |
int new_events, diff; |
92 |
|
93 |
if ((type & COMM_SELECT_READ)) |
94 |
{ |
95 |
F->read_handler = handler; |
96 |
F->read_data = client_data; |
97 |
} |
98 |
|
99 |
if ((type & COMM_SELECT_WRITE)) |
100 |
{ |
101 |
F->write_handler = handler; |
102 |
F->write_data = client_data; |
103 |
} |
104 |
|
105 |
new_events = (F->read_handler ? COMM_SELECT_READ : 0) | |
106 |
(F->write_handler ? COMM_SELECT_WRITE : 0); |
107 |
|
108 |
if (timeout != 0) |
109 |
{ |
110 |
F->timeout = CurrentTime + (timeout / 1000); |
111 |
F->timeout_handler = handler; |
112 |
F->timeout_data = client_data; |
113 |
} |
114 |
|
115 |
diff = new_events ^ F->evcache; |
116 |
|
117 |
if ((diff & COMM_SELECT_READ)) |
118 |
kq_update_events(F, EVFILT_READ, (new_events & COMM_SELECT_READ) ? EV_ADD : EV_DELETE); |
119 |
if ((diff & COMM_SELECT_WRITE)) |
120 |
kq_update_events(F, EVFILT_WRITE, (new_events & COMM_SELECT_WRITE) ? EV_ADD : EV_DELETE); |
121 |
|
122 |
F->evcache = new_events; |
123 |
} |
124 |
|
125 |
/* |
126 |
* comm_select |
127 |
* |
128 |
* Called to do the new-style IO, courtesy of squid (like most of this |
129 |
* new IO code). This routine handles the stuff we've hidden in |
130 |
* comm_setselect and fd_table[] and calls callbacks for IO ready |
131 |
* events. |
132 |
*/ |
133 |
void |
134 |
comm_select(void) |
135 |
{ |
136 |
int num, i; |
137 |
static struct kevent ke[KE_LENGTH]; |
138 |
struct timespec poll_time; |
139 |
void (*hdl)(fde_t *, void *); |
140 |
|
141 |
/* |
142 |
* remember we are doing NANOseconds here, not micro/milli. God knows |
143 |
* why jlemon used a timespec, but hey, he wrote the interface, not I |
144 |
* -- Adrian |
145 |
*/ |
146 |
poll_time.tv_sec = 0; |
147 |
poll_time.tv_nsec = SELECT_DELAY * 1000000; |
148 |
num = kevent(kqueue_fd, kq_fdlist, kqoff, ke, KE_LENGTH, &poll_time); |
149 |
kqoff = 0; |
150 |
|
151 |
set_time(); |
152 |
|
153 |
if (num < 0) |
154 |
{ |
155 |
const struct timespec req = { .tv_sec = 0, .tv_nsec = 50000000 }; |
156 |
nanosleep(&req, NULL); /* Avoid 99% CPU in comm_select */ |
157 |
return; |
158 |
} |
159 |
|
160 |
for (i = 0; i < num; i++) |
161 |
{ |
162 |
fde_t *F = ke[i].udata; |
163 |
|
164 |
if (F->flags.open == 0 || (ke[i].flags & EV_ERROR)) |
165 |
continue; |
166 |
|
167 |
if (ke[i].filter == EVFILT_READ) |
168 |
{ |
169 |
if ((hdl = F->read_handler) != NULL) |
170 |
{ |
171 |
F->read_handler = NULL; |
172 |
hdl(F, F->read_data); |
173 |
|
174 |
if (F->flags.open == 0) |
175 |
continue; |
176 |
} |
177 |
} |
178 |
|
179 |
if (ke[i].filter == EVFILT_WRITE) |
180 |
{ |
181 |
if ((hdl = F->write_handler) != NULL) |
182 |
{ |
183 |
F->write_handler = NULL; |
184 |
hdl(F, F->write_data); |
185 |
|
186 |
if (F->flags.open == 0) |
187 |
continue; |
188 |
} |
189 |
} |
190 |
|
191 |
comm_setselect(F, 0, NULL, NULL, 0); |
192 |
} |
193 |
} |
194 |
#endif |