blob: 007336fa7c19a9699969a4e438984b4a62570b8b [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++) {
120 fd = kev[count].ident;
Willy Tarreau9845e752012-07-06 11:44:28 +0200121
Willy Tarreau076be252012-07-06 16:02:29 +0200122 if (!fdtab[fd].owner)
123 continue;
124
Willy Tarreau9845e752012-07-06 11:44:28 +0200125 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau4a226272012-11-11 20:49:49 +0100126
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200127 if (kev[count].filter == EVFILT_READ) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100128 if ((fdtab[fd].state & FD_EV_STATUS_R))
Willy Tarreau491c4982012-07-06 11:16:01 +0200129 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau4a226272012-11-11 20:49:49 +0100130 }
131 else if (kev[count].filter == EVFILT_WRITE) {
Willy Tarreau69a41fa2014-01-20 11:02:59 +0100132 if ((fdtab[fd].state & FD_EV_STATUS_W))
Willy Tarreau491c4982012-07-06 11:16:01 +0200133 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200134 }
Willy Tarreau4a226272012-11-11 20:49:49 +0100135
Willy Tarreau5be2f352014-11-19 19:43:05 +0100136 if (fdtab[fd].ev & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
137 fd_may_recv(fd);
138
139 if (fdtab[fd].ev & (FD_POLL_OUT | FD_POLL_ERR))
140 fd_may_send(fd);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200141 }
142}
143
144/*
145 * Initialization of the kqueue() poller.
146 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
147 * disables the poller by setting its pref to 0.
148 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200149REGPRM1 static int _do_init(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200150{
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200151 p->private = NULL;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200152
153 kqueue_fd = kqueue();
154 if (kqueue_fd < 0)
155 goto fail_fd;
156
Willy Tarreau4a226272012-11-11 20:49:49 +0100157 /* we can have up to two events per fd (*/
158 kev = (struct kevent*)calloc(1, sizeof(struct kevent) * 2 * global.maxsock);
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200159 if (kev == NULL)
160 goto fail_kev;
161
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200162 return 1;
163
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200164 fail_kev:
165 close(kqueue_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200166 kqueue_fd = -1;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200167 fail_fd:
168 p->pref = 0;
169 return 0;
170}
171
172/*
173 * Termination of the kqueue() poller.
174 * Memory is released and the poller is marked as unselectable.
175 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200176REGPRM1 static void _do_term(struct poller *p)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200177{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200178 free(kev);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200179
180 if (kqueue_fd >= 0) {
181 close(kqueue_fd);
182 kqueue_fd = -1;
183 }
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200184
185 p->private = NULL;
186 p->pref = 0;
187}
188
189/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200190 * Check that the poller works.
191 * Returns 1 if OK, otherwise 0.
192 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200193REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200194{
195 int fd;
196
197 fd = kqueue();
198 if (fd < 0)
199 return 0;
200 close(fd);
201 return 1;
202}
203
204/*
205 * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK,
206 * otherwise 0. Note that some pollers need to be reopened after a fork()
207 * (such as kqueue), and some others may fail to do so in a chroot.
208 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200209REGPRM1 static int _do_fork(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200210{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200211 if (kqueue_fd >= 0)
212 close(kqueue_fd);
Willy Tarreau2ff76222007-04-09 19:29:56 +0200213 kqueue_fd = kqueue();
214 if (kqueue_fd < 0)
215 return 0;
216 return 1;
217}
218
219/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200220 * It is a constructor, which means that it will automatically be called before
221 * main(). This is GCC-specific but it works at least since 2.95.
222 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200223 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200224__attribute__((constructor))
225static void _do_register(void)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200226{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200227 struct poller *p;
228
229 if (nbpollers >= MAX_POLLERS)
230 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200231
232 kqueue_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200233 p = &pollers[nbpollers++];
234
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200235 p->name = "kqueue";
236 p->pref = 300;
237 p->private = NULL;
238
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100239 p->clo = NULL;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200240 p->test = _do_test;
241 p->init = _do_init;
242 p->term = _do_term;
243 p->poll = _do_poll;
244 p->fork = _do_fork;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200245}
246
247
248/*
249 * Local variables:
250 * c-indent-level: 8
251 * c-basic-offset: 8
252 * End:
253 */