blob: 9c843ffd845053937847de652d39bd2672c7bb16 [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
17#include <common/compat.h>
18#include <common/config.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020019#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020020#include <common/time.h>
21
Willy Tarreau4f60f162007-04-08 16:39:58 +020022#include <types/global.h>
23
24#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020025
26
Christopher Fauletd4604ad2017-05-29 10:40:41 +020027/* private data */
Willy Tarreau173d9952018-01-26 21:48:23 +010028static int maxfd; /* # of the highest fd + 1 */
Willy Tarreaud51a5072018-01-25 16:48:46 +010029static unsigned int *fd_evts[2];
Christopher Fauletd4604ad2017-05-29 10:40:41 +020030static THREAD_LOCAL fd_set *tmp_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020031
Willy Tarreau4d31fb22012-11-11 16:53:50 +010032/* Immediately remove the entry upon close() */
33REGPRM1 static void __fd_clo(int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020034{
Willy Tarreaud51a5072018-01-25 16:48:46 +010035 hap_fd_clr(fd, fd_evts[DIR_RD]);
36 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020037}
38
Willy Tarreau4f60f162007-04-08 16:39:58 +020039/*
40 * Select() poller
41 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020042REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020043{
44 int status;
45 int fd, i;
46 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020047 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020048 int fds;
Willy Tarreau4d31fb22012-11-11 16:53:50 +010049 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020050 char count;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020051 int readnotnull, writenotnull;
Willy Tarreau173d9952018-01-26 21:48:23 +010052 int old_maxfd, new_maxfd, max_add_fd;
53
54 max_add_fd = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020055
Willy Tarreau4d31fb22012-11-11 16:53:50 +010056 /* first, scan the update list to find changes */
57 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
58 fd = fd_updt[updt_idx];
Willy Tarreau4d31fb22012-11-11 16:53:50 +010059
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010060 if (!fdtab[fd].owner) {
61 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010062 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010063 }
Willy Tarreau4d31fb22012-11-11 16:53:50 +010064
Christopher Faulet2a944ee2017-11-07 10:42:54 +010065 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauebc78d72018-01-20 23:53:50 +010066 fdtab[fd].update_mask &= ~tid_bit;
Willy Tarreau25002d22014-01-25 10:32:56 +010067 eo = fdtab[fd].state;
68 en = fd_compute_new_polled_status(eo);
Christopher Fauletd4604ad2017-05-29 10:40:41 +020069 fdtab[fd].state = en;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010070 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010071
72 if ((eo ^ en) & FD_EV_POLLED_RW) {
73 /* poll status changed, update the lists */
Willy Tarreauf817e9f2014-01-10 16:58:45 +010074 if ((eo & ~en) & FD_EV_POLLED_R)
Willy Tarreaud51a5072018-01-25 16:48:46 +010075 hap_fd_clr(fd, fd_evts[DIR_RD]);
Willy Tarreau173d9952018-01-26 21:48:23 +010076 else if ((en & ~eo) & FD_EV_POLLED_R) {
Willy Tarreaud51a5072018-01-25 16:48:46 +010077 hap_fd_set(fd, fd_evts[DIR_RD]);
Willy Tarreau173d9952018-01-26 21:48:23 +010078 if (fd > max_add_fd)
79 max_add_fd = fd;
80 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010081
82 if ((eo & ~en) & FD_EV_POLLED_W)
Willy Tarreaud51a5072018-01-25 16:48:46 +010083 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau173d9952018-01-26 21:48:23 +010084 else if ((en & ~eo) & FD_EV_POLLED_W) {
Willy Tarreaud51a5072018-01-25 16:48:46 +010085 hap_fd_set(fd, fd_evts[DIR_WR]);
Willy Tarreau173d9952018-01-26 21:48:23 +010086 if (fd > max_add_fd)
87 max_add_fd = fd;
88 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010089 }
Willy Tarreau4d31fb22012-11-11 16:53:50 +010090 }
Willy Tarreau173d9952018-01-26 21:48:23 +010091
92 /* maybe we added at least one fd larger than maxfd */
93 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
94 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
95 break;
96 }
97
98 /* maxfd doesn't need to be precise but it needs to cover *all* active
99 * FDs. Thus we only shrink it if we have such an opportunity. The algo
100 * is simple : look for the previous used place, try to update maxfd to
101 * point to it, abort if maxfd changed in the mean time.
102 */
103 old_maxfd = maxfd;
104 do {
105 new_maxfd = old_maxfd;
106 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
107 new_maxfd--;
108 if (new_maxfd >= old_maxfd)
109 break;
110 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
111
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100112 fd_nbupdt = 0;
113
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200114 /* let's restore fdset state */
115 readnotnull = 0; writenotnull = 0;
116 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
117 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
118 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
119 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200120
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200121 delta_ms = 0;
122 delta.tv_sec = 0;
123 delta.tv_usec = 0;
124
Willy Tarreau10146c92015-04-13 20:44:19 +0200125 if (!exp) {
126 delta_ms = MAX_DELAY_MS;
127 delta.tv_sec = (MAX_DELAY_MS / 1000);
128 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
129 }
130 else if (!tick_is_expired(exp, now_ms)) {
131 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
132 if (delta_ms > MAX_DELAY_MS)
133 delta_ms = MAX_DELAY_MS;
134 delta.tv_sec = (delta_ms / 1000);
135 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200136 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100137 else
138 activity[tid].poll_exp++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200139
Willy Tarreau45a12512011-09-10 16:56:42 +0200140 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200141 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200142 readnotnull ? tmp_evts[DIR_RD] : NULL,
143 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200144 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200145 &delta);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200146
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200147 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200148 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200149
150 if (status <= 0)
151 return;
152
Willy Tarreau177e2b02008-07-15 00:36:31 +0200153 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200154 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200155 continue;
156
Willy Tarreau177e2b02008-07-15 00:36:31 +0200157 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200158 unsigned int n = 0;
159
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100160 if (!fdtab[fd].owner) {
161 activity[tid].poll_dead++;
162 continue;
163 }
164
165 if (!(fdtab[fd].thread_mask & tid_bit)) {
166 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200167 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100168 }
Willy Tarreau076be252012-07-06 16:02:29 +0200169
Willy Tarreau076be252012-07-06 16:02:29 +0200170 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200171 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200172
Willy Tarreau076be252012-07-06 16:02:29 +0200173 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200174 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100175
Christopher Fauletab62f512017-08-30 10:34:36 +0200176 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200177 }
178 }
179}
180
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200181static int init_select_per_thread()
182{
183 int fd_set_bytes;
184
185 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
186 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
187 goto fail;
188 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
189 goto fail;
190 return 1;
191 fail:
192 free(tmp_evts[DIR_RD]);
193 free(tmp_evts[DIR_WR]);
194 return 0;
195}
196
197static void deinit_select_per_thread()
198{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200199 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
200 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200201}
202
Willy Tarreau4f60f162007-04-08 16:39:58 +0200203/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200204 * Initialization of the select() poller.
205 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
206 * disables the poller by setting its pref to 0.
207 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200208REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200209{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200210 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200211 int fd_set_bytes;
212
213 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200214
215 if (global.maxsock > FD_SETSIZE)
216 goto fail_revt;
217
Willy Tarreaue54e9172007-04-09 09:23:31 +0200218 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200219
Willy Tarreaud51a5072018-01-25 16:48:46 +0100220 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200221 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100222 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200223 goto fail_swevt;
224
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200225 hap_register_per_thread_init(init_select_per_thread);
226 hap_register_per_thread_deinit(deinit_select_per_thread);
227
Willy Tarreaue54e9172007-04-09 09:23:31 +0200228 return 1;
229
230 fail_swevt:
231 free(fd_evts[DIR_RD]);
232 fail_srevt:
233 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200234 free(tmp_evts[DIR_RD]);
235 fail_revt:
236 p->pref = 0;
237 return 0;
238}
239
240/*
241 * Termination of the select() poller.
242 * Memory is released and the poller is marked as unselectable.
243 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200244REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200245{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200246 free(fd_evts[DIR_WR]);
247 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248 p->private = NULL;
249 p->pref = 0;
250}
251
252/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200253 * Check that the poller works.
254 * Returns 1 if OK, otherwise 0.
255 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200257{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200258 if (global.maxsock > FD_SETSIZE)
259 return 0;
260
Willy Tarreau2ff76222007-04-09 19:29:56 +0200261 return 1;
262}
263
264/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200265 * It is a constructor, which means that it will automatically be called before
266 * main(). This is GCC-specific but it works at least since 2.95.
267 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200268 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200269__attribute__((constructor))
270static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200271{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200272 struct poller *p;
273
274 if (nbpollers >= MAX_POLLERS)
275 return;
276 p = &pollers[nbpollers++];
277
Willy Tarreau4f60f162007-04-08 16:39:58 +0200278 p->name = "select";
279 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100280 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200281 p->private = NULL;
282
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100283 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200284 p->test = _do_test;
285 p->init = _do_init;
286 p->term = _do_term;
287 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200288}
289
290
291/*
292 * Local variables:
293 * c-indent-level: 8
294 * c-basic-offset: 8
295 * End:
296 */