blob: 464635b0f4e52da418f4ad8945ff3f45282cae3d [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 Tarreauf37ba942018-10-17 11:25:54 +0200163 /* now let's wait for events */
164 delta_ms = compute_poll_timeout(exp);
165 delta.tv_sec = (delta_ms / 1000);
166 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200167 tv_entering_poll();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200168 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200169 readnotnull ? tmp_evts[DIR_RD] : NULL,
170 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200171 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200172 &delta);
Willy Tarreau7e9c4ae2018-10-17 14:31:19 +0200173 tv_leaving_poll(delta_ms, status);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200174
Willy Tarreau60b639c2018-08-02 10:16:17 +0200175 thread_harmless_end();
176
Willy Tarreau4f60f162007-04-08 16:39:58 +0200177 if (status <= 0)
178 return;
179
Willy Tarreau177e2b02008-07-15 00:36:31 +0200180 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200181 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200182 continue;
183
Willy Tarreau177e2b02008-07-15 00:36:31 +0200184 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200185 unsigned int n = 0;
186
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100187 if (!fdtab[fd].owner) {
188 activity[tid].poll_dead++;
189 continue;
190 }
191
192 if (!(fdtab[fd].thread_mask & tid_bit)) {
193 activity[tid].poll_skip++;
Willy Tarreau076be252012-07-06 16:02:29 +0200194 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100195 }
Willy Tarreau076be252012-07-06 16:02:29 +0200196
Willy Tarreau076be252012-07-06 16:02:29 +0200197 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200198 n |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200199
Willy Tarreau076be252012-07-06 16:02:29 +0200200 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Christopher Fauletab62f512017-08-30 10:34:36 +0200201 n |= FD_POLL_OUT;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100202
Christopher Fauletab62f512017-08-30 10:34:36 +0200203 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200204 }
205 }
206}
207
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200208static int init_select_per_thread()
209{
210 int fd_set_bytes;
211
212 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
213 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
214 goto fail;
215 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
216 goto fail;
217 return 1;
218 fail:
219 free(tmp_evts[DIR_RD]);
220 free(tmp_evts[DIR_WR]);
221 return 0;
222}
223
224static void deinit_select_per_thread()
225{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200226 free(tmp_evts[DIR_WR]); tmp_evts[DIR_WR] = NULL;
227 free(tmp_evts[DIR_RD]); tmp_evts[DIR_RD] = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200228}
229
Willy Tarreau4f60f162007-04-08 16:39:58 +0200230/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200231 * Initialization of the select() poller.
232 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
233 * disables the poller by setting its pref to 0.
234 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200235REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200236{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200237 __label__ fail_swevt, fail_srevt, fail_revt;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200238 int fd_set_bytes;
239
240 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200241
242 if (global.maxsock > FD_SETSIZE)
243 goto fail_revt;
244
Willy Tarreaue54e9172007-04-09 09:23:31 +0200245 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200246
Willy Tarreaud51a5072018-01-25 16:48:46 +0100247 if ((fd_evts[DIR_RD] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248 goto fail_srevt;
Willy Tarreaud51a5072018-01-25 16:48:46 +0100249 if ((fd_evts[DIR_WR] = calloc(1, fd_set_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200250 goto fail_swevt;
251
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200252 hap_register_per_thread_init(init_select_per_thread);
253 hap_register_per_thread_deinit(deinit_select_per_thread);
254
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255 return 1;
256
257 fail_swevt:
258 free(fd_evts[DIR_RD]);
259 fail_srevt:
260 free(tmp_evts[DIR_WR]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200261 free(tmp_evts[DIR_RD]);
262 fail_revt:
263 p->pref = 0;
264 return 0;
265}
266
267/*
268 * Termination of the select() poller.
269 * Memory is released and the poller is marked as unselectable.
270 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200271REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200272{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200273 free(fd_evts[DIR_WR]);
274 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200275 p->private = NULL;
276 p->pref = 0;
277}
278
279/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200280 * Check that the poller works.
281 * Returns 1 if OK, otherwise 0.
282 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200283REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200284{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200285 if (global.maxsock > FD_SETSIZE)
286 return 0;
287
Willy Tarreau2ff76222007-04-09 19:29:56 +0200288 return 1;
289}
290
291/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200292 * It is a constructor, which means that it will automatically be called before
293 * main(). This is GCC-specific but it works at least since 2.95.
294 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200295 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200296__attribute__((constructor))
297static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200298{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200299 struct poller *p;
300
301 if (nbpollers >= MAX_POLLERS)
302 return;
303 p = &pollers[nbpollers++];
304
Willy Tarreau4f60f162007-04-08 16:39:58 +0200305 p->name = "select";
306 p->pref = 150;
Willy Tarreau5a767692017-03-13 11:38:28 +0100307 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200308 p->private = NULL;
309
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100310 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200311 p->test = _do_test;
312 p->init = _do_init;
313 p->term = _do_term;
314 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200315}
316
317
318/*
319 * Local variables:
320 * c-indent-level: 8
321 * c-basic-offset: 8
322 * End:
323 */