blob: a894f66870975f5bb21b1387eebc3d2c434799cb [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
Willy Tarreau609aad92018-11-22 08:31:09 +010029#include <proto/activity.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020030#include <proto/fd.h>
Willy Tarreau10146c92015-04-13 20:44:19 +020031
Willy Tarreau1e63130a2007-04-09 12:03:06 +020032
33/* private data */
Willy Tarreau7a2364d2018-01-19 08:56:14 +010034static int kqueue_fd[MAX_THREADS]; // per-thread kqueue_fd
Christopher Fauletd4604ad2017-05-29 10:40:41 +020035static THREAD_LOCAL struct kevent *kev = NULL;
Olivier Houchardebaba752018-04-16 13:24:48 +020036static struct kevent *kev_out = NULL; // Trash buffer for kevent() to write the eventlist in
Willy Tarreau1e63130a2007-04-09 12:03:06 +020037
PiBa-NLc55b88e2018-05-10 01:01:28 +020038static int _update_fd(int fd, int start)
Olivier Houchard6b96f722018-04-25 16:58:25 +020039{
40 int en;
PiBa-NLc55b88e2018-05-10 01:01:28 +020041 int changes = start;
Olivier Houchard6b96f722018-04-25 16:58:25 +020042
43 en = fdtab[fd].state;
44
45 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020046 if (!(polled_mask[fd] & tid_bit)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020047 /* fd was not watched, it's still not */
Olivier Houchard5ab33942018-09-11 14:44:51 +020048 return changes;
Olivier Houchard6b96f722018-04-25 16:58:25 +020049 }
50 /* fd totally removed from poll list */
51 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
52 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020053 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020054 }
55 else {
56 /* OK fd has to be monitored, it was either added or changed */
57
58 if (en & FD_EV_POLLED_R)
59 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020060 else if (polled_mask[fd] & tid_bit)
Olivier Houchard6b96f722018-04-25 16:58:25 +020061 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
62
63 if (en & FD_EV_POLLED_W)
64 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020065 else if (polled_mask[fd] & tid_bit)
Olivier Houchard6b96f722018-04-25 16:58:25 +020066 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
67
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020068 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020069 }
70 return changes;
71}
72
Willy Tarreau1e63130a2007-04-09 12:03:06 +020073/*
Willy Tarreau4a226272012-11-11 20:49:49 +010074 * kqueue() poller
Willy Tarreau1e63130a2007-04-09 12:03:06 +020075 */
Willy Tarreau4a226272012-11-11 20:49:49 +010076REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020077{
Willy Tarreau4a226272012-11-11 20:49:49 +010078 int status;
79 int count, fd, delta_ms;
80 struct timespec timeout;
Olivier Houchard6b96f722018-04-25 16:58:25 +020081 int updt_idx;
Willy Tarreau4a226272012-11-11 20:49:49 +010082 int changes = 0;
Olivier Houchard6b96f722018-04-25 16:58:25 +020083 int old_fd;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020084
Olivier Houchardebaba752018-04-16 13:24:48 +020085 timeout.tv_sec = 0;
86 timeout.tv_nsec = 0;
Willy Tarreau4a226272012-11-11 20:49:49 +010087 /* first, scan the update list to find changes */
88 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
89 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010090
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +020091 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010092 if (!fdtab[fd].owner) {
93 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010094 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010095 }
PiBa-NLc55b88e2018-05-10 01:01:28 +020096 changes = _update_fd(fd, changes);
Olivier Houchard6b96f722018-04-25 16:58:25 +020097 }
98 /* Scan the global update list */
99 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
100 if (fd == -2) {
101 fd = old_fd;
102 continue;
Willy Tarreau4a226272012-11-11 20:49:49 +0100103 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200104 else if (fd <= -3)
105 fd = -fd -4;
106 if (fd == -1)
107 break;
108 if (fdtab[fd].update_mask & tid_bit)
109 done_update_polling(fd);
110 else
111 continue;
112 if (!fdtab[fd].owner)
113 continue;
PiBa-NLc55b88e2018-05-10 01:01:28 +0200114 changes = _update_fd(fd, changes);
Willy Tarreau4a226272012-11-11 20:49:49 +0100115 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200116
Willy Tarreau60b639c2018-08-02 10:16:17 +0200117 thread_harmless_now();
118
Olivier Houchardebaba752018-04-16 13:24:48 +0200119 if (changes) {
120#ifdef EV_RECEIPT
121 kev[0].flags |= EV_RECEIPT;
122#else
123 /* If EV_RECEIPT isn't defined, just add an invalid entry,
124 * so that we get an error and kevent() stops before scanning
125 * the kqueue.
126 */
127 EV_SET(&kev[changes++], -1, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
128#endif
129 kevent(kqueue_fd[tid], kev, changes, kev_out, changes, &timeout);
130 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100131 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200132
Willy Tarreauf37ba942018-10-17 11:25:54 +0200133 /* now let's wait for events */
134 delta_ms = compute_poll_timeout(exp);
135 timeout.tv_sec = (delta_ms / 1000);
136 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100137 fd = global.tune.maxpollevents;
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200138 tv_entering_poll();
Willy Tarreau609aad92018-11-22 08:31:09 +0100139 activity_count_runtime();
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100140 status = kevent(kqueue_fd[tid], // int kq
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200141 NULL, // const struct kevent *changelist
142 0, // int nchanges
143 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200144 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200145 &timeout); // const struct timespec *timeout
Willy Tarreau48f8bc12018-11-22 18:57:37 +0100146 tv_update_date(delta_ms, status);
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200147 tv_leaving_poll(delta_ms, status);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200148
Willy Tarreau60b639c2018-08-02 10:16:17 +0200149 thread_harmless_end();
150
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200151 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200152 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200153 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200154
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100155 if (!fdtab[fd].owner) {
156 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200157 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100158 }
159
160 if (!(fdtab[fd].thread_mask & tid_bit)) {
161 activity[tid].poll_skip++;
162 continue;
163 }
Willy Tarreau076be252012-07-06 16:02:29 +0200164
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200165 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100166 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200167 n |= FD_POLL_IN;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100168 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200169 n |= FD_POLL_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100170 }
171 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200172 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100173 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200174 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200175 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100176
Christopher Fauletab62f512017-08-30 10:34:36 +0200177 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200178 }
179}
180
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200181
182static int init_kqueue_per_thread()
183{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100184 int fd;
185
Olivier Houchardebaba752018-04-16 13:24:48 +0200186 /* we can have up to two events per fd, so allocate enough to store
187 * 2*fd event, and an extra one, in case EV_RECEIPT isn't defined,
188 * so that we can add an invalid entry and get an error, to avoid
189 * scanning the kqueue uselessly.
190 */
191 kev = calloc(1, sizeof(struct kevent) * (2 * global.maxsock + 1));
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200192 if (kev == NULL)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100193 goto fail_alloc;
194
Christopher Faulet727c89b2018-01-25 16:40:35 +0100195 if (MAX_THREADS > 1 && tid) {
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100196 kqueue_fd[tid] = kqueue();
197 if (kqueue_fd[tid] < 0)
198 goto fail_fd;
199 }
200
201 /* we may have to unregister some events initially registered on the
202 * original fd when it was alone, and/or to register events on the new
203 * fd for this thread. Let's just mark them as updated, the poller will
204 * do the rest.
205 */
Willy Tarreauce036bc2018-01-29 14:58:02 +0100206 for (fd = 0; fd < global.maxsock; fd++)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100207 updt_fd_polling(fd);
208
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200209 return 1;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100210 fail_fd:
211 free(kev);
212 fail_alloc:
213 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200214}
215
216static void deinit_kqueue_per_thread()
217{
Christopher Faulet727c89b2018-01-25 16:40:35 +0100218 if (MAX_THREADS > 1 && tid)
Christopher Faulet13b007d2018-01-25 16:32:18 +0100219 close(kqueue_fd[tid]);
220
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200221 free(kev);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200222 kev = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200223}
224
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200225/*
226 * Initialization of the kqueue() poller.
227 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
228 * disables the poller by setting its pref to 0.
229 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200230REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200231{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200232 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200233
Olivier Houchardebaba752018-04-16 13:24:48 +0200234 /* we can have up to two events per fd, so allocate enough to store
235 * 2*fd event, and an extra one, in case EV_RECEIPT isn't defined,
236 * so that we can add an invalid entry and get an error, to avoid
237 * scanning the kqueue uselessly.
238 */
239 kev_out = calloc(1, sizeof(struct kevent) * (2 * global.maxsock + 1));
240 if (!kev_out)
241 goto fail_alloc;
242
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100243 kqueue_fd[tid] = kqueue();
244 if (kqueue_fd[tid] < 0)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200245 goto fail_fd;
246
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200247 hap_register_per_thread_init(init_kqueue_per_thread);
248 hap_register_per_thread_deinit(deinit_kqueue_per_thread);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200249 return 1;
250
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200251 fail_fd:
Olivier Houchardebaba752018-04-16 13:24:48 +0200252 free(kev_out);
253 kev_out = NULL;
254fail_alloc:
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200255 p->pref = 0;
256 return 0;
257}
258
259/*
260 * Termination of the kqueue() poller.
261 * Memory is released and the poller is marked as unselectable.
262 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200263REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200264{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100265 if (kqueue_fd[tid] >= 0) {
266 close(kqueue_fd[tid]);
267 kqueue_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200268 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200269
270 p->private = NULL;
271 p->pref = 0;
Olivier Houchardebaba752018-04-16 13:24:48 +0200272 if (kev_out) {
273 free(kev_out);
274 kev_out = NULL;
275 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200276}
277
278/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200279 * Check that the poller works.
280 * Returns 1 if OK, otherwise 0.
281 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200282REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200283{
284 int fd;
285
286 fd = kqueue();
287 if (fd < 0)
288 return 0;
289 close(fd);
290 return 1;
291}
292
293/*
294 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
295 * otherwise 0. Note that some pollers need to be reopened after a fork()
296 * (such as kqueue), and some others may fail to do so in a chroot.
297 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200298REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200299{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100300 kqueue_fd[tid] = kqueue();
301 if (kqueue_fd[tid] < 0)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200302 return 0;
303 return 1;
304}
305
306/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200307 * It is a constructor, which means that it will automatically be called before
308 * main(). This is GCC-specific but it works at least since 2.95.
309 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200310 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200311__attribute__((constructor))
312static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200313{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200314 struct poller *p;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100315 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200316
317 if (nbpollers >= MAX_POLLERS)
318 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200319
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100320 for (i = 0; i < MAX_THREADS; i++)
321 kqueue_fd[i] = -1;
322
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200323 p = &pollers[nbpollers++];
324
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200325 p->name = "kqueue";
326 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100327 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200328 p->private = NULL;
329
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100330 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200331 p->test = _do_test;
332 p->init = _do_init;
333 p->term = _do_term;
334 p->poll = _do_poll;
335 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200336}
337
338
339/*
340 * Local variables:
341 * c-indent-level: 8
342 * c-basic-offset: 8
343 * End:
344 */