blob: c1c3e1164582f1fc6017e65b50589b8a92ce227b [file] [log] [blame]
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001/*
2 * FD polling functions for FreeBSD kqueue()
3 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 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 *
Willy Tarreau1e63130a2007-04-09 12:03:06 +020011 */
12
Willy Tarreau1e63130a2007-04-09 12:03:06 +020013#include <unistd.h>
14#include <sys/time.h>
15#include <sys/types.h>
16
17#include <sys/event.h>
18#include <sys/time.h>
19
20#include <common/compat.h>
21#include <common/config.h>
Willy Tarreau60b639c2018-08-02 10:16:17 +020022#include <common/hathreads.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020023#include <common/ticks.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020024#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020025#include <common/tools.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020026
Willy Tarreau1e63130a2007-04-09 12:03:06 +020027#include <types/global.h>
28
29#include <proto/fd.h>
Willy Tarreau10146c92015-04-13 20:44:19 +020030
Willy Tarreau1e63130a2007-04-09 12:03:06 +020031
32/* private data */
Willy Tarreau7a2364d2018-01-19 08:56:14 +010033static int kqueue_fd[MAX_THREADS]; // per-thread kqueue_fd
Christopher Fauletd4604ad2017-05-29 10:40:41 +020034static THREAD_LOCAL struct kevent *kev = NULL;
Olivier Houchardebaba752018-04-16 13:24:48 +020035static struct kevent *kev_out = NULL; // Trash buffer for kevent() to write the eventlist in
Willy Tarreau1e63130a2007-04-09 12:03:06 +020036
PiBa-NLc55b88e2018-05-10 01:01:28 +020037static int _update_fd(int fd, int start)
Olivier Houchard6b96f722018-04-25 16:58:25 +020038{
39 int en;
PiBa-NLc55b88e2018-05-10 01:01:28 +020040 int changes = start;
Olivier Houchard6b96f722018-04-25 16:58:25 +020041
42 en = fdtab[fd].state;
43
44 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020045 if (!(polled_mask[fd] & tid_bit)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020046 /* fd was not watched, it's still not */
Olivier Houchard5ab33942018-09-11 14:44:51 +020047 return changes;
Olivier Houchard6b96f722018-04-25 16:58:25 +020048 }
49 /* fd totally removed from poll list */
50 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
51 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020052 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020053 }
54 else {
55 /* OK fd has to be monitored, it was either added or changed */
56
57 if (en & FD_EV_POLLED_R)
58 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020059 else if (polled_mask[fd] & tid_bit)
Olivier Houchard6b96f722018-04-25 16:58:25 +020060 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
61
62 if (en & FD_EV_POLLED_W)
63 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020064 else if (polled_mask[fd] & tid_bit)
Olivier Houchard6b96f722018-04-25 16:58:25 +020065 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
66
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020067 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020068 }
69 return changes;
70}
71
Willy Tarreau1e63130a2007-04-09 12:03:06 +020072/*
Willy Tarreau4a226272012-11-11 20:49:49 +010073 * kqueue() poller
Willy Tarreau1e63130a2007-04-09 12:03:06 +020074 */
Willy Tarreau4a226272012-11-11 20:49:49 +010075REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020076{
Willy Tarreau4a226272012-11-11 20:49:49 +010077 int status;
78 int count, fd, delta_ms;
79 struct timespec timeout;
Olivier Houchard6b96f722018-04-25 16:58:25 +020080 int updt_idx;
Willy Tarreau4a226272012-11-11 20:49:49 +010081 int changes = 0;
Olivier Houchard6b96f722018-04-25 16:58:25 +020082 int old_fd;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020083
Olivier Houchardebaba752018-04-16 13:24:48 +020084 timeout.tv_sec = 0;
85 timeout.tv_nsec = 0;
Willy Tarreau4a226272012-11-11 20:49:49 +010086 /* first, scan the update list to find changes */
87 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
88 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010089
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +020090 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010091 if (!fdtab[fd].owner) {
92 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010093 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010094 }
PiBa-NLc55b88e2018-05-10 01:01:28 +020095 changes = _update_fd(fd, changes);
Olivier Houchard6b96f722018-04-25 16:58:25 +020096 }
97 /* Scan the global update list */
98 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
99 if (fd == -2) {
100 fd = old_fd;
101 continue;
Willy Tarreau4a226272012-11-11 20:49:49 +0100102 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200103 else if (fd <= -3)
104 fd = -fd -4;
105 if (fd == -1)
106 break;
107 if (fdtab[fd].update_mask & tid_bit)
108 done_update_polling(fd);
109 else
110 continue;
111 if (!fdtab[fd].owner)
112 continue;
PiBa-NLc55b88e2018-05-10 01:01:28 +0200113 changes = _update_fd(fd, changes);
Willy Tarreau4a226272012-11-11 20:49:49 +0100114 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200115
Willy Tarreau60b639c2018-08-02 10:16:17 +0200116 thread_harmless_now();
117
Olivier Houchardebaba752018-04-16 13:24:48 +0200118 if (changes) {
119#ifdef EV_RECEIPT
120 kev[0].flags |= EV_RECEIPT;
121#else
122 /* If EV_RECEIPT isn't defined, just add an invalid entry,
123 * so that we get an error and kevent() stops before scanning
124 * the kqueue.
125 */
126 EV_SET(&kev[changes++], -1, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
127#endif
128 kevent(kqueue_fd[tid], kev, changes, kev_out, changes, &timeout);
129 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100130 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200131
Willy Tarreauf37ba942018-10-17 11:25:54 +0200132 /* now let's wait for events */
133 delta_ms = compute_poll_timeout(exp);
134 timeout.tv_sec = (delta_ms / 1000);
135 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100136 fd = global.tune.maxpollevents;
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200137 tv_entering_poll();
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100138 status = kevent(kqueue_fd[tid], // int kq
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200139 NULL, // const struct kevent *changelist
140 0, // int nchanges
141 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200142 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200143 &timeout); // const struct timespec *timeout
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200144 tv_leaving_poll(delta_ms, status);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200145
Willy Tarreau60b639c2018-08-02 10:16:17 +0200146 thread_harmless_end();
147
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200148 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200149 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200150 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200151
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100152 if (!fdtab[fd].owner) {
153 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200154 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100155 }
156
157 if (!(fdtab[fd].thread_mask & tid_bit)) {
158 activity[tid].poll_skip++;
159 continue;
160 }
Willy Tarreau076be252012-07-06 16:02:29 +0200161
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200162 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100163 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200164 n |= FD_POLL_IN;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100165 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200166 n |= FD_POLL_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100167 }
168 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200169 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100170 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200171 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200172 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100173
Christopher Fauletab62f512017-08-30 10:34:36 +0200174 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200175 }
176}
177
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200178
179static int init_kqueue_per_thread()
180{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100181 int fd;
182
Olivier Houchardebaba752018-04-16 13:24:48 +0200183 /* we can have up to two events per fd, so allocate enough to store
184 * 2*fd event, and an extra one, in case EV_RECEIPT isn't defined,
185 * so that we can add an invalid entry and get an error, to avoid
186 * scanning the kqueue uselessly.
187 */
188 kev = calloc(1, sizeof(struct kevent) * (2 * global.maxsock + 1));
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200189 if (kev == NULL)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100190 goto fail_alloc;
191
Christopher Faulet727c89b2018-01-25 16:40:35 +0100192 if (MAX_THREADS > 1 && tid) {
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100193 kqueue_fd[tid] = kqueue();
194 if (kqueue_fd[tid] < 0)
195 goto fail_fd;
196 }
197
198 /* we may have to unregister some events initially registered on the
199 * original fd when it was alone, and/or to register events on the new
200 * fd for this thread. Let's just mark them as updated, the poller will
201 * do the rest.
202 */
Willy Tarreauce036bc2018-01-29 14:58:02 +0100203 for (fd = 0; fd < global.maxsock; fd++)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100204 updt_fd_polling(fd);
205
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200206 return 1;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100207 fail_fd:
208 free(kev);
209 fail_alloc:
210 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200211}
212
213static void deinit_kqueue_per_thread()
214{
Christopher Faulet727c89b2018-01-25 16:40:35 +0100215 if (MAX_THREADS > 1 && tid)
Christopher Faulet13b007d2018-01-25 16:32:18 +0100216 close(kqueue_fd[tid]);
217
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200218 free(kev);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200219 kev = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200220}
221
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200222/*
223 * Initialization of the kqueue() poller.
224 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
225 * disables the poller by setting its pref to 0.
226 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200227REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200228{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200229 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200230
Olivier Houchardebaba752018-04-16 13:24:48 +0200231 /* we can have up to two events per fd, so allocate enough to store
232 * 2*fd event, and an extra one, in case EV_RECEIPT isn't defined,
233 * so that we can add an invalid entry and get an error, to avoid
234 * scanning the kqueue uselessly.
235 */
236 kev_out = calloc(1, sizeof(struct kevent) * (2 * global.maxsock + 1));
237 if (!kev_out)
238 goto fail_alloc;
239
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100240 kqueue_fd[tid] = kqueue();
241 if (kqueue_fd[tid] < 0)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200242 goto fail_fd;
243
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200244 hap_register_per_thread_init(init_kqueue_per_thread);
245 hap_register_per_thread_deinit(deinit_kqueue_per_thread);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200246 return 1;
247
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200248 fail_fd:
Olivier Houchardebaba752018-04-16 13:24:48 +0200249 free(kev_out);
250 kev_out = NULL;
251fail_alloc:
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200252 p->pref = 0;
253 return 0;
254}
255
256/*
257 * Termination of the kqueue() poller.
258 * Memory is released and the poller is marked as unselectable.
259 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200260REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200261{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100262 if (kqueue_fd[tid] >= 0) {
263 close(kqueue_fd[tid]);
264 kqueue_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200265 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200266
267 p->private = NULL;
268 p->pref = 0;
Olivier Houchardebaba752018-04-16 13:24:48 +0200269 if (kev_out) {
270 free(kev_out);
271 kev_out = NULL;
272 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200273}
274
275/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200276 * Check that the poller works.
277 * Returns 1 if OK, otherwise 0.
278 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200279REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200280{
281 int fd;
282
283 fd = kqueue();
284 if (fd < 0)
285 return 0;
286 close(fd);
287 return 1;
288}
289
290/*
291 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
292 * otherwise 0. Note that some pollers need to be reopened after a fork()
293 * (such as kqueue), and some others may fail to do so in a chroot.
294 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200295REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200296{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100297 kqueue_fd[tid] = kqueue();
298 if (kqueue_fd[tid] < 0)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200299 return 0;
300 return 1;
301}
302
303/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200304 * It is a constructor, which means that it will automatically be called before
305 * main(). This is GCC-specific but it works at least since 2.95.
306 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200307 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200308__attribute__((constructor))
309static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200310{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200311 struct poller *p;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100312 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200313
314 if (nbpollers >= MAX_POLLERS)
315 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200316
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100317 for (i = 0; i < MAX_THREADS; i++)
318 kqueue_fd[i] = -1;
319
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200320 p = &pollers[nbpollers++];
321
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200322 p->name = "kqueue";
323 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100324 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200325 p->private = NULL;
326
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100327 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200328 p->test = _do_test;
329 p->init = _do_init;
330 p->term = _do_term;
331 p->poll = _do_poll;
332 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200333}
334
335
336/*
337 * Local variables:
338 * c-indent-level: 8
339 * c-basic-offset: 8
340 * End:
341 */