blob: 2f6e56d3c43d4a6abe9c30982f0864f59e3b7b7f [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
13#include <unistd.h>
Willy Tarreau69801b82007-04-09 15:28:51 +020014#include <sys/poll.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020015#include <sys/time.h>
16#include <sys/types.h>
17
18#include <common/compat.h>
19#include <common/config.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 Tarreau332740d2009-05-10 09:57:21 +020026#include <proto/signal.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020027#include <proto/task.h>
28
29
Willy Tarreau80da05a2013-03-31 14:06:57 +020030static unsigned int *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020031
32/* private data */
33static struct pollfd *poll_events = NULL;
34
35
Willy Tarreau80da05a2013-03-31 14:06:57 +020036static inline unsigned int hap_fd_isset(int fd, unsigned int *evts)
Willy Tarreau4f60f162007-04-08 16:39:58 +020037{
Willy Tarreau80da05a2013-03-31 14:06:57 +020038 return evts[fd / (8*sizeof(*evts))] & (1U << (fd & (8*sizeof(*evts) - 1)));
Willy Tarreau4f60f162007-04-08 16:39:58 +020039}
40
Willy Tarreau80da05a2013-03-31 14:06:57 +020041static inline void hap_fd_set(int fd, unsigned int *evts)
42{
43 evts[fd / (8*sizeof(*evts))] |= 1U << (fd & (8*sizeof(*evts) - 1));
44}
45
46static inline void hap_fd_clr(int fd, unsigned int *evts)
47{
48 evts[fd / (8*sizeof(*evts))] &= ~(1U << (fd & (8*sizeof(*evts) - 1)));
49}
50
51REGPRM1 static void __fd_clo(int fd)
52{
53 hap_fd_clr(fd, fd_evts[DIR_RD]);
54 hap_fd_clr(fd, fd_evts[DIR_WR]);
55}
56
Willy Tarreau4f60f162007-04-08 16:39:58 +020057/*
58 * Poll() poller
59 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020060REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020061{
62 int status;
63 int fd, nbfd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020064 int wait_time;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010065 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020066 int fds, count;
67 int sr, sw;
68 unsigned rn, wn; /* read new, write new */
69
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010070 /* first, scan the update list to find changes */
71 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
72 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010073 fdtab[fd].updated = 0;
74 fdtab[fd].new = 0;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010075
Willy Tarreauf817e9f2014-01-10 16:58:45 +010076 if (!fdtab[fd].owner)
77 continue;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010078
Willy Tarreau25002d22014-01-25 10:32:56 +010079 eo = fdtab[fd].state;
80 en = fd_compute_new_polled_status(eo);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010081
82 if ((eo ^ en) & FD_EV_POLLED_RW) {
83 /* poll status changed, update the lists */
84 fdtab[fd].state = en;
85
86 if ((eo & ~en) & FD_EV_POLLED_R)
87 hap_fd_clr(fd, fd_evts[DIR_RD]);
88 else if ((en & ~eo) & FD_EV_POLLED_R)
89 hap_fd_set(fd, fd_evts[DIR_RD]);
90
91 if ((eo & ~en) & FD_EV_POLLED_W)
92 hap_fd_clr(fd, fd_evts[DIR_WR]);
93 else if ((en & ~eo) & FD_EV_POLLED_W)
94 hap_fd_set(fd, fd_evts[DIR_WR]);
95 }
96
97 fd_alloc_or_release_cache_entry(fd, en);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010098 }
99 fd_nbupdt = 0;
100
Willy Tarreau4f60f162007-04-08 16:39:58 +0200101 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200102 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
103 rn = fd_evts[DIR_RD][fds];
104 wn = fd_evts[DIR_WR][fds];
Willy Tarreau4f60f162007-04-08 16:39:58 +0200105
Willy Tarreau80da05a2013-03-31 14:06:57 +0200106 if (!(rn|wn))
107 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200108
Willy Tarreau80da05a2013-03-31 14:06:57 +0200109 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
110 sr = (rn >> count) & 1;
111 sw = (wn >> count) & 1;
112 if ((sr|sw)) {
113 poll_events[nbfd].fd = fd;
114 poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
115 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200116 }
117 }
118 }
119
120 /* now let's wait for events */
Willy Tarreau16f649c2014-01-25 19:10:48 +0100121 if (fd_cache_num || run_queue || signal_queue_len)
Willy Tarreau3a628112008-06-13 21:06:56 +0200122 wait_time = 0;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200123 else if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200124 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200125 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200126 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200127 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200128 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200129 if (wait_time > MAX_DELAY_MS)
130 wait_time = MAX_DELAY_MS;
131 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200132
Willy Tarreau45a12512011-09-10 16:56:42 +0200133 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200134 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200135 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200136 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200137
138 for (count = 0; status > 0 && count < nbfd; count++) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200139 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200140 fd = poll_events[count].fd;
141
Willy Tarreau491c4982012-07-06 11:16:01 +0200142 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200143 continue;
144
Willy Tarreau076be252012-07-06 16:02:29 +0200145 /* ok, we found one active fd */
146 status--;
147
148 if (!fdtab[fd].owner)
149 continue;
150
Willy Tarreau462c7202012-12-13 22:26:37 +0100151 /* it looks complicated but gcc can optimize it away when constants
152 * have same values... In fact it depends on gcc :-(
153 */
Willy Tarreau491c4982012-07-06 11:16:01 +0200154 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau462c7202012-12-13 22:26:37 +0100155 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
156 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
157 fdtab[fd].ev |= e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
158 }
159 else {
160 fdtab[fd].ev |=
161 ((e & POLLIN ) ? FD_POLL_IN : 0) |
162 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
163 ((e & POLLERR) ? FD_POLL_ERR : 0) |
164 ((e & POLLHUP) ? FD_POLL_HUP : 0);
165 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200166
Willy Tarreaue8525452014-01-25 09:58:06 +0100167 fd_process_polled_events(fd);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200168 }
169
Willy Tarreaue54e9172007-04-09 09:23:31 +0200170}
171
172/*
173 * Initialization of the poll() poller.
174 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
175 * disables the poller by setting its pref to 0.
176 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200177REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200178{
179 __label__ fail_swevt, fail_srevt, fail_pe;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200180 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200181
182 p->private = NULL;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200183 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) - 1) / sizeof(**fd_evts) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200184
Willy Tarreau80da05a2013-03-31 14:06:57 +0200185 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200186
187 if (poll_events == NULL)
188 goto fail_pe;
189
Willy Tarreau80da05a2013-03-31 14:06:57 +0200190 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200191 goto fail_srevt;
192
Willy Tarreau80da05a2013-03-31 14:06:57 +0200193 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200194 goto fail_swevt;
195
196 return 1;
197
198 fail_swevt:
199 free(fd_evts[DIR_RD]);
200 fail_srevt:
201 free(poll_events);
202 fail_pe:
203 p->pref = 0;
204 return 0;
205}
206
207/*
208 * Termination of the poll() poller.
209 * Memory is released and the poller is marked as unselectable.
210 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200211REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200212{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200213 free(fd_evts[DIR_WR]);
214 free(fd_evts[DIR_RD]);
215 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200216 p->private = NULL;
217 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200218}
219
220/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200221 * Check that the poller works.
222 * Returns 1 if OK, otherwise 0.
223 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200224REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200225{
226 return 1;
227}
228
229/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200230 * It is a constructor, which means that it will automatically be called before
231 * main(). This is GCC-specific but it works at least since 2.95.
232 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200233 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200234__attribute__((constructor))
235static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200236{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200237 struct poller *p;
238
239 if (nbpollers >= MAX_POLLERS)
240 return;
241 p = &pollers[nbpollers++];
242
Willy Tarreau4f60f162007-04-08 16:39:58 +0200243 p->name = "poll";
244 p->pref = 200;
245 p->private = NULL;
246
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100247 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200248 p->test = _do_test;
249 p->init = _do_init;
250 p->term = _do_term;
251 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200252}
253
254
255/*
256 * Local variables:
257 * c-indent-level: 8
258 * c-basic-offset: 8
259 * End:
260 */