blob: 537157fcabb4b253a838fa0c98dff6cc7efe626b [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
3 *
Willy Tarreaucc7e3f72012-11-11 17:25:15 +01004 * Copyright 2000-2012 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];
73 en = fdtab[fd].spec_e & 15; /* new events */
74 eo = fdtab[fd].spec_e >> 4; /* previous events */
75
76 if (fdtab[fd].owner && (eo ^ en)) {
77 if ((eo ^ en) & FD_EV_POLLED_RW) {
78 /* poll status changed, update the lists */
79 if ((eo & ~en) & FD_EV_POLLED_R)
Willy Tarreau80da05a2013-03-31 14:06:57 +020080 hap_fd_clr(fd, fd_evts[DIR_RD]);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010081 else if ((en & ~eo) & FD_EV_POLLED_R)
Willy Tarreau80da05a2013-03-31 14:06:57 +020082 hap_fd_set(fd, fd_evts[DIR_RD]);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010083
84 if ((eo & ~en) & FD_EV_POLLED_W)
Willy Tarreau80da05a2013-03-31 14:06:57 +020085 hap_fd_clr(fd, fd_evts[DIR_WR]);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010086 else if ((en & ~eo) & FD_EV_POLLED_W)
Willy Tarreau80da05a2013-03-31 14:06:57 +020087 hap_fd_set(fd, fd_evts[DIR_WR]);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010088 }
89
90 fdtab[fd].spec_e = (en << 4) + en; /* save new events */
91
92 if (!(en & FD_EV_ACTIVE_RW)) {
93 /* This fd doesn't use any active entry anymore, we can
94 * kill its entry.
95 */
96 release_spec_entry(fd);
97 }
98 else if ((en & ~eo) & FD_EV_ACTIVE_RW) {
99 /* we need a new spec entry now */
100 alloc_spec_entry(fd);
101 }
102
103 }
104 fdtab[fd].updated = 0;
105 fdtab[fd].new = 0;
106 }
107 fd_nbupdt = 0;
108
Willy Tarreau4f60f162007-04-08 16:39:58 +0200109 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200110 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
111 rn = fd_evts[DIR_RD][fds];
112 wn = fd_evts[DIR_WR][fds];
Willy Tarreau4f60f162007-04-08 16:39:58 +0200113
Willy Tarreau80da05a2013-03-31 14:06:57 +0200114 if (!(rn|wn))
115 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200116
Willy Tarreau80da05a2013-03-31 14:06:57 +0200117 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
118 sr = (rn >> count) & 1;
119 sw = (wn >> count) & 1;
120 if ((sr|sw)) {
121 poll_events[nbfd].fd = fd;
122 poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
123 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200124 }
125 }
126 }
127
128 /* now let's wait for events */
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100129 if (fd_nbspec || run_queue || signal_queue_len)
Willy Tarreau3a628112008-06-13 21:06:56 +0200130 wait_time = 0;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200131 else if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200132 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200133 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200134 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200135 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200136 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200137 if (wait_time > MAX_DELAY_MS)
138 wait_time = MAX_DELAY_MS;
139 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200140
Willy Tarreau45a12512011-09-10 16:56:42 +0200141 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200142 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200143 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200144 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200145
146 for (count = 0; status > 0 && count < nbfd; count++) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200147 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200148 fd = poll_events[count].fd;
149
Willy Tarreau491c4982012-07-06 11:16:01 +0200150 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200151 continue;
152
Willy Tarreau076be252012-07-06 16:02:29 +0200153 /* ok, we found one active fd */
154 status--;
155
156 if (!fdtab[fd].owner)
157 continue;
158
Willy Tarreau462c7202012-12-13 22:26:37 +0100159 /* it looks complicated but gcc can optimize it away when constants
160 * have same values... In fact it depends on gcc :-(
161 */
Willy Tarreau491c4982012-07-06 11:16:01 +0200162 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau462c7202012-12-13 22:26:37 +0100163 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
164 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
165 fdtab[fd].ev |= e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
166 }
167 else {
168 fdtab[fd].ev |=
169 ((e & POLLIN ) ? FD_POLL_IN : 0) |
170 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
171 ((e & POLLERR) ? FD_POLL_ERR : 0) |
172 ((e & POLLHUP) ? FD_POLL_HUP : 0);
173 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200174
Willy Tarreaudb9cb0b2012-12-13 23:41:12 +0100175 if (fdtab[fd].iocb && fdtab[fd].ev) {
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100176 /* Mark the events as speculative before processing
177 * them so that if nothing can be done we don't need
178 * to poll again.
179 */
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100180 if (fdtab[fd].ev & FD_POLL_IN)
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100181 fd_ev_set(fd, DIR_RD);
182
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100183 if (fdtab[fd].ev & FD_POLL_OUT)
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100184 fd_ev_set(fd, DIR_WR);
185
Willy Tarreau39ebef82012-12-14 00:17:03 +0100186 if (fdtab[fd].spec_p) {
187 /* This fd was already scheduled for being
188 * called as a speculative I/O
189 */
190 continue;
191 }
192
Willy Tarreau9845e752012-07-06 11:44:28 +0200193 fdtab[fd].iocb(fd);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100194 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200195 }
196
Willy Tarreaue54e9172007-04-09 09:23:31 +0200197}
198
199/*
200 * Initialization of the poll() poller.
201 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
202 * disables the poller by setting its pref to 0.
203 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200204REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200205{
206 __label__ fail_swevt, fail_srevt, fail_pe;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200207 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200208
209 p->private = NULL;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200210 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) - 1) / sizeof(**fd_evts) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200211
Willy Tarreau80da05a2013-03-31 14:06:57 +0200212 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200213
214 if (poll_events == NULL)
215 goto fail_pe;
216
Willy Tarreau80da05a2013-03-31 14:06:57 +0200217 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200218 goto fail_srevt;
219
Willy Tarreau80da05a2013-03-31 14:06:57 +0200220 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200221 goto fail_swevt;
222
223 return 1;
224
225 fail_swevt:
226 free(fd_evts[DIR_RD]);
227 fail_srevt:
228 free(poll_events);
229 fail_pe:
230 p->pref = 0;
231 return 0;
232}
233
234/*
235 * Termination of the poll() poller.
236 * Memory is released and the poller is marked as unselectable.
237 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200238REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200239{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200240 free(fd_evts[DIR_WR]);
241 free(fd_evts[DIR_RD]);
242 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200243 p->private = NULL;
244 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200245}
246
247/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200248 * Check that the poller works.
249 * Returns 1 if OK, otherwise 0.
250 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200251REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200252{
253 return 1;
254}
255
256/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200257 * It is a constructor, which means that it will automatically be called before
258 * main(). This is GCC-specific but it works at least since 2.95.
259 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200260 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200261__attribute__((constructor))
262static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200263{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200264 struct poller *p;
265
266 if (nbpollers >= MAX_POLLERS)
267 return;
268 p = &pollers[nbpollers++];
269
Willy Tarreau4f60f162007-04-08 16:39:58 +0200270 p->name = "poll";
271 p->pref = 200;
272 p->private = NULL;
273
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100274 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200275 p->test = _do_test;
276 p->init = _do_init;
277 p->term = _do_term;
278 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200279}
280
281
282/*
283 * Local variables:
284 * c-indent-level: 8
285 * c-basic-offset: 8
286 * End:
287 */