blob: 69d51b6b056f92bc29e333568b0b8917e129acdd [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 Tarreau1e63130a2007-04-09 12:03:06 +020032static int 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);
Christopher Fauletd4604ad2017-05-29 10:40:41 +020056 fdtab[fd].updated = 0;
57 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
64 if ((eo ^ en) & FD_EV_POLLED_RW) {
65 /* poll status changed */
Willy Tarreau4a226272012-11-11 20:49:49 +010066 if ((eo ^ en) & FD_EV_POLLED_R) {
67 /* read poll status changed */
68 if (en & FD_EV_POLLED_R) {
69 EV_SET(&kev[changes], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
70 changes++;
71 }
72 else {
73 EV_SET(&kev[changes], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
74 changes++;
75 }
76 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020077
Willy Tarreau4a226272012-11-11 20:49:49 +010078 if ((eo ^ en) & FD_EV_POLLED_W) {
79 /* write poll status changed */
80 if (en & FD_EV_POLLED_W) {
81 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
82 changes++;
83 }
84 else {
85 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
86 changes++;
87 }
88 }
Willy Tarreau4a226272012-11-11 20:49:49 +010089 }
Willy Tarreau4a226272012-11-11 20:49:49 +010090 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020091 if (changes)
92 kevent(kqueue_fd, kev, changes, NULL, 0, NULL);
Willy Tarreau4a226272012-11-11 20:49:49 +010093 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020094
Willy Tarreau0c303ee2008-07-07 00:09:58 +020095 delta_ms = 0;
96 timeout.tv_sec = 0;
97 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +020098
Willy Tarreau10146c92015-04-13 20:44:19 +020099 if (!exp) {
100 delta_ms = MAX_DELAY_MS;
101 timeout.tv_sec = (MAX_DELAY_MS / 1000);
102 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
103 }
104 else if (!tick_is_expired(exp, now_ms)) {
105 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
106 if (delta_ms > MAX_DELAY_MS)
107 delta_ms = MAX_DELAY_MS;
108 timeout.tv_sec = (delta_ms / 1000);
109 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200110 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100111 else
112 activity[tid].poll_exp++;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200113
Willy Tarreau1db37712007-06-03 17:16:49 +0200114 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200115 gettimeofday(&before_poll, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200116 status = kevent(kqueue_fd, // int kq
117 NULL, // const struct kevent *changelist
118 0, // int nchanges
119 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200120 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200121 &timeout); // const struct timespec *timeout
122 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200123 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200124
125 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200126 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200127 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200128
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100129 if (!fdtab[fd].owner) {
130 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200131 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100132 }
133
134 if (!(fdtab[fd].thread_mask & tid_bit)) {
135 activity[tid].poll_skip++;
136 continue;
137 }
Willy Tarreau076be252012-07-06 16:02:29 +0200138
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200139 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100140 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200141 n |= FD_POLL_IN;
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_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100144 }
145 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200146 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100147 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200148 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200149 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100150
Christopher Fauletab62f512017-08-30 10:34:36 +0200151 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200152 }
153}
154
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200155
156static int init_kqueue_per_thread()
157{
158 /* we can have up to two events per fd (*/
159 kev = calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
160 if (kev == NULL)
161 return 0;
162 return 1;
163}
164
165static void deinit_kqueue_per_thread()
166{
167 free(kev);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200168 kev = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200169}
170
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200171/*
172 * Initialization of the kqueue() poller.
173 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
174 * disables the poller by setting its pref to 0.
175 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200176REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200177{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200178 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200179
180 kqueue_fd = kqueue();
181 if (kqueue_fd < 0)
182 goto fail_fd;
183
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200184 hap_register_per_thread_init(init_kqueue_per_thread);
185 hap_register_per_thread_deinit(deinit_kqueue_per_thread);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200186 return 1;
187
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200188 fail_fd:
189 p->pref = 0;
190 return 0;
191}
192
193/*
194 * Termination of the kqueue() poller.
195 * Memory is released and the poller is marked as unselectable.
196 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200197REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200198{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200199 if (kqueue_fd >= 0) {
200 close(kqueue_fd);
201 kqueue_fd = -1;
202 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200203
204 p->private = NULL;
205 p->pref = 0;
206}
207
208/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200209 * Check that the poller works.
210 * Returns 1 if OK, otherwise 0.
211 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200212REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200213{
214 int fd;
215
216 fd = kqueue();
217 if (fd < 0)
218 return 0;
219 close(fd);
220 return 1;
221}
222
223/*
224 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
225 * otherwise 0. Note that some pollers need to be reopened after a fork()
226 * (such as kqueue), and some others may fail to do so in a chroot.
227 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200228REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200229{
Willy Tarreau2ff76222007-04-09 19:29:56 +0200230 kqueue_fd = kqueue();
231 if (kqueue_fd < 0)
232 return 0;
233 return 1;
234}
235
236/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200237 * It is a constructor, which means that it will automatically be called before
238 * main(). This is GCC-specific but it works at least since 2.95.
239 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200240 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200241__attribute__((constructor))
242static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200243{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200244 struct poller *p;
245
246 if (nbpollers >= MAX_POLLERS)
247 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200248
249 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200250 p = &pollers[nbpollers++];
251
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200252 p->name = "kqueue";
253 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100254 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200255 p->private = NULL;
256
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100257 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200258 p->test = _do_test;
259 p->init = _do_init;
260 p->term = _do_term;
261 p->poll = _do_poll;
262 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200263}
264
265
266/*
267 * Local variables:
268 * c-indent-level: 8
269 * c-basic-offset: 8
270 * End:
271 */