blob: e771c33a3162d63c062ee69ecac36ab67e3c0475 [file] [log] [blame]
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001/*
2 * FD polling functions for FreeBSD kqueue()
3 *
Willy Tarreaub7f694f2008-06-22 17:18:02 +02004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Willy Tarreau1e63130a2007-04-09 12:03:06 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Note: not knowing much about kqueue, I had to rely on OpenBSD's detailed man
12 * page and to check how it was implemented in lighttpd to understand it better.
13 * But it is possible that I got things wrong.
14 *
15 */
16
Willy Tarreau1e63130a2007-04-09 12:03:06 +020017#include <unistd.h>
18#include <sys/time.h>
19#include <sys/types.h>
20
21#include <sys/event.h>
22#include <sys/time.h>
23
24#include <common/compat.h>
25#include <common/config.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020026#include <common/ticks.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020027#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020028#include <common/tools.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020029
Willy Tarreau1e63130a2007-04-09 12:03:06 +020030#include <types/global.h>
31
32#include <proto/fd.h>
Willy Tarreau332740d2009-05-10 09:57:21 +020033#include <proto/signal.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020034#include <proto/task.h>
35
36/* private data */
37static fd_set *fd_evts[2];
38static int kqueue_fd;
39static struct kevent *kev = NULL;
40
41/* speeds up conversion of DIR_RD/DIR_WR to EVFILT* */
42static const int dir2filt[2] = { EVFILT_READ, EVFILT_WRITE };
43
44/* completes a change list for deletion */
45REGPRM3 static int kqev_del(struct kevent *kev, const int fd, const int dir)
46{
47 if (FD_ISSET(fd, fd_evts[dir])) {
48 FD_CLR(fd, fd_evts[dir]);
49 EV_SET(kev, fd, dir2filt[dir], EV_DELETE, 0, 0, NULL);
50 return 1;
51 }
52 return 0;
53}
54
55/*
56 * Returns non-zero if direction <dir> is already set for <fd>.
57 */
Willy Tarreau63455a92007-04-09 15:34:49 +020058REGPRM2 static int __fd_is_set(const int fd, int dir)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020059{
60 return FD_ISSET(fd, fd_evts[dir]);
61}
62
Willy Tarreau3788e4c2012-07-30 14:29:35 +020063REGPRM2 static void __fd_set(const int fd, int dir)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020064{
65 /* if the value was set, do nothing */
66 if (FD_ISSET(fd, fd_evts[dir]))
Willy Tarreau3788e4c2012-07-30 14:29:35 +020067 return;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020068
69 FD_SET(fd, fd_evts[dir]);
Willy Tarreau87552852007-04-09 17:16:07 +020070 EV_SET(kev, fd, dir2filt[dir], EV_ADD, 0, 0, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +020071 kevent(kqueue_fd, kev, 1, NULL, 0, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +020072}
73
Willy Tarreau3788e4c2012-07-30 14:29:35 +020074REGPRM2 static void __fd_clr(const int fd, int dir)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020075{
Willy Tarreau1e63130a2007-04-09 12:03:06 +020076 if (!kqev_del(kev, fd, dir))
Willy Tarreau3788e4c2012-07-30 14:29:35 +020077 return;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020078 kevent(kqueue_fd, kev, 1, NULL, 0, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +020079}
80
81REGPRM1 static void __fd_rem(int fd)
82{
83 int changes = 0;
84
Willy Tarreau1e63130a2007-04-09 12:03:06 +020085 changes += kqev_del(&kev[changes], fd, DIR_RD);
86 changes += kqev_del(&kev[changes], fd, DIR_WR);
87
88 if (changes)
89 kevent(kqueue_fd, kev, changes, NULL, 0, NULL);
90}
91
Willy Tarreau87552852007-04-09 17:16:07 +020092REGPRM1 static void __fd_clo(int fd)
93{
94 FD_CLR(fd, fd_evts[DIR_RD]);
95 FD_CLR(fd, fd_evts[DIR_WR]);
96}
97
Willy Tarreau1e63130a2007-04-09 12:03:06 +020098/*
99 * kqueue() poller
100 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200101REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200102{
103 int status;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200104 int count, fd, delta_ms;
105 struct timespec timeout;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200106
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200107 delta_ms = 0;
108 timeout.tv_sec = 0;
109 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +0200110
Willy Tarreau332740d2009-05-10 09:57:21 +0200111 if (!run_queue && !signal_queue_len) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200112 if (!exp) {
113 delta_ms = MAX_DELAY_MS;
114 timeout.tv_sec = (MAX_DELAY_MS / 1000);
115 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200116 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200117 else if (!tick_is_expired(exp, now_ms)) {
118 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
119 if (delta_ms > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200120 delta_ms = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200121 timeout.tv_sec = (delta_ms / 1000);
122 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200123 }
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200124 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200125
Willy Tarreau1db37712007-06-03 17:16:49 +0200126 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200127 gettimeofday(&before_poll, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200128 status = kevent(kqueue_fd, // int kq
129 NULL, // const struct kevent *changelist
130 0, // int nchanges
131 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200132 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200133 &timeout); // const struct timespec *timeout
134 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200135 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200136
137 for (count = 0; count < status; count++) {
138 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200139
Willy Tarreau076be252012-07-06 16:02:29 +0200140 if (!fdtab[fd].owner)
141 continue;
142
Willy Tarreau9845e752012-07-06 11:44:28 +0200143 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200144 if (kev[count].filter == EVFILT_READ) {
145 if (FD_ISSET(fd, fd_evts[DIR_RD])) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200146 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200147 }
148 } else if (kev[count].filter == EVFILT_WRITE) {
149 if (FD_ISSET(fd, fd_evts[DIR_WR])) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200150 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200151 }
152 }
Willy Tarreau076be252012-07-06 16:02:29 +0200153 if (fdtab[fd].iocb && fdtab[fd].ev)
Willy Tarreau9845e752012-07-06 11:44:28 +0200154 fdtab[fd].iocb(fd);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200155 }
156}
157
158/*
159 * Initialization of the kqueue() poller.
160 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
161 * disables the poller by setting its pref to 0.
162 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200163REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200164{
165 __label__ fail_wevt, fail_revt, fail_fd;
166 int fd_set_bytes;
167
168 p->private = NULL;
169 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
170
171 kqueue_fd = kqueue();
172 if (kqueue_fd < 0)
173 goto fail_fd;
174
Willy Tarreau1db37712007-06-03 17:16:49 +0200175 kev = (struct kevent*)calloc(1, sizeof(struct kevent) * global.tune.maxpollevents);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200176
177 if (kev == NULL)
178 goto fail_kev;
179
180 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
181 goto fail_revt;
182
183 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
184 goto fail_wevt;
185
186 return 1;
187
188 fail_wevt:
189 free(fd_evts[DIR_RD]);
190 fail_revt:
191 free(kev);
192 fail_kev:
193 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200194 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200195 fail_fd:
196 p->pref = 0;
197 return 0;
198}
199
200/*
201 * Termination of the kqueue() poller.
202 * Memory is released and the poller is marked as unselectable.
203 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200204REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200205{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200206 free(fd_evts[DIR_WR]);
207 free(fd_evts[DIR_RD]);
208 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200209
210 if (kqueue_fd >= 0) {
211 close(kqueue_fd);
212 kqueue_fd = -1;
213 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200214
215 p->private = NULL;
216 p->pref = 0;
217}
218
219/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200220 * Check that the poller works.
221 * Returns 1 if OK, otherwise 0.
222 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200223REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200224{
225 int fd;
226
227 fd = kqueue();
228 if (fd < 0)
229 return 0;
230 close(fd);
231 return 1;
232}
233
234/*
235 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
236 * otherwise 0. Note that some pollers need to be reopened after a fork()
237 * (such as kqueue), and some others may fail to do so in a chroot.
238 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200239REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200240{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200241 if (kqueue_fd >= 0)
242 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200243 kqueue_fd = kqueue();
244 if (kqueue_fd < 0)
245 return 0;
246 return 1;
247}
248
249/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200250 * It is a constructor, which means that it will automatically be called before
251 * main(). This is GCC-specific but it works at least since 2.95.
252 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200253 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200254__attribute__((constructor))
255static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200256{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200257 struct poller *p;
258
259 if (nbpollers >= MAX_POLLERS)
260 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200261
262 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200263 p = &pollers[nbpollers++];
264
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200265 p->name = "kqueue";
266 p->pref = 300;
267 p->private = NULL;
268
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200269 p->test = _do_test;
270 p->init = _do_init;
271 p->term = _do_term;
272 p->poll = _do_poll;
273 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200274
Willy Tarreau63455a92007-04-09 15:34:49 +0200275 p->is_set = __fd_is_set;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200276 p->set = __fd_set;
Willy Tarreaubabd05a2012-08-09 12:14:03 +0200277 p->wai = __fd_set;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200278 p->clr = __fd_clr;
Willy Tarreau40562cb2007-04-09 20:38:57 +0200279 p->rem = __fd_rem;
280 p->clo = __fd_clo;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200281}
282
283
284/*
285 * Local variables:
286 * c-indent-level: 8
287 * c-basic-offset: 8
288 * End:
289 */