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 | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 56 | unsigned long m = polled_mask[fd].poll_recv | polled_mask[fd].poll_send; |
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 | |
Willy Tarreau | 5d7dcc2 | 2019-12-26 16:40:24 +0100 | [diff] [blame] | 71 | /* if we're already polling or are going to poll for this FD and it's |
| 72 | * neither active nor ready, force it to be active so that we don't |
| 73 | * needlessly unsubscribe then re-subscribe it. |
| 74 | */ |
| 75 | if (!(en & FD_EV_READY_R) && |
| 76 | ((en & FD_EV_ACTIVE_W) || |
| 77 | ((polled_mask[fd].poll_send | polled_mask[fd].poll_recv) & tid_bit))) |
| 78 | en |= FD_EV_ACTIVE_R; |
| 79 | |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 80 | if ((polled_mask[fd].poll_send | polled_mask[fd].poll_recv) & tid_bit) { |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 81 | if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_ACTIVE_RW)) { |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 82 | /* fd removed from poll list */ |
| 83 | opcode = EPOLL_CTL_DEL; |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 84 | if (polled_mask[fd].poll_recv & tid_bit) |
| 85 | _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, ~tid_bit); |
| 86 | if (polled_mask[fd].poll_send & tid_bit) |
| 87 | _HA_ATOMIC_AND(&polled_mask[fd].poll_send, ~tid_bit); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 88 | } |
| 89 | else { |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 90 | if (((en & FD_EV_ACTIVE_R) != 0) == |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 91 | ((polled_mask[fd].poll_recv & tid_bit) != 0) && |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 92 | ((en & FD_EV_ACTIVE_W) != 0) == |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 93 | ((polled_mask[fd].poll_send & tid_bit) != 0)) |
| 94 | return; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 95 | if (en & FD_EV_ACTIVE_R) { |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 96 | if (!(polled_mask[fd].poll_recv & tid_bit)) |
| 97 | _HA_ATOMIC_OR(&polled_mask[fd].poll_recv, tid_bit); |
| 98 | } else { |
| 99 | if (polled_mask[fd].poll_recv & tid_bit) |
| 100 | _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, ~tid_bit); |
| 101 | } |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 102 | if (en & FD_EV_ACTIVE_W) { |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 103 | if (!(polled_mask[fd].poll_send & tid_bit)) |
| 104 | _HA_ATOMIC_OR(&polled_mask[fd].poll_send, tid_bit); |
| 105 | } else { |
| 106 | if (polled_mask[fd].poll_send & tid_bit) |
| 107 | _HA_ATOMIC_AND(&polled_mask[fd].poll_send, ~tid_bit); |
| 108 | } |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 109 | /* fd status changed */ |
| 110 | opcode = EPOLL_CTL_MOD; |
| 111 | } |
| 112 | } |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 113 | else if ((fdtab[fd].thread_mask & tid_bit) && (en & FD_EV_ACTIVE_RW)) { |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 114 | /* new fd in the poll list */ |
| 115 | opcode = EPOLL_CTL_ADD; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 116 | if (en & FD_EV_ACTIVE_R) |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 117 | _HA_ATOMIC_OR(&polled_mask[fd].poll_recv, tid_bit); |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 118 | if (en & FD_EV_ACTIVE_W) |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 119 | _HA_ATOMIC_OR(&polled_mask[fd].poll_send, tid_bit); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 120 | } |
| 121 | else { |
| 122 | return; |
| 123 | } |
| 124 | |
| 125 | /* construct the epoll events based on new state */ |
| 126 | ev.events = 0; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 127 | if (en & FD_EV_ACTIVE_R) |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 128 | ev.events |= EPOLLIN | EPOLLRDHUP; |
| 129 | |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 130 | if (en & FD_EV_ACTIVE_W) |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 131 | ev.events |= EPOLLOUT; |
| 132 | |
| 133 | ev.data.fd = fd; |
| 134 | epoll_ctl(epoll_fd[tid], opcode, fd, &ev); |
| 135 | } |
| 136 | |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 137 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 138 | * Linux epoll() poller |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 139 | */ |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 140 | REGPRM3 static void _do_poll(struct poller *p, int exp, int wake) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 141 | { |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 142 | int status; |
| 143 | int fd; |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 144 | int count; |
| 145 | int updt_idx; |
| 146 | int wait_time; |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 147 | int old_fd; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 148 | |
Willy Tarreau | 5be2f35 | 2014-11-19 19:43:05 +0100 | [diff] [blame] | 149 | /* first, scan the update list to find polling changes */ |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 150 | for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) { |
| 151 | fd = fd_updt[updt_idx]; |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 152 | |
Olivier Houchard | cb6c927 | 2019-03-08 18:49:54 +0100 | [diff] [blame] | 153 | _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 154 | if (!fdtab[fd].owner) { |
| 155 | activity[tid].poll_drop++; |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 156 | continue; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 157 | } |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 158 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 159 | _update_fd(fd); |
| 160 | } |
| 161 | fd_nbupdt = 0; |
| 162 | /* Scan the global update list */ |
| 163 | for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) { |
| 164 | if (fd == -2) { |
| 165 | fd = old_fd; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 166 | continue; |
| 167 | } |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 168 | else if (fd <= -3) |
| 169 | fd = -fd -4; |
| 170 | if (fd == -1) |
| 171 | break; |
| 172 | if (fdtab[fd].update_mask & tid_bit) |
| 173 | done_update_polling(fd); |
| 174 | else |
| 175 | continue; |
| 176 | if (!fdtab[fd].owner) |
| 177 | continue; |
| 178 | _update_fd(fd); |
Willy Tarreau | 58094f2 | 2007-04-10 01:33:20 +0200 | [diff] [blame] | 179 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 180 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 181 | thread_harmless_now(); |
| 182 | |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 183 | /* now let's wait for polled events */ |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 184 | wait_time = wake ? 0 : compute_poll_timeout(exp); |
Willy Tarreau | 7e9c4ae | 2018-10-17 14:31:19 +0200 | [diff] [blame] | 185 | tv_entering_poll(); |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 186 | activity_count_runtime(); |
Willy Tarreau | beb859a | 2018-11-22 18:07:59 +0100 | [diff] [blame] | 187 | do { |
| 188 | int timeout = (global.tune.options & GTUNE_BUSY_POLLING) ? 0 : wait_time; |
| 189 | |
| 190 | status = epoll_wait(epoll_fd[tid], epoll_events, global.tune.maxpollevents, timeout); |
| 191 | tv_update_date(timeout, status); |
| 192 | |
| 193 | if (status) |
| 194 | break; |
| 195 | if (timeout || !wait_time) |
| 196 | break; |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 197 | if (signal_queue_len || wake) |
Willy Tarreau | beb859a | 2018-11-22 18:07:59 +0100 | [diff] [blame] | 198 | break; |
| 199 | if (tick_isset(exp) && tick_is_expired(exp, now_ms)) |
| 200 | break; |
| 201 | } while (1); |
| 202 | |
Willy Tarreau | 7e9c4ae | 2018-10-17 14:31:19 +0200 | [diff] [blame] | 203 | tv_leaving_poll(wait_time, status); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 204 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 205 | thread_harmless_end(); |
Olivier Houchard | 305d5ab | 2019-07-24 18:07:06 +0200 | [diff] [blame] | 206 | if (sleeping_thread_mask & tid_bit) |
| 207 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit); |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 208 | |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 209 | /* process polled events */ |
| 210 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 211 | for (count = 0; count < status; count++) { |
Willy Tarreau | 1c07b07 | 2013-01-07 16:19:18 +0100 | [diff] [blame] | 212 | unsigned int n; |
| 213 | unsigned int e = epoll_events[count].events; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 214 | fd = epoll_events[count].data.fd; |
| 215 | |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 216 | if (!fdtab[fd].owner) { |
| 217 | activity[tid].poll_dead++; |
| 218 | continue; |
| 219 | } |
| 220 | |
| 221 | if (!(fdtab[fd].thread_mask & tid_bit)) { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 222 | /* FD has been migrated */ |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 223 | activity[tid].poll_skip++; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 224 | epoll_ctl(epoll_fd[tid], EPOLL_CTL_DEL, fd, &ev); |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 225 | _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, ~tid_bit); |
| 226 | _HA_ATOMIC_AND(&polled_mask[fd].poll_send, ~tid_bit); |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 227 | continue; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 228 | } |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 229 | |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 230 | n = ((e & EPOLLIN) ? FD_EV_READY_R : 0) | |
| 231 | ((e & EPOLLOUT) ? FD_EV_READY_W : 0) | |
| 232 | ((e & EPOLLRDHUP) ? FD_EV_SHUT_R : 0) | |
| 233 | ((e & EPOLLHUP) ? FD_EV_SHUT_RW : 0) | |
| 234 | ((e & EPOLLERR) ? FD_EV_ERR_RW : 0); |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 235 | |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 236 | if ((e & EPOLLRDHUP) && !(cur_poller.flags & HAP_POLL_F_RDHUP)) |
Olivier Houchard | cb6c927 | 2019-03-08 18:49:54 +0100 | [diff] [blame] | 237 | _HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP); |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 238 | |
Christopher Faulet | ab62f51 | 2017-08-30 10:34:36 +0200 | [diff] [blame] | 239 | fd_update_events(fd, n); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 240 | } |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 241 | /* the caller will take care of cached events */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 244 | static int init_epoll_per_thread() |
| 245 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 246 | int fd; |
| 247 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 248 | epoll_events = calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents); |
| 249 | if (epoll_events == NULL) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 250 | goto fail_alloc; |
| 251 | |
Christopher Faulet | 3e805ed | 2018-01-25 16:18:09 +0100 | [diff] [blame] | 252 | if (MAX_THREADS > 1 && tid) { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 253 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 254 | if (epoll_fd[tid] < 0) |
| 255 | goto fail_fd; |
| 256 | } |
| 257 | |
| 258 | /* we may have to unregister some events initially registered on the |
| 259 | * original fd when it was alone, and/or to register events on the new |
| 260 | * fd for this thread. Let's just mark them as updated, the poller will |
| 261 | * do the rest. |
| 262 | */ |
Willy Tarreau | ce036bc | 2018-01-29 14:58:02 +0100 | [diff] [blame] | 263 | for (fd = 0; fd < global.maxsock; fd++) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 264 | updt_fd_polling(fd); |
| 265 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 266 | return 1; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 267 | fail_fd: |
| 268 | free(epoll_events); |
| 269 | fail_alloc: |
| 270 | return 0; |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | static void deinit_epoll_per_thread() |
| 274 | { |
Christopher Faulet | 3e805ed | 2018-01-25 16:18:09 +0100 | [diff] [blame] | 275 | if (MAX_THREADS > 1 && tid) |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 276 | close(epoll_fd[tid]); |
| 277 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 278 | free(epoll_events); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 279 | epoll_events = NULL; |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 280 | } |
| 281 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 282 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 283 | * Initialization of the epoll() poller. |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 284 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 285 | * disables the poller by setting its pref to 0. |
| 286 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 287 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 288 | { |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 289 | p->private = NULL; |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 290 | |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 291 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 292 | if (epoll_fd[tid] < 0) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 293 | goto fail_fd; |
| 294 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 295 | hap_register_per_thread_init(init_epoll_per_thread); |
| 296 | hap_register_per_thread_deinit(deinit_epoll_per_thread); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 297 | |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 298 | return 1; |
| 299 | |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 300 | fail_fd: |
| 301 | p->pref = 0; |
| 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 306 | * Termination of the epoll() poller. |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 307 | * Memory is released and the poller is marked as unselectable. |
| 308 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 309 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 310 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 311 | if (epoll_fd[tid] >= 0) { |
| 312 | close(epoll_fd[tid]); |
| 313 | epoll_fd[tid] = -1; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 314 | } |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 315 | |
| 316 | p->private = NULL; |
| 317 | p->pref = 0; |
| 318 | } |
| 319 | |
| 320 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 321 | * Check that the poller works. |
| 322 | * Returns 1 if OK, otherwise 0. |
| 323 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 324 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 325 | { |
| 326 | int fd; |
| 327 | |
| 328 | fd = epoll_create(global.maxsock + 1); |
| 329 | if (fd < 0) |
| 330 | return 0; |
| 331 | close(fd); |
| 332 | return 1; |
| 333 | } |
| 334 | |
| 335 | /* |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 336 | * Recreate the epoll file descriptor after a fork(). Returns 1 if OK, |
| 337 | * otherwise 0. It will ensure that all processes will not share their |
| 338 | * epoll_fd. Some side effects were encountered because of this, such |
| 339 | * as epoll_wait() returning an FD which was previously deleted. |
| 340 | */ |
| 341 | REGPRM1 static int _do_fork(struct poller *p) |
| 342 | { |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 343 | if (epoll_fd[tid] >= 0) |
| 344 | close(epoll_fd[tid]); |
| 345 | epoll_fd[tid] = epoll_create(global.maxsock + 1); |
| 346 | if (epoll_fd[tid] < 0) |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 347 | return 0; |
| 348 | return 1; |
| 349 | } |
| 350 | |
| 351 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 352 | * It is a constructor, which means that it will automatically be called before |
| 353 | * main(). This is GCC-specific but it works at least since 2.95. |
| 354 | * 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] | 355 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 356 | __attribute__((constructor)) |
| 357 | static void _do_register(void) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 358 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 359 | struct poller *p; |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 360 | int i; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 361 | |
| 362 | if (nbpollers >= MAX_POLLERS) |
| 363 | return; |
Willy Tarreau | d79e79b | 2009-05-10 10:18:54 +0200 | [diff] [blame] | 364 | |
Willy Tarreau | d9e7e36 | 2018-01-18 19:16:02 +0100 | [diff] [blame] | 365 | for (i = 0; i < MAX_THREADS; i++) |
| 366 | epoll_fd[i] = -1; |
| 367 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 368 | p = &pollers[nbpollers++]; |
| 369 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 370 | p->name = "epoll"; |
| 371 | p->pref = 300; |
Willy Tarreau | 11ef083 | 2019-11-28 18:17:33 +0100 | [diff] [blame] | 372 | p->flags = HAP_POLL_F_ERRHUP; // note: RDHUP might be dynamically added |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 373 | p->private = NULL; |
| 374 | |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 375 | p->clo = __fd_clo; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 376 | p->test = _do_test; |
| 377 | p->init = _do_init; |
| 378 | p->term = _do_term; |
| 379 | p->poll = _do_poll; |
Willy Tarreau | fb8983f | 2007-06-03 16:40:44 +0200 | [diff] [blame] | 380 | p->fork = _do_fork; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | |
| 384 | /* |
| 385 | * Local variables: |
| 386 | * c-indent-level: 8 |
| 387 | * c-basic-offset: 8 |
| 388 | * End: |
| 389 | */ |