blob: fb5cc41eab739e2fc21c59395a584bbd5a525c5d [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)) {
93 tv_remain(&now, exp, &delta);
94 /* To avoid eventual select loops due to timer precision */
95 delta.tv_usec += SCHEDULER_RESOLUTION * 1000;
96 if (delta.tv_usec >= 1000000) {
97 delta.tv_usec -= 1000000;
98 delta.tv_sec ++;
99 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200100 }
101
102 /* let's restore fdset state */
103
104 readnotnull = 0; writenotnull = 0;
105 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200106 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
107 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200108 }
109
110 // /* just a verification code, needs to be removed for performance */
111 // for (i=0; i<maxfd; i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200112 // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200113 // abort();
Willy Tarreau28d86862007-04-08 17:42:27 +0200114 // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200115 // abort();
116 //
117 // }
118
119 status = select(maxfd,
Willy Tarreau28d86862007-04-08 17:42:27 +0200120 readnotnull ? tmp_evts[DIR_RD] : NULL,
121 writenotnull ? tmp_evts[DIR_WR] : NULL,
Willy Tarreau4f60f162007-04-08 16:39:58 +0200122 NULL,
Willy Tarreaud825eef2007-05-12 22:35:00 +0200123 tv_isset(exp) ? &delta : NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200124
125 tv_now(&now);
126
127 if (status <= 0)
128 return;
129
130 for (fds = 0; (fds << INTBITS) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200131 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200132 continue;
133
134 for (count = 1<<INTBITS, fd = fds << INTBITS; count && fd < maxfd; count--, fd++) {
135 /* if we specify read first, the accepts and zero reads will be
136 * seen first. Moreover, system buffers will be flushed faster.
137 */
Willy Tarreau28d86862007-04-08 17:42:27 +0200138 if (FD_ISSET(fd, tmp_evts[DIR_RD])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200139 if (fdtab[fd].state == FD_STCLOSE)
140 continue;
141 fdtab[fd].cb[DIR_RD].f(fd);
142 }
143
Willy Tarreau28d86862007-04-08 17:42:27 +0200144 if (FD_ISSET(fd, tmp_evts[DIR_WR])) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200145 if (fdtab[fd].state == FD_STCLOSE)
146 continue;
147 fdtab[fd].cb[DIR_WR].f(fd);
148 }
149 }
150 }
151}
152
153/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200154 * Initialization of the select() poller.
155 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
156 * disables the poller by setting its pref to 0.
157 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200158REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200159{
160 __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt;
161 int fd_set_bytes;
162
163 p->private = NULL;
164 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
165
166 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
167 goto fail_revt;
168
169 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
170 goto fail_wevt;
171
172 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
173 goto fail_srevt;
174
175 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
176 goto fail_swevt;
177
178 return 1;
179
180 fail_swevt:
181 free(fd_evts[DIR_RD]);
182 fail_srevt:
183 free(tmp_evts[DIR_WR]);
184 fail_wevt:
185 free(tmp_evts[DIR_RD]);
186 fail_revt:
187 p->pref = 0;
188 return 0;
189}
190
191/*
192 * Termination of the select() poller.
193 * Memory is released and the poller is marked as unselectable.
194 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200195REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200196{
197 if (fd_evts[DIR_WR])
198 free(fd_evts[DIR_WR]);
199 if (fd_evts[DIR_RD])
200 free(fd_evts[DIR_RD]);
201 if (tmp_evts[DIR_WR])
202 free(tmp_evts[DIR_WR]);
203 if (tmp_evts[DIR_RD])
204 free(tmp_evts[DIR_RD]);
205 p->private = NULL;
206 p->pref = 0;
207}
208
209/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200210 * Check that the poller works.
211 * Returns 1 if OK, otherwise 0.
212 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200213REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200214{
215 return 1;
216}
217
218/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200219 * It is a constructor, which means that it will automatically be called before
220 * main(). This is GCC-specific but it works at least since 2.95.
221 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200222 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200223__attribute__((constructor))
224static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200225{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200226 struct poller *p;
227
228 if (nbpollers >= MAX_POLLERS)
229 return;
230 p = &pollers[nbpollers++];
231
Willy Tarreau4f60f162007-04-08 16:39:58 +0200232 p->name = "select";
233 p->pref = 150;
234 p->private = NULL;
235
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200236 p->test = _do_test;
237 p->init = _do_init;
238 p->term = _do_term;
239 p->poll = _do_poll;
Willy Tarreau63455a92007-04-09 15:34:49 +0200240 p->is_set = __fd_is_set;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200241 p->set = __fd_set;
242 p->clr = __fd_clr;
243 p->clo = p->rem = __fd_rem;
244 p->cond_s = __fd_cond_s;
245 p->cond_c = __fd_cond_c;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200246}
247
248
249/*
250 * Local variables:
251 * c-indent-level: 8
252 * c-basic-offset: 8
253 * End:
254 */