blob: 532d49dffaca2079ef93332695722fa55fb9095b [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;
43 int updt_idx, en, eo;
44 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;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020057 fdtab[fd].new = 0;
58
Willy Tarreau25002d22014-01-25 10:32:56 +010059 eo = fdtab[fd].state;
60 en = fd_compute_new_polled_status(eo);
Christopher Fauletd4604ad2017-05-29 10:40:41 +020061 fdtab[fd].state = en;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010062 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010063
Willy Tarreau7a2364d2018-01-19 08:56:14 +010064 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
65 if (!(fdtab[fd].polled_mask & tid_bit)) {
66 /* fd was not watched, it's still not */
67 continue;
Willy Tarreau4a226272012-11-11 20:49:49 +010068 }
Willy Tarreau7a2364d2018-01-19 08:56:14 +010069 /* fd totally removed from poll list */
70 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
71 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
72 HA_ATOMIC_AND(&fdtab[fd].polled_mask, ~tid_bit);
73 }
74 else {
75 /* OK fd has to be monitored, it was either added or changed */
Willy Tarreau1e63130a2007-04-09 12:03:06 +020076
Willy Tarreau7a2364d2018-01-19 08:56:14 +010077 if (en & FD_EV_POLLED_R)
78 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
79 else if (fdtab[fd].polled_mask & tid_bit)
80 EV_SET(&kev[changes++], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
81
82 if (en & FD_EV_POLLED_W)
83 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
84 else if (fdtab[fd].polled_mask & tid_bit)
85 EV_SET(&kev[changes++], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
86
87 HA_ATOMIC_OR(&fdtab[fd].polled_mask, tid_bit);
Willy Tarreau4a226272012-11-11 20:49:49 +010088 }
Willy Tarreau4a226272012-11-11 20:49:49 +010089 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020090 if (changes)
Willy Tarreau7a2364d2018-01-19 08:56:14 +010091 kevent(kqueue_fd[tid], kev, changes, NULL, 0, NULL);
Willy Tarreau4a226272012-11-11 20:49:49 +010092 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020093
Willy Tarreau0c303ee2008-07-07 00:09:58 +020094 delta_ms = 0;
95 timeout.tv_sec = 0;
96 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +020097
Willy Tarreau10146c92015-04-13 20:44:19 +020098 if (!exp) {
99 delta_ms = MAX_DELAY_MS;
100 timeout.tv_sec = (MAX_DELAY_MS / 1000);
101 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
102 }
103 else if (!tick_is_expired(exp, now_ms)) {
104 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
105 if (delta_ms > MAX_DELAY_MS)
106 delta_ms = MAX_DELAY_MS;
107 timeout.tv_sec = (delta_ms / 1000);
108 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200109 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100110 else
111 activity[tid].poll_exp++;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200112
Willy Tarreau1db37712007-06-03 17:16:49 +0200113 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200114 gettimeofday(&before_poll, NULL);
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100115 status = kevent(kqueue_fd[tid], // int kq
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200116 NULL, // const struct kevent *changelist
117 0, // int nchanges
118 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200119 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200120 &timeout); // const struct timespec *timeout
121 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200122 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200123
124 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200125 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200126 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200127
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100128 if (!fdtab[fd].owner) {
129 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200130 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100131 }
132
133 if (!(fdtab[fd].thread_mask & tid_bit)) {
134 activity[tid].poll_skip++;
135 continue;
136 }
Willy Tarreau076be252012-07-06 16:02:29 +0200137
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200138 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100139 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200140 n |= FD_POLL_IN;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100141 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200142 n |= FD_POLL_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100143 }
144 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200145 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100146 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200147 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200148 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100149
Christopher Fauletab62f512017-08-30 10:34:36 +0200150 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200151 }
152}
153
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200154
155static int init_kqueue_per_thread()
156{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100157 int fd;
158
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200159 /* we can have up to two events per fd (*/
160 kev = calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
161 if (kev == NULL)
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100162 goto fail_alloc;
163
164 if (tid) {
165 kqueue_fd[tid] = kqueue();
166 if (kqueue_fd[tid] < 0)
167 goto fail_fd;
168 }
169
170 /* we may have to unregister some events initially registered on the
171 * original fd when it was alone, and/or to register events on the new
172 * fd for this thread. Let's just mark them as updated, the poller will
173 * do the rest.
174 */
175 for (fd = 0; fd < maxfd; fd++)
176 updt_fd_polling(fd);
177
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200178 return 1;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100179 fail_fd:
180 free(kev);
181 fail_alloc:
182 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200183}
184
185static void deinit_kqueue_per_thread()
186{
187 free(kev);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200188 kev = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200189}
190
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200191/*
192 * Initialization of the kqueue() poller.
193 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
194 * disables the poller by setting its pref to 0.
195 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200196REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200197{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200198 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200199
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100200 kqueue_fd[tid] = kqueue();
201 if (kqueue_fd[tid] < 0)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200202 goto fail_fd;
203
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200204 hap_register_per_thread_init(init_kqueue_per_thread);
205 hap_register_per_thread_deinit(deinit_kqueue_per_thread);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200206 return 1;
207
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200208 fail_fd:
209 p->pref = 0;
210 return 0;
211}
212
213/*
214 * Termination of the kqueue() poller.
215 * Memory is released and the poller is marked as unselectable.
216 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200217REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200218{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100219 if (kqueue_fd[tid] >= 0) {
220 close(kqueue_fd[tid]);
221 kqueue_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200222 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200223
224 p->private = NULL;
225 p->pref = 0;
226}
227
228/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200229 * Check that the poller works.
230 * Returns 1 if OK, otherwise 0.
231 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200232REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200233{
234 int fd;
235
236 fd = kqueue();
237 if (fd < 0)
238 return 0;
239 close(fd);
240 return 1;
241}
242
243/*
244 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
245 * otherwise 0. Note that some pollers need to be reopened after a fork()
246 * (such as kqueue), and some others may fail to do so in a chroot.
247 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200248REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200249{
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100250 kqueue_fd[tid] = kqueue();
251 if (kqueue_fd[tid] < 0)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200252 return 0;
253 return 1;
254}
255
256/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200257 * It is a constructor, which means that it will automatically be called before
258 * main(). This is GCC-specific but it works at least since 2.95.
259 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200260 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200261__attribute__((constructor))
262static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200263{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200264 struct poller *p;
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100265 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200266
267 if (nbpollers >= MAX_POLLERS)
268 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200269
Willy Tarreau7a2364d2018-01-19 08:56:14 +0100270 for (i = 0; i < MAX_THREADS; i++)
271 kqueue_fd[i] = -1;
272
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200273 p = &pollers[nbpollers++];
274
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200275 p->name = "kqueue";
276 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100277 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200278 p->private = NULL;
279
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100280 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200281 p->test = _do_test;
282 p->init = _do_init;
283 p->term = _do_term;
284 p->poll = _do_poll;
285 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200286}
287
288
289/*
290 * Local variables:
291 * c-indent-level: 8
292 * c-basic-offset: 8
293 * End:
294 */