Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 2 | * FD polling functions for Linux epoll |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 4 | * Copyright 2000-2014 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. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <unistd.h> |
| 13 | #include <sys/time.h> |
| 14 | #include <sys/types.h> |
| 15 | |
| 16 | #include <common/compat.h> |
| 17 | #include <common/config.h> |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 18 | #include <common/debug.h> |
Willy Tarreau | 43d8fb2 | 2011-08-22 17:12:02 +0200 | [diff] [blame] | 19 | #include <common/epoll.h> |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 20 | #include <common/hathreads.h> |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 21 | #include <common/standard.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 22 | #include <common/ticks.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 23 | #include <common/time.h> |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 24 | #include <common/tools.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 25 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 26 | #include <types/global.h> |
| 27 | |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 28 | #include <proto/activity.h> |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 29 | #include <proto/fd.h> |
Willy Tarreau | beb859a | 2018-11-22 18:07:59 +0100 | [diff] [blame] | 30 | #include <proto/signal.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 31 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 32 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 33 | /* private data */ |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 34 | static THREAD_LOCAL struct epoll_event *epoll_events = NULL; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 35 | static int epoll_fd[MAX_THREADS]; // per-thread epoll_fd |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 37 | /* This structure may be used for any purpose. Warning! do not use it in |
| 38 | * recursive functions ! |
| 39 | */ |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 40 | static THREAD_LOCAL struct epoll_event ev; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 41 | |
Willy Tarreau | 1c07b07 | 2013-01-07 16:19:18 +0100 | [diff] [blame] | 42 | #ifndef EPOLLRDHUP |
| 43 | /* EPOLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */ |
| 44 | #define EPOLLRDHUP 0x2000 |
| 45 | #endif |
| 46 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 47 | /* |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 48 | * Immediately remove file descriptor from epoll set upon close. |
| 49 | * Since we forked, some fds share inodes with the other process, and epoll may |
| 50 | * send us events even though this process closed the fd (see man 7 epoll, |
| 51 | * "Questions and answers", Q 6). |
| 52 | */ |
| 53 | REGPRM1 static void __fd_clo(int fd) |
| 54 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 55 | if (unlikely(fdtab[fd].cloned)) { |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 56 | unsigned long m = polled_mask[fd]; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 57 | int i; |
| 58 | |
| 59 | for (i = global.nbthread - 1; i >= 0; i--) |
| 60 | if (m & (1UL << i)) |
| 61 | epoll_ctl(epoll_fd[i], EPOLL_CTL_DEL, fd, &ev); |
| 62 | } |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 63 | } |
| 64 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 65 | static void _update_fd(int fd) |
| 66 | { |
| 67 | int en, opcode; |
| 68 | |
| 69 | en = fdtab[fd].state; |
| 70 | |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 71 | if (polled_mask[fd] & tid_bit) { |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 72 | if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) { |
| 73 | /* fd removed from poll list */ |
| 74 | opcode = EPOLL_CTL_DEL; |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 75 | HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 76 | } |
| 77 | else { |
| 78 | /* fd status changed */ |
| 79 | opcode = EPOLL_CTL_MOD; |
| 80 | } |
| 81 | } |
| 82 | else if ((fdtab[fd].thread_mask & tid_bit) && (en & FD_EV_POLLED_RW)) { |
| 83 | /* new fd in the poll list */ |
| 84 | opcode = EPOLL_CTL_ADD; |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 85 | HA_ATOMIC_OR(&polled_mask[fd], tid_bit); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 86 | } |
| 87 | else { |
| 88 | return; |
| 89 | } |
| 90 | |
| 91 | /* construct the epoll events based on new state */ |
| 92 | ev.events = 0; |
| 93 | if (en & FD_EV_POLLED_R) |
| 94 | ev.events |= EPOLLIN | EPOLLRDHUP; |
| 95 | |
| 96 | if (en & FD_EV_POLLED_W) |
| 97 | ev.events |= EPOLLOUT; |
| 98 | |
| 99 | ev.data.fd = fd; |
| 100 | epoll_ctl(epoll_fd[tid], opcode, fd, &ev); |
| 101 | } |
| 102 | |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 103 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 104 | * Linux epoll() poller |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 105 | */ |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 106 | REGPRM2 static void _do_poll(struct poller *p, int exp) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 107 | { |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 108 | int status; |
| 109 | int fd; |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 110 | int count; |
| 111 | int updt_idx; |
| 112 | int wait_time; |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 113 | int old_fd; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 114 | |
Willy Tarreau | 5be2f35 | 2014-11-19 19:43:05 +0100 | [diff] [blame] | 115 | /* first, scan the update list to find polling changes */ |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 116 | for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) { |
| 117 | fd = fd_updt[updt_idx]; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 118 | |
Olivier Houchard | 8ef1a6b | 2018-04-03 19:06:18 +0200 | [diff] [blame] | 119 | HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 120 | if (!fdtab[fd].owner) { |
| 121 | activity[tid].poll_drop++; |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 122 | continue; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 123 | } |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 124 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 125 | _update_fd(fd); |
| 126 | } |
| 127 | fd_nbupdt = 0; |
| 128 | /* Scan the global update list */ |
| 129 | for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) { |
| 130 | if (fd == -2) { |
| 131 | fd = old_fd; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 132 | continue; |
| 133 | } |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 134 | else if (fd <= -3) |
| 135 | fd = -fd -4; |
| 136 | if (fd == -1) |
| 137 | break; |
| 138 | if (fdtab[fd].update_mask & tid_bit) |
| 139 | done_update_polling(fd); |
| 140 | else |
| 141 | continue; |
| 142 | if (!fdtab[fd].owner) |
| 143 | continue; |
| 144 | _update_fd(fd); |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 145 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 146 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 147 | thread_harmless_now(); |
| 148 | |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 149 | /* now let's wait for polled events */ |
Willy Tarreau | f37ba94 | 2018-10-17 11:25:54 +0200 | [diff] [blame] | 150 | wait_time = compute_poll_timeout(exp); |
Willy Tarreau | 7e9c4ae | 2018-10-17 14:31:19 +0200 | [diff] [blame] | 151 | tv_entering_poll(); |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 152 | activity_count_runtime(); |
Willy Tarreau | beb859a | 2018-11-22 18:07:59 +0100 | [diff] [blame] | 153 | do { |
| 154 | int timeout = (global.tune.options & GTUNE_BUSY_POLLING) ? 0 : wait_time; |
| 155 | |
| 156 | status = epoll_wait(epoll_fd[tid], epoll_events, global.tune.maxpollevents, timeout); |
| 157 | tv_update_date(timeout, status); |
| 158 | |
| 159 | if (status) |
| 160 | break; |
| 161 | if (timeout || !wait_time) |
| 162 | break; |
| 163 | if (signal_queue_len) |
| 164 | break; |
| 165 | if (tick_isset(exp) && tick_is_expired(exp, now_ms)) |
| 166 | break; |
| 167 | } while (1); |
| 168 | |
Willy Tarreau | 7e9c4ae | 2018-10-17 14:31:19 +0200 | [diff] [blame] | 169 | tv_leaving_poll(wait_time, status); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 170 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 171 | thread_harmless_end(); |
| 172 | |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 173 | /* process polled events */ |
| 174 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 175 | for (count = 0; count < status; count++) { |
Willy Tarreau | 1c07b07 | 2013-01-07 16:19:18 +0100 | [diff] [blame] | 176 | unsigned int n; |
| 177 | unsigned int e = epoll_events[count].events; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 178 | fd = epoll_events[count].data.fd; |
| 179 | |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 180 | if (!fdtab[fd].owner) { |
| 181 | activity[tid].poll_dead++; |
| 182 | continue; |
| 183 | } |
| 184 | |
| 185 | if (!(fdtab[fd].thread_mask & tid_bit)) { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 186 | /* FD has been migrated */ |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 187 | activity[tid].poll_skip++; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 188 | epoll_ctl(epoll_fd[tid], EPOLL_CTL_DEL, fd, &ev); |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 189 | HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit); |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 190 | continue; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 191 | } |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 192 | |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 193 | /* it looks complicated but gcc can optimize it away when constants |
Willy Tarreau | 462c720 | 2012-12-13 22:26:37 +0100 | [diff] [blame] | 194 | * have same values... In fact it depends on gcc :-( |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 195 | */ |
Willy Tarreau | 462c720 | 2012-12-13 22:26:37 +0100 | [diff] [blame] | 196 | if (EPOLLIN == FD_POLL_IN && EPOLLOUT == FD_POLL_OUT && |
| 197 | EPOLLPRI == FD_POLL_PRI && EPOLLERR == FD_POLL_ERR && |
| 198 | EPOLLHUP == FD_POLL_HUP) { |
Willy Tarreau | 6320c3c | 2012-12-13 23:52:58 +0100 | [diff] [blame] | 199 | n = e & (EPOLLIN|EPOLLOUT|EPOLLPRI|EPOLLERR|EPOLLHUP); |
Willy Tarreau | 462c720 | 2012-12-13 22:26:37 +0100 | [diff] [blame] | 200 | } |
| 201 | else { |
Willy Tarreau | 6320c3c | 2012-12-13 23:52:58 +0100 | [diff] [blame] | 202 | n = ((e & EPOLLIN ) ? FD_POLL_IN : 0) | |
Willy Tarreau | 462c720 | 2012-12-13 22:26:37 +0100 | [diff] [blame] | 203 | ((e & EPOLLPRI) ? FD_POLL_PRI : 0) | |
| 204 | ((e & EPOLLOUT) ? FD_POLL_OUT : 0) | |
| 205 | ((e & EPOLLERR) ? FD_POLL_ERR : 0) | |
| 206 | ((e & EPOLLHUP) ? FD_POLL_HUP : 0); |
| 207 | } |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 208 | |
Willy Tarreau | 1c07b07 | 2013-01-07 16:19:18 +0100 | [diff] [blame] | 209 | /* always remap RDHUP to HUP as they're used similarly */ |
Willy Tarreau | 5a76769 | 2017-03-13 11:38:28 +0100 | [diff] [blame] | 210 | if (e & EPOLLRDHUP) { |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 211 | HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP); |
Willy Tarreau | 1c07b07 | 2013-01-07 16:19:18 +0100 | [diff] [blame] | 212 | n |= FD_POLL_HUP; |
Willy Tarreau | 5a76769 | 2017-03-13 11:38:28 +0100 | [diff] [blame] | 213 | } |
Christopher Faulet | ab62f51 | 2017-08-30 10:34:36 +0200 | [diff] [blame] | 214 | fd_update_events(fd, n); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 215 | } |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 216 | /* the caller will take care of cached events */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 217 | } |
| 218 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 219 | static int init_epoll_per_thread() |
| 220 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 221 | int fd; |
| 222 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 223 | epoll_events = calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents); |
| 224 | if (epoll_events == NULL) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 225 | goto fail_alloc; |
| 226 | |
Christopher Faulet | 3e805ed | 2018-01-25 16:18:09 +0100 | [diff] [blame] | 227 | if (MAX_THREADS > 1 && tid) { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 228 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 229 | if (epoll_fd[tid] < 0) |
| 230 | goto fail_fd; |
| 231 | } |
| 232 | |
| 233 | /* we may have to unregister some events initially registered on the |
| 234 | * original fd when it was alone, and/or to register events on the new |
| 235 | * fd for this thread. Let's just mark them as updated, the poller will |
| 236 | * do the rest. |
| 237 | */ |
Willy Tarreau | ce036bc | 2018-01-29 14:58:02 +0100 | [diff] [blame] | 238 | for (fd = 0; fd < global.maxsock; fd++) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 239 | updt_fd_polling(fd); |
| 240 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 241 | return 1; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 242 | fail_fd: |
| 243 | free(epoll_events); |
| 244 | fail_alloc: |
| 245 | return 0; |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static void deinit_epoll_per_thread() |
| 249 | { |
Christopher Faulet | 3e805ed | 2018-01-25 16:18:09 +0100 | [diff] [blame] | 250 | if (MAX_THREADS > 1 && tid) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 251 | close(epoll_fd[tid]); |
| 252 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 253 | free(epoll_events); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 254 | epoll_events = NULL; |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 255 | } |
| 256 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 257 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 258 | * Initialization of the epoll() poller. |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 259 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 260 | * disables the poller by setting its pref to 0. |
| 261 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 262 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 263 | { |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 264 | p->private = NULL; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 265 | |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 266 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 267 | if (epoll_fd[tid] < 0) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 268 | goto fail_fd; |
| 269 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 270 | hap_register_per_thread_init(init_epoll_per_thread); |
| 271 | hap_register_per_thread_deinit(deinit_epoll_per_thread); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 272 | |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 273 | return 1; |
| 274 | |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 275 | fail_fd: |
| 276 | p->pref = 0; |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 281 | * Termination of the epoll() poller. |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 282 | * Memory is released and the poller is marked as unselectable. |
| 283 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 284 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 285 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 286 | if (epoll_fd[tid] >= 0) { |
| 287 | close(epoll_fd[tid]); |
| 288 | epoll_fd[tid] = -1; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 289 | } |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 290 | |
| 291 | p->private = NULL; |
| 292 | p->pref = 0; |
| 293 | } |
| 294 | |
| 295 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 296 | * Check that the poller works. |
| 297 | * Returns 1 if OK, otherwise 0. |
| 298 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 299 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 300 | { |
| 301 | int fd; |
| 302 | |
| 303 | fd = epoll_create(global.maxsock + 1); |
| 304 | if (fd < 0) |
| 305 | return 0; |
| 306 | close(fd); |
| 307 | return 1; |
| 308 | } |
| 309 | |
| 310 | /* |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 311 | * Recreate the epoll file descriptor after a fork(). Returns 1 if OK, |
| 312 | * otherwise 0. It will ensure that all processes will not share their |
| 313 | * epoll_fd. Some side effects were encountered because of this, such |
| 314 | * as epoll_wait() returning an FD which was previously deleted. |
| 315 | */ |
| 316 | REGPRM1 static int _do_fork(struct poller *p) |
| 317 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 318 | if (epoll_fd[tid] >= 0) |
| 319 | close(epoll_fd[tid]); |
| 320 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 321 | if (epoll_fd[tid] < 0) |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 322 | return 0; |
| 323 | return 1; |
| 324 | } |
| 325 | |
| 326 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 327 | * It is a constructor, which means that it will automatically be called before |
| 328 | * main(). This is GCC-specific but it works at least since 2.95. |
| 329 | * 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] | 330 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 331 | __attribute__((constructor)) |
| 332 | static void _do_register(void) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 333 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 334 | struct poller *p; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 335 | int i; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 336 | |
| 337 | if (nbpollers >= MAX_POLLERS) |
| 338 | return; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 339 | |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 340 | for (i = 0; i < MAX_THREADS; i++) |
| 341 | epoll_fd[i] = -1; |
| 342 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 343 | p = &pollers[nbpollers++]; |
| 344 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 345 | p->name = "epoll"; |
| 346 | p->pref = 300; |
Willy Tarreau | 5a76769 | 2017-03-13 11:38:28 +0100 | [diff] [blame] | 347 | p->flags = 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 348 | p->private = NULL; |
| 349 | |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 350 | p->clo = __fd_clo; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 351 | p->test = _do_test; |
| 352 | p->init = _do_init; |
| 353 | p->term = _do_term; |
| 354 | p->poll = _do_poll; |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 355 | p->fork = _do_fork; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | |
| 359 | /* |
| 360 | * Local variables: |
| 361 | * c-indent-level: 8 |
| 362 | * c-basic-offset: 8 |
| 363 | * End: |
| 364 | */ |