blob: 5a76d44c074af54b93f791ab4693e3d67d291e05 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic select()
3 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 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>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020019#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020020#include <common/time.h>
21
Willy Tarreau4f60f162007-04-08 16:39:58 +020022#include <types/global.h>
23
24#include <proto/fd.h>
Willy Tarreau332740d2009-05-10 09:57:21 +020025#include <proto/signal.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];
30static fd_set *tmp_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020031
Willy Tarreau4d31fb22012-11-11 16:53:50 +010032/* Immediately remove the entry upon close() */
33REGPRM1 static void __fd_clo(int fd)
Willy Tarreau4f60f162007-04-08 16:39:58 +020034{
Willy Tarreau28d86862007-04-08 17:42:27 +020035 FD_CLR(fd, fd_evts[DIR_RD]);
36 FD_CLR(fd, fd_evts[DIR_WR]);
Willy Tarreau4f60f162007-04-08 16:39:58 +020037}
38
Willy Tarreau4f60f162007-04-08 16:39:58 +020039/*
40 * Select() poller
41 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020042REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020043{
44 int status;
45 int fd, i;
46 struct timeval delta;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020047 int delta_ms;
Willy Tarreau4f60f162007-04-08 16:39:58 +020048 int readnotnull, writenotnull;
49 int fds;
Willy Tarreau4d31fb22012-11-11 16:53:50 +010050 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020051 char count;
52
Willy Tarreau4d31fb22012-11-11 16:53:50 +010053 /* first, scan the update list to find changes */
54 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
55 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010056 fdtab[fd].updated = 0;
57 fdtab[fd].new = 0;
Willy Tarreau4d31fb22012-11-11 16:53:50 +010058
Willy Tarreauf817e9f2014-01-10 16:58:45 +010059 if (!fdtab[fd].owner)
60 continue;
Willy Tarreau4d31fb22012-11-11 16:53:50 +010061
Willy Tarreau25002d22014-01-25 10:32:56 +010062 eo = fdtab[fd].state;
63 en = fd_compute_new_polled_status(eo);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010064
65 if ((eo ^ en) & FD_EV_POLLED_RW) {
66 /* poll status changed, update the lists */
67 fdtab[fd].state = en;
68
69 if ((eo & ~en) & FD_EV_POLLED_R)
70 FD_CLR(fd, fd_evts[DIR_RD]);
71 else if ((en & ~eo) & FD_EV_POLLED_R)
72 FD_SET(fd, fd_evts[DIR_RD]);
73
74 if ((eo & ~en) & FD_EV_POLLED_W)
75 FD_CLR(fd, fd_evts[DIR_WR]);
76 else if ((en & ~eo) & FD_EV_POLLED_W)
77 FD_SET(fd, fd_evts[DIR_WR]);
78 }
79
80 fd_alloc_or_release_cache_entry(fd, en);
Willy Tarreau4d31fb22012-11-11 16:53:50 +010081 }
82 fd_nbupdt = 0;
83
Willy Tarreau0c303ee2008-07-07 00:09:58 +020084 delta_ms = 0;
85 delta.tv_sec = 0;
86 delta.tv_usec = 0;
87
Willy Tarreau16f649c2014-01-25 19:10:48 +010088 if (!fd_cache_num && !run_queue && !signal_queue_len) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +020089 if (!exp) {
90 delta_ms = MAX_DELAY_MS;
91 delta.tv_sec = (MAX_DELAY_MS / 1000);
92 delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020093 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +020094 else if (!tick_is_expired(exp, now_ms)) {
95 delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION;
96 if (delta_ms > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +020097 delta_ms = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +020098 delta.tv_sec = (delta_ms / 1000);
99 delta.tv_usec = (delta_ms % 1000) * 1000;
Willy Tarreaud825eef2007-05-12 22:35:00 +0200100 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200101 }
102
103 /* let's restore fdset state */
104
105 readnotnull = 0; writenotnull = 0;
106 for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200107 readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
108 writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200109 }
110
111 // /* just a verification code, needs to be removed for performance */
112 // for (i=0; i<maxfd; i++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200113 // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200114 // abort();
Willy Tarreau28d86862007-04-08 17:42:27 +0200115 // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR]))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200116 // abort();
117 //
118 // }
119
Willy Tarreau45a12512011-09-10 16:56:42 +0200120 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200121 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 Tarreaub0b37bc2008-06-23 14:00:57 +0200125 &delta);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200126
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200127 tv_update_date(delta_ms, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200128 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200129
130 if (status <= 0)
131 return;
132
Willy Tarreau177e2b02008-07-15 00:36:31 +0200133 for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
Willy Tarreau28d86862007-04-08 17:42:27 +0200134 if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200135 continue;
136
Willy Tarreau177e2b02008-07-15 00:36:31 +0200137 for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) {
Willy Tarreau4f60f162007-04-08 16:39:58 +0200138 /* if we specify read first, the accepts and zero reads will be
139 * seen first. Moreover, system buffers will be flushed faster.
140 */
Willy Tarreau076be252012-07-06 16:02:29 +0200141 if (!fdtab[fd].owner)
142 continue;
143
Willy Tarreau9845e752012-07-06 11:44:28 +0200144 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau076be252012-07-06 16:02:29 +0200145 if (FD_ISSET(fd, tmp_evts[DIR_RD]))
Willy Tarreau491c4982012-07-06 11:16:01 +0200146 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200147
Willy Tarreau076be252012-07-06 16:02:29 +0200148 if (FD_ISSET(fd, tmp_evts[DIR_WR]))
Willy Tarreau491c4982012-07-06 11:16:01 +0200149 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau9845e752012-07-06 11:44:28 +0200150
Willy Tarreaue8525452014-01-25 09:58:06 +0100151 fd_process_polled_events(fd);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200152 }
153 }
154}
155
156/*
Willy Tarreaue54e9172007-04-09 09:23:31 +0200157 * Initialization of the select() poller.
158 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
159 * disables the poller by setting its pref to 0.
160 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200161REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200162{
163 __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt;
164 int fd_set_bytes;
165
166 p->private = NULL;
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200167
168 if (global.maxsock > FD_SETSIZE)
169 goto fail_revt;
170
Willy Tarreaue54e9172007-04-09 09:23:31 +0200171 fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
172
173 if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
174 goto fail_revt;
175
176 if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
177 goto fail_wevt;
178
179 if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
180 goto fail_srevt;
181
182 if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
183 goto fail_swevt;
184
185 return 1;
186
187 fail_swevt:
188 free(fd_evts[DIR_RD]);
189 fail_srevt:
190 free(tmp_evts[DIR_WR]);
191 fail_wevt:
192 free(tmp_evts[DIR_RD]);
193 fail_revt:
194 p->pref = 0;
195 return 0;
196}
197
198/*
199 * Termination of the select() poller.
200 * Memory is released and the poller is marked as unselectable.
201 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200202REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200203{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200204 free(fd_evts[DIR_WR]);
205 free(fd_evts[DIR_RD]);
206 free(tmp_evts[DIR_WR]);
207 free(tmp_evts[DIR_RD]);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200208 p->private = NULL;
209 p->pref = 0;
210}
211
212/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200213 * Check that the poller works.
214 * Returns 1 if OK, otherwise 0.
215 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200216REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200217{
Willy Tarreau3fa87b12013-03-31 14:41:15 +0200218 if (global.maxsock > FD_SETSIZE)
219 return 0;
220
Willy Tarreau2ff76222007-04-09 19:29:56 +0200221 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 = "select";
239 p->pref = 150;
240 p->private = NULL;
241
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100242 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200243 p->test = _do_test;
244 p->init = _do_init;
245 p->term = _do_term;
246 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200247}
248
249
250/*
251 * Local variables:
252 * c-indent-level: 8
253 * c-basic-offset: 8
254 * End:
255 */