blob: dab6f5bdc023f6c360d6a66ba7962f3d42f9bfed [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 en = eo = fdtab[fd].state;
51
52 fdtab[fd].updated = 0;
53 fdtab[fd].new = 0;
54
55 if (!fdtab[fd].owner)
56 continue;
57
58 if (en & FD_EV_ACTIVE_R) {
59 if (!(en & FD_EV_READY_R))
60 en |= FD_EV_POLLED_R;
61 }
62 else
63 en &= ~FD_EV_POLLED_R;
64
65 if (en & FD_EV_ACTIVE_W) {
66 if (!(en & FD_EV_READY_W))
67 en |= FD_EV_POLLED_W;
68 }
69 else
70 en &= ~FD_EV_POLLED_W;
Willy Tarreau1e63130a2007-04-09 12:03:06 +020071
Willy Tarreauf817e9f2014-01-10 16:58:45 +010072
73 if ((eo ^ en) & FD_EV_POLLED_RW) {
74 /* poll status changed */
75 fdtab[fd].state = en;
76
Willy Tarreau4a226272012-11-11 20:49:49 +010077 if ((eo ^ en) & FD_EV_POLLED_R) {
78 /* read poll status changed */
79 if (en & FD_EV_POLLED_R) {
80 EV_SET(&kev[changes], fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
81 changes++;
82 }
83 else {
84 EV_SET(&kev[changes], fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
85 changes++;
86 }
87 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +020088
Willy Tarreau4a226272012-11-11 20:49:49 +010089 if ((eo ^ en) & FD_EV_POLLED_W) {
90 /* write poll status changed */
91 if (en & FD_EV_POLLED_W) {
92 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_ADD, 0, 0, NULL);
93 changes++;
94 }
95 else {
96 EV_SET(&kev[changes], fd, EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
97 changes++;
98 }
99 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100100 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100101
102 fd_alloc_or_release_cache_entry(fd, en);
Willy Tarreau4a226272012-11-11 20:49:49 +0100103 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200104 if (changes)
105 kevent(kqueue_fd, kev, changes, NULL, 0, NULL);
Willy Tarreau4a226272012-11-11 20:49:49 +0100106 fd_nbupdt = 0;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200107
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200108 delta_ms = 0;
109 timeout.tv_sec = 0;
110 timeout.tv_nsec = 0;
Willy Tarreau79b8a622007-05-14 03:15:46 +0200111
Willy Tarreau16f649c2014-01-25 19:10:48 +0100112 if (!fd_cache_num && !run_queue && !signal_queue_len) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200113 if (!exp) {
114 delta_ms = MAX_DELAY_MS;
115 timeout.tv_sec = (MAX_DELAY_MS / 1000);
116 timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200117 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200118 else if (!tick_is_expired(exp, now_ms)) {
119 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
120 if (delta_ms > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200121 delta_ms = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200122 timeout.tv_sec = (delta_ms / 1000);
123 timeout.tv_nsec = (delta_ms % 1000) * 1000000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200124 }
Willy Tarreaucd5ce2a2007-04-09 16:25:46 +0200125 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200126
Willy Tarreau1db37712007-06-03 17:16:49 +0200127 fd = MIN(maxfd, global.tune.maxpollevents);
Willy Tarreau45a12512011-09-10 16:56:42 +0200128 gettimeofday(&before_poll, NULL);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200129 status = kevent(kqueue_fd, // int kq
130 NULL, // const struct kevent *changelist
131 0, // int nchanges
132 kev, // struct kevent *eventlist
Willy Tarreau1db37712007-06-03 17:16:49 +0200133 fd, // int nevents
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200134 &timeout); // const struct timespec *timeout
135 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200136 measure_idle();
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200137
138 for (count = 0; count < status; count++) {
139 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200140
Willy Tarreau076be252012-07-06 16:02:29 +0200141 if (!fdtab[fd].owner)
142 continue;
143
Willy Tarreau9845e752012-07-06 11:44:28 +0200144 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau4a226272012-11-11 20:49:49 +0100145
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200146 if (kev[count].filter == EVFILT_READ) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100147 if ((fdtab[fd].state & FD_EV_STATUS_R))
Willy Tarreau491c4982012-07-06 11:16:01 +0200148 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau4a226272012-11-11 20:49:49 +0100149 }
150 else if (kev[count].filter == EVFILT_WRITE) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100151 if ((fdtab[fd].state & FD_EV_STATUS_W))
Willy Tarreau491c4982012-07-06 11:16:01 +0200152 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200153 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100154
155 if (fdtab[fd].iocb && fdtab[fd].ev) {
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100156 if (fdtab[fd].ev & FD_POLL_IN)
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100157 fd_may_recv(fd);
Willy Tarreau4a226272012-11-11 20:49:49 +0100158
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100159 if (fdtab[fd].ev & FD_POLL_OUT)
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100160 fd_may_send(fd);
Willy Tarreau4a226272012-11-11 20:49:49 +0100161
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100162 if (fdtab[fd].cache)
Willy Tarreau39ebef82012-12-14 00:17:03 +0100163 continue;
Willy Tarreau39ebef82012-12-14 00:17:03 +0100164
Willy Tarreau9845e752012-07-06 11:44:28 +0200165 fdtab[fd].iocb(fd);
Willy Tarreau4a226272012-11-11 20:49:49 +0100166 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200167 }
168}
169
170/*
171 * Initialization of the kqueue() poller.
172 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
173 * disables the poller by setting its pref to 0.
174 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200175REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200176{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200177 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200178
179 kqueue_fd = kqueue();
180 if (kqueue_fd < 0)
181 goto fail_fd;
182
Willy Tarreau4a226272012-11-11 20:49:49 +0100183 /* we can have up to two events per fd (*/
184 kev = (struct kevent*)calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200185 if (kev == NULL)
186 goto fail_kev;
187
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200188 return 1;
189
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200190 fail_kev:
191 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200192 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200193 fail_fd:
194 p->pref = 0;
195 return 0;
196}
197
198/*
199 * Termination of the kqueue() poller.
200 * Memory is released and the poller is marked as unselectable.
201 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200202REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200203{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200204 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200205
206 if (kqueue_fd >= 0) {
207 close(kqueue_fd);
208 kqueue_fd = -1;
209 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200210
211 p->private = NULL;
212 p->pref = 0;
213}
214
215/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200216 * Check that the poller works.
217 * Returns 1 if OK, otherwise 0.
218 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200219REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200220{
221 int fd;
222
223 fd = kqueue();
224 if (fd < 0)
225 return 0;
226 close(fd);
227 return 1;
228}
229
230/*
231 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
232 * otherwise 0. Note that some pollers need to be reopened after a fork()
233 * (such as kqueue), and some others may fail to do so in a chroot.
234 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200235REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200236{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200237 if (kqueue_fd >= 0)
238 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200239 kqueue_fd = kqueue();
240 if (kqueue_fd < 0)
241 return 0;
242 return 1;
243}
244
245/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200246 * It is a constructor, which means that it will automatically be called before
247 * main(). This is GCC-specific but it works at least since 2.95.
248 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200249 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200250__attribute__((constructor))
251static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200252{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200253 struct poller *p;
254
255 if (nbpollers >= MAX_POLLERS)
256 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200257
258 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200259 p = &pollers[nbpollers++];
260
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200261 p->name = "kqueue";
262 p->pref = 300;
263 p->private = NULL;
264
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100265 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200266 p->test = _do_test;
267 p->init = _do_init;
268 p->term = _do_term;
269 p->poll = _do_poll;
270 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200271}
272
273
274/*
275 * Local variables:
276 * c-indent-level: 8
277 * c-basic-offset: 8
278 * End:
279 */