blob: 712bdf9918a947fa06ff4012f2cf5528a65df40f [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 Tarreau60b639c2018-08-02 10:16:17 +020022#include <common/hathreads.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020023#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020024#include <common/time.h>
25
Willy Tarreau4f60f162007-04-08 16:39:58 +020026#include <types/global.h>
27
28#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020029
Willy Tarreau3c8a8962017-03-13 17:14:51 +010030
31#ifndef POLLRDHUP
32/* POLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */
33#define POLLRDHUP 0
34#endif
Willy Tarreau4f60f162007-04-08 16:39:58 +020035
Willy Tarreau173d9952018-01-26 21:48:23 +010036static int maxfd; /* # of the highest fd + 1 */
Willy Tarreau80da05a2013-03-31 14:06:57 +020037static unsigned int *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020038
39/* private data */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020040static THREAD_LOCAL int nbfd = 0;
41static THREAD_LOCAL struct pollfd *poll_events = NULL;
Willy Tarreau4f60f162007-04-08 16:39:58 +020042
Willy Tarreau80da05a2013-03-31 14:06:57 +020043REGPRM1 static void __fd_clo(int fd)
44{
45 hap_fd_clr(fd, fd_evts[DIR_RD]);
46 hap_fd_clr(fd, fd_evts[DIR_WR]);
47}
48
Olivier Houchard6b96f722018-04-25 16:58:25 +020049static void _update_fd(int fd, int *max_add_fd)
50{
51 int en;
52
53 en = fdtab[fd].state;
54
55 /* we have a single state for all threads, which is why we
56 * don't check the tid_bit. First thread to see the update
57 * takes it for every other one.
58 */
59 if (!(en & FD_EV_POLLED_RW)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020060 if (!polled_mask[fd]) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020061 /* fd was not watched, it's still not */
62 return;
63 }
64 /* fd totally removed from poll list */
65 hap_fd_clr(fd, fd_evts[DIR_RD]);
66 hap_fd_clr(fd, fd_evts[DIR_WR]);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020067 HA_ATOMIC_AND(&polled_mask[fd], 0);
Olivier Houchard6b96f722018-04-25 16:58:25 +020068 }
69 else {
70 /* OK fd has to be monitored, it was either added or changed */
71 if (!(en & FD_EV_POLLED_R))
72 hap_fd_clr(fd, fd_evts[DIR_RD]);
73 else
74 hap_fd_set(fd, fd_evts[DIR_RD]);
75
76 if (!(en & FD_EV_POLLED_W))
77 hap_fd_clr(fd, fd_evts[DIR_WR]);
78 else
79 hap_fd_set(fd, fd_evts[DIR_WR]);
80
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020081 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020082 if (fd > *max_add_fd)
83 *max_add_fd = fd;
84 }
85}
86
Willy Tarreau4f60f162007-04-08 16:39:58 +020087/*
88 * Poll() poller
89 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020090REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020091{
92 int status;
Christopher Fauletd4604ad2017-05-29 10:40:41 +020093 int fd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020094 int wait_time;
Olivier Houchard6b96f722018-04-25 16:58:25 +020095 int updt_idx;
Willy Tarreau4f60f162007-04-08 16:39:58 +020096 int fds, count;
97 int sr, sw;
Willy Tarreau173d9952018-01-26 21:48:23 +010098 int old_maxfd, new_maxfd, max_add_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +020099 unsigned rn, wn; /* read new, write new */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200100 int old_fd;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200101
Willy Tarreau173d9952018-01-26 21:48:23 +0100102 max_add_fd = -1;
103
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100104 /* first, scan the update list to find changes */
105 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
106 fd = fd_updt[updt_idx];
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100107
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +0200108 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100109 if (!fdtab[fd].owner) {
110 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100111 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100112 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200113 _update_fd(fd, &max_add_fd);
114 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100115
Olivier Houchard6b96f722018-04-25 16:58:25 +0200116 /* Now scan the global update list */
117 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
118 if (fd == -2) {
119 fd = old_fd;
120 continue;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100121 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200122 else if (fd <= -3)
123 fd = -fd -4;
124 if (fd == -1)
125 break;
126 if (fdtab[fd].update_mask & tid_bit) {
127 /* Cheat a bit, as the state is global to all pollers
128 * we don't need every thread ot take care of the
129 * update.
130 */
131 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~all_threads_mask);
132 done_update_polling(fd);
133 } else
134 continue;
135 if (!fdtab[fd].owner)
136 continue;
137 _update_fd(fd, &max_add_fd);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100138 }
Willy Tarreau173d9952018-01-26 21:48:23 +0100139
140 /* maybe we added at least one fd larger than maxfd */
141 for (old_maxfd = maxfd; old_maxfd <= max_add_fd; ) {
142 if (HA_ATOMIC_CAS(&maxfd, &old_maxfd, max_add_fd + 1))
143 break;
144 }
145
146 /* maxfd doesn't need to be precise but it needs to cover *all* active
147 * FDs. Thus we only shrink it if we have such an opportunity. The algo
148 * is simple : look for the previous used place, try to update maxfd to
149 * point to it, abort if maxfd changed in the mean time.
150 */
151 old_maxfd = maxfd;
152 do {
153 new_maxfd = old_maxfd;
154 while (new_maxfd - 1 >= 0 && !fdtab[new_maxfd - 1].owner)
155 new_maxfd--;
156 if (new_maxfd >= old_maxfd)
157 break;
158 } while (!HA_ATOMIC_CAS(&maxfd, &old_maxfd, new_maxfd));
159
Willy Tarreau60b639c2018-08-02 10:16:17 +0200160 thread_harmless_now();
161
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100162 fd_nbupdt = 0;
163
Willy Tarreau4f60f162007-04-08 16:39:58 +0200164 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200165 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
166 rn = fd_evts[DIR_RD][fds];
167 wn = fd_evts[DIR_WR][fds];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200168
Willy Tarreau80da05a2013-03-31 14:06:57 +0200169 if (!(rn|wn))
170 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200171
Willy Tarreau80da05a2013-03-31 14:06:57 +0200172 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
173 sr = (rn >> count) & 1;
174 sw = (wn >> count) & 1;
175 if ((sr|sw)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100176 if (!fdtab[fd].owner) {
177 /* should normally not happen here except
178 * due to rare thread concurrency
179 */
180 continue;
181 }
182
183 if (!(fdtab[fd].thread_mask & tid_bit)) {
184 activity[tid].poll_skip++;
185 continue;
186 }
187
Willy Tarreau80da05a2013-03-31 14:06:57 +0200188 poll_events[nbfd].fd = fd;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100189 poll_events[nbfd].events = (sr ? (POLLIN | POLLRDHUP) : 0) | (sw ? POLLOUT : 0);
Willy Tarreau80da05a2013-03-31 14:06:57 +0200190 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200191 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200192 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200193 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200194
Willy Tarreau4f60f162007-04-08 16:39:58 +0200195 /* now let's wait for events */
Willy Tarreau10146c92015-04-13 20:44:19 +0200196 if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200197 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100198 else if (tick_is_expired(exp, now_ms)) {
199 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200200 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100201 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200202 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200203 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200204 if (wait_time > MAX_DELAY_MS)
205 wait_time = MAX_DELAY_MS;
206 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200207
Willy Tarreau45a12512011-09-10 16:56:42 +0200208 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200209 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200210 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200211 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200212
Willy Tarreau60b639c2018-08-02 10:16:17 +0200213 thread_harmless_end();
214
Willy Tarreau4f60f162007-04-08 16:39:58 +0200215 for (count = 0; status > 0 && count < nbfd; count++) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200216 unsigned int n;
Willy Tarreau491c4982012-07-06 11:16:01 +0200217 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200218 fd = poll_events[count].fd;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200219
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100220 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP | POLLRDHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200221 continue;
222
Willy Tarreau076be252012-07-06 16:02:29 +0200223 /* ok, we found one active fd */
224 status--;
225
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100226 if (!fdtab[fd].owner) {
227 activity[tid].poll_dead++;
Willy Tarreau076be252012-07-06 16:02:29 +0200228 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100229 }
Willy Tarreau076be252012-07-06 16:02:29 +0200230
Willy Tarreau462c7202012-12-13 22:26:37 +0100231 /* it looks complicated but gcc can optimize it away when constants
232 * have same values... In fact it depends on gcc :-(
233 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100234 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
235 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
Christopher Fauletab62f512017-08-30 10:34:36 +0200236 n = e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100237 }
238 else {
Christopher Fauletab62f512017-08-30 10:34:36 +0200239 n = ((e & POLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100240 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
241 ((e & POLLERR) ? FD_POLL_ERR : 0) |
242 ((e & POLLHUP) ? FD_POLL_HUP : 0);
243 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200244
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100245 /* always remap RDHUP to HUP as they're used similarly */
246 if (e & POLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200247 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Christopher Fauletab62f512017-08-30 10:34:36 +0200248 n |= FD_POLL_HUP;
Willy Tarreau3c8a8962017-03-13 17:14:51 +0100249 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200250 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200251 }
252
Willy Tarreaue54e9172007-04-09 09:23:31 +0200253}
254
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200255
256static int init_poll_per_thread()
257{
258 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
259 if (poll_events == NULL)
260 return 0;
261 return 1;
262}
263
264static void deinit_poll_per_thread()
265{
266 free(poll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200267 poll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200268}
269
Willy Tarreaue54e9172007-04-09 09:23:31 +0200270/*
271 * Initialization of the poll() poller.
272 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
273 * disables the poller by setting its pref to 0.
274 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200275REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200276{
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200277 __label__ fail_swevt, fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200278 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200279
280 p->private = NULL;
Willy Tarreaucc359232018-01-17 15:48:53 +0100281 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) * 8 - 1) / (sizeof(**fd_evts) * 8) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200282
Willy Tarreau80da05a2013-03-31 14:06:57 +0200283 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200284 goto fail_srevt;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200285 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200286 goto fail_swevt;
287
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200288 hap_register_per_thread_init(init_poll_per_thread);
289 hap_register_per_thread_deinit(deinit_poll_per_thread);
290
Willy Tarreaue54e9172007-04-09 09:23:31 +0200291 return 1;
292
293 fail_swevt:
294 free(fd_evts[DIR_RD]);
295 fail_srevt:
296 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200297 p->pref = 0;
298 return 0;
299}
300
301/*
302 * Termination of the poll() poller.
303 * Memory is released and the poller is marked as unselectable.
304 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200305REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200306{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200307 free(fd_evts[DIR_WR]);
308 free(fd_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200309 p->private = NULL;
310 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200311}
312
313/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200314 * Check that the poller works.
315 * Returns 1 if OK, otherwise 0.
316 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200317REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200318{
319 return 1;
320}
321
322/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200323 * It is a constructor, which means that it will automatically be called before
324 * main(). This is GCC-specific but it works at least since 2.95.
325 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200326 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200327__attribute__((constructor))
328static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200329{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200330 struct poller *p;
331
332 if (nbpollers >= MAX_POLLERS)
333 return;
334 p = &pollers[nbpollers++];
335
Willy Tarreau4f60f162007-04-08 16:39:58 +0200336 p->name = "poll";
337 p->pref = 200;
Willy Tarreau5a767692017-03-13 11:38:28 +0100338 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200339 p->private = NULL;
340
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100341 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200342 p->test = _do_test;
343 p->init = _do_init;
344 p->term = _do_term;
345 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200346}
347
348
349/*
350 * Local variables:
351 * c-indent-level: 8
352 * c-basic-offset: 8
353 * End:
354 */