blob: e3ea4db63cb09e4e5112f5f3239714a4a1e19e66 [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 Tarreau28d86862007-04-08 17:42:27 +020030static fd_set *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020031
32/* private data */
33static struct pollfd *poll_events = NULL;
34
35
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010036REGPRM1 static void __fd_clo(const int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020037{
Willy Tarreau28d86862007-04-08 17:42:27 +020038 FD_CLR(fd, fd_evts[DIR_RD]);
39 FD_CLR(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020040}
41
Willy Tarreau4f60f162007-04-08 16:39:58 +020042/*
43 * Poll() poller
44 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020045REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020046{
47 int status;
48 int fd, nbfd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020049 int wait_time;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010050 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020051 int fds, count;
52 int sr, sw;
53 unsigned rn, wn; /* read new, write new */
54
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010055 /* first, scan the update list to find changes */
56 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
57 fd = fd_updt[updt_idx];
58 en = fdtab[fd].spec_e & 15; /* new events */
59 eo = fdtab[fd].spec_e >> 4; /* previous events */
60
61 if (fdtab[fd].owner && (eo ^ en)) {
62 if ((eo ^ en) & FD_EV_POLLED_RW) {
63 /* poll status changed, update the lists */
64 if ((eo & ~en) & FD_EV_POLLED_R)
65 FD_CLR(fd, fd_evts[DIR_RD]);
66 else if ((en & ~eo) & FD_EV_POLLED_R)
67 FD_SET(fd, fd_evts[DIR_RD]);
68
69 if ((eo & ~en) & FD_EV_POLLED_W)
70 FD_CLR(fd, fd_evts[DIR_WR]);
71 else if ((en & ~eo) & FD_EV_POLLED_W)
72 FD_SET(fd, fd_evts[DIR_WR]);
73 }
74
75 fdtab[fd].spec_e = (en << 4) + en; /* save new events */
76
77 if (!(en & FD_EV_ACTIVE_RW)) {
78 /* This fd doesn't use any active entry anymore, we can
79 * kill its entry.
80 */
81 release_spec_entry(fd);
82 }
83 else if ((en & ~eo) & FD_EV_ACTIVE_RW) {
84 /* we need a new spec entry now */
85 alloc_spec_entry(fd);
86 }
87
88 }
89 fdtab[fd].updated = 0;
90 fdtab[fd].new = 0;
91 }
92 fd_nbupdt = 0;
93
Willy Tarreau4f60f162007-04-08 16:39:58 +020094 nbfd = 0;
Willy Tarreau177e2b02008-07-15 00:36:31 +020095 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau4f60f162007-04-08 16:39:58 +020096
Willy Tarreau28d86862007-04-08 17:42:27 +020097 rn = ((int*)fd_evts[DIR_RD])[fds];
98 wn = ((int*)fd_evts[DIR_WR])[fds];
Willy Tarreau4f60f162007-04-08 16:39:58 +020099
100 if ((rn|wn)) {
Willy Tarreau177e2b02008-07-15 00:36:31 +0200101 for (count = 0, fd = fds * BITS_PER_INT; count < BITS_PER_INT && fd < maxfd; count++, fd++) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200102#define FDSETS_ARE_INT_ALIGNED
103#ifdef FDSETS_ARE_INT_ALIGNED
104
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200105#define WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
106#ifdef WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
Willy Tarreau4f60f162007-04-08 16:39:58 +0200107 sr = (rn >> count) & 1;
108 sw = (wn >> count) & 1;
109#else
Willy Tarreau177e2b02008-07-15 00:36:31 +0200110 sr = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&rn);
111 sw = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&wn);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200112#endif
113#else
Willy Tarreau28d86862007-04-08 17:42:27 +0200114 sr = FD_ISSET(fd, fd_evts[DIR_RD]);
115 sw = FD_ISSET(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200116#endif
117 if ((sr|sw)) {
118 poll_events[nbfd].fd = fd;
119 poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
120 nbfd++;
121 }
122 }
123 }
124 }
125
126 /* now let's wait for events */
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100127 if (fd_nbspec || run_queue || signal_queue_len)
Willy Tarreau3a628112008-06-13 21:06:56 +0200128 wait_time = 0;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200129 else if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200130 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200131 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200132 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200133 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200134 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200135 if (wait_time > MAX_DELAY_MS)
136 wait_time = MAX_DELAY_MS;
137 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200138
Willy Tarreau45a12512011-09-10 16:56:42 +0200139 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200140 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200141 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200142 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200143
144 for (count = 0; status > 0 && count < nbfd; count++) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200145 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200146 fd = poll_events[count].fd;
147
Willy Tarreau491c4982012-07-06 11:16:01 +0200148 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200149 continue;
150
Willy Tarreau076be252012-07-06 16:02:29 +0200151 /* ok, we found one active fd */
152 status--;
153
154 if (!fdtab[fd].owner)
155 continue;
156
Willy Tarreau462c7202012-12-13 22:26:37 +0100157 /* it looks complicated but gcc can optimize it away when constants
158 * have same values... In fact it depends on gcc :-(
159 */
Willy Tarreau491c4982012-07-06 11:16:01 +0200160 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau462c7202012-12-13 22:26:37 +0100161 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
162 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
163 fdtab[fd].ev |= e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
164 }
165 else {
166 fdtab[fd].ev |=
167 ((e & POLLIN ) ? FD_POLL_IN : 0) |
168 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
169 ((e & POLLERR) ? FD_POLL_ERR : 0) |
170 ((e & POLLHUP) ? FD_POLL_HUP : 0);
171 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200172
Willy Tarreaudb9cb0b2012-12-13 23:41:12 +0100173 if (fdtab[fd].iocb && fdtab[fd].ev) {
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100174 /* Mark the events as speculative before processing
175 * them so that if nothing can be done we don't need
176 * to poll again.
177 */
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100178 if (fdtab[fd].ev & FD_POLL_IN)
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100179 fd_ev_set(fd, DIR_RD);
180
Willy Tarreau26d7cfc2012-12-07 00:09:43 +0100181 if (fdtab[fd].ev & FD_POLL_OUT)
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100182 fd_ev_set(fd, DIR_WR);
183
Willy Tarreau39ebef82012-12-14 00:17:03 +0100184 if (fdtab[fd].spec_p) {
185 /* This fd was already scheduled for being
186 * called as a speculative I/O
187 */
188 continue;
189 }
190
Willy Tarreau9845e752012-07-06 11:44:28 +0200191 fdtab[fd].iocb(fd);
Willy Tarreaucc7e3f72012-11-11 17:25:15 +0100192 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200193 }
194
Willy Tarreaue54e9172007-04-09 09:23:31 +0200195}
196
197/*
198 * Initialization of the poll() poller.
199 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
200 * disables the poller by setting its pref to 0.
201 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200202REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200203{
204 __label__ fail_swevt, fail_srevt, fail_pe;
205 int fd_set_bytes;
206
207 p->private = NULL;
208 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
209
210 poll_events = (struct pollfd*)
211 calloc(1, sizeof(struct pollfd) * global.maxsock);
212
213 if (poll_events == NULL)
214 goto fail_pe;
215
216 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
217 goto fail_srevt;
218
219 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
220 goto fail_swevt;
221
222 return 1;
223
224 fail_swevt:
225 free(fd_evts[DIR_RD]);
226 fail_srevt:
227 free(poll_events);
228 fail_pe:
229 p->pref = 0;
230 return 0;
231}
232
233/*
234 * Termination of the poll() poller.
235 * Memory is released and the poller is marked as unselectable.
236 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200237REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200238{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200239 free(fd_evts[DIR_WR]);
240 free(fd_evts[DIR_RD]);
241 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200242 p->private = NULL;
243 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200244}
245
246/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200247 * Check that the poller works.
248 * Returns 1 if OK, otherwise 0.
249 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200250REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200251{
252 return 1;
253}
254
255/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256 * It is a constructor, which means that it will automatically be called before
257 * main(). This is GCC-specific but it works at least since 2.95.
258 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200259 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200260__attribute__((constructor))
261static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200262{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200263 struct poller *p;
264
265 if (nbpollers >= MAX_POLLERS)
266 return;
267 p = &pollers[nbpollers++];
268
Willy Tarreau4f60f162007-04-08 16:39:58 +0200269 p->name = "poll";
270 p->pref = 200;
271 p->private = NULL;
272
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100273 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200274 p->test = _do_test;
275 p->init = _do_init;
276 p->term = _do_term;
277 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200278}
279
280
281/*
282 * Local variables:
283 * c-indent-level: 8
284 * c-basic-offset: 8
285 * End:
286 */