blob: 02723cca6bc959db835a11d2238d73e4c0317023 [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;
33static struct kevent *kev = NULL;
34
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 fdtab[fd].updated = 0;
50 fdtab[fd].new = 0;
51
52 if (!fdtab[fd].owner)
53 continue;
54
Willy Tarreau25002d22014-01-25 10:32:56 +010055 eo = fdtab[fd].state;
56 en = fd_compute_new_polled_status(eo);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010057
58 if ((eo ^ en) & FD_EV_POLLED_RW) {
59 /* poll status changed */
60 fdtab[fd].state = en;
61
Willy Tarreau4a226272012-11-11 20:49:49 +010062 if ((eo ^ en) & FD_EV_POLLED_R) {
63 /* read poll status changed */
64 if (en & FD_EV_POLLED_R) {
65 EV_SET(&kev[changes], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
66 changes++;
67 }
68 else {
69 EV_SET(&kev[changes], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
70 changes++;
71 }
72 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020073
Willy Tarreau4a226272012-11-11 20:49:49 +010074 if ((eo ^ en) & FD_EV_POLLED_W) {
75 /* write poll status changed */
76 if (en & FD_EV_POLLED_W) {
77 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
78 changes++;
79 }
80 else {
81 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
82 changes++;
83 }
84 }
Willy Tarreau4a226272012-11-11 20:49:49 +010085 }
Willy Tarreau4a226272012-11-11 20:49:49 +010086 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020087 if (changes)
88 kevent(kqueue_fd, kev, changes, NULL, 0, NULL);
Willy Tarreau4a226272012-11-11 20:49:49 +010089 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020090
Willy Tarreau0c303ee2008-07-07 00:09:58 +020091 delta_ms = 0;
92 timeout.tv_sec = 0;
93 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +020094
Willy Tarreau10146c92015-04-13 20:44:19 +020095 if (!exp) {
96 delta_ms = MAX_DELAY_MS;
97 timeout.tv_sec = (MAX_DELAY_MS / 1000);
98 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
99 }
100 else if (!tick_is_expired(exp, now_ms)) {
101 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
102 if (delta_ms > MAX_DELAY_MS)
103 delta_ms = MAX_DELAY_MS;
104 timeout.tv_sec = (delta_ms / 1000);
105 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200106 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200107
Willy Tarreau1db37712007-06-03 17:16:49 +0200108 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200109 gettimeofday(&before_poll, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200110 status = kevent(kqueue_fd, // int kq
111 NULL, // const struct kevent *changelist
112 0, // int nchanges
113 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200114 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200115 &timeout); // const struct timespec *timeout
116 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200117 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200118
119 for (count = 0; count < status; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200120 unsigned int n = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200121 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200122
Willy Tarreau076be252012-07-06 16:02:29 +0200123 if (!fdtab[fd].owner)
124 continue;
125
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200126 if (kev[count].filter == EVFILT_READ) {
Willy Tarreaufa061762017-03-13 20:49:56 +0100127 if (kev[count].data)
Christopher Fauletab62f512017-08-30 10:34:36 +0200128 n |= FD_POLL_IN;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100129 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200130 n |= FD_POLL_HUP;
Willy Tarreau4a226272012-11-11 20:49:49 +0100131 }
132 else if (kev[count].filter == EVFILT_WRITE) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200133 n |= FD_POLL_OUT;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100134 if (kev[count].flags & EV_EOF)
Christopher Fauletab62f512017-08-30 10:34:36 +0200135 n |= FD_POLL_ERR;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200136 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100137
Christopher Fauletab62f512017-08-30 10:34:36 +0200138 fd_update_events(fd, n);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200139 }
140}
141
142/*
143 * Initialization of the kqueue() poller.
144 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
145 * disables the poller by setting its pref to 0.
146 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200147REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200148{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200149 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200150
151 kqueue_fd = kqueue();
152 if (kqueue_fd < 0)
153 goto fail_fd;
154
Willy Tarreau4a226272012-11-11 20:49:49 +0100155 /* we can have up to two events per fd (*/
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200156 kev = calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200157 if (kev == NULL)
158 goto fail_kev;
159
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200160 return 1;
161
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200162 fail_kev:
163 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200164 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200165 fail_fd:
166 p->pref = 0;
167 return 0;
168}
169
170/*
171 * Termination of the kqueue() poller.
172 * Memory is released and the poller is marked as unselectable.
173 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200174REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200175{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200176 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200177
178 if (kqueue_fd >= 0) {
179 close(kqueue_fd);
180 kqueue_fd = -1;
181 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200182
183 p->private = NULL;
184 p->pref = 0;
185}
186
187/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200188 * Check that the poller works.
189 * Returns 1 if OK, otherwise 0.
190 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200191REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200192{
193 int fd;
194
195 fd = kqueue();
196 if (fd < 0)
197 return 0;
198 close(fd);
199 return 1;
200}
201
202/*
203 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
204 * otherwise 0. Note that some pollers need to be reopened after a fork()
205 * (such as kqueue), and some others may fail to do so in a chroot.
206 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200207REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200208{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200209 if (kqueue_fd >= 0)
210 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200211 kqueue_fd = kqueue();
212 if (kqueue_fd < 0)
213 return 0;
214 return 1;
215}
216
217/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200218 * It is a constructor, which means that it will automatically be called before
219 * main(). This is GCC-specific but it works at least since 2.95.
220 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200221 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200222__attribute__((constructor))
223static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200224{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200225 struct poller *p;
226
227 if (nbpollers >= MAX_POLLERS)
228 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200229
230 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200231 p = &pollers[nbpollers++];
232
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200233 p->name = "kqueue";
234 p->pref = 300;
Willy Tarreau19c4ab92017-03-13 20:36:48 +0100235 p->flags = HAP_POLL_F_RDHUP;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200236 p->private = NULL;
237
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100238 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200239 p->test = _do_test;
240 p->init = _do_init;
241 p->term = _do_term;
242 p->poll = _do_poll;
243 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200244}
245
246
247/*
248 * Local variables:
249 * c-indent-level: 8
250 * c-basic-offset: 8
251 * End:
252 */