blob: b43533ab5c09bdcd5081589477ae779c2090805b [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
63REGPRM2 static int __fd_set(const int fd, int dir)
64{
65 /* if the value was set, do nothing */
66 if (FD_ISSET(fd, fd_evts[dir]))
67 return 0;
68
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);
72 return 1;
73}
74
75REGPRM2 static int __fd_clr(const int fd, int dir)
76{
Willy Tarreau1e63130a2007-04-09 12:03:06 +020077 if (!kqev_del(kev, fd, dir))
78 return 0;
79 kevent(kqueue_fd, kev, 1, NULL, 0, NULL);
80 return 1;
81}
82
83REGPRM1 static void __fd_rem(int fd)
84{
85 int changes = 0;
86
Willy Tarreau1e63130a2007-04-09 12:03:06 +020087 changes += kqev_del(&kev[changes], fd, DIR_RD);
88 changes += kqev_del(&kev[changes], fd, DIR_WR);
89
90 if (changes)
91 kevent(kqueue_fd, kev, changes, NULL, 0, NULL);
92}
93
Willy Tarreau87552852007-04-09 17:16:07 +020094REGPRM1 static void __fd_clo(int fd)
95{
96 FD_CLR(fd, fd_evts[DIR_RD]);
97 FD_CLR(fd, fd_evts[DIR_WR]);
98}
99
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200100/*
101 * kqueue() poller
102 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200103REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200104{
105 int status;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200106 int count, fd, delta_ms;
107 struct timespec timeout;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200108
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200109 delta_ms = 0;
110 timeout.tv_sec = 0;
111 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +0200112
Willy Tarreau332740d2009-05-10 09:57:21 +0200113 if (!run_queue && !signal_queue_len) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200114 if (!exp) {
115 delta_ms = MAX_DELAY_MS;
116 timeout.tv_sec = (MAX_DELAY_MS / 1000);
117 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200118 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200119 else if (!tick_is_expired(exp, now_ms)) {
120 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
121 if (delta_ms > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200122 delta_ms = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200123 timeout.tv_sec = (delta_ms / 1000);
124 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200125 }
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200126 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200127
Willy Tarreau1db37712007-06-03 17:16:49 +0200128 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200129 gettimeofday(&before_poll, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200130 status = kevent(kqueue_fd, // int kq
131 NULL, // const struct kevent *changelist
132 0, // int nchanges
133 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200134 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200135 &timeout); // const struct timespec *timeout
136 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200137 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200138
139 for (count = 0; count < status; count++) {
140 fd = kev[count].ident;
141 if (kev[count].filter == EVFILT_READ) {
142 if (FD_ISSET(fd, fd_evts[DIR_RD])) {
143 if (fdtab[fd].state == FD_STCLOSE)
144 continue;
145 fdtab[fd].cb[DIR_RD].f(fd);
146 }
147 } else if (kev[count].filter == EVFILT_WRITE) {
148 if (FD_ISSET(fd, fd_evts[DIR_WR])) {
149 if (fdtab[fd].state == FD_STCLOSE)
150 continue;
151 fdtab[fd].cb[DIR_WR].f(fd);
152 }
153 }
154 }
155}
156
157/*
158 * Initialization of the kqueue() poller.
159 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
160 * disables the poller by setting its pref to 0.
161 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200162REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200163{
164 __label__ fail_wevt, fail_revt, fail_fd;
165 int fd_set_bytes;
166
167 p->private = NULL;
168 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
169
170 kqueue_fd = kqueue();
171 if (kqueue_fd < 0)
172 goto fail_fd;
173
Willy Tarreau1db37712007-06-03 17:16:49 +0200174 kev = (struct kevent*)calloc(1, sizeof(struct kevent) * global.tune.maxpollevents);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200175
176 if (kev == NULL)
177 goto fail_kev;
178
179 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
180 goto fail_revt;
181
182 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
183 goto fail_wevt;
184
185 return 1;
186
187 fail_wevt:
188 free(fd_evts[DIR_RD]);
189 fail_revt:
190 free(kev);
191 fail_kev:
192 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200193 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200194 fail_fd:
195 p->pref = 0;
196 return 0;
197}
198
199/*
200 * Termination of the kqueue() poller.
201 * Memory is released and the poller is marked as unselectable.
202 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200203REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200204{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200205 free(fd_evts[DIR_WR]);
206 free(fd_evts[DIR_RD]);
207 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200208
209 if (kqueue_fd >= 0) {
210 close(kqueue_fd);
211 kqueue_fd = -1;
212 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200213
214 p->private = NULL;
215 p->pref = 0;
216}
217
218/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200219 * Check that the poller works.
220 * Returns 1 if OK, otherwise 0.
221 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200222REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200223{
224 int fd;
225
226 fd = kqueue();
227 if (fd < 0)
228 return 0;
229 close(fd);
230 return 1;
231}
232
233/*
234 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
235 * otherwise 0. Note that some pollers need to be reopened after a fork()
236 * (such as kqueue), and some others may fail to do so in a chroot.
237 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200238REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200239{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200240 if (kqueue_fd >= 0)
241 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200242 kqueue_fd = kqueue();
243 if (kqueue_fd < 0)
244 return 0;
245 return 1;
246}
247
248/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200249 * It is a constructor, which means that it will automatically be called before
250 * main(). This is GCC-specific but it works at least since 2.95.
251 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200252 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200253__attribute__((constructor))
254static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200255{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256 struct poller *p;
257
258 if (nbpollers >= MAX_POLLERS)
259 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200260
261 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200262 p = &pollers[nbpollers++];
263
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200264 p->name = "kqueue";
265 p->pref = 300;
266 p->private = NULL;
267
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200268 p->test = _do_test;
269 p->init = _do_init;
270 p->term = _do_term;
271 p->poll = _do_poll;
272 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200273
Willy Tarreau63455a92007-04-09 15:34:49 +0200274 p->is_set = __fd_is_set;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200275 p->cond_s = p->set = __fd_set;
276 p->cond_c = p->clr = __fd_clr;
Willy Tarreau40562cb2007-04-09 20:38:57 +0200277 p->rem = __fd_rem;
278 p->clo = __fd_clo;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200279}
280
281
282/*
283 * Local variables:
284 * c-indent-level: 8
285 * c-basic-offset: 8
286 * End:
287 */