blob: 34daa09f15f237cc21052d65f631d3bb9f920df3 [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
Willy Tarreau56dd12a2018-01-25 17:09:33 +010072 /* we have a single state for all threads, which is why we
73 * don't check the tid_bit. First thread to see the update
74 * takes it for every other one.
75 */
76 if (!(en & FD_EV_POLLED_RW)) {
77 if (!fdtab[fd].polled_mask) {
78 /* fd was not watched, it's still not */
79 continue;
80 }
81 /* fd totally removed from poll list */
82 hap_fd_clr(fd, fd_evts[DIR_RD]);
83 hap_fd_clr(fd, fd_evts[DIR_WR]);
84 HA_ATOMIC_AND(&fdtab[fd].polled_mask, 0);
85 }
86 else {
87 /* OK fd has to be monitored, it was either added or changed */
88 if (!(en & FD_EV_POLLED_R))
Willy Tarreaud51a5072018-01-25 16:48:46 +010089 hap_fd_clr(fd, fd_evts[DIR_RD]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010090 else
Willy Tarreaud51a5072018-01-25 16:48:46 +010091 hap_fd_set(fd, fd_evts[DIR_RD]);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010092
Willy Tarreau56dd12a2018-01-25 17:09:33 +010093 if (!(en & FD_EV_POLLED_W))
Willy Tarreaud51a5072018-01-25 16:48:46 +010094 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010095 else
Willy Tarreaud51a5072018-01-25 16:48:46 +010096 hap_fd_set(fd, fd_evts[DIR_WR]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010097
98 HA_ATOMIC_OR(&fdtab[fd].polled_mask, tid_bit);
99 if (fd > max_add_fd)
100 max_add_fd = fd;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100101 }
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100102 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100103
104 /* maybe we added at least one fd larger than maxfd */
105 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
106 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
107 break;
108 }
109
110 /* maxfd doesn't need to be precise but it needs to cover *all* active
111 * FDs. Thus we only shrink it if we have such an opportunity. The algo
112 * is simple : look for the previous used place, try to update maxfd to
113 * point to it, abort if maxfd changed in the mean time.
114 */
115 old_maxfd = maxfd;
116 do {
117 new_maxfd = old_maxfd;
118 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
119 new_maxfd--;
120 if (new_maxfd >= old_maxfd)
121 break;
122 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
123
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100124 fd_nbupdt = 0;
125
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200126 /* let's restore fdset state */
127 readnotnull = 0; writenotnull = 0;
128 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
129 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
130 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
131 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200132
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200133 delta_ms = 0;
134 delta.tv_sec = 0;
135 delta.tv_usec = 0;
136
Willy Tarreau10146c92015-04-13 20:44:19 +0200137 if (!exp) {
138 delta_ms = MAX_DELAY_MS;
139 delta.tv_sec = (MAX_DELAY_MS / 1000);
140 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
141 }
142 else if (!tick_is_expired(exp, now_ms)) {
143 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
144 if (delta_ms > MAX_DELAY_MS)
145 delta_ms = MAX_DELAY_MS;
146 delta.tv_sec = (delta_ms / 1000);
147 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200148 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100149 else
150 activity[tid].poll_exp++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200151
Willy Tarreau45a12512011-09-10 16:56:42 +0200152 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200153 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200154 readnotnull ? tmp_evts[DIR_RD] : NULL,
155 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200156 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200157 &delta);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200158
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200159 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200160 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200161
162 if (status <= 0)
163 return;
164
Willy Tarreau177e2b02008-07-15 00:36:31 +0200165 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200166 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200167 continue;
168
Willy Tarreau177e2b02008-07-15 00:36:31 +0200169 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200170 unsigned int n = 0;
171
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100172 if (!fdtab[fd].owner) {
173 activity[tid].poll_dead++;
174 continue;
175 }
176
177 if (!(fdtab[fd].thread_mask & tid_bit)) {
178 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200179 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100180 }
Willy Tarreau076be252012-07-06 16:02:29 +0200181
Willy Tarreau076be252012-07-06 16:02:29 +0200182 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200183 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200184
Willy Tarreau076be252012-07-06 16:02:29 +0200185 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200186 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100187
Christopher Fauletab62f512017-08-30 10:34:36 +0200188 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200189 }
190 }
191}
192
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200193static int init_select_per_thread()
194{
195 int fd_set_bytes;
196
197 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
198 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
199 goto fail;
200 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
201 goto fail;
202 return 1;
203 fail:
204 free(tmp_evts[DIR_RD]);
205 free(tmp_evts[DIR_WR]);
206 return 0;
207}
208
209static void deinit_select_per_thread()
210{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200211 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
212 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200213}
214
Willy Tarreau4f60f162007-04-08 16:39:58 +0200215/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200216 * Initialization of the select() poller.
217 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
218 * disables the poller by setting its pref to 0.
219 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200220REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200221{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200222 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200223 int fd_set_bytes;
224
225 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200226
227 if (global.maxsock > FD_SETSIZE)
228 goto fail_revt;
229
Willy Tarreaue54e9172007-04-09 09:23:31 +0200230 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200231
Willy Tarreaud51a5072018-01-25 16:48:46 +0100232 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200233 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100234 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200235 goto fail_swevt;
236
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200237 hap_register_per_thread_init(init_select_per_thread);
238 hap_register_per_thread_deinit(deinit_select_per_thread);
239
Willy Tarreaue54e9172007-04-09 09:23:31 +0200240 return 1;
241
242 fail_swevt:
243 free(fd_evts[DIR_RD]);
244 fail_srevt:
245 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200246 free(tmp_evts[DIR_RD]);
247 fail_revt:
248 p->pref = 0;
249 return 0;
250}
251
252/*
253 * Termination of the select() poller.
254 * Memory is released and the poller is marked as unselectable.
255 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200257{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200258 free(fd_evts[DIR_WR]);
259 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200260 p->private = NULL;
261 p->pref = 0;
262}
263
264/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200265 * Check that the poller works.
266 * Returns 1 if OK, otherwise 0.
267 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200268REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200269{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200270 if (global.maxsock > FD_SETSIZE)
271 return 0;
272
Willy Tarreau2ff76222007-04-09 19:29:56 +0200273 return 1;
274}
275
276/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200277 * It is a constructor, which means that it will automatically be called before
278 * main(). This is GCC-specific but it works at least since 2.95.
279 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200280 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200281__attribute__((constructor))
282static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200283{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200284 struct poller *p;
285
286 if (nbpollers >= MAX_POLLERS)
287 return;
288 p = &pollers[nbpollers++];
289
Willy Tarreau4f60f162007-04-08 16:39:58 +0200290 p->name = "select";
291 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100292 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200293 p->private = NULL;
294
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100295 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200296 p->test = _do_test;
297 p->init = _do_init;
298 p->term = _do_term;
299 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200300}
301
302
303/*
304 * Local variables:
305 * c-indent-level: 8
306 * c-basic-offset: 8
307 * End:
308 */