blob: fcd04fda90a9af451de6028fe5ba8d652daca066 [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 Tarreau0c303ee2008-07-07 00:09:58 +020022#include <common/ticks.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020023#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020024#include <common/tools.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020025
Willy Tarreau1e63130a2007-04-09 12:03:06 +020026#include <types/global.h>
27
28#include <proto/fd.h>
Willy Tarreau10146c92015-04-13 20:44:19 +020029
Willy Tarreau1e63130a2007-04-09 12:03:06 +020030
31/* private data */
Willy Tarreau7a2364d2018-01-19 08:56:14 +010032static int kqueue_fd[MAX_THREADS]; // per-thread kqueue_fd
Christopher Fauletd4604ad2017-05-29 10:40:41 +020033static THREAD_LOCAL struct kevent *kev = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020034
Willy Tarreau1e63130a2007-04-09 12:03:06 +020035/*
Willy Tarreau4a226272012-11-11 20:49:49 +010036 * kqueue() poller
Willy Tarreau1e63130a2007-04-09 12:03:06 +020037 */
Willy Tarreau4a226272012-11-11 20:49:49 +010038REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020039{
Willy Tarreau4a226272012-11-11 20:49:49 +010040 int status;
41 int count, fd, delta_ms;
42 struct timespec timeout;
Willy Tarreau7d24fad2018-01-25 14:57:25 +010043 int updt_idx, en;
Willy Tarreau4a226272012-11-11 20:49:49 +010044 int changes = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020045
Willy Tarreau4a226272012-11-11 20:49:49 +010046 /* first, scan the update list to find changes */
47 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
48 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010049
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010050 if (!fdtab[fd].owner) {
51 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010052 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010053 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010054
Christopher Faulet2a944ee2017-11-07 10:42:54 +010055 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauebc78d72018-01-20 23:53:50 +010056 fdtab[fd].update_mask &= ~tid_bit;
Willy Tarreau7d24fad2018-01-25 14:57:25 +010057 en = fdtab[fd].state;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010058 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010059
Willy Tarreau7a2364d2018-01-19 08:56:14 +010060 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
61 if (!(fdtab[fd].polled_mask & tid_bit)) {
62 /* fd was not watched, it's still not */
63 continue;
Willy Tarreau4a226272012-11-11 20:49:49 +010064 }
Willy Tarreau7a2364d2018-01-19 08:56:14 +010065 /* fd totally removed from poll list */
66 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
67 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
68 HA_ATOMIC_AND(&fdtab[fd].polled_mask, ~tid_bit);
69 }
70 else {
71 /* OK fd has to be monitored, it was either added or changed */
Willy Tarreau1e63130a2007-04-09 12:03:06 +020072
Willy Tarreau7a2364d2018-01-19 08:56:14 +010073 if (en & FD_EV_POLLED_R)
74 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
75 else if (fdtab[fd].polled_mask & tid_bit)
76 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
77
78 if (en & FD_EV_POLLED_W)
79 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
80 else if (fdtab[fd].polled_mask & tid_bit)
81 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
82
83 HA_ATOMIC_OR(&fdtab[fd].polled_mask, tid_bit);
Willy Tarreau4a226272012-11-11 20:49:49 +010084 }
Willy Tarreau4a226272012-11-11 20:49:49 +010085 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020086 if (changes)
Willy Tarreau7a2364d2018-01-19 08:56:14 +010087 kevent(kqueue_fd[tid], kev, changes, NULL, 0, NULL);
Willy Tarreau4a226272012-11-11 20:49:49 +010088 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020089
Willy Tarreau0c303ee2008-07-07 00:09:58 +020090 delta_ms = 0;
91 timeout.tv_sec = 0;
92 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +020093
Willy Tarreau10146c92015-04-13 20:44:19 +020094 if (!exp) {
95 delta_ms = MAX_DELAY_MS;
96 timeout.tv_sec = (MAX_DELAY_MS / 1000);
97 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
98 }
99 else if (!tick_is_expired(exp, now_ms)) {
100 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
101 if (delta_ms > MAX_DELAY_MS)
102 delta_ms = MAX_DELAY_MS;
103 timeout.tv_sec = (delta_ms / 1000);
104 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200105 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100106 else
107 activity[tid].poll_exp++;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200108
Willy Tarreauce036bc2018-01-29 14:58:02 +0100109 fd = global.tune.maxpollevents;
Willy Tarreau45a12512011-09-10 16:56:42 +0200110 gettimeofday(&before_poll, NULL);
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100111 status = kevent(kqueue_fd[tid], // int kq
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200112 NULL, // const struct kevent *changelist
113 0, // int nchanges
114 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200115 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200116 &timeout); // const struct timespec *timeout
117 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200118 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200119
120 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200121 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200122 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200123
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100124 if (!fdtab[fd].owner) {
125 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200126 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100127 }
128
129 if (!(fdtab[fd].thread_mask & tid_bit)) {
130 activity[tid].poll_skip++;
131 continue;
132 }
Willy Tarreau076be252012-07-06 16:02:29 +0200133
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200134 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100135 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200136 n |= FD_POLL_IN;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100137 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200138 n |= FD_POLL_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100139 }
140 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200141 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100142 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200143 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200144 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100145
Christopher Fauletab62f512017-08-30 10:34:36 +0200146 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200147 }
148}
149
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200150
151static int init_kqueue_per_thread()
152{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100153 int fd;
154
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200155 /* we can have up to two events per fd (*/
156 kev = calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
157 if (kev == NULL)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100158 goto fail_alloc;
159
Christopher Faulet727c89b2018-01-25 16:40:35 +0100160 if (MAX_THREADS > 1 && tid) {
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100161 kqueue_fd[tid] = kqueue();
162 if (kqueue_fd[tid] < 0)
163 goto fail_fd;
164 }
165
166 /* we may have to unregister some events initially registered on the
167 * original fd when it was alone, and/or to register events on the new
168 * fd for this thread. Let's just mark them as updated, the poller will
169 * do the rest.
170 */
Willy Tarreauce036bc2018-01-29 14:58:02 +0100171 for (fd = 0; fd < global.maxsock; fd++)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100172 updt_fd_polling(fd);
173
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200174 return 1;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100175 fail_fd:
176 free(kev);
177 fail_alloc:
178 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200179}
180
181static void deinit_kqueue_per_thread()
182{
Christopher Faulet727c89b2018-01-25 16:40:35 +0100183 if (MAX_THREADS > 1 && tid)
Christopher Faulet13b007d2018-01-25 16:32:18 +0100184 close(kqueue_fd[tid]);
185
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200186 free(kev);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200187 kev = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200188}
189
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200190/*
191 * Initialization of the kqueue() poller.
192 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
193 * disables the poller by setting its pref to 0.
194 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200195REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200196{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200197 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200198
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100199 kqueue_fd[tid] = kqueue();
200 if (kqueue_fd[tid] < 0)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200201 goto fail_fd;
202
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200203 hap_register_per_thread_init(init_kqueue_per_thread);
204 hap_register_per_thread_deinit(deinit_kqueue_per_thread);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200205 return 1;
206
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200207 fail_fd:
208 p->pref = 0;
209 return 0;
210}
211
212/*
213 * Termination of the kqueue() poller.
214 * Memory is released and the poller is marked as unselectable.
215 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200216REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200217{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100218 if (kqueue_fd[tid] >= 0) {
219 close(kqueue_fd[tid]);
220 kqueue_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200221 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200222
223 p->private = NULL;
224 p->pref = 0;
225}
226
227/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200228 * Check that the poller works.
229 * Returns 1 if OK, otherwise 0.
230 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200231REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200232{
233 int fd;
234
235 fd = kqueue();
236 if (fd < 0)
237 return 0;
238 close(fd);
239 return 1;
240}
241
242/*
243 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
244 * otherwise 0. Note that some pollers need to be reopened after a fork()
245 * (such as kqueue), and some others may fail to do so in a chroot.
246 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200247REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200248{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100249 kqueue_fd[tid] = kqueue();
250 if (kqueue_fd[tid] < 0)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200251 return 0;
252 return 1;
253}
254
255/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256 * It is a constructor, which means that it will automatically be called before
257 * main(). This is GCC-specific but it works at least since 2.95.
258 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200259 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200260__attribute__((constructor))
261static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200262{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200263 struct poller *p;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100264 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200265
266 if (nbpollers >= MAX_POLLERS)
267 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200268
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100269 for (i = 0; i < MAX_THREADS; i++)
270 kqueue_fd[i] = -1;
271
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200272 p = &pollers[nbpollers++];
273
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200274 p->name = "kqueue";
275 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100276 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200277 p->private = NULL;
278
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100279 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200280 p->test = _do_test;
281 p->init = _do_init;
282 p->term = _do_term;
283 p->poll = _do_poll;
284 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200285}
286
287
288/*
289 * Local variables:
290 * c-indent-level: 8
291 * c-basic-offset: 8
292 * End:
293 */