blob: 1ab345a6a47a2d6df740f159529225550023f568 [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
Willy Tarreau4f60f162007-04-08 16:39:58 +020048/*
49 * Poll() poller
50 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020051REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020052{
53 int status;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020054 int fd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020055 int wait_time;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010056 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020057 int fds, count;
58 int sr, sw;
Willy Tarreau173d9952018-01-26 21:48:23 +010059 int old_maxfd, new_maxfd, max_add_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +020060 unsigned rn, wn; /* read new, write new */
61
Willy Tarreau173d9952018-01-26 21:48:23 +010062 max_add_fd = -1;
63
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010064 /* first, scan the update list to find changes */
65 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
66 fd = fd_updt[updt_idx];
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010067
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010068 if (!fdtab[fd].owner) {
69 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010070 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010071 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010072
Christopher Faulet2a944ee2017-11-07 10:42:54 +010073 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauebc78d72018-01-20 23:53:50 +010074 fdtab[fd].update_mask &= ~tid_bit;
Willy Tarreau25002d22014-01-25 10:32:56 +010075 eo = fdtab[fd].state;
76 en = fd_compute_new_polled_status(eo);
Christopher Fauletd4604ad2017-05-29 10:40:41 +020077 fdtab[fd].state = en;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010078 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010079
Willy Tarreaufc6eea42018-01-25 17:11:33 +010080 /* we have a single state for all threads, which is why we
81 * don't check the tid_bit. First thread to see the update
82 * takes it for every other one.
83 */
84 if (!(en & FD_EV_POLLED_RW)) {
85 if (!fdtab[fd].polled_mask) {
86 /* fd was not watched, it's still not */
87 continue;
88 }
89 /* fd totally removed from poll list */
90 hap_fd_clr(fd, fd_evts[DIR_RD]);
91 hap_fd_clr(fd, fd_evts[DIR_WR]);
92 HA_ATOMIC_AND(&fdtab[fd].polled_mask, 0);
93 }
94 else {
95 /* OK fd has to be monitored, it was either added or changed */
96 if (!(en & FD_EV_POLLED_R))
Willy Tarreauf817e9f2014-01-10 16:58:45 +010097 hap_fd_clr(fd, fd_evts[DIR_RD]);
Willy Tarreaufc6eea42018-01-25 17:11:33 +010098 else
Willy Tarreauf817e9f2014-01-10 16:58:45 +010099 hap_fd_set(fd, fd_evts[DIR_RD]);
100
Willy Tarreaufc6eea42018-01-25 17:11:33 +0100101 if (!(en & FD_EV_POLLED_W))
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100102 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreaufc6eea42018-01-25 17:11:33 +0100103 else
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100104 hap_fd_set(fd, fd_evts[DIR_WR]);
Willy Tarreaufc6eea42018-01-25 17:11:33 +0100105
106 HA_ATOMIC_OR(&fdtab[fd].polled_mask, tid_bit);
107 if (fd > max_add_fd)
108 max_add_fd = fd;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100109 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100110 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100111
112 /* maybe we added at least one fd larger than maxfd */
113 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
114 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
115 break;
116 }
117
118 /* maxfd doesn't need to be precise but it needs to cover *all* active
119 * FDs. Thus we only shrink it if we have such an opportunity. The algo
120 * is simple : look for the previous used place, try to update maxfd to
121 * point to it, abort if maxfd changed in the mean time.
122 */
123 old_maxfd = maxfd;
124 do {
125 new_maxfd = old_maxfd;
126 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
127 new_maxfd--;
128 if (new_maxfd >= old_maxfd)
129 break;
130 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
131
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100132 fd_nbupdt = 0;
133
Willy Tarreau4f60f162007-04-08 16:39:58 +0200134 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200135 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
136 rn = fd_evts[DIR_RD][fds];
137 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200138
Willy Tarreau80da05a2013-03-31 14:06:57 +0200139 if (!(rn|wn))
140 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200141
Willy Tarreau80da05a2013-03-31 14:06:57 +0200142 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
143 sr = (rn >> count) & 1;
144 sw = (wn >> count) & 1;
145 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100146 if (!fdtab[fd].owner) {
147 /* should normally not happen here except
148 * due to rare thread concurrency
149 */
150 continue;
151 }
152
153 if (!(fdtab[fd].thread_mask & tid_bit)) {
154 activity[tid].poll_skip++;
155 continue;
156 }
157
Willy Tarreau80da05a2013-03-31 14:06:57 +0200158 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100159 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200160 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200161 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200162 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200163 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200164
Willy Tarreau4f60f162007-04-08 16:39:58 +0200165 /* now let's wait for events */
Willy Tarreau10146c92015-04-13 20:44:19 +0200166 if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200167 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100168 else if (tick_is_expired(exp, now_ms)) {
169 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200170 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100171 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200172 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200173 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200174 if (wait_time > MAX_DELAY_MS)
175 wait_time = MAX_DELAY_MS;
176 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200177
Willy Tarreau45a12512011-09-10 16:56:42 +0200178 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200179 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200180 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200181 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200182
183 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200184 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200185 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200186 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200187
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100188 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200189 continue;
190
Willy Tarreau076be252012-07-06 16:02:29 +0200191 /* ok, we found one active fd */
192 status--;
193
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100194 if (!fdtab[fd].owner) {
195 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200196 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100197 }
Willy Tarreau076be252012-07-06 16:02:29 +0200198
Willy Tarreau462c7202012-12-13 22:26:37 +0100199 /* it looks complicated but gcc can optimize it away when constants
200 * have same values... In fact it depends on gcc :-(
201 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100202 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
203 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200204 n = e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100205 }
206 else {
Christopher Fauletab62f512017-08-30 10:34:36 +0200207 n = ((e & POLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100208 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
209 ((e & POLLERR) ? FD_POLL_ERR : 0) |
210 ((e & POLLHUP) ? FD_POLL_HUP : 0);
211 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200212
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100213 /* always remap RDHUP to HUP as they're used similarly */
214 if (e & POLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200215 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Christopher Fauletab62f512017-08-30 10:34:36 +0200216 n |= FD_POLL_HUP;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100217 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200218 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200219 }
220
Willy Tarreaue54e9172007-04-09 09:23:31 +0200221}
222
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200223
224static int init_poll_per_thread()
225{
226 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
227 if (poll_events == NULL)
228 return 0;
229 return 1;
230}
231
232static void deinit_poll_per_thread()
233{
234 free(poll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200235 poll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200236}
237
Willy Tarreaue54e9172007-04-09 09:23:31 +0200238/*
239 * Initialization of the poll() poller.
240 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
241 * disables the poller by setting its pref to 0.
242 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200243REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200244{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200245 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200246 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200247
248 p->private = NULL;
Willy Tarreaucc359232018-01-17 15:48:53 +0100249 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200250
Willy Tarreau80da05a2013-03-31 14:06:57 +0200251 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200252 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200253 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200254 goto fail_swevt;
255
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200256 hap_register_per_thread_init(init_poll_per_thread);
257 hap_register_per_thread_deinit(deinit_poll_per_thread);
258
Willy Tarreaue54e9172007-04-09 09:23:31 +0200259 return 1;
260
261 fail_swevt:
262 free(fd_evts[DIR_RD]);
263 fail_srevt:
264 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200265 p->pref = 0;
266 return 0;
267}
268
269/*
270 * Termination of the poll() poller.
271 * Memory is released and the poller is marked as unselectable.
272 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200273REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200274{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200275 free(fd_evts[DIR_WR]);
276 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200277 p->private = NULL;
278 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200279}
280
281/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200282 * Check that the poller works.
283 * Returns 1 if OK, otherwise 0.
284 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200285REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200286{
287 return 1;
288}
289
290/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200291 * It is a constructor, which means that it will automatically be called before
292 * main(). This is GCC-specific but it works at least since 2.95.
293 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200294 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200295__attribute__((constructor))
296static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200297{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200298 struct poller *p;
299
300 if (nbpollers >= MAX_POLLERS)
301 return;
302 p = &pollers[nbpollers++];
303
Willy Tarreau4f60f162007-04-08 16:39:58 +0200304 p->name = "poll";
305 p->pref = 200;
Willy Tarreau5a767692017-03-13 11:38:28 +0100306 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200307 p->private = NULL;
308
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100309 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200310 p->test = _do_test;
311 p->init = _do_init;
312 p->term = _do_term;
313 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200314}
315
316
317/*
318 * Local variables:
319 * c-indent-level: 8
320 * c-basic-offset: 8
321 * End:
322 */