blob: da675eb3e9b40e7867e692fbe2a94ac509940340 [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 Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/fd.h>
23#include <haproxy/global.h>
William Lallemand0c25ce42022-09-08 17:46:31 +020024#include <haproxy/signal.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020025#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020026#include <haproxy/time.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 Tarreau60b639c2018-08-02 10:16:17 +0200168 thread_harmless_now();
169
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100170 fd_nbupdt = 0;
171
Willy Tarreau4f60f162007-04-08 16:39:58 +0200172 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200173 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
174 rn = fd_evts[DIR_RD][fds];
175 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200176
Willy Tarreau80da05a2013-03-31 14:06:57 +0200177 if (!(rn|wn))
178 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200179
Willy Tarreau80da05a2013-03-31 14:06:57 +0200180 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
181 sr = (rn >> count) & 1;
182 sw = (wn >> count) & 1;
183 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100184 if (!fdtab[fd].owner) {
185 /* should normally not happen here except
186 * due to rare thread concurrency
187 */
188 continue;
189 }
190
191 if (!(fdtab[fd].thread_mask & tid_bit)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100192 continue;
193 }
194
Willy Tarreau80da05a2013-03-31 14:06:57 +0200195 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100196 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200197 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200198 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200199 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200200 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200201
William Lallemand0c25ce42022-09-08 17:46:31 +0200202 /* Now let's wait for polled events.
203 * Check if the signal queue is not empty in case we received a signal
204 * before entering the loop, so we don't wait MAX_DELAY_MS for nothing */
205 wait_time = (wake | signal_queue_len) ? 0 : compute_poll_timeout(exp);
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200206 tv_entering_poll();
Willy Tarreau609aad92018-11-22 08:31:09 +0100207 activity_count_runtime();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200208 status = poll(poll_events, nbfd, wait_time);
Willy Tarreau48f8bc12018-11-22 18:57:37 +0100209 tv_update_date(wait_time, status);
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200210 tv_leaving_poll(wait_time, status);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200211
Willy Tarreau60b639c2018-08-02 10:16:17 +0200212 thread_harmless_end();
Willy Tarreaue148cb02021-07-30 10:57:09 +0200213 if (sleeping_thread_mask & tid_bit)
214 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +0200215
Willy Tarreaue5451532020-06-17 20:25:18 +0200216 if (status > 0)
217 activity[tid].poll_io++;
218
Willy Tarreau4f60f162007-04-08 16:39:58 +0200219 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200220 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200221 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200222 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200223
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200224#ifdef DEBUG_FD
Willy Tarreau4781b152021-04-06 13:53:36 +0200225 _HA_ATOMIC_INC(&fdtab[fd].event_count);
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200226#endif
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100227 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200228 continue;
229
Willy Tarreau076be252012-07-06 16:02:29 +0200230 /* ok, we found one active fd */
231 status--;
232
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100233 if (!fdtab[fd].owner) {
Willy Tarreaue4063862020-06-17 20:35:33 +0200234 activity[tid].poll_dead_fd++;
Willy Tarreau076be252012-07-06 16:02:29 +0200235 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100236 }
Willy Tarreau076be252012-07-06 16:02:29 +0200237
Willy Tarreau25659052021-07-30 14:04:28 +0200238 if (!(fdtab[fd].thread_mask & tid_bit)) {
239 activity[tid].poll_skip_fd++;
Willy Tarreauea2036d2021-07-30 14:18:49 +0200240 if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, tid))
241 fd_updt[fd_nbupdt++] = fd;
Willy Tarreau25659052021-07-30 14:04:28 +0200242 continue;
243 }
244
Willy Tarreau6b308982019-09-06 19:05:50 +0200245 n = ((e & POLLIN) ? FD_EV_READY_R : 0) |
246 ((e & POLLOUT) ? FD_EV_READY_W : 0) |
247 ((e & POLLRDHUP) ? FD_EV_SHUT_R : 0) |
248 ((e & POLLHUP) ? FD_EV_SHUT_RW : 0) |
249 ((e & POLLERR) ? FD_EV_ERR_RW : 0);
Willy Tarreau491c4982012-07-06 11:16:01 +0200250
Willy Tarreau6b308982019-09-06 19:05:50 +0200251 if ((e & POLLRDHUP) && !(cur_poller.flags & HAP_POLL_F_RDHUP))
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100252 _HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Willy Tarreau6b308982019-09-06 19:05:50 +0200253
Christopher Fauletab62f512017-08-30 10:34:36 +0200254 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200255 }
256
Willy Tarreaue54e9172007-04-09 09:23:31 +0200257}
258
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200259
260static int init_poll_per_thread()
261{
262 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
263 if (poll_events == NULL)
264 return 0;
265 return 1;
266}
267
268static void deinit_poll_per_thread()
269{
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100270 ha_free(&poll_events);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200271}
272
Willy Tarreaue54e9172007-04-09 09:23:31 +0200273/*
274 * Initialization of the poll() poller.
275 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
276 * disables the poller by setting its pref to 0.
277 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100278static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200279{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200280 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200281 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200282
283 p->private = NULL;
Willy Tarreaucc359232018-01-17 15:48:53 +0100284 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200285
Willy Tarreau80da05a2013-03-31 14:06:57 +0200286 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200287 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200288 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200289 goto fail_swevt;
290
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200291 hap_register_per_thread_init(init_poll_per_thread);
292 hap_register_per_thread_deinit(deinit_poll_per_thread);
293
Willy Tarreaue54e9172007-04-09 09:23:31 +0200294 return 1;
295
296 fail_swevt:
297 free(fd_evts[DIR_RD]);
298 fail_srevt:
Willy Tarreaue54e9172007-04-09 09:23:31 +0200299 p->pref = 0;
300 return 0;
301}
302
303/*
304 * Termination of the poll() poller.
305 * Memory is released and the poller is marked as unselectable.
306 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100307static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200308{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200309 free(fd_evts[DIR_WR]);
310 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200311 p->private = NULL;
312 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200313}
314
315/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200316 * Check that the poller works.
317 * Returns 1 if OK, otherwise 0.
318 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100319static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200320{
321 return 1;
322}
323
324/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200325 * It is a constructor, which means that it will automatically be called before
326 * main(). This is GCC-specific but it works at least since 2.95.
327 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200328 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200329__attribute__((constructor))
330static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200331{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200332 struct poller *p;
333
334 if (nbpollers >= MAX_POLLERS)
335 return;
336 p = &pollers[nbpollers++];
337
Willy Tarreau4f60f162007-04-08 16:39:58 +0200338 p->name = "poll";
339 p->pref = 200;
Willy Tarreau11ef0832019-11-28 18:17:33 +0100340 p->flags = HAP_POLL_F_ERRHUP;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200341 p->private = NULL;
342
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100343 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200344 p->test = _do_test;
345 p->init = _do_init;
346 p->term = _do_term;
347 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200348}
349
350
351/*
352 * Local variables:
353 * c-indent-level: 8
354 * c-basic-offset: 8
355 * End:
356 */