blob: 7fdd56b40c24daf78340e31be64fdda941f32f9d [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>
Olivier Houchard79321b92018-07-26 17:55:11 +0200150#include <fcntl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151#include <sys/types.h>
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100152#include <sys/resource.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
Willy Tarreau9188ac62019-02-21 22:12:47 +0100154#if defined(ENABLE_POLL)
155#include <poll.h>
156#include <errno.h>
157#endif
158
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200159#include <common/compat.h>
160#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161
Willy Tarreau7be79a42012-11-11 15:02:54 +0100162#include <types/global.h>
163
Willy Tarreau2a429502006-10-15 14:52:29 +0200164#include <proto/fd.h>
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200165#include <proto/log.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200166#include <proto/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167
168struct fdtab *fdtab = NULL; /* array of all the file descriptors */
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200169unsigned long *polled_mask = NULL; /* Array for the polled_mask of each fd */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200170struct fdinfo *fdinfo = NULL; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200171int totalconn; /* total # of terminated sessions */
172int actconn; /* # of active sessions */
173
Willy Tarreau4f60f162007-04-08 16:39:58 +0200174struct poller pollers[MAX_POLLERS];
175struct poller cur_poller;
176int nbpollers = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100178volatile struct fdlist fd_cache ; // FD events cache
179volatile struct fdlist fd_cache_local[MAX_THREADS]; // FD events local for each thread
Olivier Houchard6b96f722018-04-25 16:58:25 +0200180volatile struct fdlist update_list; // Global update list
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100181
Christopher Faulet69553fe2018-01-15 11:57:03 +0100182unsigned long fd_cache_mask = 0; // Mask of threads with events in the cache
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200183
184THREAD_LOCAL int *fd_updt = NULL; // FD updates list
185THREAD_LOCAL int fd_nbupdt = 0; // number of updates in the list
Olivier Houchard79321b92018-07-26 17:55:11 +0200186THREAD_LOCAL int poller_rd_pipe = -1; // Pipe to wake the thread
187int poller_wr_pipe[MAX_THREADS]; // Pipe to wake the threads
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200188
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200189#define _GET_NEXT(fd, off) ((struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->next
190#define _GET_PREV(fd, off) ((struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->prev
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100191/* adds fd <fd> to fd list <list> if it was not yet in it */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200192void fd_add_to_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100193{
194 int next;
195 int new;
196 int old;
197 int last;
198
199redo_next:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200200 next = _GET_NEXT(fd, off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100201 /* Check that we're not already in the cache, and if not, lock us. */
202 if (next >= -2)
203 goto done;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200204 if (!HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100205 goto redo_next;
206 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100207
208 new = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100209redo_last:
210 /* First, insert in the linked list */
211 last = list->last;
212 old = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100213
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200214 _GET_PREV(fd, off) = -2;
Willy Tarreau11559a72018-02-05 17:52:24 +0100215 /* Make sure the "prev" store is visible before we update the last entry */
216 __ha_barrier_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100217
Willy Tarreau11559a72018-02-05 17:52:24 +0100218 if (unlikely(last == -1)) {
219 /* list is empty, try to add ourselves alone so that list->last=fd */
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100220 if (unlikely(!HA_ATOMIC_CAS(&list->last, &old, new)))
221 goto redo_last;
222
223 /* list->first was necessary -1, we're guaranteed to be alone here */
224 list->first = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100225 } else {
Willy Tarreau11559a72018-02-05 17:52:24 +0100226 /* adding ourselves past the last element
227 * The CAS will only succeed if its next is -1,
228 * which means it's in the cache, and the last element.
229 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200230 if (unlikely(!HA_ATOMIC_CAS(&_GET_NEXT(last, off), &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100231 goto redo_last;
Willy Tarreau11559a72018-02-05 17:52:24 +0100232
233 /* Then, update the last entry */
234 list->last = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100235 }
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100236 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100237 /* since we're alone at the end of the list and still locked(-2),
238 * we know noone tried to add past us. Mark the end of list.
239 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200240 _GET_PREV(fd, off) = last;
241 _GET_NEXT(fd, off) = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100242 __ha_barrier_store();
243done:
244 return;
245}
246
247/* removes fd <fd> from fd list <list> */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200248void fd_rm_from_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100249{
250#if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B)
251 volatile struct fdlist_entry cur_list, next_list;
252#endif
253 int old;
254 int new = -2;
255 int prev;
256 int next;
257 int last;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100258lock_self:
259#if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW))
260 next_list.next = next_list.prev = -2;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200261 cur_list = *(volatile struct fdlist_entry *)(((char *)&fdtab[fd]) + off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100262 /* First, attempt to lock our own entries */
263 do {
264 /* The FD is not in the FD cache, give up */
265 if (unlikely(cur_list.next <= -3))
266 return;
267 if (unlikely(cur_list.prev == -2 || cur_list.next == -2))
268 goto lock_self;
269 } while (
270#ifdef HA_CAS_IS_8B
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200271 unlikely(!HA_ATOMIC_CAS(((void **)(void *)&_GET_NEXT(fd, off)), ((void **)(void *)&cur_list), (*(void **)(void *)&next_list))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100272#else
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200273 unlikely(!__ha_cas_dw((void *)&_GET_NEXT(fd, off), (void *)&cur_list, (void *)&next_list)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100274#endif
275 ;
276 next = cur_list.next;
277 prev = cur_list.prev;
278
279#else
280lock_self_next:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200281 next = ({ volatile int *next = &_GET_NEXT(fd, off); *next; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100282 if (next == -2)
283 goto lock_self_next;
284 if (next <= -3)
285 goto done;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200286 if (unlikely(!HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100287 goto lock_self_next;
288lock_self_prev:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200289 prev = ({ volatile int *prev = &_GET_PREV(fd, off); *prev; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100290 if (prev == -2)
291 goto lock_self_prev;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200292 if (unlikely(!HA_ATOMIC_CAS(&_GET_PREV(fd, off), &prev, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100293 goto lock_self_prev;
294#endif
295 __ha_barrier_store();
296
297 /* Now, lock the entries of our neighbours */
298 if (likely(prev != -1)) {
299redo_prev:
300 old = fd;
301
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200302 if (unlikely(!HA_ATOMIC_CAS(&_GET_NEXT(prev, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100303 if (unlikely(old == -2)) {
304 /* Neighbour already locked, give up and
305 * retry again once he's done
306 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200307 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100308 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200309 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100310 __ha_barrier_store();
311 goto lock_self;
312 }
313 goto redo_prev;
314 }
315 }
316 if (likely(next != -1)) {
317redo_next:
318 old = fd;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200319 if (unlikely(!HA_ATOMIC_CAS(&_GET_PREV(next, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100320 if (unlikely(old == -2)) {
321 /* Neighbour already locked, give up and
322 * retry again once he's done
323 */
324 if (prev != -1) {
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200325 _GET_NEXT(prev, off) = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100326 __ha_barrier_store();
327 }
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200328 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100329 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200330 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100331 __ha_barrier_store();
332 goto lock_self;
333 }
334 goto redo_next;
335 }
336 }
337 if (list->first == fd)
338 list->first = next;
339 __ha_barrier_store();
340 last = list->last;
341 while (unlikely(last == fd && (!HA_ATOMIC_CAS(&list->last, &last, prev))))
342 __ha_compiler_barrier();
343 /* Make sure we let other threads know we're no longer in cache,
344 * before releasing our neighbours.
345 */
346 __ha_barrier_store();
347 if (likely(prev != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200348 _GET_NEXT(prev, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100349 __ha_barrier_store();
350 if (likely(next != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200351 _GET_PREV(next, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100352 __ha_barrier_store();
353 /* Ok, now we're out of the fd cache */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200354 _GET_NEXT(fd, off) = -(next + 4);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100355 __ha_barrier_store();
356done:
357 return;
358}
359
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200360#undef _GET_NEXT
361#undef _GET_PREV
362
Willy Tarreau173d9952018-01-26 21:48:23 +0100363/* Deletes an FD from the fdsets.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200364 * The file descriptor is also closed.
365 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200366static void fd_dodelete(int fd, int do_close)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367{
Willy Tarreau87d54a92018-10-15 09:44:46 +0200368 unsigned long locked = atleast2(fdtab[fd].thread_mask);
369
370 if (locked)
371 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauad38ace2013-12-15 14:19:38 +0100372 if (fdtab[fd].linger_risk) {
373 /* this is generally set when connecting to servers */
374 setsockopt(fd, SOL_SOCKET, SO_LINGER,
375 (struct linger *) &nolinger, sizeof(struct linger));
376 }
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100377 if (cur_poller.clo)
378 cur_poller.clo(fd);
379
Willy Tarreau899d9572014-01-25 19:20:35 +0100380 fd_release_cache_entry(fd);
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100381 fdtab[fd].state = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100382
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200383 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
384 fdinfo[fd].port_range = NULL;
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200385 fdtab[fd].owner = NULL;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100386 fdtab[fd].thread_mask = 0;
Willy Tarreauc9c83782018-01-17 18:44:46 +0100387 if (do_close) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200388 polled_mask[fd] = 0;
Christopher Fauletd531f882017-06-01 16:55:03 +0200389 close(fd);
Willy Tarreauc9c83782018-01-17 18:44:46 +0100390 }
Willy Tarreau87d54a92018-10-15 09:44:46 +0200391 if (locked)
392 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200394
Willy Tarreau173d9952018-01-26 21:48:23 +0100395/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200396 * The file descriptor is also closed.
397 */
398void fd_delete(int fd)
399{
400 fd_dodelete(fd, 1);
401}
402
Willy Tarreau173d9952018-01-26 21:48:23 +0100403/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200404 * The file descriptor is kept open.
405 */
406void fd_remove(int fd)
407{
408 fd_dodelete(fd, 0);
409}
410
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100411static inline void fdlist_process_cached_events(volatile struct fdlist *fdlist)
Willy Tarreau09f24562012-11-11 16:43:45 +0100412{
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100413 int fd, old_fd, e;
Willy Tarreau09f24562012-11-11 16:43:45 +0100414
Olivier Houchard12568362018-01-31 18:07:29 +0100415 for (old_fd = fd = fdlist->first; fd != -1; fd = fdtab[fd].cache.next) {
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100416 if (fd == -2) {
417 fd = old_fd;
418 continue;
419 } else if (fd <= -3)
420 fd = -fd - 4;
421 if (fd == -1)
422 break;
423 old_fd = fd;
424 if (!(fdtab[fd].thread_mask & tid_bit))
425 continue;
Olivier Houchard12568362018-01-31 18:07:29 +0100426 if (fdtab[fd].cache.next < -3)
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100427 continue;
Christopher Faulet69553fe2018-01-15 11:57:03 +0100428
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100429 HA_ATOMIC_OR(&fd_cache_mask, tid_bit);
Willy Tarreau87d54a92018-10-15 09:44:46 +0200430 if (atleast2(fdtab[fd].thread_mask) && HA_SPIN_TRYLOCK(FD_LOCK, &fdtab[fd].lock)) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100431 activity[tid].fd_lock++;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100432 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100433 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200434
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200435 e = fdtab[fd].state;
Willy Tarreau09f24562012-11-11 16:43:45 +0100436 fdtab[fd].ev &= FD_POLL_STICKY;
437
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100438 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 +0100439 fdtab[fd].ev |= FD_POLL_IN;
440
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100441 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 +0100442 fdtab[fd].ev |= FD_POLL_OUT;
443
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200444 if (fdtab[fd].iocb && fdtab[fd].owner && fdtab[fd].ev) {
Willy Tarreau87d54a92018-10-15 09:44:46 +0200445 if (atleast2(fdtab[fd].thread_mask))
446 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreau09f24562012-11-11 16:43:45 +0100447 fdtab[fd].iocb(fd);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200448 }
449 else {
Willy Tarreau5be2f352014-11-19 19:43:05 +0100450 fd_release_cache_entry(fd);
Willy Tarreau87d54a92018-10-15 09:44:46 +0200451 if (atleast2(fdtab[fd].thread_mask))
452 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200453 }
Willy Tarreau09f24562012-11-11 16:43:45 +0100454 }
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100455}
456
457/* Scan and process the cached events. This should be called right after
458 * the poller. The loop may cause new entries to be created, for example
459 * if a listener causes an accept() to initiate a new incoming connection
460 * wanting to attempt an recv().
461 */
462void fd_process_cached_events()
463{
464 HA_ATOMIC_AND(&fd_cache_mask, ~tid_bit);
465 fdlist_process_cached_events(&fd_cache_local[tid]);
466 fdlist_process_cached_events(&fd_cache);
Willy Tarreau09f24562012-11-11 16:43:45 +0100467}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468
Willy Tarreau9188ac62019-02-21 22:12:47 +0100469#if defined(ENABLE_POLL)
470/* This is a portable implementation of closefrom(). It closes all open file
471 * descriptors starting at <start> and above. It relies on the fact that poll()
472 * will return POLLNVAL for each invalid (hence close) file descriptor passed
473 * in argument in order to skip them. It acts with batches of FDs and will
474 * typically perform one poll() call per 1024 FDs so the overhead is low in
475 * case all FDs have to be closed.
476 */
477void my_closefrom(int start)
478{
479 struct pollfd poll_events[1024];
480 struct rlimit limit;
481 int nbfds, fd, ret, idx;
482 int step, next;
483
484 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
485 step = nbfds = limit.rlim_cur;
486 else
487 step = nbfds = 0;
488
489 if (nbfds <= 0) {
490 /* set safe limit */
491 nbfds = 1024;
492 step = 256;
493 }
494
495 if (step > sizeof(poll_events) / sizeof(poll_events[0]))
496 step = sizeof(poll_events) / sizeof(poll_events[0]);
497
498 while (start < nbfds) {
499 next = (start / step + 1) * step;
500
501 for (fd = start; fd < next && fd < nbfds; fd++) {
502 poll_events[fd - start].fd = fd;
503 poll_events[fd - start].events = 0;
504 }
505
506 do {
507 ret = poll(poll_events, fd - start, 0);
508 if (ret >= 0)
509 break;
510 } while (errno == EAGAIN || errno == EINTR || errno == ENOMEM);
511
Willy Tarreaub8e602c2019-02-22 09:07:42 +0100512 if (ret)
513 ret = fd - start;
514
Willy Tarreau9188ac62019-02-21 22:12:47 +0100515 for (idx = 0; idx < ret; idx++) {
516 if (poll_events[idx].revents & POLLNVAL)
517 continue; /* already closed */
518
519 fd = poll_events[idx].fd;
520 close(fd);
521 }
522 start = next;
523 }
524}
525
526#else // defined(ENABLE_POLL)
527
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100528/* This is a portable implementation of closefrom(). It closes all open file
529 * descriptors starting at <start> and above. This is a naive version for use
530 * when the operating system provides no alternative.
531 */
532void my_closefrom(int start)
533{
534 struct rlimit limit;
535 int nbfds;
536
537 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
538 nbfds = limit.rlim_cur;
539 else
540 nbfds = 0;
541
542 if (nbfds <= 0)
543 nbfds = 1024; /* safe limit */
544
545 while (start < nbfds)
546 close(start++);
547}
Willy Tarreau9188ac62019-02-21 22:12:47 +0100548#endif // defined(ENABLE_POLL)
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100549
Willy Tarreau4f60f162007-04-08 16:39:58 +0200550/* disable the specified poller */
551void disable_poller(const char *poller_name)
552{
553 int p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554
Willy Tarreau4f60f162007-04-08 16:39:58 +0200555 for (p = 0; p < nbpollers; p++)
556 if (strcmp(pollers[p].name, poller_name) == 0)
557 pollers[p].pref = 0;
558}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200559
Olivier Houchard79321b92018-07-26 17:55:11 +0200560void poller_pipe_io_handler(int fd)
561{
562 char buf[1024];
563 /* Flush the pipe */
564 while (read(fd, buf, sizeof(buf)) > 0);
565 fd_cant_recv(fd);
566}
567
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200568/* Initialize the pollers per thread */
569static int init_pollers_per_thread()
570{
Olivier Houchard79321b92018-07-26 17:55:11 +0200571 int mypipe[2];
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200572 if ((fd_updt = calloc(global.maxsock, sizeof(*fd_updt))) == NULL)
573 return 0;
Olivier Houchard79321b92018-07-26 17:55:11 +0200574 if (pipe(mypipe) < 0) {
575 free(fd_updt);
576 fd_updt = NULL;
577 return 0;
578 }
579 poller_rd_pipe = mypipe[0];
580 poller_wr_pipe[tid] = mypipe[1];
581 fcntl(poller_rd_pipe, F_SETFL, O_NONBLOCK);
582 fd_insert(poller_rd_pipe, poller_pipe_io_handler, poller_pipe_io_handler,
583 tid_bit);
584 fd_want_recv(poller_rd_pipe);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200585 return 1;
586}
587
588/* Deinitialize the pollers per thread */
589static void deinit_pollers_per_thread()
590{
591 free(fd_updt);
592 fd_updt = NULL;
William Lallemand808e1b72018-12-15 22:34:31 +0100593
594 /* rd and wr are init at the same place, but only rd is init to -1, so
595 we rely to rd to close. */
596 if (poller_rd_pipe > -1) {
597 close(poller_rd_pipe);
598 poller_rd_pipe = -1;
599 close(poller_wr_pipe[tid]);
600 poller_wr_pipe[tid] = -1;
601 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200602}
603
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604/*
Willy Tarreau4f60f162007-04-08 16:39:58 +0200605 * Initialize the pollers till the best one is found.
606 * If none works, returns 0, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200607 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200608int init_pollers()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200609{
Willy Tarreau4f60f162007-04-08 16:39:58 +0200610 int p;
611 struct poller *bp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200612
Christopher Faulet63fe6522017-08-31 17:52:09 +0200613 if ((fdtab = calloc(global.maxsock, sizeof(struct fdtab))) == NULL)
614 goto fail_tab;
615
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200616 if ((polled_mask = calloc(global.maxsock, sizeof(unsigned long))) == NULL)
617 goto fail_polledmask;
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000618
Christopher Faulet63fe6522017-08-31 17:52:09 +0200619 if ((fdinfo = calloc(global.maxsock, sizeof(struct fdinfo))) == NULL)
620 goto fail_info;
621
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100622 fd_cache.first = fd_cache.last = -1;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200623 update_list.first = update_list.last = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100625 for (p = 0; p < global.maxsock; p++) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100626 HA_SPIN_INIT(&fdtab[p].lock);
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100627 /* Mark the fd as out of the fd cache */
Olivier Houchard12568362018-01-31 18:07:29 +0100628 fdtab[p].cache.next = -3;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200629 fdtab[p].update.next = -3;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100630 }
631 for (p = 0; p < global.nbthread; p++)
632 fd_cache_local[p].first = fd_cache_local[p].last = -1;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200633
Willy Tarreau4f60f162007-04-08 16:39:58 +0200634 do {
635 bp = NULL;
636 for (p = 0; p < nbpollers; p++)
637 if (!bp || (pollers[p].pref > bp->pref))
638 bp = &pollers[p];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200639
Willy Tarreau4f60f162007-04-08 16:39:58 +0200640 if (!bp || bp->pref == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200641 break;
642
Willy Tarreau4f60f162007-04-08 16:39:58 +0200643 if (bp->init(bp)) {
644 memcpy(&cur_poller, bp, sizeof(*bp));
645 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200646 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200647 } while (!bp || bp->pref == 0);
Willy Tarreau7be79a42012-11-11 15:02:54 +0100648
Christopher Faulet63fe6522017-08-31 17:52:09 +0200649 free(fdinfo);
650 fail_info:
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200651 free(polled_mask);
652 fail_polledmask:
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000653 free(fdtab);
654 fail_tab:
Willy Tarreau7be79a42012-11-11 15:02:54 +0100655 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200656}
657
Willy Tarreaubaaee002006-06-26 02:48:02 +0200658/*
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200659 * Deinitialize the pollers.
660 */
661void deinit_pollers() {
662
663 struct poller *bp;
664 int p;
665
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200666 for (p = 0; p < global.maxsock; p++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100667 HA_SPIN_DESTROY(&fdtab[p].lock);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200668
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200669 for (p = 0; p < nbpollers; p++) {
670 bp = &pollers[p];
671
672 if (bp && bp->pref)
673 bp->term(bp);
674 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200675
Christopher Faulet63fe6522017-08-31 17:52:09 +0200676 free(fdinfo); fdinfo = NULL;
677 free(fdtab); fdtab = NULL;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200678 free(polled_mask); polled_mask = NULL;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200679}
680
681/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200682 * Lists the known pollers on <out>.
683 * Should be performed only before initialization.
684 */
685int list_pollers(FILE *out)
686{
687 int p;
688 int last, next;
689 int usable;
690 struct poller *bp;
691
692 fprintf(out, "Available polling systems :\n");
693
694 usable = 0;
695 bp = NULL;
696 last = next = -1;
697 while (1) {
698 for (p = 0; p < nbpollers; p++) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200699 if ((next < 0 || pollers[p].pref > next)
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100700 && (last < 0 || pollers[p].pref < last)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200701 next = pollers[p].pref;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100702 if (!bp || (pollers[p].pref > bp->pref))
703 bp = &pollers[p];
704 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200705 }
706
707 if (next == -1)
708 break;
709
710 for (p = 0; p < nbpollers; p++) {
711 if (pollers[p].pref == next) {
712 fprintf(out, " %10s : ", pollers[p].name);
713 if (pollers[p].pref == 0)
714 fprintf(out, "disabled, ");
715 else
716 fprintf(out, "pref=%3d, ", pollers[p].pref);
717 if (pollers[p].test(&pollers[p])) {
718 fprintf(out, " test result OK");
719 if (next > 0)
720 usable++;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100721 } else {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200722 fprintf(out, " test result FAILED");
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100723 if (bp == &pollers[p])
724 bp = NULL;
725 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200726 fprintf(out, "\n");
727 }
728 }
729 last = next;
730 next = -1;
731 };
732 fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none");
733 return 0;
734}
735
736/*
737 * Some pollers may lose their connection after a fork(). It may be necessary
738 * to create initialize part of them again. Returns 0 in case of failure,
739 * otherwise 1. The fork() function may be NULL if unused. In case of error,
740 * the the current poller is destroyed and the caller is responsible for trying
741 * another one by calling init_pollers() again.
742 */
743int fork_poller()
744{
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200745 int fd;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100746 for (fd = 0; fd < global.maxsock; fd++) {
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200747 if (fdtab[fd].owner) {
748 fdtab[fd].cloned = 1;
749 }
750 }
751
Willy Tarreau2ff76222007-04-09 19:29:56 +0200752 if (cur_poller.fork) {
753 if (cur_poller.fork(&cur_poller))
754 return 1;
755 cur_poller.term(&cur_poller);
756 return 0;
757 }
758 return 1;
759}
760
Willy Tarreau172f5ce2018-11-26 11:21:50 +0100761REGISTER_PER_THREAD_INIT(init_pollers_per_thread);
762REGISTER_PER_THREAD_DEINIT(deinit_pollers_per_thread);
763
Willy Tarreau2ff76222007-04-09 19:29:56 +0200764/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200765 * Local variables:
766 * c-indent-level: 8
767 * c-basic-offset: 8
768 * End:
769 */