blob: 1af64e543d5fe81d56712b3cc6c2a53834c86e40 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * File descriptors management functions.
3 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +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 Tarreauf817e9f2014-01-10 16:58:45 +010011 * This code implements an events cache for file descriptors. It remembers the
12 * readiness of a file descriptor after a return from poll() and the fact that
13 * an I/O attempt failed on EAGAIN. Events in the cache which are still marked
14 * ready and active are processed just as if they were reported by poll().
Willy Tarreau7be79a42012-11-11 15:02:54 +010015 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010016 * This serves multiple purposes. First, it significantly improves performance
17 * by avoiding to subscribe to polling unless absolutely necessary, so most
18 * events are processed without polling at all, especially send() which
19 * benefits from the socket buffers. Second, it is the only way to support
20 * edge-triggered pollers (eg: EPOLL_ET). And third, it enables I/O operations
21 * that are backed by invisible buffers. For example, SSL is able to read a
22 * whole socket buffer and not deliver it to the application buffer because
23 * it's full. Unfortunately, it won't be reported by a poller anymore until
24 * some new activity happens. The only way to call it again thus is to keep
25 * this readiness information in the cache and to access it without polling
26 * once the FD is enabled again.
Willy Tarreau7be79a42012-11-11 15:02:54 +010027 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010028 * One interesting feature of the cache is that it maintains the principle
29 * of speculative I/O introduced in haproxy 1.3 : the first time an event is
30 * enabled, the FD is considered as ready so that the I/O attempt is performed
31 * via the cache without polling. And the polling happens only when EAGAIN is
32 * first met. This avoids polling for HTTP requests, especially when the
33 * defer-accept mode is used. It also avoids polling for sending short data
34 * such as requests to servers or short responses to clients.
35 *
36 * The cache consists in a list of active events and a list of updates.
37 * Active events are events that are expected to come and that we must report
38 * to the application until it asks to stop or asks to poll. Updates are new
39 * requests for changing an FD state. Updates are the only way to create new
40 * events. This is important because it means that the number of cached events
41 * cannot increase between updates and will only grow one at a time while
42 * processing updates. All updates must always be processed, though events
43 * might be processed by small batches if required.
Willy Tarreau7be79a42012-11-11 15:02:54 +010044 *
45 * There is no direct link between the FD and the updates list. There is only a
46 * bit in the fdtab[] to indicate than a file descriptor is already present in
47 * the updates list. Once an fd is present in the updates list, it will have to
48 * be considered even if its changes are reverted in the middle or if the fd is
49 * replaced.
50 *
51 * It is important to understand that as long as all expected events are
52 * processed, they might starve the polled events, especially because polled
Willy Tarreauf817e9f2014-01-10 16:58:45 +010053 * I/O starvation quickly induces more cached I/O. One solution to this
Willy Tarreau7be79a42012-11-11 15:02:54 +010054 * consists in only processing a part of the events at once, but one drawback
Willy Tarreauf817e9f2014-01-10 16:58:45 +010055 * is that unhandled events will still wake the poller up. Using an edge-
56 * triggered poller such as EPOLL_ET will solve this issue though.
Willy Tarreau7be79a42012-11-11 15:02:54 +010057 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010058 * Since we do not want to scan all the FD list to find cached I/O events,
59 * we store them in a list consisting in a linear array holding only the FD
60 * indexes right now. Note that a closed FD cannot exist in the cache, because
61 * it is closed by fd_delete() which in turn calls fd_release_cache_entry()
62 * which always removes it from the list.
Willy Tarreau7be79a42012-11-11 15:02:54 +010063 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010064 * The FD array has to hold a back reference to the cache. This reference is
65 * always valid unless the FD is not in the cache and is not updated, in which
66 * case the reference points to index 0.
Willy Tarreau7be79a42012-11-11 15:02:54 +010067 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010068 * The event state for an FD, as found in fdtab[].state, is maintained for each
69 * direction. The state field is built this way, with R bits in the low nibble
70 * and W bits in the high nibble for ease of access and debugging :
Willy Tarreau7be79a42012-11-11 15:02:54 +010071 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010072 * 7 6 5 4 3 2 1 0
73 * [ 0 | PW | RW | AW | 0 | PR | RR | AR ]
74 *
75 * A* = active *R = read
76 * P* = polled *W = write
77 * R* = ready
78 *
79 * An FD is marked "active" when there is a desire to use it.
80 * An FD is marked "polled" when it is registered in the polling.
81 * An FD is marked "ready" when it has not faced a new EAGAIN since last wake-up
82 * (it is a cache of the last EAGAIN regardless of polling changes).
Willy Tarreau7be79a42012-11-11 15:02:54 +010083 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010084 * We have 8 possible states for each direction based on these 3 flags :
Willy Tarreau7be79a42012-11-11 15:02:54 +010085 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010086 * +---+---+---+----------+---------------------------------------------+
87 * | P | R | A | State | Description |
88 * +---+---+---+----------+---------------------------------------------+
89 * | 0 | 0 | 0 | DISABLED | No activity desired, not ready. |
90 * | 0 | 0 | 1 | MUSTPOLL | Activity desired via polling. |
91 * | 0 | 1 | 0 | STOPPED | End of activity without polling. |
92 * | 0 | 1 | 1 | ACTIVE | Activity desired without polling. |
93 * | 1 | 0 | 0 | ABORT | Aborted poll(). Not frequently seen. |
94 * | 1 | 0 | 1 | POLLED | FD is being polled. |
95 * | 1 | 1 | 0 | PAUSED | FD was paused while ready (eg: buffer full) |
96 * | 1 | 1 | 1 | READY | FD was marked ready by poll() |
97 * +---+---+---+----------+---------------------------------------------+
Willy Tarreau7be79a42012-11-11 15:02:54 +010098 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010099 * The transitions are pretty simple :
100 * - fd_want_*() : set flag A
101 * - fd_stop_*() : clear flag A
102 * - fd_cant_*() : clear flag R (when facing EAGAIN)
103 * - fd_may_*() : set flag R (upon return from poll())
104 * - sync() : if (A) { if (!R) P := 1 } else { P := 0 }
105 *
106 * The PAUSED, ABORT and MUSTPOLL states are transient for level-trigerred
107 * pollers and are fixed by the sync() which happens at the beginning of the
108 * poller. For event-triggered pollers, only the MUSTPOLL state will be
109 * transient and ABORT will lead to PAUSED. The ACTIVE state is the only stable
110 * one which has P != A.
111 *
112 * The READY state is a bit special as activity on the FD might be notified
113 * both by the poller or by the cache. But it is needed for some multi-layer
114 * protocols (eg: SSL) where connection activity is not 100% linked to FD
115 * activity. Also some pollers might prefer to implement it as ACTIVE if
116 * enabling/disabling the FD is cheap. The READY and ACTIVE states are the
117 * two states for which a cache entry is allocated.
118 *
119 * The state transitions look like the diagram below. Only the 4 right states
120 * have polling enabled :
121 *
122 * (POLLED=0) (POLLED=1)
123 *
124 * +----------+ sync +-------+
125 * | DISABLED | <----- | ABORT | (READY=0, ACTIVE=0)
126 * +----------+ +-------+
127 * clr | ^ set | ^
128 * | | | |
129 * v | set v | clr
130 * +----------+ sync +--------+
131 * | MUSTPOLL | -----> | POLLED | (READY=0, ACTIVE=1)
132 * +----------+ +--------+
133 * ^ poll | ^
134 * | | |
135 * | EAGAIN v | EAGAIN
136 * +--------+ +-------+
137 * | ACTIVE | | READY | (READY=1, ACTIVE=1)
138 * +--------+ +-------+
139 * clr | ^ set | ^
140 * | | | |
141 * v | set v | clr
142 * +---------+ sync +--------+
143 * | STOPPED | <------ | PAUSED | (READY=1, ACTIVE=0)
144 * +---------+ +--------+
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145 */
146
Willy Tarreau2ff76222007-04-09 19:29:56 +0200147#include <stdio.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +0200148#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150#include <sys/types.h>
151
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200152#include <common/compat.h>
153#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154
Willy Tarreau7be79a42012-11-11 15:02:54 +0100155#include <types/global.h>
156
Willy Tarreau2a429502006-10-15 14:52:29 +0200157#include <proto/fd.h>
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200158#include <proto/log.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200159#include <proto/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160
161struct fdtab *fdtab = NULL; /* array of all the file descriptors */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200162struct fdinfo *fdinfo = NULL; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200163int totalconn; /* total # of terminated sessions */
164int actconn; /* # of active sessions */
165
Willy Tarreau4f60f162007-04-08 16:39:58 +0200166struct poller pollers[MAX_POLLERS];
167struct poller cur_poller;
168int nbpollers = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100170volatile struct fdlist fd_cache ; // FD events cache
171volatile struct fdlist fd_cache_local[MAX_THREADS]; // FD events local for each thread
172
Christopher Faulet69553fe2018-01-15 11:57:03 +0100173unsigned long fd_cache_mask = 0; // Mask of threads with events in the cache
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200174
175THREAD_LOCAL int *fd_updt = NULL; // FD updates list
176THREAD_LOCAL int fd_nbupdt = 0; // number of updates in the list
177
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100178/* adds fd <fd> to fd list <list> if it was not yet in it */
179void fd_add_to_fd_list(volatile struct fdlist *list, int fd)
180{
181 int next;
182 int new;
183 int old;
184 int last;
185
186redo_next:
187 next = fdtab[fd].cache.next;
188 /* Check that we're not already in the cache, and if not, lock us. */
189 if (next >= -2)
190 goto done;
191 if (!HA_ATOMIC_CAS(&fdtab[fd].cache.next, &next, -2))
192 goto redo_next;
193 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100194
195 new = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100196redo_last:
197 /* First, insert in the linked list */
198 last = list->last;
199 old = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100200
Olivier Houchard1ff91042018-02-08 16:03:33 +0000201 fdtab[fd].cache.prev = -2;
Willy Tarreau11559a72018-02-05 17:52:24 +0100202 /* Make sure the "prev" store is visible before we update the last entry */
203 __ha_barrier_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100204
Willy Tarreau11559a72018-02-05 17:52:24 +0100205 if (unlikely(last == -1)) {
206 /* list is empty, try to add ourselves alone so that list->last=fd */
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100207 if (unlikely(!HA_ATOMIC_CAS(&list->last, &old, new)))
208 goto redo_last;
209
210 /* list->first was necessary -1, we're guaranteed to be alone here */
211 list->first = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100212 } else {
Willy Tarreau11559a72018-02-05 17:52:24 +0100213 /* adding ourselves past the last element
214 * The CAS will only succeed if its next is -1,
215 * which means it's in the cache, and the last element.
216 */
217 if (unlikely(!HA_ATOMIC_CAS(&fdtab[last].cache.next, &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100218 goto redo_last;
Willy Tarreau11559a72018-02-05 17:52:24 +0100219
220 /* Then, update the last entry */
221 list->last = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100222 }
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100223 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100224 /* since we're alone at the end of the list and still locked(-2),
225 * we know noone tried to add past us. Mark the end of list.
226 */
Olivier Houchard1ff91042018-02-08 16:03:33 +0000227 fdtab[fd].cache.prev = last;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100228 fdtab[fd].cache.next = -1;
229 __ha_barrier_store();
230done:
231 return;
232}
233
234/* removes fd <fd> from fd list <list> */
235void fd_rm_from_fd_list(volatile struct fdlist *list, int fd)
236{
237#if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B)
238 volatile struct fdlist_entry cur_list, next_list;
239#endif
240 int old;
241 int new = -2;
242 int prev;
243 int next;
244 int last;
245
246lock_self:
247#if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW))
248 next_list.next = next_list.prev = -2;
249 cur_list = fdtab[fd].cache;
250 /* First, attempt to lock our own entries */
251 do {
252 /* The FD is not in the FD cache, give up */
253 if (unlikely(cur_list.next <= -3))
254 return;
255 if (unlikely(cur_list.prev == -2 || cur_list.next == -2))
256 goto lock_self;
257 } while (
258#ifdef HA_CAS_IS_8B
259 unlikely(!HA_ATOMIC_CAS(((void **)(void *)&fdtab[fd].cache.next), ((void **)(void *)&cur_list), (*(void **)(void *)&next_list))))
260#else
261 unlikely(!__ha_cas_dw((void *)&fdtab[fd].cache.next, (void *)&cur_list, (void *)&next_list)))
262#endif
263 ;
264 next = cur_list.next;
265 prev = cur_list.prev;
266
267#else
268lock_self_next:
Willy Tarreau82106982018-02-06 12:00:27 +0100269 next = ({ volatile int *next = &fdtab[fd].cache.next; *next; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100270 if (next == -2)
271 goto lock_self_next;
272 if (next <= -3)
273 goto done;
274 if (unlikely(!HA_ATOMIC_CAS(&fdtab[fd].cache.next, &next, -2)))
275 goto lock_self_next;
276lock_self_prev:
Willy Tarreau82106982018-02-06 12:00:27 +0100277 prev = ({ volatile int *prev = &fdtab[fd].cache.prev; *prev; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100278 if (prev == -2)
279 goto lock_self_prev;
280 if (unlikely(!HA_ATOMIC_CAS(&fdtab[fd].cache.prev, &prev, -2)))
281 goto lock_self_prev;
282#endif
283 __ha_barrier_store();
284
285 /* Now, lock the entries of our neighbours */
286 if (likely(prev != -1)) {
287redo_prev:
288 old = fd;
289
290 if (unlikely(!HA_ATOMIC_CAS(&fdtab[prev].cache.next, &old, new))) {
291 if (unlikely(old == -2)) {
292 /* Neighbour already locked, give up and
293 * retry again once he's done
294 */
295 fdtab[fd].cache.prev = prev;
296 __ha_barrier_store();
297 fdtab[fd].cache.next = next;
298 __ha_barrier_store();
299 goto lock_self;
300 }
301 goto redo_prev;
302 }
303 }
304 if (likely(next != -1)) {
305redo_next:
306 old = fd;
307 if (unlikely(!HA_ATOMIC_CAS(&fdtab[next].cache.prev, &old, new))) {
308 if (unlikely(old == -2)) {
309 /* Neighbour already locked, give up and
310 * retry again once he's done
311 */
312 if (prev != -1) {
313 fdtab[prev].cache.next = fd;
314 __ha_barrier_store();
315 }
316 fdtab[fd].cache.prev = prev;
317 __ha_barrier_store();
318 fdtab[fd].cache.next = next;
319 __ha_barrier_store();
320 goto lock_self;
321 }
322 goto redo_next;
323 }
324 }
325 if (list->first == fd)
326 list->first = next;
327 __ha_barrier_store();
328 last = list->last;
329 while (unlikely(last == fd && (!HA_ATOMIC_CAS(&list->last, &last, prev))))
330 __ha_compiler_barrier();
331 /* Make sure we let other threads know we're no longer in cache,
332 * before releasing our neighbours.
333 */
334 __ha_barrier_store();
335 if (likely(prev != -1))
336 fdtab[prev].cache.next = next;
337 __ha_barrier_store();
338 if (likely(next != -1))
339 fdtab[next].cache.prev = prev;
340 __ha_barrier_store();
341 /* Ok, now we're out of the fd cache */
342 fdtab[fd].cache.next = -(next + 4);
343 __ha_barrier_store();
344done:
345 return;
346}
347
Willy Tarreau173d9952018-01-26 21:48:23 +0100348/* Deletes an FD from the fdsets.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200349 * The file descriptor is also closed.
350 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200351static void fd_dodelete(int fd, int do_close)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100353 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauad38ace2013-12-15 14:19:38 +0100354 if (fdtab[fd].linger_risk) {
355 /* this is generally set when connecting to servers */
356 setsockopt(fd, SOL_SOCKET, SO_LINGER,
357 (struct linger *) &nolinger, sizeof(struct linger));
358 }
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100359 if (cur_poller.clo)
360 cur_poller.clo(fd);
361
Willy Tarreau899d9572014-01-25 19:20:35 +0100362 fd_release_cache_entry(fd);
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100363 fdtab[fd].state = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100364
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200365 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
366 fdinfo[fd].port_range = NULL;
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200367 fdtab[fd].owner = NULL;
Willy Tarreauebc78d72018-01-20 23:53:50 +0100368 fdtab[fd].update_mask &= ~tid_bit;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100369 fdtab[fd].thread_mask = 0;
Willy Tarreauc9c83782018-01-17 18:44:46 +0100370 if (do_close) {
371 fdtab[fd].polled_mask = 0;
Christopher Fauletd531f882017-06-01 16:55:03 +0200372 close(fd);
Willy Tarreauc9c83782018-01-17 18:44:46 +0100373 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100374 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200376
Willy Tarreau173d9952018-01-26 21:48:23 +0100377/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200378 * The file descriptor is also closed.
379 */
380void fd_delete(int fd)
381{
382 fd_dodelete(fd, 1);
383}
384
Willy Tarreau173d9952018-01-26 21:48:23 +0100385/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200386 * The file descriptor is kept open.
387 */
388void fd_remove(int fd)
389{
390 fd_dodelete(fd, 0);
391}
392
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100393static inline void fdlist_process_cached_events(volatile struct fdlist *fdlist)
Willy Tarreau09f24562012-11-11 16:43:45 +0100394{
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100395 int fd, old_fd, e;
Willy Tarreau09f24562012-11-11 16:43:45 +0100396
Olivier Houchard12568362018-01-31 18:07:29 +0100397 for (old_fd = fd = fdlist->first; fd != -1; fd = fdtab[fd].cache.next) {
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100398 if (fd == -2) {
399 fd = old_fd;
400 continue;
401 } else if (fd <= -3)
402 fd = -fd - 4;
403 if (fd == -1)
404 break;
405 old_fd = fd;
406 if (!(fdtab[fd].thread_mask & tid_bit))
407 continue;
Olivier Houchard12568362018-01-31 18:07:29 +0100408 if (fdtab[fd].cache.next < -3)
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100409 continue;
Christopher Faulet69553fe2018-01-15 11:57:03 +0100410
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100411 HA_ATOMIC_OR(&fd_cache_mask, tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100412 if (HA_SPIN_TRYLOCK(FD_LOCK, &fdtab[fd].lock)) {
413 activity[tid].fd_lock++;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100414 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100415 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200416
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200417 e = fdtab[fd].state;
Willy Tarreau09f24562012-11-11 16:43:45 +0100418 fdtab[fd].ev &= FD_POLL_STICKY;
419
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100420 if ((e & (FD_EV_READY_R | FD_EV_ACTIVE_R)) == (FD_EV_READY_R | FD_EV_ACTIVE_R))
Willy Tarreau09f24562012-11-11 16:43:45 +0100421 fdtab[fd].ev |= FD_POLL_IN;
422
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100423 if ((e & (FD_EV_READY_W | FD_EV_ACTIVE_W)) == (FD_EV_READY_W | FD_EV_ACTIVE_W))
Willy Tarreau09f24562012-11-11 16:43:45 +0100424 fdtab[fd].ev |= FD_POLL_OUT;
425
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200426 if (fdtab[fd].iocb && fdtab[fd].owner && fdtab[fd].ev) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100427 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreau09f24562012-11-11 16:43:45 +0100428 fdtab[fd].iocb(fd);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200429 }
430 else {
Willy Tarreau5be2f352014-11-19 19:43:05 +0100431 fd_release_cache_entry(fd);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100432 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200433 }
Willy Tarreau09f24562012-11-11 16:43:45 +0100434 }
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100435}
436
437/* Scan and process the cached events. This should be called right after
438 * the poller. The loop may cause new entries to be created, for example
439 * if a listener causes an accept() to initiate a new incoming connection
440 * wanting to attempt an recv().
441 */
442void fd_process_cached_events()
443{
444 HA_ATOMIC_AND(&fd_cache_mask, ~tid_bit);
445 fdlist_process_cached_events(&fd_cache_local[tid]);
446 fdlist_process_cached_events(&fd_cache);
Willy Tarreau09f24562012-11-11 16:43:45 +0100447}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200448
Willy Tarreau4f60f162007-04-08 16:39:58 +0200449/* disable the specified poller */
450void disable_poller(const char *poller_name)
451{
452 int p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453
Willy Tarreau4f60f162007-04-08 16:39:58 +0200454 for (p = 0; p < nbpollers; p++)
455 if (strcmp(pollers[p].name, poller_name) == 0)
456 pollers[p].pref = 0;
457}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200459/* Initialize the pollers per thread */
460static int init_pollers_per_thread()
461{
462 if ((fd_updt = calloc(global.maxsock, sizeof(*fd_updt))) == NULL)
463 return 0;
464 return 1;
465}
466
467/* Deinitialize the pollers per thread */
468static void deinit_pollers_per_thread()
469{
470 free(fd_updt);
471 fd_updt = NULL;
472}
473
Willy Tarreaubaaee002006-06-26 02:48:02 +0200474/*
Willy Tarreau4f60f162007-04-08 16:39:58 +0200475 * Initialize the pollers till the best one is found.
476 * If none works, returns 0, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200477 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200478int init_pollers()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200479{
Willy Tarreau4f60f162007-04-08 16:39:58 +0200480 int p;
481 struct poller *bp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200482
Christopher Faulet63fe6522017-08-31 17:52:09 +0200483 if ((fdtab = calloc(global.maxsock, sizeof(struct fdtab))) == NULL)
484 goto fail_tab;
485
486 if ((fdinfo = calloc(global.maxsock, sizeof(struct fdinfo))) == NULL)
487 goto fail_info;
488
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100489 fd_cache.first = fd_cache.last = -1;
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200490 hap_register_per_thread_init(init_pollers_per_thread);
491 hap_register_per_thread_deinit(deinit_pollers_per_thread);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200492
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100493 for (p = 0; p < global.maxsock; p++) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100494 HA_SPIN_INIT(&fdtab[p].lock);
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100495 /* Mark the fd as out of the fd cache */
Olivier Houchard12568362018-01-31 18:07:29 +0100496 fdtab[p].cache.next = -3;
497 fdtab[p].cache.next = -3;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100498 }
499 for (p = 0; p < global.nbthread; p++)
500 fd_cache_local[p].first = fd_cache_local[p].last = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200501
Willy Tarreau4f60f162007-04-08 16:39:58 +0200502 do {
503 bp = NULL;
504 for (p = 0; p < nbpollers; p++)
505 if (!bp || (pollers[p].pref > bp->pref))
506 bp = &pollers[p];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200507
Willy Tarreau4f60f162007-04-08 16:39:58 +0200508 if (!bp || bp->pref == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200509 break;
510
Willy Tarreau4f60f162007-04-08 16:39:58 +0200511 if (bp->init(bp)) {
512 memcpy(&cur_poller, bp, sizeof(*bp));
513 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200514 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200515 } while (!bp || bp->pref == 0);
516 return 0;
Willy Tarreau7be79a42012-11-11 15:02:54 +0100517
Willy Tarreau16f649c2014-01-25 19:10:48 +0100518 fail_cache:
Christopher Faulet63fe6522017-08-31 17:52:09 +0200519 free(fdinfo);
520 fail_info:
521 free(fdtab);
522 fail_tab:
Willy Tarreau7be79a42012-11-11 15:02:54 +0100523 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200524}
525
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526/*
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200527 * Deinitialize the pollers.
528 */
529void deinit_pollers() {
530
531 struct poller *bp;
532 int p;
533
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200534 for (p = 0; p < global.maxsock; p++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100535 HA_SPIN_DESTROY(&fdtab[p].lock);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200536
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200537 for (p = 0; p < nbpollers; p++) {
538 bp = &pollers[p];
539
540 if (bp && bp->pref)
541 bp->term(bp);
542 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200543
Christopher Faulet63fe6522017-08-31 17:52:09 +0200544 free(fdinfo); fdinfo = NULL;
545 free(fdtab); fdtab = NULL;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200546}
547
548/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200549 * Lists the known pollers on <out>.
550 * Should be performed only before initialization.
551 */
552int list_pollers(FILE *out)
553{
554 int p;
555 int last, next;
556 int usable;
557 struct poller *bp;
558
559 fprintf(out, "Available polling systems :\n");
560
561 usable = 0;
562 bp = NULL;
563 last = next = -1;
564 while (1) {
565 for (p = 0; p < nbpollers; p++) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200566 if ((next < 0 || pollers[p].pref > next)
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100567 && (last < 0 || pollers[p].pref < last)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200568 next = pollers[p].pref;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100569 if (!bp || (pollers[p].pref > bp->pref))
570 bp = &pollers[p];
571 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200572 }
573
574 if (next == -1)
575 break;
576
577 for (p = 0; p < nbpollers; p++) {
578 if (pollers[p].pref == next) {
579 fprintf(out, " %10s : ", pollers[p].name);
580 if (pollers[p].pref == 0)
581 fprintf(out, "disabled, ");
582 else
583 fprintf(out, "pref=%3d, ", pollers[p].pref);
584 if (pollers[p].test(&pollers[p])) {
585 fprintf(out, " test result OK");
586 if (next > 0)
587 usable++;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100588 } else {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200589 fprintf(out, " test result FAILED");
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100590 if (bp == &pollers[p])
591 bp = NULL;
592 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200593 fprintf(out, "\n");
594 }
595 }
596 last = next;
597 next = -1;
598 };
599 fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none");
600 return 0;
601}
602
603/*
604 * Some pollers may lose their connection after a fork(). It may be necessary
605 * to create initialize part of them again. Returns 0 in case of failure,
606 * otherwise 1. The fork() function may be NULL if unused. In case of error,
607 * the the current poller is destroyed and the caller is responsible for trying
608 * another one by calling init_pollers() again.
609 */
610int fork_poller()
611{
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200612 int fd;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100613 for (fd = 0; fd < global.maxsock; fd++) {
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200614 if (fdtab[fd].owner) {
615 fdtab[fd].cloned = 1;
616 }
617 }
618
Willy Tarreau2ff76222007-04-09 19:29:56 +0200619 if (cur_poller.fork) {
620 if (cur_poller.fork(&cur_poller))
621 return 1;
622 cur_poller.term(&cur_poller);
623 return 0;
624 }
625 return 1;
626}
627
628/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 * Local variables:
630 * c-indent-level: 8
631 * c-basic-offset: 8
632 * End:
633 */