blob: b05fec14fea1b0e81142b9a2b4c9c7f75c9aa8d5 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
3 *
Willy Tarreaub7f694f2008-06-22 17:18:02 +02004 * Copyright 2000-2008 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
36/*
37 * Benchmarks performed on a Pentium-M notebook show that using functions
38 * instead of the usual macros improve the FD_* performance by about 80%,
39 * and that marking them regparm(2) adds another 20%.
40 */
Willy Tarreau63455a92007-04-09 15:34:49 +020041REGPRM2 static int __fd_is_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020042{
Willy Tarreau28d86862007-04-08 17:42:27 +020043 return FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020044}
45
Willy Tarreau3788e4c2012-07-30 14:29:35 +020046REGPRM2 static void __fd_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020047{
Willy Tarreau28d86862007-04-08 17:42:27 +020048 FD_SET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020049}
50
Willy Tarreau3788e4c2012-07-30 14:29:35 +020051REGPRM2 static void __fd_clr(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020052{
Willy Tarreau28d86862007-04-08 17:42:27 +020053 FD_CLR(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020054}
55
56REGPRM1 static void __fd_rem(const int fd)
57{
Willy Tarreau28d86862007-04-08 17:42:27 +020058 FD_CLR(fd, fd_evts[DIR_RD]);
59 FD_CLR(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020060}
61
Willy Tarreau4f60f162007-04-08 16:39:58 +020062/*
63 * Poll() poller
64 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020065REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020066{
67 int status;
68 int fd, nbfd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020069 int wait_time;
Willy Tarreau4f60f162007-04-08 16:39:58 +020070
71 int fds, count;
72 int sr, sw;
73 unsigned rn, wn; /* read new, write new */
74
75 nbfd = 0;
Willy Tarreau177e2b02008-07-15 00:36:31 +020076 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau4f60f162007-04-08 16:39:58 +020077
Willy Tarreau28d86862007-04-08 17:42:27 +020078 rn = ((int*)fd_evts[DIR_RD])[fds];
79 wn = ((int*)fd_evts[DIR_WR])[fds];
Willy Tarreau4f60f162007-04-08 16:39:58 +020080
81 if ((rn|wn)) {
Willy Tarreau177e2b02008-07-15 00:36:31 +020082 for (count = 0, fd = fds * BITS_PER_INT; count < BITS_PER_INT && fd < maxfd; count++, fd++) {
Willy Tarreau4f60f162007-04-08 16:39:58 +020083#define FDSETS_ARE_INT_ALIGNED
84#ifdef FDSETS_ARE_INT_ALIGNED
85
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020086#define WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
87#ifdef WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
Willy Tarreau4f60f162007-04-08 16:39:58 +020088 sr = (rn >> count) & 1;
89 sw = (wn >> count) & 1;
90#else
Willy Tarreau177e2b02008-07-15 00:36:31 +020091 sr = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&rn);
92 sw = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&wn);
Willy Tarreau4f60f162007-04-08 16:39:58 +020093#endif
94#else
Willy Tarreau28d86862007-04-08 17:42:27 +020095 sr = FD_ISSET(fd, fd_evts[DIR_RD]);
96 sw = FD_ISSET(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020097#endif
98 if ((sr|sw)) {
99 poll_events[nbfd].fd = fd;
100 poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
101 nbfd++;
102 }
103 }
104 }
105 }
106
107 /* now let's wait for events */
Willy Tarreau332740d2009-05-10 09:57:21 +0200108 if (run_queue || signal_queue_len)
Willy Tarreau3a628112008-06-13 21:06:56 +0200109 wait_time = 0;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200110 else if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200111 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200112 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200113 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200114 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200115 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200116 if (wait_time > MAX_DELAY_MS)
117 wait_time = MAX_DELAY_MS;
118 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200119
Willy Tarreau45a12512011-09-10 16:56:42 +0200120 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200121 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200122 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200123 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200124
125 for (count = 0; status > 0 && count < nbfd; count++) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200126 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200127 fd = poll_events[count].fd;
128
Willy Tarreau491c4982012-07-06 11:16:01 +0200129 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200130 continue;
131
Willy Tarreau076be252012-07-06 16:02:29 +0200132 /* ok, we found one active fd */
133 status--;
134
135 if (!fdtab[fd].owner)
136 continue;
137
Willy Tarreau491c4982012-07-06 11:16:01 +0200138 fdtab[fd].ev &= FD_POLL_STICKY;
139 fdtab[fd].ev |=
140 ((e & POLLIN ) ? FD_POLL_IN : 0) |
141 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
142 ((e & POLLERR) ? FD_POLL_ERR : 0) |
143 ((e & POLLHUP) ? FD_POLL_HUP : 0);
144
Willy Tarreau9845e752012-07-06 11:44:28 +0200145 if (fdtab[fd].iocb && fdtab[fd].owner && fdtab[fd].ev)
146 fdtab[fd].iocb(fd);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200147 }
148
Willy Tarreaue54e9172007-04-09 09:23:31 +0200149}
150
151/*
152 * Initialization of the poll() poller.
153 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
154 * disables the poller by setting its pref to 0.
155 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200156REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200157{
158 __label__ fail_swevt, fail_srevt, fail_pe;
159 int fd_set_bytes;
160
161 p->private = NULL;
162 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
163
164 poll_events = (struct pollfd*)
165 calloc(1, sizeof(struct pollfd) * global.maxsock);
166
167 if (poll_events == NULL)
168 goto fail_pe;
169
170 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
171 goto fail_srevt;
172
173 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
174 goto fail_swevt;
175
176 return 1;
177
178 fail_swevt:
179 free(fd_evts[DIR_RD]);
180 fail_srevt:
181 free(poll_events);
182 fail_pe:
183 p->pref = 0;
184 return 0;
185}
186
187/*
188 * Termination of the poll() poller.
189 * Memory is released and the poller is marked as unselectable.
190 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200191REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200192{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200193 free(fd_evts[DIR_WR]);
194 free(fd_evts[DIR_RD]);
195 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200196 p->private = NULL;
197 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200198}
199
200/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200201 * Check that the poller works.
202 * Returns 1 if OK, otherwise 0.
203 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200204REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200205{
206 return 1;
207}
208
209/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200210 * It is a constructor, which means that it will automatically be called before
211 * main(). This is GCC-specific but it works at least since 2.95.
212 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200213 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200214__attribute__((constructor))
215static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200216{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200217 struct poller *p;
218
219 if (nbpollers >= MAX_POLLERS)
220 return;
221 p = &pollers[nbpollers++];
222
Willy Tarreau4f60f162007-04-08 16:39:58 +0200223 p->name = "poll";
224 p->pref = 200;
225 p->private = NULL;
226
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200227 p->test = _do_test;
228 p->init = _do_init;
229 p->term = _do_term;
230 p->poll = _do_poll;
Willy Tarreau63455a92007-04-09 15:34:49 +0200231 p->is_set = __fd_is_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200232 p->set = __fd_set;
Willy Tarreaubabd05a2012-08-09 12:14:03 +0200233 p->wai = __fd_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200234 p->clr = __fd_clr;
235 p->clo = p->rem = __fd_rem;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200236}
237
238
239/*
240 * Local variables:
241 * c-indent-level: 8
242 * c-basic-offset: 8
243 * End:
244 */