blob: a2e8798e4a519d850382540baaf6aea34e2c9d1e [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
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
Willy Tarreau3c8a8962017-03-13 17:14:51 +010013#define _GNU_SOURCE // for POLLRDHUP on Linux
14
Willy Tarreau4f60f162007-04-08 16:39:58 +020015#include <unistd.h>
Willy Tarreau3c8a8962017-03-13 17:14:51 +010016#include <poll.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020017#include <sys/time.h>
18#include <sys/types.h>
19
20#include <common/compat.h>
21#include <common/config.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020022#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020023#include <common/time.h>
24
Willy Tarreau4f60f162007-04-08 16:39:58 +020025#include <types/global.h>
26
27#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020028
Willy Tarreau3c8a8962017-03-13 17:14:51 +010029
30#ifndef POLLRDHUP
31/* POLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */
32#define POLLRDHUP 0
33#endif
Willy Tarreau4f60f162007-04-08 16:39:58 +020034
Willy Tarreau173d9952018-01-26 21:48:23 +010035static int maxfd; /* # of the highest fd + 1 */
Willy Tarreau80da05a2013-03-31 14:06:57 +020036static unsigned int *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020037
38/* private data */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020039static THREAD_LOCAL int nbfd = 0;
40static THREAD_LOCAL struct pollfd *poll_events = NULL;
Willy Tarreau4f60f162007-04-08 16:39:58 +020041
Willy Tarreau80da05a2013-03-31 14:06:57 +020042REGPRM1 static void __fd_clo(int fd)
43{
44 hap_fd_clr(fd, fd_evts[DIR_RD]);
45 hap_fd_clr(fd, fd_evts[DIR_WR]);
46}
47
Olivier Houchard6b96f722018-04-25 16:58:25 +020048static void _update_fd(int fd, int *max_add_fd)
49{
50 int en;
51
52 en = fdtab[fd].state;
53
54 /* we have a single state for all threads, which is why we
55 * don't check the tid_bit. First thread to see the update
56 * takes it for every other one.
57 */
58 if (!(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020059 if (!polled_mask[fd]) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020060 /* fd was not watched, it's still not */
61 return;
62 }
63 /* fd totally removed from poll list */
64 hap_fd_clr(fd, fd_evts[DIR_RD]);
65 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020066 HA_ATOMIC_AND(&polled_mask[fd], 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020067 }
68 else {
69 /* OK fd has to be monitored, it was either added or changed */
70 if (!(en & FD_EV_POLLED_R))
71 hap_fd_clr(fd, fd_evts[DIR_RD]);
72 else
73 hap_fd_set(fd, fd_evts[DIR_RD]);
74
75 if (!(en & FD_EV_POLLED_W))
76 hap_fd_clr(fd, fd_evts[DIR_WR]);
77 else
78 hap_fd_set(fd, fd_evts[DIR_WR]);
79
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020080 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020081 if (fd > *max_add_fd)
82 *max_add_fd = fd;
83 }
84}
85
Willy Tarreau4f60f162007-04-08 16:39:58 +020086/*
87 * Poll() poller
88 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020089REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020090{
91 int status;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020092 int fd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020093 int wait_time;
Olivier Houchard6b96f722018-04-25 16:58:25 +020094 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +020095 int fds, count;
96 int sr, sw;
Willy Tarreau173d9952018-01-26 21:48:23 +010097 int old_maxfd, new_maxfd, max_add_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +020098 unsigned rn, wn; /* read new, write new */
Olivier Houchard6b96f722018-04-25 16:58:25 +020099 int old_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200100
Willy Tarreau173d9952018-01-26 21:48:23 +0100101 max_add_fd = -1;
102
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100103 /* first, scan the update list to find changes */
104 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
105 fd = fd_updt[updt_idx];
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100106
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +0200107 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100108 if (!fdtab[fd].owner) {
109 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100110 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100111 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200112 _update_fd(fd, &max_add_fd);
113 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100114
Olivier Houchard6b96f722018-04-25 16:58:25 +0200115 /* Now scan the global update list */
116 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
117 if (fd == -2) {
118 fd = old_fd;
119 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100120 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200121 else if (fd <= -3)
122 fd = -fd -4;
123 if (fd == -1)
124 break;
125 if (fdtab[fd].update_mask & tid_bit) {
126 /* Cheat a bit, as the state is global to all pollers
127 * we don't need every thread ot take care of the
128 * update.
129 */
130 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
131 done_update_polling(fd);
132 } else
133 continue;
134 if (!fdtab[fd].owner)
135 continue;
136 _update_fd(fd, &max_add_fd);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100137 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100138
139 /* maybe we added at least one fd larger than maxfd */
140 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
141 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
142 break;
143 }
144
145 /* maxfd doesn't need to be precise but it needs to cover *all* active
146 * FDs. Thus we only shrink it if we have such an opportunity. The algo
147 * is simple : look for the previous used place, try to update maxfd to
148 * point to it, abort if maxfd changed in the mean time.
149 */
150 old_maxfd = maxfd;
151 do {
152 new_maxfd = old_maxfd;
153 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
154 new_maxfd--;
155 if (new_maxfd >= old_maxfd)
156 break;
157 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
158
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100159 fd_nbupdt = 0;
160
Willy Tarreau4f60f162007-04-08 16:39:58 +0200161 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200162 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
163 rn = fd_evts[DIR_RD][fds];
164 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200165
Willy Tarreau80da05a2013-03-31 14:06:57 +0200166 if (!(rn|wn))
167 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200168
Willy Tarreau80da05a2013-03-31 14:06:57 +0200169 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
170 sr = (rn >> count) & 1;
171 sw = (wn >> count) & 1;
172 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100173 if (!fdtab[fd].owner) {
174 /* should normally not happen here except
175 * due to rare thread concurrency
176 */
177 continue;
178 }
179
180 if (!(fdtab[fd].thread_mask & tid_bit)) {
181 activity[tid].poll_skip++;
182 continue;
183 }
184
Willy Tarreau80da05a2013-03-31 14:06:57 +0200185 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100186 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200187 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200188 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200189 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200190 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200191
Willy Tarreau4f60f162007-04-08 16:39:58 +0200192 /* now let's wait for events */
Willy Tarreau10146c92015-04-13 20:44:19 +0200193 if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200194 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100195 else if (tick_is_expired(exp, now_ms)) {
196 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200197 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100198 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200199 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200200 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200201 if (wait_time > MAX_DELAY_MS)
202 wait_time = MAX_DELAY_MS;
203 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200204
Willy Tarreau45a12512011-09-10 16:56:42 +0200205 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200206 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200207 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200208 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200209
210 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200211 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200212 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200213 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200214
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100215 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200216 continue;
217
Willy Tarreau076be252012-07-06 16:02:29 +0200218 /* ok, we found one active fd */
219 status--;
220
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100221 if (!fdtab[fd].owner) {
222 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200223 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100224 }
Willy Tarreau076be252012-07-06 16:02:29 +0200225
Willy Tarreau462c7202012-12-13 22:26:37 +0100226 /* it looks complicated but gcc can optimize it away when constants
227 * have same values... In fact it depends on gcc :-(
228 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100229 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
230 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200231 n = e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100232 }
233 else {
Christopher Fauletab62f512017-08-30 10:34:36 +0200234 n = ((e & POLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100235 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
236 ((e & POLLERR) ? FD_POLL_ERR : 0) |
237 ((e & POLLHUP) ? FD_POLL_HUP : 0);
238 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200239
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100240 /* always remap RDHUP to HUP as they're used similarly */
241 if (e & POLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200242 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Christopher Fauletab62f512017-08-30 10:34:36 +0200243 n |= FD_POLL_HUP;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100244 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200245 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200246 }
247
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248}
249
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200250
251static int init_poll_per_thread()
252{
253 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
254 if (poll_events == NULL)
255 return 0;
256 return 1;
257}
258
259static void deinit_poll_per_thread()
260{
261 free(poll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200262 poll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200263}
264
Willy Tarreaue54e9172007-04-09 09:23:31 +0200265/*
266 * Initialization of the poll() poller.
267 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
268 * disables the poller by setting its pref to 0.
269 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200270REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200271{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200272 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200273 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200274
275 p->private = NULL;
Willy Tarreaucc359232018-01-17 15:48:53 +0100276 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200277
Willy Tarreau80da05a2013-03-31 14:06:57 +0200278 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200279 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200280 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200281 goto fail_swevt;
282
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200283 hap_register_per_thread_init(init_poll_per_thread);
284 hap_register_per_thread_deinit(deinit_poll_per_thread);
285
Willy Tarreaue54e9172007-04-09 09:23:31 +0200286 return 1;
287
288 fail_swevt:
289 free(fd_evts[DIR_RD]);
290 fail_srevt:
291 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200292 p->pref = 0;
293 return 0;
294}
295
296/*
297 * Termination of the poll() poller.
298 * Memory is released and the poller is marked as unselectable.
299 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200300REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200301{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200302 free(fd_evts[DIR_WR]);
303 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200304 p->private = NULL;
305 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200306}
307
308/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200309 * Check that the poller works.
310 * Returns 1 if OK, otherwise 0.
311 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200312REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200313{
314 return 1;
315}
316
317/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200318 * It is a constructor, which means that it will automatically be called before
319 * main(). This is GCC-specific but it works at least since 2.95.
320 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200321 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200322__attribute__((constructor))
323static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200324{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200325 struct poller *p;
326
327 if (nbpollers >= MAX_POLLERS)
328 return;
329 p = &pollers[nbpollers++];
330
Willy Tarreau4f60f162007-04-08 16:39:58 +0200331 p->name = "poll";
332 p->pref = 200;
Willy Tarreau5a767692017-03-13 11:38:28 +0100333 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200334 p->private = NULL;
335
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100336 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200337 p->test = _do_test;
338 p->init = _do_init;
339 p->term = _do_term;
340 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200341}
342
343
344/*
345 * Local variables:
346 * c-indent-level: 8
347 * c-basic-offset: 8
348 * End:
349 */