blob: 06ccaee292ab17a10e9427b91e64ae94be5f046a [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 Tarreau332740d2009-05-10 09:57:21 +020029#include <proto/signal.h>
Willy Tarreau1e63130a2007-04-09 12:03:06 +020030#include <proto/task.h>
31
32/* private data */
Willy Tarreau1e63130a2007-04-09 12:03:06 +020033static int kqueue_fd;
34static struct kevent *kev = NULL;
35
Willy Tarreau1e63130a2007-04-09 12:03:06 +020036/*
Willy Tarreau4a226272012-11-11 20:49:49 +010037 * kqueue() poller
Willy Tarreau1e63130a2007-04-09 12:03:06 +020038 */
Willy Tarreau4a226272012-11-11 20:49:49 +010039REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau1e63130a2007-04-09 12:03:06 +020040{
Willy Tarreau4a226272012-11-11 20:49:49 +010041 int status;
42 int count, fd, delta_ms;
43 struct timespec timeout;
44 int updt_idx, en, eo;
45 int changes = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020046
Willy Tarreau4a226272012-11-11 20:49:49 +010047 /* first, scan the update list to find changes */
48 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
49 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010050 fdtab[fd].updated = 0;
51 fdtab[fd].new = 0;
52
53 if (!fdtab[fd].owner)
54 continue;
55
Willy Tarreau25002d22014-01-25 10:32:56 +010056 eo = fdtab[fd].state;
57 en = fd_compute_new_polled_status(eo);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010058
59 if ((eo ^ en) & FD_EV_POLLED_RW) {
60 /* poll status changed */
61 fdtab[fd].state = en;
62
Willy Tarreau4a226272012-11-11 20:49:49 +010063 if ((eo ^ en) & FD_EV_POLLED_R) {
64 /* read poll status changed */
65 if (en & FD_EV_POLLED_R) {
66 EV_SET(&kev[changes], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
67 changes++;
68 }
69 else {
70 EV_SET(&kev[changes], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
71 changes++;
72 }
73 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020074
Willy Tarreau4a226272012-11-11 20:49:49 +010075 if ((eo ^ en) & FD_EV_POLLED_W) {
76 /* write poll status changed */
77 if (en & FD_EV_POLLED_W) {
78 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
79 changes++;
80 }
81 else {
82 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
83 changes++;
84 }
85 }
Willy Tarreau4a226272012-11-11 20:49:49 +010086 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010087
88 fd_alloc_or_release_cache_entry(fd, en);
Willy Tarreau4a226272012-11-11 20:49:49 +010089 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020090 if (changes)
91 kevent(kqueue_fd, 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 Tarreau16f649c2014-01-25 19:10:48 +010098 if (!fd_cache_num && !run_queue && !signal_queue_len) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +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;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200103 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200104 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)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200107 delta_ms = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200108 timeout.tv_sec = (delta_ms / 1000);
109 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200110 }
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200111 }
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 Tarreau1e63130a2007-04-09 12:03:06 +0200115 status = kevent(kqueue_fd, // int kq
116 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++) {
125 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200126
Willy Tarreau076be252012-07-06 16:02:29 +0200127 if (!fdtab[fd].owner)
128 continue;
129
Willy Tarreau9845e752012-07-06 11:44:28 +0200130 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau4a226272012-11-11 20:49:49 +0100131
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200132 if (kev[count].filter == EVFILT_READ) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100133 if ((fdtab[fd].state & FD_EV_STATUS_R))
Willy Tarreau491c4982012-07-06 11:16:01 +0200134 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau4a226272012-11-11 20:49:49 +0100135 }
136 else if (kev[count].filter == EVFILT_WRITE) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100137 if ((fdtab[fd].state & FD_EV_STATUS_W))
Willy Tarreau491c4982012-07-06 11:16:01 +0200138 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200139 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100140
Willy Tarreaue8525452014-01-25 09:58:06 +0100141 fd_process_polled_events(fd);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200142 }
143}
144
145/*
146 * Initialization of the kqueue() poller.
147 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
148 * disables the poller by setting its pref to 0.
149 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200150REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200151{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200152 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200153
154 kqueue_fd = kqueue();
155 if (kqueue_fd < 0)
156 goto fail_fd;
157
Willy Tarreau4a226272012-11-11 20:49:49 +0100158 /* we can have up to two events per fd (*/
159 kev = (struct kevent*)calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200160 if (kev == NULL)
161 goto fail_kev;
162
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200163 return 1;
164
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200165 fail_kev:
166 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200167 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200168 fail_fd:
169 p->pref = 0;
170 return 0;
171}
172
173/*
174 * Termination of the kqueue() poller.
175 * Memory is released and the poller is marked as unselectable.
176 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200177REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200178{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200179 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200180
181 if (kqueue_fd >= 0) {
182 close(kqueue_fd);
183 kqueue_fd = -1;
184 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200185
186 p->private = NULL;
187 p->pref = 0;
188}
189
190/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200191 * Check that the poller works.
192 * Returns 1 if OK, otherwise 0.
193 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200194REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200195{
196 int fd;
197
198 fd = kqueue();
199 if (fd < 0)
200 return 0;
201 close(fd);
202 return 1;
203}
204
205/*
206 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
207 * otherwise 0. Note that some pollers need to be reopened after a fork()
208 * (such as kqueue), and some others may fail to do so in a chroot.
209 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200210REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200211{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200212 if (kqueue_fd >= 0)
213 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200214 kqueue_fd = kqueue();
215 if (kqueue_fd < 0)
216 return 0;
217 return 1;
218}
219
220/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200221 * It is a constructor, which means that it will automatically be called before
222 * main(). This is GCC-specific but it works at least since 2.95.
223 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200224 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200225__attribute__((constructor))
226static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200227{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200228 struct poller *p;
229
230 if (nbpollers >= MAX_POLLERS)
231 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200232
233 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200234 p = &pollers[nbpollers++];
235
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200236 p->name = "kqueue";
237 p->pref = 300;
238 p->private = NULL;
239
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100240 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200241 p->test = _do_test;
242 p->init = _do_init;
243 p->term = _do_term;
244 p->poll = _do_poll;
245 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200246}
247
248
249/*
250 * Local variables:
251 * c-indent-level: 8
252 * c-basic-offset: 8
253 * End:
254 */