blob: 1b897de2e4deb5a5687633b77c9253762cb77f18 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic select()
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>
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{
83 int status;
84 int fd, i;
85 struct timeval delta;
86 int readnotnull, writenotnull;
87 int fds;
88 char count;
89
90 /* allow select to return immediately when needed */
91 delta.tv_sec = delta.tv_usec = 0;
Willy Tarreaud825eef2007-05-12 22:35:00 +020092 if (tv_isset(exp)) {
Willy Tarreaud9b74412007-05-14 03:16:06 +020093 if (tv_islt(&now, exp)) {
94 tv_remain(&now, exp, &delta);
95 /* To avoid eventual select loops due to timer precision */
96 delta.tv_usec += SCHEDULER_RESOLUTION * 1000;
97 if (delta.tv_usec >= 1000000) {
98 delta.tv_usec -= 1000000;
99 delta.tv_sec ++;
100 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200101 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200102 }
103
104 /* let's restore fdset state */
105
106 readnotnull = 0; writenotnull = 0;
107 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200108 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
109 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200110 }
111
112 // /* just a verification code, needs to be removed for performance */
113 // for (i=0; i<maxfd; i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200114 // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200115 // abort();
Willy Tarreau28d86862007-04-08 17:42:27 +0200116 // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200117 // abort();
118 //
119 // }
120
121 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200122 readnotnull ? tmp_evts[DIR_RD] : NULL,
123 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200124 NULL,
Willy Tarreaud825eef2007-05-12 22:35:00 +0200125 tv_isset(exp) ? &delta : NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200126
127 tv_now(&now);
128
129 if (status <= 0)
130 return;
131
132 for (fds = 0; (fds << INTBITS) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200133 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200134 continue;
135
136 for (count = 1<<INTBITS, fd = fds << INTBITS; count && fd < maxfd; count--, fd++) {
137 /* if we specify read first, the accepts and zero reads will be
138 * seen first. Moreover, system buffers will be flushed faster.
139 */
Willy Tarreau28d86862007-04-08 17:42:27 +0200140 if (FD_ISSET(fd, tmp_evts[DIR_RD])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200141 if (fdtab[fd].state == FD_STCLOSE)
142 continue;
143 fdtab[fd].cb[DIR_RD].f(fd);
144 }
145
Willy Tarreau28d86862007-04-08 17:42:27 +0200146 if (FD_ISSET(fd, tmp_evts[DIR_WR])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200147 if (fdtab[fd].state == FD_STCLOSE)
148 continue;
149 fdtab[fd].cb[DIR_WR].f(fd);
150 }
151 }
152 }
153}
154
155/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200156 * Initialization of the select() poller.
157 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
158 * disables the poller by setting its pref to 0.
159 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200160REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200161{
162 __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt;
163 int fd_set_bytes;
164
165 p->private = NULL;
166 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
167
168 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
169 goto fail_revt;
170
171 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
172 goto fail_wevt;
173
174 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
175 goto fail_srevt;
176
177 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
178 goto fail_swevt;
179
180 return 1;
181
182 fail_swevt:
183 free(fd_evts[DIR_RD]);
184 fail_srevt:
185 free(tmp_evts[DIR_WR]);
186 fail_wevt:
187 free(tmp_evts[DIR_RD]);
188 fail_revt:
189 p->pref = 0;
190 return 0;
191}
192
193/*
194 * Termination of the select() poller.
195 * Memory is released and the poller is marked as unselectable.
196 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200197REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200198{
199 if (fd_evts[DIR_WR])
200 free(fd_evts[DIR_WR]);
201 if (fd_evts[DIR_RD])
202 free(fd_evts[DIR_RD]);
203 if (tmp_evts[DIR_WR])
204 free(tmp_evts[DIR_WR]);
205 if (tmp_evts[DIR_RD])
206 free(tmp_evts[DIR_RD]);
207 p->private = NULL;
208 p->pref = 0;
209}
210
211/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200212 * Check that the poller works.
213 * Returns 1 if OK, otherwise 0.
214 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200215REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200216{
217 return 1;
218}
219
220/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200221 * It is a constructor, which means that it will automatically be called before
222 * main(). This is GCC-specific but it works at least since 2.95.
223 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200224 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200225__attribute__((constructor))
226static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200227{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200228 struct poller *p;
229
230 if (nbpollers >= MAX_POLLERS)
231 return;
232 p = &pollers[nbpollers++];
233
Willy Tarreau4f60f162007-04-08 16:39:58 +0200234 p->name = "select";
235 p->pref = 150;
236 p->private = NULL;
237
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200238 p->test = _do_test;
239 p->init = _do_init;
240 p->term = _do_term;
241 p->poll = _do_poll;
Willy Tarreau63455a92007-04-09 15:34:49 +0200242 p->is_set = __fd_is_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200243 p->set = __fd_set;
244 p->clr = __fd_clr;
245 p->clo = p->rem = __fd_rem;
246 p->cond_s = __fd_cond_s;
247 p->cond_c = __fd_cond_c;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200248}
249
250
251/*
252 * Local variables:
253 * c-indent-level: 8
254 * c-basic-offset: 8
255 * End:
256 */