blob: d248d6d44a1d53bf23e5e5f66abf0507ebfbcd29 [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 Tarreau60b639c2018-08-02 10:16:17 +020019#include <common/hathreads.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020020#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020021#include <common/time.h>
22
Willy Tarreau4f60f162007-04-08 16:39:58 +020023#include <types/global.h>
24
25#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020026
27
Christopher Fauletd4604ad2017-05-29 10:40:41 +020028/* private data */
Willy Tarreau173d9952018-01-26 21:48:23 +010029static int maxfd; /* # of the highest fd + 1 */
Willy Tarreaud51a5072018-01-25 16:48:46 +010030static unsigned int *fd_evts[2];
Christopher Fauletd4604ad2017-05-29 10:40:41 +020031static THREAD_LOCAL fd_set *tmp_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020032
Willy Tarreau4d31fb22012-11-11 16:53:50 +010033/* Immediately remove the entry upon close() */
34REGPRM1 static void __fd_clo(int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020035{
Willy Tarreaud51a5072018-01-25 16:48:46 +010036 hap_fd_clr(fd, fd_evts[DIR_RD]);
37 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020038}
39
Olivier Houchard6b96f722018-04-25 16:58:25 +020040static void _update_fd(int fd, int *max_add_fd)
41{
42 int en;
43
44 en = fdtab[fd].state;
45
46 /* we have a single state for all threads, which is why we
47 * don't check the tid_bit. First thread to see the update
48 * takes it for every other one.
49 */
50 if (!(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020051 if (!polled_mask[fd]) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020052 /* fd was not watched, it's still not */
53 return;
54 }
55 /* fd totally removed from poll list */
56 hap_fd_clr(fd, fd_evts[DIR_RD]);
57 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020058 HA_ATOMIC_AND(&polled_mask[fd], 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020059 }
60 else {
61 /* OK fd has to be monitored, it was either added or changed */
62 if (!(en & FD_EV_POLLED_R))
63 hap_fd_clr(fd, fd_evts[DIR_RD]);
64 else
65 hap_fd_set(fd, fd_evts[DIR_RD]);
66
67 if (!(en & FD_EV_POLLED_W))
68 hap_fd_clr(fd, fd_evts[DIR_WR]);
69 else
70 hap_fd_set(fd, fd_evts[DIR_WR]);
71
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020072 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020073 if (fd > *max_add_fd)
74 *max_add_fd = fd;
75 }
76}
77
Willy Tarreau4f60f162007-04-08 16:39:58 +020078/*
79 * Select() poller
80 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020081REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020082{
83 int status;
84 int fd, i;
85 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020086 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020087 int fds;
Olivier Houchard6b96f722018-04-25 16:58:25 +020088 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +020089 char count;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020090 int readnotnull, writenotnull;
Willy Tarreau173d9952018-01-26 21:48:23 +010091 int old_maxfd, new_maxfd, max_add_fd;
Olivier Houchard6b96f722018-04-25 16:58:25 +020092 int old_fd;
Willy Tarreau173d9952018-01-26 21:48:23 +010093
94 max_add_fd = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020095
Willy Tarreau4d31fb22012-11-11 16:53:50 +010096 /* first, scan the update list to find changes */
97 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
98 fd = fd_updt[updt_idx];
Willy Tarreau4d31fb22012-11-11 16:53:50 +010099
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +0200100 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100101 if (!fdtab[fd].owner) {
102 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100103 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100104 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200105 _update_fd(fd, &max_add_fd);
106 }
107 /* Now scan the global update list */
108 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
109 if (fd == -2) {
110 fd = old_fd;
111 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100112 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200113 else if (fd <= -3)
114 fd = -fd -4;
115 if (fd == -1)
116 break;
117 if (fdtab[fd].update_mask & tid_bit) {
118 /* Cheat a bit, as the state is global to all pollers
119 * we don't need every thread ot take care of the
120 * update.
121 */
122 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
123 done_update_polling(fd);
124 } else
125 continue;
126 if (!fdtab[fd].owner)
127 continue;
128 _update_fd(fd, &max_add_fd);
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100129 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100130
Olivier Houchard6b96f722018-04-25 16:58:25 +0200131
Willy Tarreau173d9952018-01-26 21:48:23 +0100132 /* maybe we added at least one fd larger than maxfd */
133 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
134 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
135 break;
136 }
137
138 /* maxfd doesn't need to be precise but it needs to cover *all* active
139 * FDs. Thus we only shrink it if we have such an opportunity. The algo
140 * is simple : look for the previous used place, try to update maxfd to
141 * point to it, abort if maxfd changed in the mean time.
142 */
143 old_maxfd = maxfd;
144 do {
145 new_maxfd = old_maxfd;
146 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
147 new_maxfd--;
148 if (new_maxfd >= old_maxfd)
149 break;
150 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
151
Willy Tarreau60b639c2018-08-02 10:16:17 +0200152 thread_harmless_now();
153
Willy Tarreau4d31fb22012-11-11 16:53:50 +0100154 fd_nbupdt = 0;
155
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200156 /* let's restore fdset state */
157 readnotnull = 0; writenotnull = 0;
158 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
159 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
160 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
161 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200162
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200163 delta_ms = 0;
164 delta.tv_sec = 0;
165 delta.tv_usec = 0;
166
Willy Tarreau10146c92015-04-13 20:44:19 +0200167 if (!exp) {
168 delta_ms = MAX_DELAY_MS;
169 delta.tv_sec = (MAX_DELAY_MS / 1000);
170 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
171 }
172 else if (!tick_is_expired(exp, now_ms)) {
173 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
174 if (delta_ms > MAX_DELAY_MS)
175 delta_ms = MAX_DELAY_MS;
176 delta.tv_sec = (delta_ms / 1000);
177 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200178 }
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100179 else
180 activity[tid].poll_exp++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200181
Willy Tarreau45a12512011-09-10 16:56:42 +0200182 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200183 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200184 readnotnull ? tmp_evts[DIR_RD] : NULL,
185 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200186 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200187 &delta);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200188
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200189 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200190 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200191
Willy Tarreau60b639c2018-08-02 10:16:17 +0200192 thread_harmless_end();
193
Willy Tarreau4f60f162007-04-08 16:39:58 +0200194 if (status <= 0)
195 return;
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 Tarreaud80cb4e2018-01-20 19:30:13 +0100204 if (!fdtab[fd].owner) {
205 activity[tid].poll_dead++;
206 continue;
207 }
208
209 if (!(fdtab[fd].thread_mask & tid_bit)) {
210 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200211 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100212 }
Willy Tarreau076be252012-07-06 16:02:29 +0200213
Willy Tarreau076be252012-07-06 16:02:29 +0200214 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200215 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200216
Willy Tarreau076be252012-07-06 16:02:29 +0200217 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200218 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100219
Christopher Fauletab62f512017-08-30 10:34:36 +0200220 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200221 }
222 }
223}
224
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200225static int init_select_per_thread()
226{
227 int fd_set_bytes;
228
229 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
230 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
231 goto fail;
232 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
233 goto fail;
234 return 1;
235 fail:
236 free(tmp_evts[DIR_RD]);
237 free(tmp_evts[DIR_WR]);
238 return 0;
239}
240
241static void deinit_select_per_thread()
242{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200243 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
244 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200245}
246
Willy Tarreau4f60f162007-04-08 16:39:58 +0200247/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248 * Initialization of the select() poller.
249 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
250 * disables the poller by setting its pref to 0.
251 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200252REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200253{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200254 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255 int fd_set_bytes;
256
257 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200258
259 if (global.maxsock > FD_SETSIZE)
260 goto fail_revt;
261
Willy Tarreaue54e9172007-04-09 09:23:31 +0200262 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200263
Willy Tarreaud51a5072018-01-25 16:48:46 +0100264 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200265 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100266 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200267 goto fail_swevt;
268
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200269 hap_register_per_thread_init(init_select_per_thread);
270 hap_register_per_thread_deinit(deinit_select_per_thread);
271
Willy Tarreaue54e9172007-04-09 09:23:31 +0200272 return 1;
273
274 fail_swevt:
275 free(fd_evts[DIR_RD]);
276 fail_srevt:
277 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200278 free(tmp_evts[DIR_RD]);
279 fail_revt:
280 p->pref = 0;
281 return 0;
282}
283
284/*
285 * Termination of the select() poller.
286 * Memory is released and the poller is marked as unselectable.
287 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200288REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200289{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200290 free(fd_evts[DIR_WR]);
291 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200292 p->private = NULL;
293 p->pref = 0;
294}
295
296/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200297 * Check that the poller works.
298 * Returns 1 if OK, otherwise 0.
299 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200300REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200301{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200302 if (global.maxsock > FD_SETSIZE)
303 return 0;
304
Willy Tarreau2ff76222007-04-09 19:29:56 +0200305 return 1;
306}
307
308/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200309 * It is a constructor, which means that it will automatically be called before
310 * main(). This is GCC-specific but it works at least since 2.95.
311 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200312 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200313__attribute__((constructor))
314static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200315{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200316 struct poller *p;
317
318 if (nbpollers >= MAX_POLLERS)
319 return;
320 p = &pollers[nbpollers++];
321
Willy Tarreau4f60f162007-04-08 16:39:58 +0200322 p->name = "select";
323 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100324 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200325 p->private = NULL;
326
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100327 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200328 p->test = _do_test;
329 p->init = _do_init;
330 p->term = _do_term;
331 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200332}
333
334
335/*
336 * Local variables:
337 * c-indent-level: 8
338 * c-basic-offset: 8
339 * End:
340 */