blob: 0166bd6aef4f92616b5ee19e2ab2fdfd4594170b [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
3 *
4 * Copyright 2000-2007 Willy Tarreau <w@1wt.eu>
5 *
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>
20#include <common/time.h>
21
22#include <types/fd.h>
23#include <types/global.h>
24
25#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020026#include <proto/task.h>
27
28
Willy Tarreau28d86862007-04-08 17:42:27 +020029static fd_set *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020030
31/* private data */
32static struct pollfd *poll_events = NULL;
33
34
35/*
36 * Benchmarks performed on a Pentium-M notebook show that using functions
37 * instead of the usual macros improve the FD_* performance by about 80%,
38 * and that marking them regparm(2) adds another 20%.
39 */
Willy Tarreau63455a92007-04-09 15:34:49 +020040REGPRM2 static int __fd_is_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020041{
Willy Tarreau28d86862007-04-08 17:42:27 +020042 return FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020043}
44
Willy Tarreau97129b52007-04-09 00:54:46 +020045REGPRM2 static int __fd_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020046{
Willy Tarreau28d86862007-04-08 17:42:27 +020047 FD_SET(fd, fd_evts[dir]);
Willy Tarreau97129b52007-04-09 00:54:46 +020048 return 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +020049}
50
Willy Tarreau97129b52007-04-09 00:54:46 +020051REGPRM2 static int __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 Tarreau97129b52007-04-09 00:54:46 +020054 return 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +020055}
56
Willy Tarreau97129b52007-04-09 00:54:46 +020057REGPRM2 static int __fd_cond_s(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020058{
59 int ret;
Willy Tarreau28d86862007-04-08 17:42:27 +020060 ret = !FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020061 if (ret)
Willy Tarreau28d86862007-04-08 17:42:27 +020062 FD_SET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020063 return ret;
64}
65
Willy Tarreau97129b52007-04-09 00:54:46 +020066REGPRM2 static int __fd_cond_c(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020067{
68 int ret;
Willy Tarreau28d86862007-04-08 17:42:27 +020069 ret = FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020070 if (ret)
Willy Tarreau28d86862007-04-08 17:42:27 +020071 FD_CLR(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020072 return ret;
73}
74
75REGPRM1 static void __fd_rem(const int fd)
76{
Willy Tarreau28d86862007-04-08 17:42:27 +020077 FD_CLR(fd, fd_evts[DIR_RD]);
78 FD_CLR(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020079}
80
Willy Tarreau4f60f162007-04-08 16:39:58 +020081/*
82 * Poll() poller
83 */
Willy Tarreaud825eef2007-05-12 22:35:00 +020084REGPRM2 static void _do_poll(struct poller *p, struct timeval *exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020085{
86 int status;
87 int fd, nbfd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020088 int wait_time;
Willy Tarreau4f60f162007-04-08 16:39:58 +020089
90 int fds, count;
91 int sr, sw;
92 unsigned rn, wn; /* read new, write new */
93
94 nbfd = 0;
95 for (fds = 0; (fds << INTBITS) < maxfd; fds++) {
96
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)) {
101 for (count = 0, fd = fds << INTBITS; count < (1<<INTBITS) && fd < maxfd; count++, fd++) {
102#define FDSETS_ARE_INT_ALIGNED
103#ifdef FDSETS_ARE_INT_ALIGNED
104
105#define WE_REALLY_NOW_THAT_FDSETS_ARE_INTS
106#ifdef WE_REALLY_NOW_THAT_FDSETS_ARE_INTS
107 sr = (rn >> count) & 1;
108 sw = (wn >> count) & 1;
109#else
110 sr = FD_ISSET(fd&((1<<INTBITS)-1), (typeof(fd_set*))&rn);
111 sw = FD_ISSET(fd&((1<<INTBITS)-1), (typeof(fd_set*))&wn);
112#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 Tarreaubdefc512007-05-14 02:02:04 +0200127 if (tv_iseternity(exp))
Willy Tarreaud825eef2007-05-12 22:35:00 +0200128 wait_time = -1;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200129 else if (tv_isge(&now, exp))
130 wait_time = 0;
131 else
132 wait_time = __tv_ms_elapsed(&now, exp) + 1;
Willy Tarreaud825eef2007-05-12 22:35:00 +0200133
Willy Tarreau4f60f162007-04-08 16:39:58 +0200134 status = poll(poll_events, nbfd, wait_time);
135 tv_now(&now);
136
137 for (count = 0; status > 0 && count < nbfd; count++) {
138 fd = poll_events[count].fd;
139
140 if (!(poll_events[count].revents & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
141 continue;
142
143 /* ok, we found one active fd */
144 status--;
145
Willy Tarreau28d86862007-04-08 17:42:27 +0200146 if (FD_ISSET(fd, fd_evts[DIR_RD])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200147 if (fdtab[fd].state == FD_STCLOSE)
148 continue;
149 if (poll_events[count].revents & ( POLLIN | POLLERR | POLLHUP ))
150 fdtab[fd].cb[DIR_RD].f(fd);
151 }
152
Willy Tarreau28d86862007-04-08 17:42:27 +0200153 if (FD_ISSET(fd, fd_evts[DIR_WR])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200154 if (fdtab[fd].state == FD_STCLOSE)
155 continue;
156 if (poll_events[count].revents & ( POLLOUT | POLLERR | POLLHUP ))
157 fdtab[fd].cb[DIR_WR].f(fd);
158 }
159 }
160
Willy Tarreaue54e9172007-04-09 09:23:31 +0200161}
162
163/*
164 * Initialization of the poll() poller.
165 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
166 * disables the poller by setting its pref to 0.
167 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200168REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200169{
170 __label__ fail_swevt, fail_srevt, fail_pe;
171 int fd_set_bytes;
172
173 p->private = NULL;
174 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
175
176 poll_events = (struct pollfd*)
177 calloc(1, sizeof(struct pollfd) * global.maxsock);
178
179 if (poll_events == NULL)
180 goto fail_pe;
181
182 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
183 goto fail_srevt;
184
185 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
186 goto fail_swevt;
187
188 return 1;
189
190 fail_swevt:
191 free(fd_evts[DIR_RD]);
192 fail_srevt:
193 free(poll_events);
194 fail_pe:
195 p->pref = 0;
196 return 0;
197}
198
199/*
200 * Termination of the poll() poller.
201 * Memory is released and the poller is marked as unselectable.
202 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200203REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200204{
205 if (fd_evts[DIR_WR])
206 free(fd_evts[DIR_WR]);
207 if (fd_evts[DIR_RD])
208 free(fd_evts[DIR_RD]);
209 if (poll_events)
210 free(poll_events);
211 p->private = NULL;
212 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200213}
214
215/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200216 * Check that the poller works.
217 * Returns 1 if OK, otherwise 0.
218 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200219REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200220{
221 return 1;
222}
223
224/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200225 * It is a constructor, which means that it will automatically be called before
226 * main(). This is GCC-specific but it works at least since 2.95.
227 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200228 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200229__attribute__((constructor))
230static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200231{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200232 struct poller *p;
233
234 if (nbpollers >= MAX_POLLERS)
235 return;
236 p = &pollers[nbpollers++];
237
Willy Tarreau4f60f162007-04-08 16:39:58 +0200238 p->name = "poll";
239 p->pref = 200;
240 p->private = NULL;
241
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200242 p->test = _do_test;
243 p->init = _do_init;
244 p->term = _do_term;
245 p->poll = _do_poll;
Willy Tarreau63455a92007-04-09 15:34:49 +0200246 p->is_set = __fd_is_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200247 p->set = __fd_set;
248 p->clr = __fd_clr;
249 p->clo = p->rem = __fd_rem;
250 p->cond_s = __fd_cond_s;
251 p->cond_c = __fd_cond_c;
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 */