blob: b25d1dc328b266427aefddd73bc4286afdb8e165 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
3 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 Willy Tarreau <w@1wt.eu>
Willy Tarreau4f60f162007-04-08 16:39:58 +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 *
11 */
12
Willy Tarreau3c8a8962017-03-13 17:14:51 +010013#define _GNU_SOURCE // for POLLRDHUP on Linux
14
Willy Tarreau4f60f162007-04-08 16:39:58 +020015#include <unistd.h>
Willy Tarreau3c8a8962017-03-13 17:14:51 +010016#include <poll.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020017#include <sys/time.h>
18#include <sys/types.h>
19
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/activity.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020021#include <haproxy/api.h>
Willy Tarreau55542642021-10-08 09:33:24 +020022#include <haproxy/clock.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/fd.h>
24#include <haproxy/global.h>
Willy Tarreau6dfab112021-09-30 17:53:22 +020025#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020026#include <haproxy/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020027
Willy Tarreau3c8a8962017-03-13 17:14:51 +010028
29#ifndef POLLRDHUP
30/* POLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */
31#define POLLRDHUP 0
32#endif
Willy Tarreau4f60f162007-04-08 16:39:58 +020033
Willy Tarreau173d9952018-01-26 21:48:23 +010034static int maxfd; /* # of the highest fd + 1 */
Willy Tarreau80da05a2013-03-31 14:06:57 +020035static unsigned int *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020036
37/* private data */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020038static THREAD_LOCAL int nbfd = 0;
39static THREAD_LOCAL struct pollfd *poll_events = NULL;
Willy Tarreau4f60f162007-04-08 16:39:58 +020040
Willy Tarreau03e78532020-02-25 07:38:05 +010041static void __fd_clo(int fd)
Willy Tarreau80da05a2013-03-31 14:06:57 +020042{
43 hap_fd_clr(fd, fd_evts[DIR_RD]);
44 hap_fd_clr(fd, fd_evts[DIR_WR]);
45}
46
Olivier Houchard6b96f722018-04-25 16:58:25 +020047static void _update_fd(int fd, int *max_add_fd)
48{
49 int en;
50
51 en = fdtab[fd].state;
52
53 /* we have a single state for all threads, which is why we
54 * don't check the tid_bit. First thread to see the update
55 * takes it for every other one.
56 */
Willy Tarreau5bee3e22019-09-04 09:52:57 +020057 if (!(en & FD_EV_ACTIVE_RW)) {
Olivier Houchard53055052019-07-25 14:00:18 +000058 if (!(polled_mask[fd].poll_recv | polled_mask[fd].poll_send)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020059 /* fd was not watched, it's still not */
60 return;
61 }
62 /* fd totally removed from poll list */
63 hap_fd_clr(fd, fd_evts[DIR_RD]);
64 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000065 _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, 0);
66 _HA_ATOMIC_AND(&polled_mask[fd].poll_send, 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020067 }
68 else {
69 /* OK fd has to be monitored, it was either added or changed */
Willy Tarreau5bee3e22019-09-04 09:52:57 +020070 if (!(en & FD_EV_ACTIVE_R)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020071 hap_fd_clr(fd, fd_evts[DIR_RD]);
Olivier Houchard53055052019-07-25 14:00:18 +000072 if (polled_mask[fd].poll_recv & tid_bit)
73 _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, ~tid_bit);
74 } else {
Olivier Houchard6b96f722018-04-25 16:58:25 +020075 hap_fd_set(fd, fd_evts[DIR_RD]);
Olivier Houchard53055052019-07-25 14:00:18 +000076 if (!(polled_mask[fd].poll_recv & tid_bit))
77 _HA_ATOMIC_OR(&polled_mask[fd].poll_recv, tid_bit);
78 }
Olivier Houchard6b96f722018-04-25 16:58:25 +020079
Willy Tarreau5bee3e22019-09-04 09:52:57 +020080 if (!(en & FD_EV_ACTIVE_W)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020081 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000082 if (polled_mask[fd].poll_send & tid_bit)
83 _HA_ATOMIC_AND(&polled_mask[fd].poll_send, ~tid_bit);
84 }else {
Olivier Houchard6b96f722018-04-25 16:58:25 +020085 hap_fd_set(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000086 if (!(polled_mask[fd].poll_send & tid_bit))
87 _HA_ATOMIC_OR(&polled_mask[fd].poll_send, tid_bit);
88 }
Olivier Houchard6b96f722018-04-25 16:58:25 +020089
Olivier Houchard6b96f722018-04-25 16:58:25 +020090 if (fd > *max_add_fd)
91 *max_add_fd = fd;
92 }
93}
94
Willy Tarreau4f60f162007-04-08 16:39:58 +020095/*
96 * Poll() poller
97 */
Willy Tarreau03e78532020-02-25 07:38:05 +010098static void _do_poll(struct poller *p, int exp, int wake)
Willy Tarreau4f60f162007-04-08 16:39:58 +020099{
100 int status;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200101 int fd;
Willy Tarreaud825eef2007-05-12 22:35:00 +0200102 int wait_time;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200103 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200104 int fds, count;
105 int sr, sw;
Willy Tarreau173d9952018-01-26 21:48:23 +0100106 int old_maxfd, new_maxfd, max_add_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200107 unsigned rn, wn; /* read new, write new */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200108 int old_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200109
Willy Tarreau173d9952018-01-26 21:48:23 +0100110 max_add_fd = -1;
111
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100112 /* first, scan the update list to find changes */
113 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
114 fd = fd_updt[updt_idx];
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100115
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100116 _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100117 if (!fdtab[fd].owner) {
Willy Tarreaue4063862020-06-17 20:35:33 +0200118 activity[tid].poll_drop_fd++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100119 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100120 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200121 _update_fd(fd, &max_add_fd);
122 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100123
Olivier Houchard6b96f722018-04-25 16:58:25 +0200124 /* Now scan the global update list */
125 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
126 if (fd == -2) {
127 fd = old_fd;
128 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100129 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200130 else if (fd <= -3)
131 fd = -fd -4;
132 if (fd == -1)
133 break;
134 if (fdtab[fd].update_mask & tid_bit) {
135 /* Cheat a bit, as the state is global to all pollers
Willy Tarreau94a01e12021-01-06 17:35:12 +0100136 * we don't need every thread to take care of the
Olivier Houchard6b96f722018-04-25 16:58:25 +0200137 * update.
138 */
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100139 _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
Olivier Houchard6b96f722018-04-25 16:58:25 +0200140 done_update_polling(fd);
141 } else
142 continue;
143 if (!fdtab[fd].owner)
144 continue;
145 _update_fd(fd, &max_add_fd);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100146 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100147
148 /* maybe we added at least one fd larger than maxfd */
149 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100150 if (_HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
Willy Tarreau173d9952018-01-26 21:48:23 +0100151 break;
152 }
153
154 /* maxfd doesn't need to be precise but it needs to cover *all* active
155 * FDs. Thus we only shrink it if we have such an opportunity. The algo
156 * is simple : look for the previous used place, try to update maxfd to
157 * point to it, abort if maxfd changed in the mean time.
158 */
159 old_maxfd = maxfd;
160 do {
161 new_maxfd = old_maxfd;
162 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
163 new_maxfd--;
164 if (new_maxfd >= old_maxfd)
165 break;
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100166 } while (!_HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
Willy Tarreau173d9952018-01-26 21:48:23 +0100167
Willy Tarreau88d1c5d2021-08-04 11:44:17 +0200168 thread_idle_now();
Willy Tarreau60b639c2018-08-02 10:16:17 +0200169 thread_harmless_now();
170
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100171 fd_nbupdt = 0;
172
Willy Tarreau4f60f162007-04-08 16:39:58 +0200173 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200174 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
175 rn = fd_evts[DIR_RD][fds];
176 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200177
Willy Tarreau80da05a2013-03-31 14:06:57 +0200178 if (!(rn|wn))
179 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200180
Willy Tarreau80da05a2013-03-31 14:06:57 +0200181 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
182 sr = (rn >> count) & 1;
183 sw = (wn >> count) & 1;
184 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100185 if (!fdtab[fd].owner) {
186 /* should normally not happen here except
187 * due to rare thread concurrency
188 */
189 continue;
190 }
191
192 if (!(fdtab[fd].thread_mask & tid_bit)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100193 continue;
194 }
195
Willy Tarreau80da05a2013-03-31 14:06:57 +0200196 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100197 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200198 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200199 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200200 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200201 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200202
Willy Tarreau4f60f162007-04-08 16:39:58 +0200203 /* now let's wait for events */
Willy Tarreau2ae84e42019-05-28 16:44:05 +0200204 wait_time = wake ? 0 : compute_poll_timeout(exp);
Willy Tarreauf9d5e102021-10-08 10:43:59 +0200205 clock_entering_poll();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200206 status = poll(poll_events, nbfd, wait_time);
Willy Tarreau55542642021-10-08 09:33:24 +0200207 clock_update_date(wait_time, status);
Willy Tarreau88d1c5d2021-08-04 11:44:17 +0200208
Willy Tarreau058b2c12022-06-22 15:21:34 +0200209 fd_leaving_poll(wait_time, status);
Willy Tarreau60b639c2018-08-02 10:16:17 +0200210
Willy Tarreaue5451532020-06-17 20:25:18 +0200211 if (status > 0)
212 activity[tid].poll_io++;
213
Willy Tarreau4f60f162007-04-08 16:39:58 +0200214 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200215 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200216 int e = poll_events[count].revents;
Willy Tarreaub1093c62022-07-09 18:55:37 +0200217
Willy Tarreau4f60f162007-04-08 16:39:58 +0200218 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200219
Willy Tarreau53a16182021-07-29 16:19:24 +0200220 if ((e & POLLRDHUP) && !(cur_poller.flags & HAP_POLL_F_RDHUP))
221 _HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
222
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200223#ifdef DEBUG_FD
Willy Tarreau4781b152021-04-06 13:53:36 +0200224 _HA_ATOMIC_INC(&fdtab[fd].event_count);
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200225#endif
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100226 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200227 continue;
228
Willy Tarreau076be252012-07-06 16:02:29 +0200229 /* ok, we found one active fd */
230 status--;
231
Willy Tarreau6b308982019-09-06 19:05:50 +0200232 n = ((e & POLLIN) ? FD_EV_READY_R : 0) |
233 ((e & POLLOUT) ? FD_EV_READY_W : 0) |
234 ((e & POLLRDHUP) ? FD_EV_SHUT_R : 0) |
235 ((e & POLLHUP) ? FD_EV_SHUT_RW : 0) |
236 ((e & POLLERR) ? FD_EV_ERR_RW : 0);
Willy Tarreau491c4982012-07-06 11:16:01 +0200237
Willy Tarreaub1093c62022-07-09 18:55:37 +0200238 fd_update_events(fd, n);
Willy Tarreau200bd502021-07-29 16:57:19 +0200239 }
Willy Tarreaue54e9172007-04-09 09:23:31 +0200240}
241
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200242
243static int init_poll_per_thread()
244{
245 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
246 if (poll_events == NULL)
247 return 0;
248 return 1;
249}
250
251static void deinit_poll_per_thread()
252{
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100253 ha_free(&poll_events);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200254}
255
Willy Tarreaue54e9172007-04-09 09:23:31 +0200256/*
257 * Initialization of the poll() poller.
258 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
259 * disables the poller by setting its pref to 0.
260 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100261static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200262{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200263 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200264 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200265
266 p->private = NULL;
Willy Tarreaue5715bf2022-07-09 23:38:46 +0200267
268 /* this old poller uses a process-wide FD list that cannot work with
269 * groups.
270 */
271 if (global.nbtgroups > 1)
272 goto fail_srevt;
273
Willy Tarreaucc359232018-01-17 15:48:53 +0100274 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200275
Willy Tarreau80da05a2013-03-31 14:06:57 +0200276 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200277 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200278 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200279 goto fail_swevt;
280
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200281 hap_register_per_thread_init(init_poll_per_thread);
282 hap_register_per_thread_deinit(deinit_poll_per_thread);
283
Willy Tarreaue54e9172007-04-09 09:23:31 +0200284 return 1;
285
286 fail_swevt:
287 free(fd_evts[DIR_RD]);
288 fail_srevt:
Willy Tarreaue54e9172007-04-09 09:23:31 +0200289 p->pref = 0;
290 return 0;
291}
292
293/*
294 * Termination of the poll() poller.
295 * Memory is released and the poller is marked as unselectable.
296 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100297static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200298{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200299 free(fd_evts[DIR_WR]);
300 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200301 p->private = NULL;
302 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200303}
304
305/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200306 * Check that the poller works.
307 * Returns 1 if OK, otherwise 0.
308 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100309static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200310{
311 return 1;
312}
313
314/*
Willy Tarreau740d7492022-04-25 19:00:55 +0200315 * Registers the poller.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200316 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200317static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200318{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200319 struct poller *p;
320
321 if (nbpollers >= MAX_POLLERS)
322 return;
323 p = &pollers[nbpollers++];
324
Willy Tarreau4f60f162007-04-08 16:39:58 +0200325 p->name = "poll";
326 p->pref = 200;
Willy Tarreau11ef0832019-11-28 18:17:33 +0100327 p->flags = HAP_POLL_F_ERRHUP;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200328 p->private = NULL;
329
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100330 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200331 p->test = _do_test;
332 p->init = _do_init;
333 p->term = _do_term;
334 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200335}
336
Willy Tarreau740d7492022-04-25 19:00:55 +0200337INITCALL0(STG_REGISTER, _do_register);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200338
339/*
340 * Local variables:
341 * c-indent-level: 8
342 * c-basic-offset: 8
343 * End:
344 */