blob: 2e67a9dc3fb6262596c55a0c2f6cb87467bcedfc [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 +020042static inline void hap_fd_set(int fd, unsigned int *evts)
43{
44 evts[fd / (8*sizeof(*evts))] |= 1U << (fd & (8*sizeof(*evts) - 1));
45}
46
47static inline void hap_fd_clr(int fd, unsigned int *evts)
48{
49 evts[fd / (8*sizeof(*evts))] &= ~(1U << (fd & (8*sizeof(*evts) - 1)));
50}
51
52REGPRM1 static void __fd_clo(int fd)
53{
Christopher Faulet2a944ee2017-11-07 10:42:54 +010054 HA_SPIN_LOCK(POLL_LOCK, &poll_lock);
Willy Tarreau80da05a2013-03-31 14:06:57 +020055 hap_fd_clr(fd, fd_evts[DIR_RD]);
56 hap_fd_clr(fd, fd_evts[DIR_WR]);
Christopher Faulet2a944ee2017-11-07 10:42:54 +010057 HA_SPIN_UNLOCK(POLL_LOCK, &poll_lock);
Willy Tarreau80da05a2013-03-31 14:06:57 +020058}
59
Willy Tarreau4f60f162007-04-08 16:39:58 +020060/*
61 * Poll() poller
62 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020063REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020064{
65 int status;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020066 int fd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020067 int wait_time;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010068 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020069 int fds, count;
70 int sr, sw;
Willy Tarreau173d9952018-01-26 21:48:23 +010071 int old_maxfd, new_maxfd, max_add_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +020072 unsigned rn, wn; /* read new, write new */
73
Willy Tarreau173d9952018-01-26 21:48:23 +010074 max_add_fd = -1;
75
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010076 /* first, scan the update list to find changes */
77 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
78 fd = fd_updt[updt_idx];
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010079
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010080 if (!fdtab[fd].owner) {
81 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +010082 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010083 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010084
Christopher Faulet2a944ee2017-11-07 10:42:54 +010085 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauebc78d72018-01-20 23:53:50 +010086 fdtab[fd].update_mask &= ~tid_bit;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020087 fdtab[fd].new = 0;
88
Willy Tarreau25002d22014-01-25 10:32:56 +010089 eo = fdtab[fd].state;
90 en = fd_compute_new_polled_status(eo);
Christopher Fauletd4604ad2017-05-29 10:40:41 +020091 fdtab[fd].state = en;
Christopher Faulet2a944ee2017-11-07 10:42:54 +010092 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010093
94 if ((eo ^ en) & FD_EV_POLLED_RW) {
95 /* poll status changed, update the lists */
Christopher Faulet2a944ee2017-11-07 10:42:54 +010096 HA_SPIN_LOCK(POLL_LOCK, &poll_lock);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010097 if ((eo & ~en) & FD_EV_POLLED_R)
98 hap_fd_clr(fd, fd_evts[DIR_RD]);
99 else if ((en & ~eo) & FD_EV_POLLED_R)
100 hap_fd_set(fd, fd_evts[DIR_RD]);
101
102 if ((eo & ~en) & FD_EV_POLLED_W)
103 hap_fd_clr(fd, fd_evts[DIR_WR]);
104 else if ((en & ~eo) & FD_EV_POLLED_W)
105 hap_fd_set(fd, fd_evts[DIR_WR]);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100106 HA_SPIN_UNLOCK(POLL_LOCK, &poll_lock);
Willy Tarreau173d9952018-01-26 21:48:23 +0100107
108 if (fd > max_add_fd)
109 max_add_fd = fd;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100110 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100111 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100112
113 /* maybe we added at least one fd larger than maxfd */
114 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
115 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
116 break;
117 }
118
119 /* maxfd doesn't need to be precise but it needs to cover *all* active
120 * FDs. Thus we only shrink it if we have such an opportunity. The algo
121 * is simple : look for the previous used place, try to update maxfd to
122 * point to it, abort if maxfd changed in the mean time.
123 */
124 old_maxfd = maxfd;
125 do {
126 new_maxfd = old_maxfd;
127 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
128 new_maxfd--;
129 if (new_maxfd >= old_maxfd)
130 break;
131 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
132
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100133 fd_nbupdt = 0;
134
Willy Tarreau4f60f162007-04-08 16:39:58 +0200135 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200136 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
137 rn = fd_evts[DIR_RD][fds];
138 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200139
Willy Tarreau80da05a2013-03-31 14:06:57 +0200140 if (!(rn|wn))
141 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200142
Willy Tarreau80da05a2013-03-31 14:06:57 +0200143 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
144 sr = (rn >> count) & 1;
145 sw = (wn >> count) & 1;
146 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100147 if (!fdtab[fd].owner) {
148 /* should normally not happen here except
149 * due to rare thread concurrency
150 */
151 continue;
152 }
153
154 if (!(fdtab[fd].thread_mask & tid_bit)) {
155 activity[tid].poll_skip++;
156 continue;
157 }
158
Willy Tarreau80da05a2013-03-31 14:06:57 +0200159 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100160 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200161 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200162 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200163 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200164 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200165
Willy Tarreau4f60f162007-04-08 16:39:58 +0200166 /* now let's wait for events */
Willy Tarreau10146c92015-04-13 20:44:19 +0200167 if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200168 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100169 else if (tick_is_expired(exp, now_ms)) {
170 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200171 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100172 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200173 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200174 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200175 if (wait_time > MAX_DELAY_MS)
176 wait_time = MAX_DELAY_MS;
177 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200178
Willy Tarreau45a12512011-09-10 16:56:42 +0200179 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200180 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200181 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200182 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200183
184 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200185 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200186 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200187 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200188
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100189 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200190 continue;
191
Willy Tarreau076be252012-07-06 16:02:29 +0200192 /* ok, we found one active fd */
193 status--;
194
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100195 if (!fdtab[fd].owner) {
196 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200197 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100198 }
Willy Tarreau076be252012-07-06 16:02:29 +0200199
Willy Tarreau462c7202012-12-13 22:26:37 +0100200 /* it looks complicated but gcc can optimize it away when constants
201 * have same values... In fact it depends on gcc :-(
202 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100203 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
204 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200205 n = e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100206 }
207 else {
Christopher Fauletab62f512017-08-30 10:34:36 +0200208 n = ((e & POLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100209 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
210 ((e & POLLERR) ? FD_POLL_ERR : 0) |
211 ((e & POLLHUP) ? FD_POLL_HUP : 0);
212 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200213
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100214 /* always remap RDHUP to HUP as they're used similarly */
215 if (e & POLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200216 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Christopher Fauletab62f512017-08-30 10:34:36 +0200217 n |= FD_POLL_HUP;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100218 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200219 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200220 }
221
Willy Tarreaue54e9172007-04-09 09:23:31 +0200222}
223
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200224
225static int init_poll_per_thread()
226{
227 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
228 if (poll_events == NULL)
229 return 0;
230 return 1;
231}
232
233static void deinit_poll_per_thread()
234{
235 free(poll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200236 poll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200237}
238
Willy Tarreaue54e9172007-04-09 09:23:31 +0200239/*
240 * Initialization of the poll() poller.
241 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
242 * disables the poller by setting its pref to 0.
243 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200244REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200245{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200246 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200247 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200248
249 p->private = NULL;
Willy Tarreaucc359232018-01-17 15:48:53 +0100250 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200251
Willy Tarreau80da05a2013-03-31 14:06:57 +0200252 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200253 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200254 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255 goto fail_swevt;
256
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200257 hap_register_per_thread_init(init_poll_per_thread);
258 hap_register_per_thread_deinit(deinit_poll_per_thread);
259
Willy Tarreaue54e9172007-04-09 09:23:31 +0200260 return 1;
261
262 fail_swevt:
263 free(fd_evts[DIR_RD]);
264 fail_srevt:
265 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200266 p->pref = 0;
267 return 0;
268}
269
270/*
271 * Termination of the poll() poller.
272 * Memory is released and the poller is marked as unselectable.
273 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200274REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200275{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200276 free(fd_evts[DIR_WR]);
277 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200278 p->private = NULL;
279 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200280}
281
282/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200283 * Check that the poller works.
284 * Returns 1 if OK, otherwise 0.
285 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200286REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200287{
288 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 = "poll";
306 p->pref = 200;
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 */