blob: 248f1f4c7d0e981e07d8520c5019c6e4a9664fb7 [file] [log] [blame]
Willy Tarreaude99e992007-04-16 00:53:59 +02001/*
2 * FD polling functions for Speculative I/O combined with Linux epoll()
3 *
Willy Tarreaub48b3232009-10-17 22:54:17 +02004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaude99e992007-04-16 00:53:59 +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 *
Willy Tarreauf2e8ee22008-05-25 10:39:02 +020011 *
12 * This code implements "speculative I/O" under Linux. The principle is to
13 * try to perform expected I/O before registering the events in the poller.
14 * Each time this succeeds, it saves an expensive epoll_ctl(). It generally
15 * succeeds for all reads after an accept(), and for writes after a connect().
16 * It also improves performance for streaming connections because even if only
17 * one side is polled, the other one may react accordingly depending on the
18 * level of the buffer.
19 *
20 * It has a presents drawbacks though. If too many events are set for spec I/O,
21 * those ones can starve the polled events. Experiments show that when polled
22 * events starve, they quickly turn into spec I/O, making the situation even
23 * worse. While we can reduce the number of polled events processed at once,
24 * we cannot do this on speculative events because most of them are new ones
25 * (avg 2/3 new - 1/3 old from experiments).
26 *
27 * The solution against this problem relies on those two factors :
28 * 1) one FD registered as a spec event cannot be polled at the same time
29 * 2) even during very high loads, we will almost never be interested in
30 * simultaneous read and write streaming on the same FD.
31 *
32 * The first point implies that during starvation, we will not have more than
33 * half of our FDs in the poll list, otherwise it means there is less than that
34 * in the spec list, implying there is no starvation.
35 *
36 * The second point implies that we're statically only interested in half of
37 * the maximum number of file descriptors at once, because we will unlikely
38 * have simultaneous read and writes for a same buffer during long periods.
39 *
40 * So, if we make it possible to drain maxsock/2/2 during peak loads, then we
41 * can ensure that there will be no starvation effect. This means that we must
42 * always allocate maxsock/4 events for the poller.
43 *
44 *
Willy Tarreaude99e992007-04-16 00:53:59 +020045 */
46
47#include <unistd.h>
48#include <sys/time.h>
49#include <sys/types.h>
50
51#include <common/compat.h>
52#include <common/config.h>
Willy Tarreaud6f087e2008-01-18 17:20:13 +010053#include <common/debug.h>
Willy Tarreaude99e992007-04-16 00:53:59 +020054#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020055#include <common/ticks.h>
Willy Tarreaude99e992007-04-16 00:53:59 +020056#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020057#include <common/tools.h>
Willy Tarreaude99e992007-04-16 00:53:59 +020058
Willy Tarreaude99e992007-04-16 00:53:59 +020059#include <types/global.h>
60
61#include <proto/fd.h>
Willy Tarreau332740d2009-05-10 09:57:21 +020062#include <proto/signal.h>
Willy Tarreaude99e992007-04-16 00:53:59 +020063#include <proto/task.h>
64
65#if defined(USE_MY_EPOLL)
66#include <common/epoll.h>
67#include <errno.h>
68#include <sys/syscall.h>
69static _syscall1 (int, epoll_create, int, size);
70static _syscall4 (int, epoll_ctl, int, epfd, int, op, int, fd, struct epoll_event *, event);
71static _syscall4 (int, epoll_wait, int, epfd, struct epoll_event *, events, int, maxevents, int, timeout);
72#else
73#include <sys/epoll.h>
74#endif
75
76/*
77 * We define 4 states for each direction of a file descriptor, which we store
78 * as 2 bits :
79 *
80 * 00 = IDLE : we're not interested in this event
81 * 01 = SPEC : perform speculative I/O on this FD
82 * 10 = WAIT : really wait for an availability event on this FD (poll)
83 * 11 = STOP : was marked WAIT, but disabled. It can switch back to WAIT if
84 * the application changes its mind, otherwise disable FD polling
85 * and switch back to IDLE.
86 *
87 * Since we do not want to scan all the FD list to find speculative I/O events,
88 * we store them in a list consisting in a linear array holding only the FD
Willy Tarreau7a52a5c2008-08-16 16:06:02 +020089 * indexes right now. Note that a closed FD cannot exist in the spec list,
90 * because it is closed by fd_delete() which in turn calls __fd_clo() which
91 * always removes it from the list.
Willy Tarreaude99e992007-04-16 00:53:59 +020092 *
93 * The STOP state requires the event to be present in the spec list so that
94 * it can be detected and flushed upon next scan without having to scan the
95 * whole FD list.
96 *
97 * This translates like this :
98 *
99 * EVENT_IN_SPEC_LIST = 01
100 * EVENT_IN_POLL_LIST = 10
101 *
102 * IDLE = 0
103 * SPEC = (EVENT_IN_SPEC_LIST)
104 * WAIT = (EVENT_IN_POLL_LIST)
105 * STOP = (EVENT_IN_SPEC_LIST|EVENT_IN_POLL_LIST)
106 *
107 * fd_is_set() just consists in checking that the status is 01 or 10.
108 *
109 * For efficiency reasons, we will store the Read and Write bits interlaced to
110 * form a 4-bit field, so that we can simply shift the value right by 0/1 and
111 * get what we want :
112 * 3 2 1 0
113 * Wp Rp Ws Rs
114 *
115 * The FD array has to hold a back reference to the speculative list. This
116 * reference is only valid if at least one of the directions is marked SPEC.
117 *
118 */
119
120#define FD_EV_IN_SL 1
121#define FD_EV_IN_PL 4
122
123#define FD_EV_IDLE 0
124#define FD_EV_SPEC (FD_EV_IN_SL)
125#define FD_EV_WAIT (FD_EV_IN_PL)
126#define FD_EV_STOP (FD_EV_IN_SL|FD_EV_IN_PL)
127
128/* Those match any of R or W for Spec list or Poll list */
129#define FD_EV_RW_SL (FD_EV_IN_SL | (FD_EV_IN_SL << 1))
130#define FD_EV_RW_PL (FD_EV_IN_PL | (FD_EV_IN_PL << 1))
131#define FD_EV_MASK_DIR (FD_EV_IN_SL|FD_EV_IN_PL)
132
133#define FD_EV_IDLE_R 0
134#define FD_EV_SPEC_R (FD_EV_IN_SL)
135#define FD_EV_WAIT_R (FD_EV_IN_PL)
136#define FD_EV_STOP_R (FD_EV_IN_SL|FD_EV_IN_PL)
137#define FD_EV_MASK_R (FD_EV_IN_SL|FD_EV_IN_PL)
138
139#define FD_EV_IDLE_W (FD_EV_IDLE_R << 1)
140#define FD_EV_SPEC_W (FD_EV_SPEC_R << 1)
141#define FD_EV_WAIT_W (FD_EV_WAIT_R << 1)
142#define FD_EV_STOP_W (FD_EV_STOP_R << 1)
143#define FD_EV_MASK_W (FD_EV_MASK_R << 1)
144
145#define FD_EV_MASK (FD_EV_MASK_W | FD_EV_MASK_R)
146
Willy Tarreau6653d172007-05-13 01:52:05 +0200147/* This is the minimum number of events successfully processed in speculative
148 * mode above which we agree to return without checking epoll() (1/2 times).
149 */
150#define MIN_RETURN_EVENTS 25
Willy Tarreaude99e992007-04-16 00:53:59 +0200151
Willy Tarreaude99e992007-04-16 00:53:59 +0200152static int nbspec = 0; // current size of the spec list
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200153static int absmaxevents = 0; // absolute maximum amounts of polled events
Willy Tarreaucb651252008-08-29 13:57:30 +0200154static int fd_created = 0; // fd creation detector, reset upon poll() entry.
Willy Tarreaude99e992007-04-16 00:53:59 +0200155
Willy Tarreaude99e992007-04-16 00:53:59 +0200156static unsigned int *spec_list = NULL; // speculative I/O list
157
158/* private data */
159static struct epoll_event *epoll_events;
160static int epoll_fd;
161
162/* This structure may be used for any purpose. Warning! do not use it in
163 * recursive functions !
164 */
165static struct epoll_event ev;
166
167
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200168REGPRM1 static inline void alloc_spec_entry(const int fd)
Willy Tarreaude99e992007-04-16 00:53:59 +0200169{
Willy Tarreaub48b3232009-10-17 22:54:17 +0200170 if (fdtab[fd].spec.s1)
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200171 /* sometimes the entry already exists for the other direction */
Willy Tarreaude99e992007-04-16 00:53:59 +0200172 return;
Willy Tarreaub48b3232009-10-17 22:54:17 +0200173 fdtab[fd].spec.s1 = nbspec + 1;
Willy Tarreau4eac2092007-08-31 17:01:18 +0200174 spec_list[nbspec] = fd;
175 nbspec++;
Willy Tarreaude99e992007-04-16 00:53:59 +0200176}
177
Willy Tarreau4eac2092007-08-31 17:01:18 +0200178/* Removes entry used by fd <fd> from the spec list and replaces it with the
Willy Tarreaub48b3232009-10-17 22:54:17 +0200179 * last one. The fdtab.spec is adjusted to match the back reference if needed.
Willy Tarreau4eac2092007-08-31 17:01:18 +0200180 * If the fd has no entry assigned, return immediately.
Willy Tarreaude99e992007-04-16 00:53:59 +0200181 */
Willy Tarreau4eac2092007-08-31 17:01:18 +0200182REGPRM1 static void release_spec_entry(int fd)
Willy Tarreaude99e992007-04-16 00:53:59 +0200183{
Willy Tarreau4eac2092007-08-31 17:01:18 +0200184 unsigned int pos;
185
Willy Tarreaub48b3232009-10-17 22:54:17 +0200186 pos = fdtab[fd].spec.s1;
Willy Tarreau4eac2092007-08-31 17:01:18 +0200187 if (!pos)
188 return;
189
Willy Tarreaub48b3232009-10-17 22:54:17 +0200190 fdtab[fd].spec.s1 = 0;
Willy Tarreau4eac2092007-08-31 17:01:18 +0200191 pos--;
192 /* we have spec_list[pos]==fd */
Willy Tarreaude99e992007-04-16 00:53:59 +0200193
194 nbspec--;
195 if (pos == nbspec)
196 return;
197
Willy Tarreau4eac2092007-08-31 17:01:18 +0200198 /* we replace current FD by the highest one, which may sometimes be the same */
Willy Tarreaude99e992007-04-16 00:53:59 +0200199 fd = spec_list[nbspec];
200 spec_list[pos] = fd;
Willy Tarreaub48b3232009-10-17 22:54:17 +0200201 fdtab[fd].spec.s1 = pos + 1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200202}
203
204/*
205 * Returns non-zero if <fd> is already monitored for events in direction <dir>.
206 */
207REGPRM2 static int __fd_is_set(const int fd, int dir)
208{
209 int ret;
210
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200211#if DEBUG_DEV
212 if (fdtab[fd].state == FD_STCLOSE) {
213 fprintf(stderr, "sepoll.fd_isset called on closed fd #%d.\n", fd);
214 ABORT_NOW();
215 }
216#endif
Willy Tarreaub48b3232009-10-17 22:54:17 +0200217 ret = ((unsigned)fdtab[fd].spec.e >> dir) & FD_EV_MASK_DIR;
Willy Tarreaude99e992007-04-16 00:53:59 +0200218 return (ret == FD_EV_SPEC || ret == FD_EV_WAIT);
219}
220
221/*
222 * Don't worry about the strange constructs in __fd_set/__fd_clr, they are
223 * designed like this in order to reduce the number of jumps (verified).
224 */
225REGPRM2 static int __fd_set(const int fd, int dir)
226{
Willy Tarreaude99e992007-04-16 00:53:59 +0200227 unsigned int i;
228
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200229#if DEBUG_DEV
230 if (fdtab[fd].state == FD_STCLOSE) {
231 fprintf(stderr, "sepoll.fd_set called on closed fd #%d.\n", fd);
232 ABORT_NOW();
233 }
234#endif
Willy Tarreaub48b3232009-10-17 22:54:17 +0200235 i = ((unsigned)fdtab[fd].spec.e >> dir) & FD_EV_MASK_DIR;
Willy Tarreaude99e992007-04-16 00:53:59 +0200236
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200237 if (i != FD_EV_STOP) {
238 if (unlikely(i != FD_EV_IDLE))
239 return 0;
Willy Tarreaude99e992007-04-16 00:53:59 +0200240 // switch to SPEC state and allocate a SPEC entry.
Willy Tarreau573fd802009-03-22 19:25:46 +0100241 fd_created++;
Willy Tarreaude99e992007-04-16 00:53:59 +0200242 alloc_spec_entry(fd);
Willy Tarreaude99e992007-04-16 00:53:59 +0200243 }
Willy Tarreaub48b3232009-10-17 22:54:17 +0200244 fdtab[fd].spec.e ^= (unsigned int)(FD_EV_IN_SL << dir);
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200245 return 1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200246}
247
248REGPRM2 static int __fd_clr(const int fd, int dir)
249{
Willy Tarreaude99e992007-04-16 00:53:59 +0200250 unsigned int i;
251
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200252#if DEBUG_DEV
253 if (fdtab[fd].state == FD_STCLOSE) {
254 fprintf(stderr, "sepoll.fd_clr called on closed fd #%d.\n", fd);
255 ABORT_NOW();
256 }
257#endif
Willy Tarreaub48b3232009-10-17 22:54:17 +0200258 i = ((unsigned)fdtab[fd].spec.e >> dir) & FD_EV_MASK_DIR;
Willy Tarreaude99e992007-04-16 00:53:59 +0200259
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200260 if (i != FD_EV_SPEC) {
261 if (unlikely(i != FD_EV_WAIT))
262 return 0;
Willy Tarreaude99e992007-04-16 00:53:59 +0200263 // switch to STOP state
264 /* We will create a queue entry for this one because we want to
265 * process it later in order to merge it with other events on
266 * the same FD.
267 */
268 alloc_spec_entry(fd);
Willy Tarreaude99e992007-04-16 00:53:59 +0200269 }
Willy Tarreaub48b3232009-10-17 22:54:17 +0200270 fdtab[fd].spec.e ^= (unsigned int)(FD_EV_IN_SL << dir);
Willy Tarreauff9d5ba2009-10-17 21:43:03 +0200271 return 1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200272}
273
Willy Tarreau6653d172007-05-13 01:52:05 +0200274/* normally unused */
Willy Tarreaude99e992007-04-16 00:53:59 +0200275REGPRM1 static void __fd_rem(int fd)
276{
277 __fd_clr(fd, DIR_RD);
278 __fd_clr(fd, DIR_WR);
279}
280
281/*
282 * On valid epoll() implementations, a call to close() automatically removes
283 * the fds. This means that the FD will appear as previously unset.
284 */
285REGPRM1 static void __fd_clo(int fd)
286{
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200287 release_spec_entry(fd);
Willy Tarreaub48b3232009-10-17 22:54:17 +0200288 fdtab[fd].spec.e &= ~(FD_EV_MASK);
Willy Tarreaude99e992007-04-16 00:53:59 +0200289}
290
Willy Tarreaudc246a72007-05-09 21:57:51 +0200291/*
Willy Tarreaude99e992007-04-16 00:53:59 +0200292 * speculative epoll() poller
293 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200294REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreaude99e992007-04-16 00:53:59 +0200295{
296 static unsigned int last_skipped;
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200297 static unsigned int spec_processed;
Willy Tarreau6653d172007-05-13 01:52:05 +0200298 int status, eo;
Willy Tarreaude99e992007-04-16 00:53:59 +0200299 int fd, opcode;
300 int count;
301 int spec_idx;
Willy Tarreaud825eef2007-05-12 22:35:00 +0200302 int wait_time;
Willy Tarreaucb651252008-08-29 13:57:30 +0200303 int looping = 0;
Willy Tarreaude99e992007-04-16 00:53:59 +0200304
305
Willy Tarreaucb651252008-08-29 13:57:30 +0200306 re_poll_once:
Willy Tarreaude99e992007-04-16 00:53:59 +0200307 /* Here we have two options :
Willy Tarreau6653d172007-05-13 01:52:05 +0200308 * - either walk the list forwards and hope to match more events
Willy Tarreaude99e992007-04-16 00:53:59 +0200309 * - or walk it backwards to minimize the number of changes and
310 * to make better use of the cache.
311 * Tests have shown that walking backwards improves perf by 0.2%.
312 */
313
Willy Tarreau6653d172007-05-13 01:52:05 +0200314 status = 0;
Willy Tarreaude99e992007-04-16 00:53:59 +0200315 spec_idx = nbspec;
316 while (likely(spec_idx > 0)) {
Willy Tarreau65745192009-03-28 21:10:48 +0100317 int done;
318
Willy Tarreaude99e992007-04-16 00:53:59 +0200319 spec_idx--;
320 fd = spec_list[spec_idx];
Willy Tarreaub48b3232009-10-17 22:54:17 +0200321 eo = fdtab[fd].spec.e; /* save old events */
Willy Tarreaude99e992007-04-16 00:53:59 +0200322
Willy Tarreau573fd802009-03-22 19:25:46 +0100323 if (looping && --fd_created < 0) {
324 /* we were just checking the newly created FDs */
325 break;
326 }
Willy Tarreau6653d172007-05-13 01:52:05 +0200327 /*
328 * Process the speculative events.
329 *
330 * Principle: events which are marked FD_EV_SPEC are processed
331 * with their assigned function. If the function returns 0, it
332 * means there is nothing doable without polling first. We will
333 * then convert the event to a pollable one by assigning them
334 * the WAIT status.
Willy Tarreaude99e992007-04-16 00:53:59 +0200335 */
336
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200337#ifdef DEBUG_DEV
338 if (fdtab[fd].state == FD_STCLOSE) {
Willy Tarreaub48b3232009-10-17 22:54:17 +0200339 fprintf(stderr,"fd=%d, fdtab[].ev=%x, fdtab[].spec.e=%x, .s=%d, idx=%d\n",
340 fd, fdtab[fd].ev, fdtab[fd].spec.e, fdtab[fd].spec.s1, spec_idx);
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200341 }
342#endif
Willy Tarreau65745192009-03-28 21:10:48 +0100343 done = 0;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100344 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau6653d172007-05-13 01:52:05 +0200345 if ((eo & FD_EV_MASK_R) == FD_EV_SPEC_R) {
346 /* The owner is interested in reading from this FD */
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200347 if (fdtab[fd].state != FD_STERROR) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200348 /* Pretend there is something to read */
Willy Tarreaude99e992007-04-16 00:53:59 +0200349 fdtab[fd].ev |= FD_POLL_IN;
Willy Tarreau6653d172007-05-13 01:52:05 +0200350 if (!fdtab[fd].cb[DIR_RD].f(fd))
Willy Tarreaub48b3232009-10-17 22:54:17 +0200351 fdtab[fd].spec.e ^= (FD_EV_WAIT_R ^ FD_EV_SPEC_R);
Willy Tarreau6653d172007-05-13 01:52:05 +0200352 else
Willy Tarreau65745192009-03-28 21:10:48 +0100353 done = 1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200354 }
355 }
Willy Tarreau6653d172007-05-13 01:52:05 +0200356 else if ((eo & FD_EV_MASK_R) == FD_EV_STOP_R) {
357 /* This FD was being polled and is now being removed. */
Willy Tarreaub48b3232009-10-17 22:54:17 +0200358 fdtab[fd].spec.e &= ~FD_EV_MASK_R;
Willy Tarreau6653d172007-05-13 01:52:05 +0200359 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200360
Willy Tarreau6653d172007-05-13 01:52:05 +0200361 if ((eo & FD_EV_MASK_W) == FD_EV_SPEC_W) {
362 /* The owner is interested in writing to this FD */
Willy Tarreau7a52a5c2008-08-16 16:06:02 +0200363 if (fdtab[fd].state != FD_STERROR) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200364 /* Pretend there is something to write */
Willy Tarreaude99e992007-04-16 00:53:59 +0200365 fdtab[fd].ev |= FD_POLL_OUT;
Willy Tarreau6653d172007-05-13 01:52:05 +0200366 if (!fdtab[fd].cb[DIR_WR].f(fd))
Willy Tarreaub48b3232009-10-17 22:54:17 +0200367 fdtab[fd].spec.e ^= (FD_EV_WAIT_W ^ FD_EV_SPEC_W);
Willy Tarreau6653d172007-05-13 01:52:05 +0200368 else
Willy Tarreau65745192009-03-28 21:10:48 +0100369 done = 1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200370 }
371 }
Willy Tarreau6653d172007-05-13 01:52:05 +0200372 else if ((eo & FD_EV_MASK_W) == FD_EV_STOP_W) {
373 /* This FD was being polled and is now being removed. */
Willy Tarreaub48b3232009-10-17 22:54:17 +0200374 fdtab[fd].spec.e &= ~FD_EV_MASK_W;
Willy Tarreau6653d172007-05-13 01:52:05 +0200375 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200376
Willy Tarreau65745192009-03-28 21:10:48 +0100377 status += done;
Willy Tarreau1eead502009-03-28 19:43:06 +0100378 /* one callback might already have closed the fd by itself */
379 if (fdtab[fd].state == FD_STCLOSE)
380 continue;
381
Willy Tarreau6653d172007-05-13 01:52:05 +0200382 /* Now, we will adjust the event in the poll list. Indeed, it
383 * is possible that an event which was previously in the poll
384 * list now goes out, and the opposite is possible too. We can
385 * have opposite changes for READ and WRITE too.
386 */
387
Willy Tarreaub48b3232009-10-17 22:54:17 +0200388 if ((eo ^ fdtab[fd].spec.e) & FD_EV_RW_PL) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200389 /* poll status changed*/
Willy Tarreaub48b3232009-10-17 22:54:17 +0200390 if ((fdtab[fd].spec.e & FD_EV_RW_PL) == 0) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200391 /* fd removed from poll list */
392 opcode = EPOLL_CTL_DEL;
393 }
394 else if ((eo & FD_EV_RW_PL) == 0) {
395 /* new fd in the poll list */
Willy Tarreaude99e992007-04-16 00:53:59 +0200396 opcode = EPOLL_CTL_ADD;
397 }
Willy Tarreau6653d172007-05-13 01:52:05 +0200398 else {
399 /* fd status changed */
400 opcode = EPOLL_CTL_MOD;
401 }
402
403 /* construct the epoll events based on new state */
404 ev.events = 0;
Willy Tarreaub48b3232009-10-17 22:54:17 +0200405 if (fdtab[fd].spec.e & FD_EV_WAIT_R)
Willy Tarreau6653d172007-05-13 01:52:05 +0200406 ev.events |= EPOLLIN;
407
Willy Tarreaub48b3232009-10-17 22:54:17 +0200408 if (fdtab[fd].spec.e & FD_EV_WAIT_W)
Willy Tarreau6653d172007-05-13 01:52:05 +0200409 ev.events |= EPOLLOUT;
410
411 ev.data.fd = fd;
Willy Tarreaude99e992007-04-16 00:53:59 +0200412 epoll_ctl(epoll_fd, opcode, fd, &ev);
Willy Tarreau6653d172007-05-13 01:52:05 +0200413 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200414
Willy Tarreaude99e992007-04-16 00:53:59 +0200415
Willy Tarreaub48b3232009-10-17 22:54:17 +0200416 if (!(fdtab[fd].spec.e & FD_EV_RW_SL)) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200417 /* This fd switched to combinations of either WAIT or
418 * IDLE. It must be removed from the spec list.
419 */
Willy Tarreau4eac2092007-08-31 17:01:18 +0200420 release_spec_entry(fd);
Willy Tarreau6653d172007-05-13 01:52:05 +0200421 continue;
Willy Tarreaude99e992007-04-16 00:53:59 +0200422 }
423 }
424
Willy Tarreau6653d172007-05-13 01:52:05 +0200425 /* It may make sense to immediately return here if there are enough
426 * processed events, without passing through epoll_wait() because we
427 * have exactly done a poll.
428 * Measures have shown a great performance increase if we call the
429 * epoll_wait() only the second time after speculative accesses have
430 * succeeded. This reduces the number of unsucessful calls to
431 * epoll_wait() by a factor of about 3, and the total number of calls
432 * by about 2.
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200433 * However, when we do that after having processed too many events,
434 * events waiting in epoll() starve for too long a time and tend to
435 * become themselves eligible for speculative polling. So we try to
436 * limit this practise to reasonable situations.
Willy Tarreaude99e992007-04-16 00:53:59 +0200437 */
Willy Tarreau6653d172007-05-13 01:52:05 +0200438
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200439 spec_processed += status;
Willy Tarreaucb651252008-08-29 13:57:30 +0200440
441 if (looping) {
442 last_skipped++;
443 return;
444 }
445
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200446 if (status >= MIN_RETURN_EVENTS && spec_processed < absmaxevents) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200447 /* We have processed at least MIN_RETURN_EVENTS, it's worth
448 * returning now without checking epoll_wait().
449 */
450 if (++last_skipped <= 1) {
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200451 tv_update_date(0, 1);
Willy Tarreaude99e992007-04-16 00:53:59 +0200452 return;
453 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200454 }
455 last_skipped = 0;
456
Willy Tarreau332740d2009-05-10 09:57:21 +0200457 if (nbspec || status || run_queue || signal_queue_len) {
Willy Tarreau6653d172007-05-13 01:52:05 +0200458 /* Maybe we have processed some events that we must report, or
Willy Tarreau3a628112008-06-13 21:06:56 +0200459 * maybe we still have events in the spec list, or there are
460 * some tasks left pending in the run_queue, so we must not
Willy Tarreau6653d172007-05-13 01:52:05 +0200461 * wait in epoll() otherwise we will delay their delivery by
462 * the next timeout.
463 */
Willy Tarreaude99e992007-04-16 00:53:59 +0200464 wait_time = 0;
465 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200466 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200467 if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200468 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200469 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200470 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200471 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200472 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200473 if (wait_time > MAX_DELAY_MS)
474 wait_time = MAX_DELAY_MS;
475 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200476 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200477
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200478 /* now let's wait for real events. We normally use maxpollevents as a
479 * high limit, unless <nbspec> is already big, in which case we need
480 * to compensate for the high number of events processed there.
481 */
482 fd = MIN(absmaxevents, spec_processed);
483 fd = MAX(global.tune.maxpollevents, fd);
484 fd = MIN(maxfd, fd);
Willy Tarreaucb651252008-08-29 13:57:30 +0200485 /* we want to detect if an accept() will create new speculative FDs here */
486 fd_created = 0;
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200487 spec_processed = 0;
Willy Tarreau1db37712007-06-03 17:16:49 +0200488 status = epoll_wait(epoll_fd, epoll_events, fd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200489 tv_update_date(wait_time, status);
Willy Tarreaude99e992007-04-16 00:53:59 +0200490
491 for (count = 0; count < status; count++) {
492 int e = epoll_events[count].events;
493 fd = epoll_events[count].data.fd;
494
495 /* it looks complicated but gcc can optimize it away when constants
496 * have same values.
497 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100498 DPRINTF(stderr, "%s:%d: fd=%d, ev=0x%08x, e=0x%08x\n",
499 __FUNCTION__, __LINE__,
500 fd, fdtab[fd].ev, e);
501
502 fdtab[fd].ev &= FD_POLL_STICKY;
503 fdtab[fd].ev |=
Willy Tarreaude99e992007-04-16 00:53:59 +0200504 ((e & EPOLLIN ) ? FD_POLL_IN : 0) |
505 ((e & EPOLLPRI) ? FD_POLL_PRI : 0) |
506 ((e & EPOLLOUT) ? FD_POLL_OUT : 0) |
507 ((e & EPOLLERR) ? FD_POLL_ERR : 0) |
508 ((e & EPOLLHUP) ? FD_POLL_HUP : 0);
509
Willy Tarreaub48b3232009-10-17 22:54:17 +0200510 if ((fdtab[fd].spec.e & FD_EV_MASK_R) == FD_EV_WAIT_R) {
Willy Tarreau8bb46f42007-04-30 12:56:21 +0200511 if (fdtab[fd].state == FD_STCLOSE || fdtab[fd].state == FD_STERROR)
Willy Tarreaude99e992007-04-16 00:53:59 +0200512 continue;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100513 if (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP|FD_POLL_ERR))
Willy Tarreaude99e992007-04-16 00:53:59 +0200514 fdtab[fd].cb[DIR_RD].f(fd);
515 }
516
Willy Tarreaub48b3232009-10-17 22:54:17 +0200517 if ((fdtab[fd].spec.e & FD_EV_MASK_W) == FD_EV_WAIT_W) {
Willy Tarreau8bb46f42007-04-30 12:56:21 +0200518 if (fdtab[fd].state == FD_STCLOSE || fdtab[fd].state == FD_STERROR)
Willy Tarreaude99e992007-04-16 00:53:59 +0200519 continue;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100520 if (fdtab[fd].ev & (FD_POLL_OUT|FD_POLL_ERR))
Willy Tarreaude99e992007-04-16 00:53:59 +0200521 fdtab[fd].cb[DIR_WR].f(fd);
522 }
523 }
Willy Tarreaucb651252008-08-29 13:57:30 +0200524
525 if (fd_created) {
526 /* we have created some fds, certainly in return of an accept(),
527 * and they're marked as speculative. If we can manage to perform
528 * a read(), we're almost sure to collect all the request at once
529 * and avoid several expensive wakeups. So let's try now. Anyway,
530 * if we fail, the tasks are still woken up, and the FD gets marked
531 * for poll mode.
532 */
Willy Tarreaucb651252008-08-29 13:57:30 +0200533 looping = 1;
534 goto re_poll_once;
535 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200536}
537
538/*
539 * Initialization of the speculative epoll() poller.
540 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
541 * disables the poller by setting its pref to 0.
542 */
543REGPRM1 static int _do_init(struct poller *p)
544{
Willy Tarreaub48b3232009-10-17 22:54:17 +0200545 __label__ fail_spec, fail_ee, fail_fd;
Willy Tarreaude99e992007-04-16 00:53:59 +0200546
547 p->private = NULL;
548
549 epoll_fd = epoll_create(global.maxsock + 1);
550 if (epoll_fd < 0)
551 goto fail_fd;
552
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200553 /* See comments at the top of the file about this formula. */
554 absmaxevents = MAX(global.tune.maxpollevents, global.maxsock/4);
Willy Tarreaude99e992007-04-16 00:53:59 +0200555 epoll_events = (struct epoll_event*)
Willy Tarreauf2e8ee22008-05-25 10:39:02 +0200556 calloc(1, sizeof(struct epoll_event) * absmaxevents);
Willy Tarreaude99e992007-04-16 00:53:59 +0200557
558 if (epoll_events == NULL)
559 goto fail_ee;
560
561 if ((spec_list = (uint32_t *)calloc(1, sizeof(uint32_t) * global.maxsock)) == NULL)
562 goto fail_spec;
563
Willy Tarreaude99e992007-04-16 00:53:59 +0200564 return 1;
565
Willy Tarreaude99e992007-04-16 00:53:59 +0200566 fail_spec:
567 free(epoll_events);
568 fail_ee:
569 close(epoll_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200570 epoll_fd = -1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200571 fail_fd:
572 p->pref = 0;
573 return 0;
574}
575
576/*
577 * Termination of the speculative epoll() poller.
578 * Memory is released and the poller is marked as unselectable.
579 */
580REGPRM1 static void _do_term(struct poller *p)
581{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200582 free(spec_list);
583 free(epoll_events);
Willy Tarreaude99e992007-04-16 00:53:59 +0200584
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200585 if (epoll_fd >= 0) {
586 close(epoll_fd);
587 epoll_fd = -1;
588 }
Willy Tarreaude99e992007-04-16 00:53:59 +0200589
Willy Tarreaude99e992007-04-16 00:53:59 +0200590 spec_list = NULL;
591 epoll_events = NULL;
592
593 p->private = NULL;
594 p->pref = 0;
595}
596
597/*
598 * Check that the poller works.
599 * Returns 1 if OK, otherwise 0.
600 */
601REGPRM1 static int _do_test(struct poller *p)
602{
603 int fd;
604
605 fd = epoll_create(global.maxsock + 1);
606 if (fd < 0)
607 return 0;
608 close(fd);
609 return 1;
610}
611
612/*
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200613 * Recreate the epoll file descriptor after a fork(). Returns 1 if OK,
614 * otherwise 0. It will ensure that all processes will not share their
615 * epoll_fd. Some side effects were encountered because of this, such
616 * as epoll_wait() returning an FD which was previously deleted.
617 */
618REGPRM1 static int _do_fork(struct poller *p)
619{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200620 if (epoll_fd >= 0)
621 close(epoll_fd);
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200622 epoll_fd = epoll_create(global.maxsock + 1);
623 if (epoll_fd < 0)
624 return 0;
625 return 1;
626}
627
628/*
Willy Tarreaude99e992007-04-16 00:53:59 +0200629 * It is a constructor, which means that it will automatically be called before
630 * main(). This is GCC-specific but it works at least since 2.95.
631 * Special care must be taken so that it does not need any uninitialized data.
632 */
633__attribute__((constructor))
634static void _do_register(void)
635{
636 struct poller *p;
637
638 if (nbpollers >= MAX_POLLERS)
639 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200640
641 epoll_fd = -1;
Willy Tarreaude99e992007-04-16 00:53:59 +0200642 p = &pollers[nbpollers++];
643
644 p->name = "sepoll";
645 p->pref = 400;
646 p->private = NULL;
647
648 p->test = _do_test;
649 p->init = _do_init;
650 p->term = _do_term;
651 p->poll = _do_poll;
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200652 p->fork = _do_fork;
Willy Tarreaude99e992007-04-16 00:53:59 +0200653
654 p->is_set = __fd_is_set;
655 p->cond_s = p->set = __fd_set;
656 p->cond_c = p->clr = __fd_clr;
657 p->rem = __fd_rem;
658 p->clo = __fd_clo;
659}
660
661
662/*
663 * Local variables:
664 * c-indent-level: 8
665 * c-basic-offset: 8
666 * End:
667 */