blob: db0814d6e32af452b0efedd51f6190b2e16afe37 [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 Tarreaud4daeac2018-01-25 17:15:43 +010049 int updt_idx, en;
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 Tarreaud4daeac2018-01-25 17:15:43 +010067 en = fdtab[fd].state;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010068 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010069
Willy Tarreau56dd12a2018-01-25 17:09:33 +010070 /* we have a single state for all threads, which is why we
71 * don't check the tid_bit. First thread to see the update
72 * takes it for every other one.
73 */
74 if (!(en & FD_EV_POLLED_RW)) {
75 if (!fdtab[fd].polled_mask) {
76 /* fd was not watched, it's still not */
77 continue;
78 }
79 /* fd totally removed from poll list */
80 hap_fd_clr(fd, fd_evts[DIR_RD]);
81 hap_fd_clr(fd, fd_evts[DIR_WR]);
82 HA_ATOMIC_AND(&fdtab[fd].polled_mask, 0);
83 }
84 else {
85 /* OK fd has to be monitored, it was either added or changed */
86 if (!(en & FD_EV_POLLED_R))
Willy Tarreaud51a5072018-01-25 16:48:46 +010087 hap_fd_clr(fd, fd_evts[DIR_RD]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010088 else
Willy Tarreaud51a5072018-01-25 16:48:46 +010089 hap_fd_set(fd, fd_evts[DIR_RD]);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010090
Willy Tarreau56dd12a2018-01-25 17:09:33 +010091 if (!(en & FD_EV_POLLED_W))
Willy Tarreaud51a5072018-01-25 16:48:46 +010092 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010093 else
Willy Tarreaud51a5072018-01-25 16:48:46 +010094 hap_fd_set(fd, fd_evts[DIR_WR]);
Willy Tarreau56dd12a2018-01-25 17:09:33 +010095
96 HA_ATOMIC_OR(&fdtab[fd].polled_mask, tid_bit);
97 if (fd > max_add_fd)
98 max_add_fd = fd;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010099 }
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100100 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100101
102 /* maybe we added at least one fd larger than maxfd */
103 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
104 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
105 break;
106 }
107
108 /* maxfd doesn't need to be precise but it needs to cover *all* active
109 * FDs. Thus we only shrink it if we have such an opportunity. The algo
110 * is simple : look for the previous used place, try to update maxfd to
111 * point to it, abort if maxfd changed in the mean time.
112 */
113 old_maxfd = maxfd;
114 do {
115 new_maxfd = old_maxfd;
116 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
117 new_maxfd--;
118 if (new_maxfd >= old_maxfd)
119 break;
120 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
121
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100122 fd_nbupdt = 0;
123
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200124 /* let's restore fdset state */
125 readnotnull = 0; writenotnull = 0;
126 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
127 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
128 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
129 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200130
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200131 delta_ms = 0;
132 delta.tv_sec = 0;
133 delta.tv_usec = 0;
134
Willy Tarreau10146c92015-04-13 20:44:19 +0200135 if (!exp) {
136 delta_ms = MAX_DELAY_MS;
137 delta.tv_sec = (MAX_DELAY_MS / 1000);
138 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
139 }
140 else if (!tick_is_expired(exp, now_ms)) {
141 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
142 if (delta_ms > MAX_DELAY_MS)
143 delta_ms = MAX_DELAY_MS;
144 delta.tv_sec = (delta_ms / 1000);
145 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200146 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100147 else
148 activity[tid].poll_exp++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200149
Willy Tarreau45a12512011-09-10 16:56:42 +0200150 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200151 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200152 readnotnull ? tmp_evts[DIR_RD] : NULL,
153 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200154 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200155 &delta);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200156
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200157 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200158 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200159
160 if (status <= 0)
161 return;
162
Willy Tarreau177e2b02008-07-15 00:36:31 +0200163 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200164 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200165 continue;
166
Willy Tarreau177e2b02008-07-15 00:36:31 +0200167 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200168 unsigned int n = 0;
169
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100170 if (!fdtab[fd].owner) {
171 activity[tid].poll_dead++;
172 continue;
173 }
174
175 if (!(fdtab[fd].thread_mask & tid_bit)) {
176 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200177 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100178 }
Willy Tarreau076be252012-07-06 16:02:29 +0200179
Willy Tarreau076be252012-07-06 16:02:29 +0200180 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200181 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200182
Willy Tarreau076be252012-07-06 16:02:29 +0200183 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200184 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100185
Christopher Fauletab62f512017-08-30 10:34:36 +0200186 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200187 }
188 }
189}
190
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200191static int init_select_per_thread()
192{
193 int fd_set_bytes;
194
195 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
196 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
197 goto fail;
198 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
199 goto fail;
200 return 1;
201 fail:
202 free(tmp_evts[DIR_RD]);
203 free(tmp_evts[DIR_WR]);
204 return 0;
205}
206
207static void deinit_select_per_thread()
208{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200209 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
210 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200211}
212
Willy Tarreau4f60f162007-04-08 16:39:58 +0200213/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200214 * Initialization of the select() poller.
215 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
216 * disables the poller by setting its pref to 0.
217 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200218REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200219{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200220 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200221 int fd_set_bytes;
222
223 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200224
225 if (global.maxsock > FD_SETSIZE)
226 goto fail_revt;
227
Willy Tarreaue54e9172007-04-09 09:23:31 +0200228 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200229
Willy Tarreaud51a5072018-01-25 16:48:46 +0100230 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200231 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100232 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200233 goto fail_swevt;
234
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200235 hap_register_per_thread_init(init_select_per_thread);
236 hap_register_per_thread_deinit(deinit_select_per_thread);
237
Willy Tarreaue54e9172007-04-09 09:23:31 +0200238 return 1;
239
240 fail_swevt:
241 free(fd_evts[DIR_RD]);
242 fail_srevt:
243 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200244 free(tmp_evts[DIR_RD]);
245 fail_revt:
246 p->pref = 0;
247 return 0;
248}
249
250/*
251 * Termination of the select() poller.
252 * Memory is released and the poller is marked as unselectable.
253 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200254REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200256 free(fd_evts[DIR_WR]);
257 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200258 p->private = NULL;
259 p->pref = 0;
260}
261
262/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200263 * Check that the poller works.
264 * Returns 1 if OK, otherwise 0.
265 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200266REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200267{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200268 if (global.maxsock > FD_SETSIZE)
269 return 0;
270
Willy Tarreau2ff76222007-04-09 19:29:56 +0200271 return 1;
272}
273
274/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200275 * It is a constructor, which means that it will automatically be called before
276 * main(). This is GCC-specific but it works at least since 2.95.
277 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200278 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200279__attribute__((constructor))
280static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200281{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200282 struct poller *p;
283
284 if (nbpollers >= MAX_POLLERS)
285 return;
286 p = &pollers[nbpollers++];
287
Willy Tarreau4f60f162007-04-08 16:39:58 +0200288 p->name = "select";
289 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100290 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200291 p->private = NULL;
292
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100293 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200294 p->test = _do_test;
295 p->init = _do_init;
296 p->term = _do_term;
297 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200298}
299
300
301/*
302 * Local variables:
303 * c-indent-level: 8
304 * c-basic-offset: 8
305 * End:
306 */