Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * FD polling functions for linux epoll() |
| 3 | * |
Willy Tarreau | b7f694f | 2008-06-22 17:18:02 +0200 | [diff] [blame] | 4 | * Copyright 2000-2008 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +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 | */ |
| 12 | |
| 13 | #include <unistd.h> |
| 14 | #include <sys/time.h> |
| 15 | #include <sys/types.h> |
| 16 | |
| 17 | #include <common/compat.h> |
| 18 | #include <common/config.h> |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 19 | #include <common/standard.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 20 | #include <common/ticks.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 21 | #include <common/time.h> |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 22 | #include <common/tools.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 23 | |
| 24 | #include <types/fd.h> |
| 25 | #include <types/global.h> |
| 26 | |
Willy Tarreau | 332740d | 2009-05-10 09:57:21 +0200 | [diff] [blame] | 27 | #include <proto/signal.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 28 | #include <proto/task.h> |
| 29 | |
| 30 | #if defined(USE_MY_EPOLL) |
Willy Tarreau | 69801b8 | 2007-04-09 15:28:51 +0200 | [diff] [blame] | 31 | #include <common/epoll.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 32 | #include <errno.h> |
| 33 | #include <sys/syscall.h> |
Willy Tarreau | b40d420 | 2007-04-15 23:57:41 +0200 | [diff] [blame] | 34 | static _syscall1 (int, epoll_create, int, size); |
| 35 | static _syscall4 (int, epoll_ctl, int, epfd, int, op, int, fd, struct epoll_event *, event); |
| 36 | static _syscall4 (int, epoll_wait, int, epfd, struct epoll_event *, events, int, maxevents, int, timeout); |
Willy Tarreau | 69801b8 | 2007-04-09 15:28:51 +0200 | [diff] [blame] | 37 | #else |
| 38 | #include <sys/epoll.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 39 | #endif |
| 40 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 41 | /* This is what we store in a list. It consists in old values and fds to detect changes. */ |
| 42 | struct fd_chg { |
| 43 | unsigned int prev:2; // previous state mask. New one is in fd_evts. |
| 44 | unsigned int fd:30; // file descriptor |
| 45 | }; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 46 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 47 | static int nbchanges = 0; // number of changes pending |
| 48 | static struct fd_chg *chg_list = NULL; // list of changes |
| 49 | static struct fd_chg **chg_ptr = NULL; // per-fd changes |
| 50 | |
| 51 | /* Each 32-bit word contains 2-bit descriptors of the latest state for 16 FDs : |
| 52 | * desc = (u32 >> (2*fd)) & 3 |
| 53 | * desc = 0 : FD not set |
| 54 | * 1 : WRITE not set, READ set |
| 55 | * 2 : WRITE set, READ not set |
| 56 | * 3 : WRITE set, READ set |
| 57 | */ |
| 58 | |
| 59 | static uint32_t *fd_evts; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 60 | |
| 61 | /* private data */ |
| 62 | static struct epoll_event *epoll_events; |
| 63 | static int epoll_fd; |
| 64 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 65 | /* This structure may be used for any purpose. Warning! do not use it in |
| 66 | * recursive functions ! |
| 67 | */ |
| 68 | static struct epoll_event ev; |
| 69 | |
| 70 | /* converts a direction to a single bitmask. |
| 71 | * 0 => 1 |
| 72 | * 1 => 2 |
| 73 | */ |
| 74 | #define DIR2MSK(dir) ((dir) + 1) |
| 75 | |
| 76 | /* converts an FD to an fd_evts offset and to a bit shift */ |
| 77 | #define FD2OFS(fd) ((uint32_t)(fd) >> 4) |
| 78 | #define FD2BIT(fd) (((uint32_t)(fd) & 0xF) << 1) |
| 79 | #define FD2MSK(fd) (3 << FD2BIT(fd)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 80 | |
| 81 | /* |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 82 | * Returns non-zero if direction <dir> is already set for <fd>. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 83 | */ |
Willy Tarreau | 63455a9 | 2007-04-09 15:34:49 +0200 | [diff] [blame] | 84 | REGPRM2 static int __fd_is_set(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 85 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 86 | return (fd_evts[FD2OFS(fd)] >> FD2BIT(fd)) & DIR2MSK(dir); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 87 | } |
| 88 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 89 | /* |
| 90 | * Adds, mods or deletes <fd> according to current status and to new desired |
| 91 | * mask <dmask> : |
| 92 | * |
| 93 | * 0 = nothing |
| 94 | * 1 = EPOLLIN |
| 95 | * 2 = EPOLLOUT |
| 96 | * 3 = EPOLLIN | EPOLLOUT |
| 97 | * |
| 98 | */ |
| 99 | static int dmsk2event[4] = { 0, EPOLLIN, EPOLLOUT, EPOLLIN | EPOLLOUT }; |
| 100 | |
| 101 | |
| 102 | REGPRM2 static void fd_flush_changes() |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 103 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 104 | uint32_t ofs; |
| 105 | int opcode; |
| 106 | int prev, next; |
| 107 | int chg, fd; |
| 108 | |
| 109 | for (chg = 0; chg < nbchanges; chg++) { |
| 110 | prev = chg_list[chg].prev; |
| 111 | fd = chg_list[chg].fd; |
| 112 | chg_ptr[fd] = NULL; |
| 113 | |
| 114 | ofs = FD2OFS(fd); |
| 115 | next = (fd_evts[ofs] >> FD2BIT(fd)) & 3; |
| 116 | |
| 117 | if (prev == next) |
| 118 | /* if the value was unchanged, do nothing */ |
| 119 | continue; |
| 120 | |
| 121 | ev.events = dmsk2event[next]; |
| 122 | ev.data.fd = fd; |
| 123 | |
| 124 | if (prev) { |
| 125 | if (!next) { |
| 126 | /* we want to delete it now */ |
| 127 | opcode = EPOLL_CTL_DEL; |
| 128 | } else { |
| 129 | /* we want to switch it */ |
| 130 | opcode = EPOLL_CTL_MOD; |
| 131 | } |
| 132 | } else { |
| 133 | /* the FD did not exist, let's add it */ |
| 134 | opcode = EPOLL_CTL_ADD; |
| 135 | } |
| 136 | |
| 137 | epoll_ctl(epoll_fd, opcode, fd, &ev); |
| 138 | } |
| 139 | nbchanges = 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 140 | } |
| 141 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 142 | REGPRM2 static void alloc_chg_list(const int fd, int old_evt) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 143 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 144 | struct fd_chg *ptr; |
| 145 | |
Willy Tarreau | 70bcfb7 | 2008-01-27 02:21:53 +0100 | [diff] [blame] | 146 | if (unlikely(chg_ptr[fd] != NULL)) |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 147 | return; |
| 148 | |
| 149 | #if LIMIT_NUMBER_OF_CHANGES |
| 150 | if (nbchanges > 2) |
| 151 | fd_flush_changes(); |
| 152 | #endif |
| 153 | |
| 154 | ptr = &chg_list[nbchanges++]; |
| 155 | chg_ptr[fd] = ptr; |
| 156 | ptr->fd = fd; |
| 157 | ptr->prev = old_evt; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 158 | } |
| 159 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 160 | REGPRM2 static int __fd_set(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 161 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 162 | uint32_t ofs = FD2OFS(fd); |
| 163 | uint32_t dmsk = DIR2MSK(dir); |
| 164 | uint32_t old_evt; |
| 165 | |
| 166 | old_evt = fd_evts[ofs] >> FD2BIT(fd); |
| 167 | old_evt &= 3; |
| 168 | if (unlikely(old_evt & dmsk)) |
| 169 | return 0; |
| 170 | |
| 171 | alloc_chg_list(fd, old_evt); |
| 172 | dmsk <<= FD2BIT(fd); |
| 173 | fd_evts[ofs] |= dmsk; |
| 174 | return 1; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 175 | } |
| 176 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 177 | REGPRM2 static int __fd_clr(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 178 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 179 | uint32_t ofs = FD2OFS(fd); |
| 180 | uint32_t dmsk = DIR2MSK(dir); |
| 181 | uint32_t old_evt; |
| 182 | |
| 183 | old_evt = fd_evts[ofs] >> FD2BIT(fd); |
| 184 | old_evt &= 3; |
| 185 | if (unlikely(!(old_evt & dmsk))) |
| 186 | return 0; |
| 187 | |
| 188 | alloc_chg_list(fd, old_evt); |
| 189 | dmsk <<= FD2BIT(fd); |
| 190 | fd_evts[ofs] &= ~dmsk; |
| 191 | return 1; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 194 | REGPRM1 static void __fd_rem(int fd) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 195 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 196 | uint32_t ofs = FD2OFS(fd); |
| 197 | |
| 198 | if (unlikely(!((fd_evts[ofs] >> FD2BIT(fd)) & 3))) |
| 199 | return; |
| 200 | |
| 201 | alloc_chg_list(fd, 0); |
| 202 | fd_evts[ofs] &= ~FD2MSK(fd); |
| 203 | return; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 204 | } |
| 205 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 206 | /* |
| 207 | * On valid epoll() implementations, a call to close() automatically removes |
| 208 | * the fds. This means that the FD will appear as previously unset. |
| 209 | */ |
| 210 | REGPRM1 static void __fd_clo(int fd) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 211 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 212 | struct fd_chg *ptr; |
| 213 | fd_evts[FD2OFS(fd)] &= ~FD2MSK(fd); |
| 214 | ptr = chg_ptr[fd]; |
| 215 | if (ptr) { |
| 216 | ptr->prev = 0; |
| 217 | chg_ptr[fd] = NULL; |
| 218 | } |
| 219 | return; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 220 | } |
| 221 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 222 | /* |
| 223 | * epoll() poller |
| 224 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 225 | REGPRM2 static void _do_poll(struct poller *p, int exp) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 226 | { |
| 227 | int status; |
| 228 | int fd; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 229 | int count; |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 230 | int wait_time; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 231 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 232 | if (likely(nbchanges)) |
| 233 | fd_flush_changes(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 234 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 235 | /* now let's wait for events */ |
Willy Tarreau | 332740d | 2009-05-10 09:57:21 +0200 | [diff] [blame] | 236 | if (run_queue || signal_queue_len) |
Willy Tarreau | 3a62811 | 2008-06-13 21:06:56 +0200 | [diff] [blame] | 237 | wait_time = 0; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 238 | else if (!exp) |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 239 | wait_time = MAX_DELAY_MS; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 240 | else if (tick_is_expired(exp, now_ms)) |
Willy Tarreau | bdefc51 | 2007-05-14 02:02:04 +0200 | [diff] [blame] | 241 | wait_time = 0; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 242 | else { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 243 | wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 244 | if (wait_time > MAX_DELAY_MS) |
| 245 | wait_time = MAX_DELAY_MS; |
| 246 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 247 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 248 | fd = MIN(maxfd, global.tune.maxpollevents); |
| 249 | status = epoll_wait(epoll_fd, epoll_events, fd, wait_time); |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 250 | tv_update_date(wait_time, status); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 251 | |
| 252 | for (count = 0; count < status; count++) { |
| 253 | fd = epoll_events[count].data.fd; |
| 254 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 255 | if ((fd_evts[FD2OFS(fd)] >> FD2BIT(fd)) & DIR2MSK(DIR_RD)) { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 256 | if (fdtab[fd].state == FD_STCLOSE) |
| 257 | continue; |
| 258 | if (epoll_events[count].events & ( EPOLLIN | EPOLLERR | EPOLLHUP )) |
| 259 | fdtab[fd].cb[DIR_RD].f(fd); |
| 260 | } |
| 261 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 262 | if ((fd_evts[FD2OFS(fd)] >> FD2BIT(fd)) & DIR2MSK(DIR_WR)) { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 263 | if (fdtab[fd].state == FD_STCLOSE) |
| 264 | continue; |
| 265 | if (epoll_events[count].events & ( EPOLLOUT | EPOLLERR | EPOLLHUP )) |
| 266 | fdtab[fd].cb[DIR_WR].f(fd); |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | /* |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 272 | * Initialization of the epoll() poller. |
| 273 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 274 | * disables the poller by setting its pref to 0. |
| 275 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 276 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 277 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 278 | __label__ fail_chg_ptr, fail_chg_list, fail_fdevt, fail_ee, fail_fd; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 279 | int fd_set_bytes; |
| 280 | |
| 281 | p->private = NULL; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 282 | fd_set_bytes = 4 * (global.maxsock + 15) / 16; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 283 | |
| 284 | epoll_fd = epoll_create(global.maxsock + 1); |
| 285 | if (epoll_fd < 0) |
| 286 | goto fail_fd; |
| 287 | |
| 288 | epoll_events = (struct epoll_event*) |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 289 | calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 290 | |
| 291 | if (epoll_events == NULL) |
| 292 | goto fail_ee; |
| 293 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 294 | if ((fd_evts = (uint32_t *)calloc(1, fd_set_bytes)) == NULL) |
| 295 | goto fail_fdevt; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 296 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 297 | chg_list = (struct fd_chg *)calloc(1, sizeof(struct fd_chg) * global.maxsock); |
| 298 | if (chg_list == NULL) |
| 299 | goto fail_chg_list; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 300 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 301 | chg_ptr = (struct fd_chg **)calloc(1, sizeof(struct fd_chg*) * global.maxsock); |
| 302 | if (chg_ptr == NULL) |
| 303 | goto fail_chg_ptr; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 304 | |
| 305 | return 1; |
| 306 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 307 | fail_chg_ptr: |
| 308 | free(chg_list); |
| 309 | fail_chg_list: |
| 310 | free(fd_evts); |
| 311 | fail_fdevt: |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 312 | free(epoll_events); |
| 313 | fail_ee: |
| 314 | close(epoll_fd); |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 315 | epoll_fd = -1; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 316 | fail_fd: |
| 317 | p->pref = 0; |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | * Termination of the epoll() poller. |
| 323 | * Memory is released and the poller is marked as unselectable. |
| 324 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 325 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 326 | { |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 327 | fd_flush_changes(); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 328 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 329 | free(chg_ptr); |
| 330 | free(chg_list); |
| 331 | free(fd_evts); |
| 332 | free(epoll_events); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 333 | |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 334 | if (epoll_fd >= 0) { |
| 335 | close(epoll_fd); |
| 336 | epoll_fd = -1; |
| 337 | } |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 338 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 339 | chg_ptr = NULL; |
| 340 | chg_list = NULL; |
| 341 | fd_evts = NULL; |
| 342 | epoll_events = NULL; |
| 343 | |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 344 | p->private = NULL; |
| 345 | p->pref = 0; |
| 346 | } |
| 347 | |
| 348 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 349 | * Check that the poller works. |
| 350 | * Returns 1 if OK, otherwise 0. |
| 351 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 352 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 353 | { |
| 354 | int fd; |
| 355 | |
| 356 | fd = epoll_create(global.maxsock + 1); |
| 357 | if (fd < 0) |
| 358 | return 0; |
| 359 | close(fd); |
| 360 | return 1; |
| 361 | } |
| 362 | |
| 363 | /* |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 364 | * Recreate the epoll file descriptor after a fork(). Returns 1 if OK, |
| 365 | * otherwise 0. It will ensure that all processes will not share their |
| 366 | * epoll_fd. Some side effects were encountered because of this, such |
| 367 | * as epoll_wait() returning an FD which was previously deleted. |
| 368 | */ |
| 369 | REGPRM1 static int _do_fork(struct poller *p) |
| 370 | { |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 371 | if (epoll_fd >= 0) |
| 372 | close(epoll_fd); |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 373 | epoll_fd = epoll_create(global.maxsock + 1); |
| 374 | if (epoll_fd < 0) |
| 375 | return 0; |
| 376 | return 1; |
| 377 | } |
| 378 | |
| 379 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 380 | * It is a constructor, which means that it will automatically be called before |
| 381 | * main(). This is GCC-specific but it works at least since 2.95. |
| 382 | * Special care must be taken so that it does not need any uninitialized data. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 383 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 384 | __attribute__((constructor)) |
| 385 | static void _do_register(void) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 386 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 387 | struct poller *p; |
| 388 | |
| 389 | if (nbpollers >= MAX_POLLERS) |
| 390 | return; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 391 | |
| 392 | epoll_fd = -1; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 393 | p = &pollers[nbpollers++]; |
| 394 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 395 | p->name = "epoll"; |
| 396 | p->pref = 300; |
| 397 | p->private = NULL; |
| 398 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 399 | p->test = _do_test; |
| 400 | p->init = _do_init; |
| 401 | p->term = _do_term; |
| 402 | p->poll = _do_poll; |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 403 | p->fork = _do_fork; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 404 | |
| 405 | p->is_set = __fd_is_set; |
| 406 | p->cond_s = p->set = __fd_set; |
| 407 | p->cond_c = p->clr = __fd_clr; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 408 | p->rem = __fd_rem; |
| 409 | p->clo = __fd_clo; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | |
| 413 | /* |
| 414 | * Local variables: |
| 415 | * c-indent-level: 8 |
| 416 | * c-basic-offset: 8 |
| 417 | * End: |
| 418 | */ |