blob: 47da75dacf518e1ecb5b43f50741b26f8f87e2e9 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic select()
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
13#include <unistd.h>
14#include <sys/time.h>
15#include <sys/types.h>
16
Willy Tarreaub2551052020-06-09 09:07:15 +020017#include <haproxy/activity.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020018#include <haproxy/api.h>
Willy Tarreau55542642021-10-08 09:33:24 +020019#include <haproxy/clock.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/fd.h>
21#include <haproxy/global.h>
Willy Tarreau6dfab112021-09-30 17:53:22 +020022#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020023#include <haproxy/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020024
Willy Tarreau4f60f162007-04-08 16:39:58 +020025
Christopher Fauletd4604ad2017-05-29 10:40:41 +020026/* private data */
Willy Tarreau173d9952018-01-26 21:48:23 +010027static int maxfd; /* # of the highest fd + 1 */
Willy Tarreaud51a5072018-01-25 16:48:46 +010028static unsigned int *fd_evts[2];
Christopher Fauletd4604ad2017-05-29 10:40:41 +020029static THREAD_LOCAL fd_set *tmp_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020030
Willy Tarreau4d31fb22012-11-11 16:53:50 +010031/* Immediately remove the entry upon close() */
Willy Tarreau03e78532020-02-25 07:38:05 +010032static void __fd_clo(int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020033{
Willy Tarreaud51a5072018-01-25 16:48:46 +010034 hap_fd_clr(fd, fd_evts[DIR_RD]);
35 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020036}
37
Olivier Houchard6b96f722018-04-25 16:58:25 +020038static void _update_fd(int fd, int *max_add_fd)
39{
40 int en;
41
42 en = fdtab[fd].state;
43
44 /* we have a single state for all threads, which is why we
45 * don't check the tid_bit. First thread to see the update
46 * takes it for every other one.
47 */
Willy Tarreau5bee3e22019-09-04 09:52:57 +020048 if (!(en & FD_EV_ACTIVE_RW)) {
Olivier Houchard53055052019-07-25 14:00:18 +000049 if (!(polled_mask[fd].poll_recv | polled_mask[fd].poll_send)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020050 /* fd was not watched, it's still not */
51 return;
52 }
53 /* fd totally removed from poll list */
54 hap_fd_clr(fd, fd_evts[DIR_RD]);
55 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000056 _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, 0);
Olivier Houcharda3a8ea22019-08-05 23:54:37 +020057 _HA_ATOMIC_AND(&polled_mask[fd].poll_send, 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020058 }
59 else {
60 /* OK fd has to be monitored, it was either added or changed */
Willy Tarreau5bee3e22019-09-04 09:52:57 +020061 if (!(en & FD_EV_ACTIVE_R)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020062 hap_fd_clr(fd, fd_evts[DIR_RD]);
Olivier Houchard53055052019-07-25 14:00:18 +000063 if (polled_mask[fd].poll_recv & tid_bit)
64 _HA_ATOMIC_AND(&polled_mask[fd].poll_recv, ~tid_bit);
65 } else {
Olivier Houchard6b96f722018-04-25 16:58:25 +020066 hap_fd_set(fd, fd_evts[DIR_RD]);
Olivier Houchard53055052019-07-25 14:00:18 +000067 if (!(polled_mask[fd].poll_recv & tid_bit))
68 _HA_ATOMIC_OR(&polled_mask[fd].poll_recv, tid_bit);
69 }
Olivier Houchard6b96f722018-04-25 16:58:25 +020070
Willy Tarreau5bee3e22019-09-04 09:52:57 +020071 if (!(en & FD_EV_ACTIVE_W)) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020072 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000073 if (polled_mask[fd].poll_send & tid_bit)
74 _HA_ATOMIC_AND(&polled_mask[fd].poll_send, ~tid_bit);
75 } else {
Olivier Houchard6b96f722018-04-25 16:58:25 +020076 hap_fd_set(fd, fd_evts[DIR_WR]);
Olivier Houchard53055052019-07-25 14:00:18 +000077 if (!(polled_mask[fd].poll_send & tid_bit))
78 _HA_ATOMIC_OR(&polled_mask[fd].poll_send, tid_bit);
79 }
Olivier Houchard6b96f722018-04-25 16:58:25 +020080
Olivier Houchard6b96f722018-04-25 16:58:25 +020081 if (fd > *max_add_fd)
82 *max_add_fd = fd;
83 }
84}
85
Willy Tarreau4f60f162007-04-08 16:39:58 +020086/*
87 * Select() poller
88 */
Willy Tarreau03e78532020-02-25 07:38:05 +010089static void _do_poll(struct poller *p, int exp, int wake)
Willy Tarreau4f60f162007-04-08 16:39:58 +020090{
91 int status;
92 int fd, i;
93 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020094 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020095 int fds;
Olivier Houchard6b96f722018-04-25 16:58:25 +020096 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +020097 char count;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020098 int readnotnull, writenotnull;
Willy Tarreau173d9952018-01-26 21:48:23 +010099 int old_maxfd, new_maxfd, max_add_fd;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200100 int old_fd;
Willy Tarreau173d9952018-01-26 21:48:23 +0100101
102 max_add_fd = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200103
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100104 /* first, scan the update list to find changes */
105 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
106 fd = fd_updt[updt_idx];
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100107
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100108 _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100109 if (!fdtab[fd].owner) {
Willy Tarreaue4063862020-06-17 20:35:33 +0200110 activity[tid].poll_drop_fd++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100111 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100112 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200113 _update_fd(fd, &max_add_fd);
114 }
115 /* Now scan the global update list */
116 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
117 if (fd == -2) {
118 fd = old_fd;
119 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100120 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200121 else if (fd <= -3)
122 fd = -fd -4;
123 if (fd == -1)
124 break;
125 if (fdtab[fd].update_mask & tid_bit) {
126 /* Cheat a bit, as the state is global to all pollers
Willy Tarreau94a01e12021-01-06 17:35:12 +0100127 * we don't need every thread to take care of the
Olivier Houchard6b96f722018-04-25 16:58:25 +0200128 * update.
129 */
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100130 _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
Olivier Houchard6b96f722018-04-25 16:58:25 +0200131 done_update_polling(fd);
132 } else
133 continue;
134 if (!fdtab[fd].owner)
135 continue;
136 _update_fd(fd, &max_add_fd);
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100137 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100138
Olivier Houchard6b96f722018-04-25 16:58:25 +0200139
Willy Tarreau173d9952018-01-26 21:48:23 +0100140 /* maybe we added at least one fd larger than maxfd */
141 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100142 if (_HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
Willy Tarreau173d9952018-01-26 21:48:23 +0100143 break;
144 }
145
146 /* maxfd doesn't need to be precise but it needs to cover *all* active
147 * FDs. Thus we only shrink it if we have such an opportunity. The algo
148 * is simple : look for the previous used place, try to update maxfd to
149 * point to it, abort if maxfd changed in the mean time.
150 */
151 old_maxfd = maxfd;
152 do {
153 new_maxfd = old_maxfd;
154 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
155 new_maxfd--;
156 if (new_maxfd >= old_maxfd)
157 break;
Olivier Houchardcb6c9272019-03-08 18:49:54 +0100158 } while (!_HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
Willy Tarreau173d9952018-01-26 21:48:23 +0100159
Willy Tarreau88d1c5d2021-08-04 11:44:17 +0200160 thread_idle_now();
Willy Tarreau60b639c2018-08-02 10:16:17 +0200161 thread_harmless_now();
162
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100163 fd_nbupdt = 0;
164
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200165 /* let's restore fdset state */
166 readnotnull = 0; writenotnull = 0;
167 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
168 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
169 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
170 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200171
Willy Tarreauf37ba942018-10-17 11:25:54 +0200172 /* now let's wait for events */
Willy Tarreau2ae84e42019-05-28 16:44:05 +0200173 delta_ms = wake ? 0 : compute_poll_timeout(exp);
Willy Tarreauf37ba942018-10-17 11:25:54 +0200174 delta.tv_sec = (delta_ms / 1000);
175 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau6dfab112021-09-30 17:53:22 +0200176 sched_entering_poll();
Willy Tarreau609aad92018-11-22 08:31:09 +0100177 activity_count_runtime();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200178 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200179 readnotnull ? tmp_evts[DIR_RD] : NULL,
180 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200181 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200182 &delta);
Willy Tarreau55542642021-10-08 09:33:24 +0200183 clock_update_date(delta_ms, status);
Willy Tarreau6dfab112021-09-30 17:53:22 +0200184 sched_leaving_poll(delta_ms, status);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200185
Willy Tarreau60b639c2018-08-02 10:16:17 +0200186 thread_harmless_end();
Willy Tarreau88d1c5d2021-08-04 11:44:17 +0200187 thread_idle_end();
188
Olivier Houchard305d5ab2019-07-24 18:07:06 +0200189 if (sleeping_thread_mask & tid_bit)
190 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +0200191
Willy Tarreau4f60f162007-04-08 16:39:58 +0200192 if (status <= 0)
193 return;
194
Willy Tarreaue5451532020-06-17 20:25:18 +0200195 activity[tid].poll_io++;
196
Willy Tarreau177e2b02008-07-15 00:36:31 +0200197 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200198 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200199 continue;
200
Willy Tarreau177e2b02008-07-15 00:36:31 +0200201 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200202 unsigned int n = 0;
203
Willy Tarreaufcc52812021-07-30 13:55:36 +0200204 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
205 n |= FD_EV_READY_R;
206
207 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
208 n |= FD_EV_READY_W;
209
210 if (!n)
211 continue;
212
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200213#ifdef DEBUG_FD
Willy Tarreau4781b152021-04-06 13:53:36 +0200214 _HA_ATOMIC_INC(&fdtab[fd].event_count);
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200215#endif
Willy Tarreau076be252012-07-06 16:02:29 +0200216
Christopher Fauletab62f512017-08-30 10:34:36 +0200217 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200218 }
219 }
220}
221
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200222static int init_select_per_thread()
223{
224 int fd_set_bytes;
225
226 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Tim Duesterhus403fd722021-04-08 20:05:23 +0200227 tmp_evts[DIR_RD] = calloc(1, fd_set_bytes);
William Dauchy32fba0a2020-05-11 15:20:05 +0200228 if (tmp_evts[DIR_RD] == NULL)
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200229 goto fail;
Tim Duesterhus403fd722021-04-08 20:05:23 +0200230 tmp_evts[DIR_WR] = calloc(1, fd_set_bytes);
William Dauchy32fba0a2020-05-11 15:20:05 +0200231 if (tmp_evts[DIR_WR] == NULL)
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200232 goto fail;
233 return 1;
234 fail:
235 free(tmp_evts[DIR_RD]);
236 free(tmp_evts[DIR_WR]);
237 return 0;
238}
239
240static void deinit_select_per_thread()
241{
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100242 ha_free(&tmp_evts[DIR_WR]);
243 ha_free(&tmp_evts[DIR_RD]);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200244}
245
Willy Tarreau4f60f162007-04-08 16:39:58 +0200246/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200247 * Initialization of the select() poller.
248 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
249 * disables the poller by setting its pref to 0.
250 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100251static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200252{
Willy Tarreaue54e9172007-04-09 09:23:31 +0200253 int fd_set_bytes;
254
255 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200256
257 if (global.maxsock > FD_SETSIZE)
William Dauchy42a50bd2020-05-11 15:20:03 +0200258 goto fail_srevt;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200259
Willy Tarreaue54e9172007-04-09 09:23:31 +0200260 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200261
Willy Tarreaud51a5072018-01-25 16:48:46 +0100262 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200263 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100264 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200265 goto fail_swevt;
266
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200267 hap_register_per_thread_init(init_select_per_thread);
268 hap_register_per_thread_deinit(deinit_select_per_thread);
269
Willy Tarreaue54e9172007-04-09 09:23:31 +0200270 return 1;
271
272 fail_swevt:
273 free(fd_evts[DIR_RD]);
274 fail_srevt:
Willy Tarreaue54e9172007-04-09 09:23:31 +0200275 p->pref = 0;
276 return 0;
277}
278
279/*
280 * Termination of the select() poller.
281 * Memory is released and the poller is marked as unselectable.
282 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100283static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200284{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200285 free(fd_evts[DIR_WR]);
286 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200287 p->private = NULL;
288 p->pref = 0;
289}
290
291/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200292 * Check that the poller works.
293 * Returns 1 if OK, otherwise 0.
294 */
Willy Tarreau03e78532020-02-25 07:38:05 +0100295static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200296{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200297 if (global.maxsock > FD_SETSIZE)
298 return 0;
299
Willy Tarreau2ff76222007-04-09 19:29:56 +0200300 return 1;
301}
302
303/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200304 * It is a constructor, which means that it will automatically be called before
305 * main(). This is GCC-specific but it works at least since 2.95.
306 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200307 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200308__attribute__((constructor))
309static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200310{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200311 struct poller *p;
312
313 if (nbpollers >= MAX_POLLERS)
314 return;
315 p = &pollers[nbpollers++];
316
Willy Tarreau4f60f162007-04-08 16:39:58 +0200317 p->name = "select";
318 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100319 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200320 p->private = NULL;
321
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100322 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200323 p->test = _do_test;
324 p->init = _do_init;
325 p->term = _do_term;
326 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200327}
328
329
330/*
331 * Local variables:
332 * c-indent-level: 8
333 * c-basic-offset: 8
334 * End:
335 */