blob: 30df9285bac4b0f2a881666365592c25a2a789c2 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic select()
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>
14#include <sys/time.h>
15#include <sys/types.h>
16
17#include <common/compat.h>
18#include <common/config.h>
19#include <common/time.h>
20
21#include <types/fd.h>
22#include <types/global.h>
23
24#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020025#include <proto/task.h>
26
27
Willy Tarreau28d86862007-04-08 17:42:27 +020028static fd_set *fd_evts[2];
29static fd_set *tmp_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020030
31
32/*
33 * Benchmarks performed on a Pentium-M notebook show that using functions
34 * instead of the usual macros improve the FD_* performance by about 80%,
35 * and that marking them regparm(2) adds another 20%.
36 */
Willy Tarreau63455a92007-04-09 15:34:49 +020037REGPRM2 static int __fd_is_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020038{
Willy Tarreau28d86862007-04-08 17:42:27 +020039 return FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020040}
41
Willy Tarreau97129b52007-04-09 00:54:46 +020042REGPRM2 static int __fd_set(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020043{
Willy Tarreau28d86862007-04-08 17:42:27 +020044 FD_SET(fd, fd_evts[dir]);
Willy Tarreau97129b52007-04-09 00:54:46 +020045 return 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +020046}
47
Willy Tarreau97129b52007-04-09 00:54:46 +020048REGPRM2 static int __fd_clr(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020049{
Willy Tarreau28d86862007-04-08 17:42:27 +020050 FD_CLR(fd, fd_evts[dir]);
Willy Tarreau97129b52007-04-09 00:54:46 +020051 return 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +020052}
53
Willy Tarreau97129b52007-04-09 00:54:46 +020054REGPRM2 static int __fd_cond_s(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020055{
56 int ret;
Willy Tarreau28d86862007-04-08 17:42:27 +020057 ret = !FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020058 if (ret)
Willy Tarreau28d86862007-04-08 17:42:27 +020059 FD_SET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020060 return ret;
61}
62
Willy Tarreau97129b52007-04-09 00:54:46 +020063REGPRM2 static int __fd_cond_c(const int fd, int dir)
Willy Tarreau4f60f162007-04-08 16:39:58 +020064{
65 int ret;
Willy Tarreau28d86862007-04-08 17:42:27 +020066 ret = FD_ISSET(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020067 if (ret)
Willy Tarreau28d86862007-04-08 17:42:27 +020068 FD_CLR(fd, fd_evts[dir]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020069 return ret;
70}
71
Willy Tarreau97129b52007-04-09 00:54:46 +020072REGPRM1 static void __fd_rem(int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020073{
Willy Tarreau28d86862007-04-08 17:42:27 +020074 FD_CLR(fd, fd_evts[DIR_RD]);
75 FD_CLR(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020076}
77
Willy Tarreau4f60f162007-04-08 16:39:58 +020078/*
79 * Select() poller
80 */
Willy Tarreaud825eef2007-05-12 22:35:00 +020081REGPRM2 static void _do_poll(struct poller *p, struct timeval *exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020082{
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020083 const struct timeval max_delay = {
84 .tv_sec = MAX_DELAY_MS / 1000,
85 .tv_usec = (MAX_DELAY_MS % 1000) * 1000
86 };
Willy Tarreau4f60f162007-04-08 16:39:58 +020087 int status;
88 int fd, i;
89 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020090 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020091 int readnotnull, writenotnull;
92 int fds;
93 char count;
94
95 /* allow select to return immediately when needed */
96 delta.tv_sec = delta.tv_usec = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020097 delta_ms = 0;
98 if (!run_queue) {
99 if (!tv_isset(exp)) {
100 delta = max_delay;
101 delta_ms = MAX_DELAY_MS;
102 }
103 else if (tv_islt(&now, exp)) {
Willy Tarreaud9b74412007-05-14 03:16:06 +0200104 tv_remain(&now, exp, &delta);
105 /* To avoid eventual select loops due to timer precision */
106 delta.tv_usec += SCHEDULER_RESOLUTION * 1000;
107 if (delta.tv_usec >= 1000000) {
108 delta.tv_usec -= 1000000;
109 delta.tv_sec ++;
110 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200111 if (__tv_isge(&delta, &max_delay)) {
112 delta = max_delay;
113 delta_ms = MAX_DELAY_MS;
114 } else {
115 delta_ms = delta.tv_sec * 1000 + delta.tv_usec / 1000;
116 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200117 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200118 }
119
120 /* let's restore fdset state */
121
122 readnotnull = 0; writenotnull = 0;
123 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200124 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
125 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200126 }
127
128 // /* just a verification code, needs to be removed for performance */
129 // for (i=0; i<maxfd; i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200130 // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200131 // abort();
Willy Tarreau28d86862007-04-08 17:42:27 +0200132 // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200133 // abort();
134 //
135 // }
136
137 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200138 readnotnull ? tmp_evts[DIR_RD] : NULL,
139 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200140 NULL,
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200141 &delta);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200142
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200143 tv_update_date(delta_ms, status);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200144
145 if (status <= 0)
146 return;
147
148 for (fds = 0; (fds << INTBITS) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200149 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200150 continue;
151
152 for (count = 1<<INTBITS, fd = fds << INTBITS; count && fd < maxfd; count--, fd++) {
153 /* if we specify read first, the accepts and zero reads will be
154 * seen first. Moreover, system buffers will be flushed faster.
155 */
Willy Tarreau28d86862007-04-08 17:42:27 +0200156 if (FD_ISSET(fd, tmp_evts[DIR_RD])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200157 if (fdtab[fd].state == FD_STCLOSE)
158 continue;
159 fdtab[fd].cb[DIR_RD].f(fd);
160 }
161
Willy Tarreau28d86862007-04-08 17:42:27 +0200162 if (FD_ISSET(fd, tmp_evts[DIR_WR])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200163 if (fdtab[fd].state == FD_STCLOSE)
164 continue;
165 fdtab[fd].cb[DIR_WR].f(fd);
166 }
167 }
168 }
169}
170
171/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200172 * Initialization of the select() poller.
173 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
174 * disables the poller by setting its pref to 0.
175 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200176REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200177{
178 __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt;
179 int fd_set_bytes;
180
181 p->private = NULL;
182 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
183
184 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
185 goto fail_revt;
186
187 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
188 goto fail_wevt;
189
190 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
191 goto fail_srevt;
192
193 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
194 goto fail_swevt;
195
196 return 1;
197
198 fail_swevt:
199 free(fd_evts[DIR_RD]);
200 fail_srevt:
201 free(tmp_evts[DIR_WR]);
202 fail_wevt:
203 free(tmp_evts[DIR_RD]);
204 fail_revt:
205 p->pref = 0;
206 return 0;
207}
208
209/*
210 * Termination of the select() poller.
211 * Memory is released and the poller is marked as unselectable.
212 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200213REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200214{
215 if (fd_evts[DIR_WR])
216 free(fd_evts[DIR_WR]);
217 if (fd_evts[DIR_RD])
218 free(fd_evts[DIR_RD]);
219 if (tmp_evts[DIR_WR])
220 free(tmp_evts[DIR_WR]);
221 if (tmp_evts[DIR_RD])
222 free(tmp_evts[DIR_RD]);
223 p->private = NULL;
224 p->pref = 0;
225}
226
227/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200228 * Check that the poller works.
229 * Returns 1 if OK, otherwise 0.
230 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200231REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200232{
233 return 1;
234}
235
236/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200237 * It is a constructor, which means that it will automatically be called before
238 * main(). This is GCC-specific but it works at least since 2.95.
239 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200240 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200241__attribute__((constructor))
242static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200243{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200244 struct poller *p;
245
246 if (nbpollers >= MAX_POLLERS)
247 return;
248 p = &pollers[nbpollers++];
249
Willy Tarreau4f60f162007-04-08 16:39:58 +0200250 p->name = "select";
251 p->pref = 150;
252 p->private = NULL;
253
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200254 p->test = _do_test;
255 p->init = _do_init;
256 p->term = _do_term;
257 p->poll = _do_poll;
Willy Tarreau63455a92007-04-09 15:34:49 +0200258 p->is_set = __fd_is_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200259 p->set = __fd_set;
260 p->clr = __fd_clr;
261 p->clo = p->rem = __fd_rem;
262 p->cond_s = __fd_cond_s;
263 p->cond_c = __fd_cond_c;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200264}
265
266
267/*
268 * Local variables:
269 * c-indent-level: 8
270 * c-basic-offset: 8
271 * End:
272 */