Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * FD polling functions for FreeBSD kqueue() |
| 3 | * |
Willy Tarreau | b7f694f | 2008-06-22 17:18:02 +0200 | [diff] [blame] | 4 | * Copyright 2000-2008 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 5 | * |
| 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 | * |
| 11 | * Note: not knowing much about kqueue, I had to rely on OpenBSD's detailed man |
| 12 | * page and to check how it was implemented in lighttpd to understand it better. |
| 13 | * But it is possible that I got things wrong. |
| 14 | * |
| 15 | */ |
| 16 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 17 | #include <unistd.h> |
| 18 | #include <sys/time.h> |
| 19 | #include <sys/types.h> |
| 20 | |
| 21 | #include <sys/event.h> |
| 22 | #include <sys/time.h> |
| 23 | |
| 24 | #include <common/compat.h> |
| 25 | #include <common/config.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 26 | #include <common/ticks.h> |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 27 | #include <common/time.h> |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 28 | #include <common/tools.h> |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 29 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 30 | #include <types/global.h> |
| 31 | |
| 32 | #include <proto/fd.h> |
Willy Tarreau | 332740d | 2009-05-10 09:57:21 +0200 | [diff] [blame] | 33 | #include <proto/signal.h> |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 34 | #include <proto/task.h> |
| 35 | |
| 36 | /* private data */ |
| 37 | static fd_set *fd_evts[2]; |
| 38 | static int kqueue_fd; |
| 39 | static struct kevent *kev = NULL; |
| 40 | |
| 41 | /* speeds up conversion of DIR_RD/DIR_WR to EVFILT* */ |
| 42 | static const int dir2filt[2] = { EVFILT_READ, EVFILT_WRITE }; |
| 43 | |
| 44 | /* completes a change list for deletion */ |
| 45 | REGPRM3 static int kqev_del(struct kevent *kev, const int fd, const int dir) |
| 46 | { |
| 47 | if (FD_ISSET(fd, fd_evts[dir])) { |
| 48 | FD_CLR(fd, fd_evts[dir]); |
| 49 | EV_SET(kev, fd, dir2filt[dir], EV_DELETE, 0, 0, NULL); |
| 50 | return 1; |
| 51 | } |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | /* |
| 56 | * Returns non-zero if direction <dir> is already set for <fd>. |
| 57 | */ |
Willy Tarreau | 63455a9 | 2007-04-09 15:34:49 +0200 | [diff] [blame] | 58 | REGPRM2 static int __fd_is_set(const int fd, int dir) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 59 | { |
| 60 | return FD_ISSET(fd, fd_evts[dir]); |
| 61 | } |
| 62 | |
| 63 | REGPRM2 static int __fd_set(const int fd, int dir) |
| 64 | { |
| 65 | /* if the value was set, do nothing */ |
| 66 | if (FD_ISSET(fd, fd_evts[dir])) |
| 67 | return 0; |
| 68 | |
| 69 | FD_SET(fd, fd_evts[dir]); |
Willy Tarreau | 8755285 | 2007-04-09 17:16:07 +0200 | [diff] [blame] | 70 | EV_SET(kev, fd, dir2filt[dir], EV_ADD, 0, 0, NULL); |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 71 | kevent(kqueue_fd, kev, 1, NULL, 0, NULL); |
| 72 | return 1; |
| 73 | } |
| 74 | |
| 75 | REGPRM2 static int __fd_clr(const int fd, int dir) |
| 76 | { |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 77 | if (!kqev_del(kev, fd, dir)) |
| 78 | return 0; |
| 79 | kevent(kqueue_fd, kev, 1, NULL, 0, NULL); |
| 80 | return 1; |
| 81 | } |
| 82 | |
| 83 | REGPRM1 static void __fd_rem(int fd) |
| 84 | { |
| 85 | int changes = 0; |
| 86 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 87 | changes += kqev_del(&kev[changes], fd, DIR_RD); |
| 88 | changes += kqev_del(&kev[changes], fd, DIR_WR); |
| 89 | |
| 90 | if (changes) |
| 91 | kevent(kqueue_fd, kev, changes, NULL, 0, NULL); |
| 92 | } |
| 93 | |
Willy Tarreau | 8755285 | 2007-04-09 17:16:07 +0200 | [diff] [blame] | 94 | REGPRM1 static void __fd_clo(int fd) |
| 95 | { |
| 96 | FD_CLR(fd, fd_evts[DIR_RD]); |
| 97 | FD_CLR(fd, fd_evts[DIR_WR]); |
| 98 | } |
| 99 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 100 | /* |
| 101 | * kqueue() poller |
| 102 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 103 | REGPRM2 static void _do_poll(struct poller *p, int exp) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 104 | { |
| 105 | int status; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 106 | int count, fd, delta_ms; |
| 107 | struct timespec timeout; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 108 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 109 | delta_ms = 0; |
| 110 | timeout.tv_sec = 0; |
| 111 | timeout.tv_nsec = 0; |
Willy Tarreau | 79b8a62 | 2007-05-14 03:15:46 +0200 | [diff] [blame] | 112 | |
Willy Tarreau | 332740d | 2009-05-10 09:57:21 +0200 | [diff] [blame] | 113 | if (!run_queue && !signal_queue_len) { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 114 | if (!exp) { |
| 115 | delta_ms = MAX_DELAY_MS; |
| 116 | timeout.tv_sec = (MAX_DELAY_MS / 1000); |
| 117 | timeout.tv_nsec = (MAX_DELAY_MS % 1000) * 1000000; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 118 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 119 | else if (!tick_is_expired(exp, now_ms)) { |
| 120 | delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1; |
| 121 | if (delta_ms > MAX_DELAY_MS) |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 122 | delta_ms = MAX_DELAY_MS; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 123 | timeout.tv_sec = (delta_ms / 1000); |
| 124 | timeout.tv_nsec = (delta_ms % 1000) * 1000000; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 125 | } |
Willy Tarreau | cd5ce2a | 2007-04-09 16:25:46 +0200 | [diff] [blame] | 126 | } |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 127 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 128 | fd = MIN(maxfd, global.tune.maxpollevents); |
Willy Tarreau | 45a1251 | 2011-09-10 16:56:42 +0200 | [diff] [blame] | 129 | gettimeofday(&before_poll, NULL); |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 130 | status = kevent(kqueue_fd, // int kq |
| 131 | NULL, // const struct kevent *changelist |
| 132 | 0, // int nchanges |
| 133 | kev, // struct kevent *eventlist |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 134 | fd, // int nevents |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 135 | &timeout); // const struct timespec *timeout |
| 136 | tv_update_date(delta_ms, status); |
Willy Tarreau | 45a1251 | 2011-09-10 16:56:42 +0200 | [diff] [blame] | 137 | measure_idle(); |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 138 | |
| 139 | for (count = 0; count < status; count++) { |
| 140 | fd = kev[count].ident; |
| 141 | if (kev[count].filter == EVFILT_READ) { |
| 142 | if (FD_ISSET(fd, fd_evts[DIR_RD])) { |
| 143 | if (fdtab[fd].state == FD_STCLOSE) |
| 144 | continue; |
| 145 | fdtab[fd].cb[DIR_RD].f(fd); |
| 146 | } |
| 147 | } else if (kev[count].filter == EVFILT_WRITE) { |
| 148 | if (FD_ISSET(fd, fd_evts[DIR_WR])) { |
| 149 | if (fdtab[fd].state == FD_STCLOSE) |
| 150 | continue; |
| 151 | fdtab[fd].cb[DIR_WR].f(fd); |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | /* |
| 158 | * Initialization of the kqueue() poller. |
| 159 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 160 | * disables the poller by setting its pref to 0. |
| 161 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 162 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 163 | { |
| 164 | __label__ fail_wevt, fail_revt, fail_fd; |
| 165 | int fd_set_bytes; |
| 166 | |
| 167 | p->private = NULL; |
| 168 | fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE; |
| 169 | |
| 170 | kqueue_fd = kqueue(); |
| 171 | if (kqueue_fd < 0) |
| 172 | goto fail_fd; |
| 173 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 174 | kev = (struct kevent*)calloc(1, sizeof(struct kevent) * global.tune.maxpollevents); |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 175 | |
| 176 | if (kev == NULL) |
| 177 | goto fail_kev; |
| 178 | |
| 179 | if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 180 | goto fail_revt; |
| 181 | |
| 182 | if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 183 | goto fail_wevt; |
| 184 | |
| 185 | return 1; |
| 186 | |
| 187 | fail_wevt: |
| 188 | free(fd_evts[DIR_RD]); |
| 189 | fail_revt: |
| 190 | free(kev); |
| 191 | fail_kev: |
| 192 | close(kqueue_fd); |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 193 | kqueue_fd = -1; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 194 | fail_fd: |
| 195 | p->pref = 0; |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Termination of the kqueue() poller. |
| 201 | * Memory is released and the poller is marked as unselectable. |
| 202 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 203 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 204 | { |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 205 | free(fd_evts[DIR_WR]); |
| 206 | free(fd_evts[DIR_RD]); |
| 207 | free(kev); |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 208 | |
| 209 | if (kqueue_fd >= 0) { |
| 210 | close(kqueue_fd); |
| 211 | kqueue_fd = -1; |
| 212 | } |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 213 | |
| 214 | p->private = NULL; |
| 215 | p->pref = 0; |
| 216 | } |
| 217 | |
| 218 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 219 | * Check that the poller works. |
| 220 | * Returns 1 if OK, otherwise 0. |
| 221 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 222 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 223 | { |
| 224 | int fd; |
| 225 | |
| 226 | fd = kqueue(); |
| 227 | if (fd < 0) |
| 228 | return 0; |
| 229 | close(fd); |
| 230 | return 1; |
| 231 | } |
| 232 | |
| 233 | /* |
| 234 | * Recreate the kqueue file descriptor after a fork(). Returns 1 if OK, |
| 235 | * otherwise 0. Note that some pollers need to be reopened after a fork() |
| 236 | * (such as kqueue), and some others may fail to do so in a chroot. |
| 237 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 238 | REGPRM1 static int _do_fork(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 239 | { |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 240 | if (kqueue_fd >= 0) |
| 241 | close(kqueue_fd); |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 242 | kqueue_fd = kqueue(); |
| 243 | if (kqueue_fd < 0) |
| 244 | return 0; |
| 245 | return 1; |
| 246 | } |
| 247 | |
| 248 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 249 | * It is a constructor, which means that it will automatically be called before |
| 250 | * main(). This is GCC-specific but it works at least since 2.95. |
| 251 | * Special care must be taken so that it does not need any uninitialized data. |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 252 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 253 | __attribute__((constructor)) |
| 254 | static void _do_register(void) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 255 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 256 | struct poller *p; |
| 257 | |
| 258 | if (nbpollers >= MAX_POLLERS) |
| 259 | return; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 260 | |
| 261 | kqueue_fd = -1; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 262 | p = &pollers[nbpollers++]; |
| 263 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 264 | p->name = "kqueue"; |
| 265 | p->pref = 300; |
| 266 | p->private = NULL; |
| 267 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 268 | p->test = _do_test; |
| 269 | p->init = _do_init; |
| 270 | p->term = _do_term; |
| 271 | p->poll = _do_poll; |
| 272 | p->fork = _do_fork; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 273 | |
Willy Tarreau | 63455a9 | 2007-04-09 15:34:49 +0200 | [diff] [blame] | 274 | p->is_set = __fd_is_set; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 275 | p->cond_s = p->set = __fd_set; |
| 276 | p->cond_c = p->clr = __fd_clr; |
Willy Tarreau | 40562cb | 2007-04-09 20:38:57 +0200 | [diff] [blame] | 277 | p->rem = __fd_rem; |
| 278 | p->clo = __fd_clo; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | |
| 282 | /* |
| 283 | * Local variables: |
| 284 | * c-indent-level: 8 |
| 285 | * c-basic-offset: 8 |
| 286 | * End: |
| 287 | */ |