blob: 4890c49ded9fc7017c39274b98ec8aac69cc8e2f [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
Olivier Houchard6b96f722018-04-25 16:58:25 +020039static void _update_fd(int fd, int *max_add_fd)
40{
41 int en;
42
43 en = fdtab[fd].state;
44
45 /* we have a single state for all threads, which is why we
46 * don't check the tid_bit. First thread to see the update
47 * takes it for every other one.
48 */
49 if (!(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020050 if (!polled_mask[fd]) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020051 /* fd was not watched, it's still not */
52 return;
53 }
54 /* fd totally removed from poll list */
55 hap_fd_clr(fd, fd_evts[DIR_RD]);
56 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020057 HA_ATOMIC_AND(&polled_mask[fd], 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020058 }
59 else {
60 /* OK fd has to be monitored, it was either added or changed */
61 if (!(en & FD_EV_POLLED_R))
62 hap_fd_clr(fd, fd_evts[DIR_RD]);
63 else
64 hap_fd_set(fd, fd_evts[DIR_RD]);
65
66 if (!(en & FD_EV_POLLED_W))
67 hap_fd_clr(fd, fd_evts[DIR_WR]);
68 else
69 hap_fd_set(fd, fd_evts[DIR_WR]);
70
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020071 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020072 if (fd > *max_add_fd)
73 *max_add_fd = fd;
74 }
75}
76
Willy Tarreau4f60f162007-04-08 16:39:58 +020077/*
78 * Select() poller
79 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020080REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020081{
82 int status;
83 int fd, i;
84 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020085 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020086 int fds;
Olivier Houchard6b96f722018-04-25 16:58:25 +020087 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +020088 char count;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020089 int readnotnull, writenotnull;
Willy Tarreau173d9952018-01-26 21:48:23 +010090 int old_maxfd, new_maxfd, max_add_fd;
Olivier Houchard6b96f722018-04-25 16:58:25 +020091 int old_fd;
Willy Tarreau173d9952018-01-26 21:48:23 +010092
93 max_add_fd = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020094
Willy Tarreau4d31fb22012-11-11 16:53:50 +010095 /* first, scan the update list to find changes */
96 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
97 fd = fd_updt[updt_idx];
Willy Tarreau4d31fb22012-11-11 16:53:50 +010098
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +020099 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100100 if (!fdtab[fd].owner) {
101 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100102 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100103 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200104 _update_fd(fd, &max_add_fd);
105 }
106 /* Now scan the global update list */
107 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
108 if (fd == -2) {
109 fd = old_fd;
110 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100111 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200112 else if (fd <= -3)
113 fd = -fd -4;
114 if (fd == -1)
115 break;
116 if (fdtab[fd].update_mask & tid_bit) {
117 /* Cheat a bit, as the state is global to all pollers
118 * we don't need every thread ot take care of the
119 * update.
120 */
121 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
122 done_update_polling(fd);
123 } else
124 continue;
125 if (!fdtab[fd].owner)
126 continue;
127 _update_fd(fd, &max_add_fd);
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100128 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100129
Olivier Houchard6b96f722018-04-25 16:58:25 +0200130
Willy Tarreau173d9952018-01-26 21:48:23 +0100131 /* maybe we added at least one fd larger than maxfd */
132 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
133 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
134 break;
135 }
136
137 /* maxfd doesn't need to be precise but it needs to cover *all* active
138 * FDs. Thus we only shrink it if we have such an opportunity. The algo
139 * is simple : look for the previous used place, try to update maxfd to
140 * point to it, abort if maxfd changed in the mean time.
141 */
142 old_maxfd = maxfd;
143 do {
144 new_maxfd = old_maxfd;
145 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
146 new_maxfd--;
147 if (new_maxfd >= old_maxfd)
148 break;
149 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
150
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100151 fd_nbupdt = 0;
152
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200153 /* let's restore fdset state */
154 readnotnull = 0; writenotnull = 0;
155 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
156 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
157 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
158 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200159
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200160 delta_ms = 0;
161 delta.tv_sec = 0;
162 delta.tv_usec = 0;
163
Willy Tarreau10146c92015-04-13 20:44:19 +0200164 if (!exp) {
165 delta_ms = MAX_DELAY_MS;
166 delta.tv_sec = (MAX_DELAY_MS / 1000);
167 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
168 }
169 else if (!tick_is_expired(exp, now_ms)) {
170 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
171 if (delta_ms > MAX_DELAY_MS)
172 delta_ms = MAX_DELAY_MS;
173 delta.tv_sec = (delta_ms / 1000);
174 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200175 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100176 else
177 activity[tid].poll_exp++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200178
Willy Tarreau45a12512011-09-10 16:56:42 +0200179 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200180 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200181 readnotnull ? tmp_evts[DIR_RD] : NULL,
182 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200183 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200184 &delta);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200185
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200186 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200187 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200188
189 if (status <= 0)
190 return;
191
Willy Tarreau177e2b02008-07-15 00:36:31 +0200192 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200193 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200194 continue;
195
Willy Tarreau177e2b02008-07-15 00:36:31 +0200196 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200197 unsigned int n = 0;
198
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100199 if (!fdtab[fd].owner) {
200 activity[tid].poll_dead++;
201 continue;
202 }
203
204 if (!(fdtab[fd].thread_mask & tid_bit)) {
205 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200206 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100207 }
Willy Tarreau076be252012-07-06 16:02:29 +0200208
Willy Tarreau076be252012-07-06 16:02:29 +0200209 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200210 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200211
Willy Tarreau076be252012-07-06 16:02:29 +0200212 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200213 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100214
Christopher Fauletab62f512017-08-30 10:34:36 +0200215 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200216 }
217 }
218}
219
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200220static int init_select_per_thread()
221{
222 int fd_set_bytes;
223
224 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
225 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
226 goto fail;
227 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
228 goto fail;
229 return 1;
230 fail:
231 free(tmp_evts[DIR_RD]);
232 free(tmp_evts[DIR_WR]);
233 return 0;
234}
235
236static void deinit_select_per_thread()
237{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200238 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
239 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200240}
241
Willy Tarreau4f60f162007-04-08 16:39:58 +0200242/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200243 * Initialization of the select() poller.
244 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
245 * disables the poller by setting its pref to 0.
246 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200247REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200249 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200250 int fd_set_bytes;
251
252 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200253
254 if (global.maxsock > FD_SETSIZE)
255 goto fail_revt;
256
Willy Tarreaue54e9172007-04-09 09:23:31 +0200257 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200258
Willy Tarreaud51a5072018-01-25 16:48:46 +0100259 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200260 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100261 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200262 goto fail_swevt;
263
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200264 hap_register_per_thread_init(init_select_per_thread);
265 hap_register_per_thread_deinit(deinit_select_per_thread);
266
Willy Tarreaue54e9172007-04-09 09:23:31 +0200267 return 1;
268
269 fail_swevt:
270 free(fd_evts[DIR_RD]);
271 fail_srevt:
272 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200273 free(tmp_evts[DIR_RD]);
274 fail_revt:
275 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 Tarreauef1d1f82007-04-16 00:25:25 +0200283REGPRM1 static 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 Tarreauef1d1f82007-04-16 00:25:25 +0200295REGPRM1 static 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 */