blob: 529cba739fbc15e00fc879ad7bb4d9bc6083eedb [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 Tarreau7be79a42012-11-11 15:02:54 +010011 * There is no direct link between the FD and the updates list. There is only a
12 * bit in the fdtab[] to indicate than a file descriptor is already present in
13 * the updates list. Once an fd is present in the updates list, it will have to
14 * be considered even if its changes are reverted in the middle or if the fd is
15 * replaced.
16 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010017 * The event state for an FD, as found in fdtab[].state, is maintained for each
18 * direction. The state field is built this way, with R bits in the low nibble
19 * and W bits in the high nibble for ease of access and debugging :
Willy Tarreau7be79a42012-11-11 15:02:54 +010020 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010021 * 7 6 5 4 3 2 1 0
Willy Tarreau5bee3e22019-09-04 09:52:57 +020022 * [ 0 | 0 | RW | AW | 0 | 0 | RR | AR ]
Willy Tarreauf817e9f2014-01-10 16:58:45 +010023 *
24 * A* = active *R = read
Willy Tarreau5bee3e22019-09-04 09:52:57 +020025 * R* = ready *W = write
Willy Tarreauf817e9f2014-01-10 16:58:45 +010026 *
27 * An FD is marked "active" when there is a desire to use it.
Willy Tarreauf817e9f2014-01-10 16:58:45 +010028 * An FD is marked "ready" when it has not faced a new EAGAIN since last wake-up
Willy Tarreau5bee3e22019-09-04 09:52:57 +020029 * (it is a cache of the last EAGAIN regardless of polling changes). Each poller
30 * has its own "polled" state for the same fd, as stored in the polled_mask.
Willy Tarreau7be79a42012-11-11 15:02:54 +010031 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020032 * We have 4 possible states for each direction based on these 2 flags :
Willy Tarreau7be79a42012-11-11 15:02:54 +010033 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020034 * +---+---+----------+---------------------------------------------+
35 * | R | A | State | Description |
36 * +---+---+----------+---------------------------------------------+
37 * | 0 | 0 | DISABLED | No activity desired, not ready. |
38 * | 0 | 1 | ACTIVE | Activity desired. |
39 * | 1 | 0 | STOPPED | End of activity. |
40 * | 1 | 1 | READY | Activity desired and reported. |
41 * +---+---+----------+---------------------------------------------+
Willy Tarreau7be79a42012-11-11 15:02:54 +010042 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010043 * The transitions are pretty simple :
44 * - fd_want_*() : set flag A
45 * - fd_stop_*() : clear flag A
46 * - fd_cant_*() : clear flag R (when facing EAGAIN)
47 * - fd_may_*() : set flag R (upon return from poll())
Willy Tarreauf817e9f2014-01-10 16:58:45 +010048 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020049 * Each poller then computes its own polled state :
50 * if (A) { if (!R) P := 1 } else { P := 0 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010051 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020052 * The state transitions look like the diagram below.
Willy Tarreauf817e9f2014-01-10 16:58:45 +010053 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020054 * may +----------+
55 * ,----| DISABLED | (READY=0, ACTIVE=0)
56 * | +----------+
57 * | want | ^
58 * | | |
59 * | v | stop
60 * | +----------+
61 * | | ACTIVE | (READY=0, ACTIVE=1)
62 * | +----------+
63 * | | ^
64 * | may | |
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070065 * | v | EAGAIN (can't)
Willy Tarreau5bee3e22019-09-04 09:52:57 +020066 * | +--------+
67 * | | READY | (READY=1, ACTIVE=1)
68 * | +--------+
69 * | stop | ^
70 * | | |
71 * | v | want
72 * | +---------+
73 * `--->| STOPPED | (READY=1, ACTIVE=0)
74 * +---------+
Willy Tarreaubaaee002006-06-26 02:48:02 +020075 */
76
Willy Tarreau2ff76222007-04-09 19:29:56 +020077#include <stdio.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020078#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020079#include <unistd.h>
Olivier Houchard79321b92018-07-26 17:55:11 +020080#include <fcntl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <sys/types.h>
Willy Tarreau2d7f81b2019-02-21 22:19:17 +010082#include <sys/resource.h>
Willy Tarreau931d8b72019-08-27 11:08:17 +020083#include <sys/uio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
Willy Tarreaue5733232019-05-22 19:24:06 +020085#if defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +010086#include <poll.h>
87#include <errno.h>
88#endif
89
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020090#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020091#include <haproxy/activity.h>
Willy Tarreaubc52bec2020-06-18 08:58:47 +020092#include <haproxy/cfgparse.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020093#include <haproxy/fd.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020094#include <haproxy/global.h>
Willy Tarreauc28aab02021-05-08 20:35:03 +020095#include <haproxy/log.h>
Willy Tarreaufc8f6a82020-06-03 19:20:59 +020096#include <haproxy/port_range.h>
Willy Tarreaub63888c2021-10-06 19:55:29 +020097#include <haproxy/ticks.h>
Willy Tarreaubc52bec2020-06-18 08:58:47 +020098#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020099
Willy Tarreaub2551052020-06-09 09:07:15 +0200100
Willy Tarreaua1090a52021-04-10 16:58:13 +0200101struct fdtab *fdtab __read_mostly = NULL; /* array of all the file descriptors */
102struct polled_mask *polled_mask __read_mostly = NULL; /* Array for the polled_mask of each fd */
103struct fdinfo *fdinfo __read_mostly = NULL; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104int totalconn; /* total # of terminated sessions */
105int actconn; /* # of active sessions */
106
Willy Tarreaua1090a52021-04-10 16:58:13 +0200107struct poller pollers[MAX_POLLERS] __read_mostly;
108struct poller cur_poller __read_mostly;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200109int nbpollers = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110
Olivier Houchard6b96f722018-04-25 16:58:25 +0200111volatile struct fdlist update_list; // Global update list
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100112
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200113THREAD_LOCAL int *fd_updt = NULL; // FD updates list
114THREAD_LOCAL int fd_nbupdt = 0; // number of updates in the list
Olivier Houchard79321b92018-07-26 17:55:11 +0200115THREAD_LOCAL int poller_rd_pipe = -1; // Pipe to wake the thread
Willy Tarreaua1090a52021-04-10 16:58:13 +0200116int poller_wr_pipe[MAX_THREADS] __read_mostly; // Pipe to wake the threads
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200117
Olivier Houchard7c49d2e2019-04-16 18:37:05 +0200118volatile int ha_used_fds = 0; // Number of FD we're currently using
Willy Tarreau97ea9c42022-01-27 16:10:48 +0100119static struct fdtab *fdtab_addr; /* address of the allocated area containing fdtab */
Olivier Houchard7c49d2e2019-04-16 18:37:05 +0200120
Willy Tarreau337fb712019-12-20 07:20:00 +0100121#define _GET_NEXT(fd, off) ((volatile struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->next
122#define _GET_PREV(fd, off) ((volatile struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->prev
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100123/* adds fd <fd> to fd list <list> if it was not yet in it */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200124void fd_add_to_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100125{
126 int next;
127 int new;
128 int old;
129 int last;
130
131redo_next:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200132 next = _GET_NEXT(fd, off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100133 /* Check that we're not already in the cache, and if not, lock us. */
Olivier Houchardfc51f0f52019-12-19 18:33:08 +0100134 if (next > -2)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100135 goto done;
Olivier Houchardfc51f0f52019-12-19 18:33:08 +0100136 if (next == -2)
137 goto redo_next;
Olivier Houchardd3608792019-03-08 18:47:42 +0100138 if (!_HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100139 goto redo_next;
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100140 __ha_barrier_atomic_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100141
142 new = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100143redo_last:
144 /* First, insert in the linked list */
145 last = list->last;
146 old = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100147
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200148 _GET_PREV(fd, off) = -2;
Willy Tarreau11559a72018-02-05 17:52:24 +0100149 /* Make sure the "prev" store is visible before we update the last entry */
150 __ha_barrier_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100151
Willy Tarreau11559a72018-02-05 17:52:24 +0100152 if (unlikely(last == -1)) {
153 /* list is empty, try to add ourselves alone so that list->last=fd */
Olivier Houchardd3608792019-03-08 18:47:42 +0100154 if (unlikely(!_HA_ATOMIC_CAS(&list->last, &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100155 goto redo_last;
156
157 /* list->first was necessary -1, we're guaranteed to be alone here */
158 list->first = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100159 } else {
Willy Tarreau11559a72018-02-05 17:52:24 +0100160 /* adding ourselves past the last element
161 * The CAS will only succeed if its next is -1,
162 * which means it's in the cache, and the last element.
163 */
Olivier Houchardd3608792019-03-08 18:47:42 +0100164 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(last, off), &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100165 goto redo_last;
Willy Tarreau11559a72018-02-05 17:52:24 +0100166
167 /* Then, update the last entry */
168 list->last = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100169 }
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100170 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100171 /* since we're alone at the end of the list and still locked(-2),
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +0500172 * we know no one tried to add past us. Mark the end of list.
Willy Tarreau11559a72018-02-05 17:52:24 +0100173 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200174 _GET_PREV(fd, off) = last;
175 _GET_NEXT(fd, off) = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100176 __ha_barrier_store();
177done:
178 return;
179}
180
181/* removes fd <fd> from fd list <list> */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200182void fd_rm_from_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100183{
184#if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B)
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100185 volatile union {
186 struct fdlist_entry ent;
187 uint64_t u64;
188 uint32_t u32[2];
189 } cur_list, next_list;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100190#endif
191 int old;
192 int new = -2;
193 int prev;
194 int next;
195 int last;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100196lock_self:
197#if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW))
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100198 next_list.ent.next = next_list.ent.prev = -2;
199 cur_list.ent = *(volatile struct fdlist_entry *)(((char *)&fdtab[fd]) + off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100200 /* First, attempt to lock our own entries */
201 do {
202 /* The FD is not in the FD cache, give up */
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100203 if (unlikely(cur_list.ent.next <= -3))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100204 return;
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100205 if (unlikely(cur_list.ent.prev == -2 || cur_list.ent.next == -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100206 goto lock_self;
207 } while (
208#ifdef HA_CAS_IS_8B
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100209 unlikely(!_HA_ATOMIC_CAS(((uint64_t *)&_GET_NEXT(fd, off)), (uint64_t *)&cur_list.u64, next_list.u64))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100210#else
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100211 unlikely(!_HA_ATOMIC_DWCAS(((long *)&_GET_NEXT(fd, off)), (uint32_t *)&cur_list.u32, &next_list.u32))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100212#endif
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100213 );
214 next = cur_list.ent.next;
215 prev = cur_list.ent.prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100216
217#else
218lock_self_next:
Willy Tarreau337fb712019-12-20 07:20:00 +0100219 next = _GET_NEXT(fd, off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100220 if (next == -2)
221 goto lock_self_next;
222 if (next <= -3)
223 goto done;
Olivier Houchardd3608792019-03-08 18:47:42 +0100224 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100225 goto lock_self_next;
226lock_self_prev:
Willy Tarreau337fb712019-12-20 07:20:00 +0100227 prev = _GET_PREV(fd, off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100228 if (prev == -2)
229 goto lock_self_prev;
Olivier Houchardd3608792019-03-08 18:47:42 +0100230 if (unlikely(!_HA_ATOMIC_CAS(&_GET_PREV(fd, off), &prev, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100231 goto lock_self_prev;
232#endif
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100233 __ha_barrier_atomic_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100234
235 /* Now, lock the entries of our neighbours */
236 if (likely(prev != -1)) {
237redo_prev:
238 old = fd;
239
Olivier Houchardd3608792019-03-08 18:47:42 +0100240 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(prev, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100241 if (unlikely(old == -2)) {
242 /* Neighbour already locked, give up and
243 * retry again once he's done
244 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200245 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100246 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200247 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100248 __ha_barrier_store();
249 goto lock_self;
250 }
251 goto redo_prev;
252 }
253 }
254 if (likely(next != -1)) {
255redo_next:
256 old = fd;
Olivier Houchardd3608792019-03-08 18:47:42 +0100257 if (unlikely(!_HA_ATOMIC_CAS(&_GET_PREV(next, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100258 if (unlikely(old == -2)) {
259 /* Neighbour already locked, give up and
260 * retry again once he's done
261 */
262 if (prev != -1) {
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200263 _GET_NEXT(prev, off) = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100264 __ha_barrier_store();
265 }
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200266 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100267 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200268 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100269 __ha_barrier_store();
270 goto lock_self;
271 }
272 goto redo_next;
273 }
274 }
275 if (list->first == fd)
276 list->first = next;
277 __ha_barrier_store();
278 last = list->last;
Olivier Houchardd3608792019-03-08 18:47:42 +0100279 while (unlikely(last == fd && (!_HA_ATOMIC_CAS(&list->last, &last, prev))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100280 __ha_compiler_barrier();
281 /* Make sure we let other threads know we're no longer in cache,
282 * before releasing our neighbours.
283 */
284 __ha_barrier_store();
285 if (likely(prev != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200286 _GET_NEXT(prev, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100287 __ha_barrier_store();
288 if (likely(next != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200289 _GET_PREV(next, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100290 __ha_barrier_store();
291 /* Ok, now we're out of the fd cache */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200292 _GET_NEXT(fd, off) = -(next + 4);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100293 __ha_barrier_store();
294done:
295 return;
296}
297
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200298#undef _GET_NEXT
299#undef _GET_PREV
300
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100301/* deletes the FD once nobody uses it anymore, as detected by the caller by its
302 * thread_mask being zero and its running mask turning to zero. There is no
303 * protection against concurrent accesses, it's up to the caller to make sure
304 * only the last thread will call it. This is only for internal use, please use
305 * fd_delete() instead.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200306 */
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100307void _fd_delete_orphan(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200308{
Willy Tarreaub41a6e92021-04-06 17:49:19 +0200309 if (fdtab[fd].state & FD_LINGER_RISK) {
Willy Tarreauad38ace2013-12-15 14:19:38 +0100310 /* this is generally set when connecting to servers */
Ilya Shipitsinb7e43f02020-04-02 15:02:08 +0500311 DISGUISE(setsockopt(fd, SOL_SOCKET, SO_LINGER,
312 (struct linger *) &nolinger, sizeof(struct linger)));
Willy Tarreauad38ace2013-12-15 14:19:38 +0100313 }
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100314 if (cur_poller.clo)
315 cur_poller.clo(fd);
Willy Tarreau2d423292021-03-24 15:34:25 +0100316
317 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
Olivier Houchardc22580c2019-08-05 18:51:52 +0200318 polled_mask[fd].poll_recv = polled_mask[fd].poll_send = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100319
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100320 fdtab[fd].state = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100321
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200322#ifdef DEBUG_FD
323 fdtab[fd].event_count = 0;
324#endif
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200325 fdinfo[fd].port_range = NULL;
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200326 fdtab[fd].owner = NULL;
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100327 /* perform the close() call last as it's what unlocks the instant reuse
328 * of this FD by any other thread.
329 */
Willy Tarreau63d8b602020-08-26 11:54:06 +0200330 close(fd);
Willy Tarreau4781b152021-04-06 13:53:36 +0200331 _HA_ATOMIC_DEC(&ha_used_fds);
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100332}
333
334/* Deletes an FD from the fdsets. The file descriptor is also closed, possibly
335 * asynchronously. Only the owning thread may do this.
336 */
337void fd_delete(int fd)
338{
Willy Tarreau9aa324d2022-01-31 20:05:02 +0100339 /* This must never happen and would definitely indicate a bug, in
340 * addition to overwriting some unexpected memory areas.
341 */
342 BUG_ON(fd < 0 || fd >= global.maxsock);
343
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100344 /* we must postpone removal of an FD that may currently be in use
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500345 * by another thread. This can happen in the following two situations:
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100346 * - after a takeover, the owning thread closes the connection but
347 * the previous one just woke up from the poller and entered
348 * the FD handler iocb. That thread holds an entry in running_mask
349 * and requires removal protection.
350 * - multiple threads are accepting connections on a listener, and
351 * one of them (or even an separate one) decides to unbind the
352 * listener under the listener's lock while other ones still hold
353 * the running bit.
354 * In both situations the FD is marked as unused (thread_mask = 0) and
355 * will not take new bits in its running_mask so we have the guarantee
356 * that the last thread eliminating running_mask is the one allowed to
357 * safely delete the FD. Most of the time it will be the current thread.
358 */
359
360 HA_ATOMIC_OR(&fdtab[fd].running_mask, tid_bit);
361 HA_ATOMIC_STORE(&fdtab[fd].thread_mask, 0);
362 if (fd_clr_running(fd) == 0)
363 _fd_delete_orphan(fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200364}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200365
Willy Tarreaua80e4a32022-04-26 10:18:07 +0200366/* makes the new fd non-blocking and clears all other O_* flags;
367 * this is meant to be used on new FDs. Returns -1 on failure.
368 */
369int fd_set_nonblock(int fd)
370{
371 int ret = fcntl(fd, F_SETFL, O_NONBLOCK);
372
373 return ret;
374}
375
376/* sets the close-on-exec flag on fd; returns -1 on failure. */
377int fd_set_cloexec(int fd)
378{
379 int flags, ret;
380
381 flags = fcntl(fd, F_GETFD);
382 flags |= FD_CLOEXEC;
383 ret = fcntl(fd, F_SETFD, flags);
384 return ret;
385}
386
Olivier Houchard88516642020-03-05 18:10:51 +0100387/*
388 * Take over a FD belonging to another thread.
389 * unexpected_conn is the expected owner of the fd.
390 * Returns 0 on success, and -1 on failure.
391 */
392int fd_takeover(int fd, void *expected_owner)
393{
Willy Tarreauf69fea62021-08-03 09:04:32 +0200394 unsigned long old;
Willy Tarreau42973632020-06-18 08:05:15 +0200395
Olivier Houchard88516642020-03-05 18:10:51 +0100396 /* protect ourself against a delete then an insert for the same fd,
397 * if it happens, then the owner will no longer be the expected
398 * connection.
399 */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200400 if (fdtab[fd].owner != expected_owner)
401 return -1;
Willy Tarreauf1cad382020-06-18 08:14:59 +0200402
Willy Tarreauf69fea62021-08-03 09:04:32 +0200403 /* we must be alone to work on this idle FD. If not, it means that its
404 * poller is currently waking up and is about to use it, likely to
405 * close it on shut/error, but maybe also to process any unexpectedly
406 * pending data.
407 */
408 old = 0;
409 if (!HA_ATOMIC_CAS(&fdtab[fd].running_mask, &old, tid_bit))
410 return -1;
411
412 /* success, from now on it's ours */
413 HA_ATOMIC_STORE(&fdtab[fd].thread_mask, tid_bit);
Willy Tarreauf1cad382020-06-18 08:14:59 +0200414
Olivier Houchardddc874c2020-06-17 20:34:05 +0200415 /* Make sure the FD doesn't have the active bit. It is possible that
416 * the fd is polled by the thread that used to own it, the new thread
417 * is supposed to call subscribe() later, to activate polling.
418 */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200419 fd_stop_recv(fd);
420
421 /* we're done with it */
422 HA_ATOMIC_AND(&fdtab[fd].running_mask, ~tid_bit);
423 return 0;
Olivier Houchard88516642020-03-05 18:10:51 +0100424}
425
Willy Tarreaudbe30602019-09-04 13:25:41 +0200426void updt_fd_polling(const int fd)
427{
Willy Tarreau5a7d6eb2020-11-26 22:25:10 +0100428 if (all_threads_mask == 1UL || (fdtab[fd].thread_mask & all_threads_mask) == tid_bit) {
Willy Tarreaudbe30602019-09-04 13:25:41 +0200429 if (HA_ATOMIC_BTS(&fdtab[fd].update_mask, tid))
430 return;
431
432 fd_updt[fd_nbupdt++] = fd;
433 } else {
434 unsigned long update_mask = fdtab[fd].update_mask;
435 do {
436 if (update_mask == fdtab[fd].thread_mask)
437 return;
Willy Tarreauf0158872020-09-25 12:18:53 +0200438 } while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask, fdtab[fd].thread_mask));
439
Willy Tarreaudbe30602019-09-04 13:25:41 +0200440 fd_add_to_fd_list(&update_list, fd, offsetof(struct fdtab, update));
Willy Tarreauf0158872020-09-25 12:18:53 +0200441
442 if (fd_active(fd) &&
443 !(fdtab[fd].thread_mask & tid_bit) &&
444 (fdtab[fd].thread_mask & ~tid_bit & all_threads_mask & ~sleeping_thread_mask) == 0) {
445 /* we need to wake up one thread to handle it immediately */
446 int thr = my_ffsl(fdtab[fd].thread_mask & ~tid_bit & all_threads_mask) - 1;
447
448 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
449 wake_thread(thr);
450 }
Willy Tarreaudbe30602019-09-04 13:25:41 +0200451 }
452}
453
Willy Tarreau84c79222021-07-29 16:53:46 +0200454/* Update events seen for FD <fd> and its state if needed. This should be
455 * called by the poller, passing FD_EV_*_{R,W,RW} in <evts>. FD_EV_ERR_*
456 * doesn't need to also pass FD_EV_SHUT_*, it's implied. ERR and SHUT are
Willy Tarreau200bd502021-07-29 16:57:19 +0200457 * allowed to be reported regardless of R/W readiness. Returns one of
458 * FD_UPDT_*.
Willy Tarreau84c79222021-07-29 16:53:46 +0200459 */
Willy Tarreau200bd502021-07-29 16:57:19 +0200460int fd_update_events(int fd, uint evts)
Willy Tarreau84c79222021-07-29 16:53:46 +0200461{
462 unsigned long locked;
463 uint old, new;
464 uint new_flags, must_stop;
Willy Tarreauf69fea62021-08-03 09:04:32 +0200465 ulong rmask, tmask;
Willy Tarreau84c79222021-07-29 16:53:46 +0200466
Willy Tarreaua0b99532021-09-30 18:48:37 +0200467 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreau84c79222021-07-29 16:53:46 +0200468
469 /* do nothing if the FD was taken over under us */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200470 do {
471 /* make sure we read a synchronous copy of rmask and tmask
472 * (tmask is only up to date if it reflects all of rmask's
473 * bits).
474 */
475 do {
476 rmask = _HA_ATOMIC_LOAD(&fdtab[fd].running_mask);
477 tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask);
478 } while (rmask & ~tmask);
479
480 if (!(tmask & tid_bit)) {
481 /* a takeover has started */
482 activity[tid].poll_skip_fd++;
483 return FD_UPDT_MIGRATED;
484 }
485 } while (!HA_ATOMIC_CAS(&fdtab[fd].running_mask, &rmask, rmask | tid_bit));
Willy Tarreau84c79222021-07-29 16:53:46 +0200486
Willy Tarreauf69fea62021-08-03 09:04:32 +0200487 locked = (tmask != tid_bit);
Willy Tarreau84c79222021-07-29 16:53:46 +0200488
489 /* OK now we are guaranteed that our thread_mask was present and
490 * that we're allowed to update the FD.
491 */
492
493 new_flags =
494 ((evts & FD_EV_READY_R) ? FD_POLL_IN : 0) |
495 ((evts & FD_EV_READY_W) ? FD_POLL_OUT : 0) |
496 ((evts & FD_EV_SHUT_R) ? FD_POLL_HUP : 0) |
497 ((evts & FD_EV_ERR_RW) ? FD_POLL_ERR : 0);
498
499 /* SHUTW reported while FD was active for writes is an error */
500 if ((fdtab[fd].state & FD_EV_ACTIVE_W) && (evts & FD_EV_SHUT_W))
501 new_flags |= FD_POLL_ERR;
502
503 /* compute the inactive events reported late that must be stopped */
504 must_stop = 0;
505 if (unlikely(!fd_active(fd))) {
506 /* both sides stopped */
507 must_stop = FD_POLL_IN | FD_POLL_OUT;
508 }
509 else if (unlikely(!fd_recv_active(fd) && (evts & (FD_EV_READY_R | FD_EV_SHUT_R | FD_EV_ERR_RW)))) {
510 /* only send remains */
511 must_stop = FD_POLL_IN;
512 }
513 else if (unlikely(!fd_send_active(fd) && (evts & (FD_EV_READY_W | FD_EV_SHUT_W | FD_EV_ERR_RW)))) {
514 /* only recv remains */
515 must_stop = FD_POLL_OUT;
516 }
517
518 if (new_flags & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
519 new_flags |= FD_EV_READY_R;
520
521 if (new_flags & (FD_POLL_OUT | FD_POLL_ERR))
522 new_flags |= FD_EV_READY_W;
523
524 old = fdtab[fd].state;
525 new = (old & ~FD_POLL_UPDT_MASK) | new_flags;
526
527 if (unlikely(locked)) {
528 /* Locked FDs (those with more than 2 threads) are atomically updated */
529 while (unlikely(new != old && !_HA_ATOMIC_CAS(&fdtab[fd].state, &old, new)))
530 new = (old & ~FD_POLL_UPDT_MASK) | new_flags;
531 } else {
532 if (new != old)
533 fdtab[fd].state = new;
534 }
535
536 if (fdtab[fd].iocb && fd_active(fd)) {
537 fdtab[fd].iocb(fd);
538 }
539
540 /* another thread might have attempted to close this FD in the mean
541 * time (e.g. timeout task) striking on a previous thread and closing.
542 * This is detected by both thread_mask and running_mask being 0 after
543 * we remove ourselves last.
544 */
545 if ((fdtab[fd].running_mask & tid_bit) &&
546 fd_clr_running(fd) == 0 && !fdtab[fd].thread_mask) {
547 _fd_delete_orphan(fd);
Willy Tarreau200bd502021-07-29 16:57:19 +0200548 return FD_UPDT_CLOSED;
Willy Tarreau84c79222021-07-29 16:53:46 +0200549 }
550
551 /* we had to stop this FD and it still must be stopped after the I/O
552 * cb's changes, so let's program an update for this.
553 */
554 if (must_stop && !(fdtab[fd].update_mask & tid_bit)) {
555 if (((must_stop & FD_POLL_IN) && !fd_recv_active(fd)) ||
556 ((must_stop & FD_POLL_OUT) && !fd_send_active(fd)))
557 if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, tid))
558 fd_updt[fd_nbupdt++] = fd;
559 }
Willy Tarreau200bd502021-07-29 16:57:19 +0200560
561 return FD_UPDT_DONE;
Willy Tarreau84c79222021-07-29 16:53:46 +0200562}
563
Willy Tarreau931d8b72019-08-27 11:08:17 +0200564/* Tries to send <npfx> parts from <prefix> followed by <nmsg> parts from <msg>
565 * optionally followed by a newline if <nl> is non-null, to file descriptor
566 * <fd>. The message is sent atomically using writev(). It may be truncated to
567 * <maxlen> bytes if <maxlen> is non-null. There is no distinction between the
568 * two lists, it's just a convenience to help the caller prepend some prefixes
569 * when necessary. It takes the fd's lock to make sure no other thread will
570 * write to the same fd in parallel. Returns the number of bytes sent, or <=0
571 * on failure. A limit to 31 total non-empty segments is enforced. The caller
572 * is responsible for taking care of making the fd non-blocking.
573 */
574ssize_t fd_write_frag_line(int fd, size_t maxlen, const struct ist pfx[], size_t npfx, const struct ist msg[], size_t nmsg, int nl)
575{
576 struct iovec iovec[32];
Willy Tarreau931d8b72019-08-27 11:08:17 +0200577 size_t sent = 0;
578 int vec = 0;
Willy Tarreaudf187872020-06-11 14:25:47 +0200579 int attempts = 0;
Willy Tarreau931d8b72019-08-27 11:08:17 +0200580
581 if (!maxlen)
582 maxlen = ~0;
583
584 /* keep one char for a possible trailing '\n' in any case */
585 maxlen--;
586
587 /* make an iovec from the concatenation of all parts of the original
588 * message. Skip empty fields and truncate the whole message to maxlen,
589 * leaving one spare iovec for the '\n'.
590 */
591 while (vec < (sizeof(iovec) / sizeof(iovec[0]) - 1)) {
592 if (!npfx) {
593 pfx = msg;
594 npfx = nmsg;
595 nmsg = 0;
596 if (!npfx)
597 break;
598 }
599
600 iovec[vec].iov_base = pfx->ptr;
601 iovec[vec].iov_len = MIN(maxlen, pfx->len);
602 maxlen -= iovec[vec].iov_len;
Willy Tarreau931d8b72019-08-27 11:08:17 +0200603 if (iovec[vec].iov_len)
604 vec++;
605 pfx++; npfx--;
606 };
607
608 if (nl) {
609 iovec[vec].iov_base = "\n";
610 iovec[vec].iov_len = 1;
611 vec++;
612 }
613
Willy Tarreaudf187872020-06-11 14:25:47 +0200614 /* make sure we never interleave writes and we never block. This means
615 * we prefer to fail on collision than to block. But we don't want to
616 * lose too many logs so we just perform a few lock attempts then give
617 * up.
618 */
619
Willy Tarreau1673c4a2021-04-07 17:36:57 +0200620 while (HA_ATOMIC_BTS(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT)) {
Willy Tarreaudf187872020-06-11 14:25:47 +0200621 if (++attempts >= 200) {
622 /* so that the caller knows the message couldn't be delivered */
623 sent = -1;
624 errno = EAGAIN;
625 goto leave;
626 }
627 ha_thread_relax();
628 }
629
Willy Tarreau0cc61282021-04-06 17:57:12 +0200630 if (unlikely(!(fdtab[fd].state & FD_INITIALIZED))) {
631 HA_ATOMIC_OR(&fdtab[fd].state, FD_INITIALIZED);
Willy Tarreau7e9776a2019-08-30 14:41:47 +0200632 if (!isatty(fd))
633 fcntl(fd, F_SETFL, O_NONBLOCK);
634 }
Willy Tarreau931d8b72019-08-27 11:08:17 +0200635 sent = writev(fd, iovec, vec);
Willy Tarreau1673c4a2021-04-07 17:36:57 +0200636 HA_ATOMIC_BTR(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT);
Willy Tarreau931d8b72019-08-27 11:08:17 +0200637
Willy Tarreaudf187872020-06-11 14:25:47 +0200638 leave:
Willy Tarreau931d8b72019-08-27 11:08:17 +0200639 /* sent > 0 if the message was delivered */
640 return sent;
641}
642
Olivier Houchard2292edf2019-02-25 14:26:54 +0100643#if defined(USE_CLOSEFROM)
644void my_closefrom(int start)
645{
646 closefrom(start);
647}
648
Willy Tarreaue5733232019-05-22 19:24:06 +0200649#elif defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100650/* This is a portable implementation of closefrom(). It closes all open file
651 * descriptors starting at <start> and above. It relies on the fact that poll()
652 * will return POLLNVAL for each invalid (hence close) file descriptor passed
653 * in argument in order to skip them. It acts with batches of FDs and will
654 * typically perform one poll() call per 1024 FDs so the overhead is low in
655 * case all FDs have to be closed.
656 */
657void my_closefrom(int start)
658{
659 struct pollfd poll_events[1024];
660 struct rlimit limit;
661 int nbfds, fd, ret, idx;
662 int step, next;
663
664 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
665 step = nbfds = limit.rlim_cur;
666 else
667 step = nbfds = 0;
668
669 if (nbfds <= 0) {
670 /* set safe limit */
671 nbfds = 1024;
672 step = 256;
673 }
674
675 if (step > sizeof(poll_events) / sizeof(poll_events[0]))
676 step = sizeof(poll_events) / sizeof(poll_events[0]);
677
678 while (start < nbfds) {
679 next = (start / step + 1) * step;
680
681 for (fd = start; fd < next && fd < nbfds; fd++) {
682 poll_events[fd - start].fd = fd;
683 poll_events[fd - start].events = 0;
684 }
685
686 do {
687 ret = poll(poll_events, fd - start, 0);
688 if (ret >= 0)
689 break;
Willy Tarreauacef5e22022-04-25 20:32:15 +0200690 } while (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR || errno == ENOMEM);
Willy Tarreau9188ac62019-02-21 22:12:47 +0100691
Willy Tarreaub8e602c2019-02-22 09:07:42 +0100692 if (ret)
693 ret = fd - start;
694
Willy Tarreau9188ac62019-02-21 22:12:47 +0100695 for (idx = 0; idx < ret; idx++) {
696 if (poll_events[idx].revents & POLLNVAL)
697 continue; /* already closed */
698
699 fd = poll_events[idx].fd;
700 close(fd);
701 }
702 start = next;
703 }
704}
705
Willy Tarreaue5733232019-05-22 19:24:06 +0200706#else // defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100707
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100708/* This is a portable implementation of closefrom(). It closes all open file
709 * descriptors starting at <start> and above. This is a naive version for use
710 * when the operating system provides no alternative.
711 */
712void my_closefrom(int start)
713{
714 struct rlimit limit;
715 int nbfds;
716
717 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
718 nbfds = limit.rlim_cur;
719 else
720 nbfds = 0;
721
722 if (nbfds <= 0)
723 nbfds = 1024; /* safe limit */
724
725 while (start < nbfds)
726 close(start++);
727}
Willy Tarreaue5733232019-05-22 19:24:06 +0200728#endif // defined(USE_POLL)
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100729
Willy Tarreaub63888c2021-10-06 19:55:29 +0200730/* Computes the bounded poll() timeout based on the next expiration timer <next>
731 * by bounding it to MAX_DELAY_MS. <next> may equal TICK_ETERNITY. The pollers
732 * just needs to call this function right before polling to get their timeout
733 * value. Timeouts that are already expired (possibly due to a pending event)
734 * are accounted for in activity.poll_exp.
735 */
736int compute_poll_timeout(int next)
737{
738 int wait_time;
739
740 if (!tick_isset(next))
741 wait_time = MAX_DELAY_MS;
742 else if (tick_is_expired(next, now_ms)) {
743 activity[tid].poll_exp++;
744 wait_time = 0;
745 }
746 else {
747 wait_time = TICKS_TO_MS(tick_remain(now_ms, next)) + 1;
748 if (wait_time > MAX_DELAY_MS)
749 wait_time = MAX_DELAY_MS;
750 }
751 return wait_time;
752}
753
Willy Tarreau4f60f162007-04-08 16:39:58 +0200754/* disable the specified poller */
755void disable_poller(const char *poller_name)
756{
757 int p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200758
Willy Tarreau4f60f162007-04-08 16:39:58 +0200759 for (p = 0; p < nbpollers; p++)
760 if (strcmp(pollers[p].name, poller_name) == 0)
761 pollers[p].pref = 0;
762}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200763
Olivier Houchard79321b92018-07-26 17:55:11 +0200764void poller_pipe_io_handler(int fd)
765{
766 char buf[1024];
767 /* Flush the pipe */
768 while (read(fd, buf, sizeof(buf)) > 0);
769 fd_cant_recv(fd);
770}
771
Willy Tarreau082b6282019-05-22 14:42:12 +0200772/* allocate the per-thread fd_updt thus needs to be called early after
773 * thread creation.
774 */
775static int alloc_pollers_per_thread()
776{
777 fd_updt = calloc(global.maxsock, sizeof(*fd_updt));
778 return fd_updt != NULL;
779}
780
781/* Initialize the pollers per thread.*/
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200782static int init_pollers_per_thread()
783{
Olivier Houchard79321b92018-07-26 17:55:11 +0200784 int mypipe[2];
Willy Tarreau082b6282019-05-22 14:42:12 +0200785
786 if (pipe(mypipe) < 0)
Olivier Houchard79321b92018-07-26 17:55:11 +0200787 return 0;
Willy Tarreau082b6282019-05-22 14:42:12 +0200788
Olivier Houchard79321b92018-07-26 17:55:11 +0200789 poller_rd_pipe = mypipe[0];
790 poller_wr_pipe[tid] = mypipe[1];
791 fcntl(poller_rd_pipe, F_SETFL, O_NONBLOCK);
Willy Tarreau3a6af1e2022-01-24 20:33:09 +0100792 fd_insert(poller_rd_pipe, poller_pipe_io_handler, poller_pipe_io_handler, tid_bit);
793 fd_insert(poller_wr_pipe[tid], poller_pipe_io_handler, poller_pipe_io_handler, tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +0200794 fd_want_recv(poller_rd_pipe);
Willy Tarreau3a6af1e2022-01-24 20:33:09 +0100795 fd_stop_both(poller_wr_pipe[tid]);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200796 return 1;
797}
798
799/* Deinitialize the pollers per thread */
800static void deinit_pollers_per_thread()
801{
William Lallemand808e1b72018-12-15 22:34:31 +0100802 /* rd and wr are init at the same place, but only rd is init to -1, so
803 we rely to rd to close. */
804 if (poller_rd_pipe > -1) {
805 close(poller_rd_pipe);
806 poller_rd_pipe = -1;
807 close(poller_wr_pipe[tid]);
808 poller_wr_pipe[tid] = -1;
809 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200810}
811
Willy Tarreau082b6282019-05-22 14:42:12 +0200812/* Release the pollers per thread, to be called late */
813static void free_pollers_per_thread()
814{
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100815 ha_free(&fd_updt);
Willy Tarreau082b6282019-05-22 14:42:12 +0200816}
817
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818/*
Willy Tarreau4f60f162007-04-08 16:39:58 +0200819 * Initialize the pollers till the best one is found.
820 * If none works, returns 0, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200822int init_pollers()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823{
Willy Tarreau4f60f162007-04-08 16:39:58 +0200824 int p;
825 struct poller *bp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200826
Willy Tarreau97ea9c42022-01-27 16:10:48 +0100827 if ((fdtab_addr = calloc(global.maxsock, sizeof(*fdtab) + 64)) == NULL) {
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200828 ha_alert("Not enough memory to allocate %d entries for fdtab!\n", global.maxsock);
Christopher Faulet63fe6522017-08-31 17:52:09 +0200829 goto fail_tab;
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200830 }
Christopher Faulet63fe6522017-08-31 17:52:09 +0200831
Willy Tarreau97ea9c42022-01-27 16:10:48 +0100832 /* always provide an aligned fdtab */
833 fdtab = (struct fdtab*)((((size_t)fdtab_addr) + 63) & -(size_t)64);
834
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200835 if ((polled_mask = calloc(global.maxsock, sizeof(*polled_mask))) == NULL) {
836 ha_alert("Not enough memory to allocate %d entries for polled_mask!\n", global.maxsock);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200837 goto fail_polledmask;
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200838 }
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000839
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200840 if ((fdinfo = calloc(global.maxsock, sizeof(*fdinfo))) == NULL) {
841 ha_alert("Not enough memory to allocate %d entries for fdinfo!\n", global.maxsock);
Christopher Faulet63fe6522017-08-31 17:52:09 +0200842 goto fail_info;
Willy Tarreau7c9f7562020-10-13 15:45:07 +0200843 }
Christopher Faulet63fe6522017-08-31 17:52:09 +0200844
Olivier Houchard6b96f722018-04-25 16:58:25 +0200845 update_list.first = update_list.last = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200846
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100847 for (p = 0; p < global.maxsock; p++) {
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100848 /* Mark the fd as out of the fd cache */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200849 fdtab[p].update.next = -3;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100850 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200851
Willy Tarreau4f60f162007-04-08 16:39:58 +0200852 do {
853 bp = NULL;
854 for (p = 0; p < nbpollers; p++)
855 if (!bp || (pollers[p].pref > bp->pref))
856 bp = &pollers[p];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857
Willy Tarreau4f60f162007-04-08 16:39:58 +0200858 if (!bp || bp->pref == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859 break;
860
Willy Tarreau4f60f162007-04-08 16:39:58 +0200861 if (bp->init(bp)) {
862 memcpy(&cur_poller, bp, sizeof(*bp));
863 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200864 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200865 } while (!bp || bp->pref == 0);
Willy Tarreau7be79a42012-11-11 15:02:54 +0100866
Christopher Faulet63fe6522017-08-31 17:52:09 +0200867 free(fdinfo);
868 fail_info:
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200869 free(polled_mask);
870 fail_polledmask:
Willy Tarreau97ea9c42022-01-27 16:10:48 +0100871 free(fdtab_addr);
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000872 fail_tab:
Willy Tarreau7be79a42012-11-11 15:02:54 +0100873 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200874}
875
Willy Tarreaubaaee002006-06-26 02:48:02 +0200876/*
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200877 * Deinitialize the pollers.
878 */
879void deinit_pollers() {
880
881 struct poller *bp;
882 int p;
883
884 for (p = 0; p < nbpollers; p++) {
885 bp = &pollers[p];
886
887 if (bp && bp->pref)
888 bp->term(bp);
889 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200890
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100891 ha_free(&fdinfo);
Willy Tarreau97ea9c42022-01-27 16:10:48 +0100892 ha_free(&fdtab_addr);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100893 ha_free(&polled_mask);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200894}
895
896/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200897 * Lists the known pollers on <out>.
898 * Should be performed only before initialization.
899 */
900int list_pollers(FILE *out)
901{
902 int p;
903 int last, next;
904 int usable;
905 struct poller *bp;
906
907 fprintf(out, "Available polling systems :\n");
908
909 usable = 0;
910 bp = NULL;
911 last = next = -1;
912 while (1) {
913 for (p = 0; p < nbpollers; p++) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200914 if ((next < 0 || pollers[p].pref > next)
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100915 && (last < 0 || pollers[p].pref < last)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200916 next = pollers[p].pref;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100917 if (!bp || (pollers[p].pref > bp->pref))
918 bp = &pollers[p];
919 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200920 }
921
922 if (next == -1)
923 break;
924
925 for (p = 0; p < nbpollers; p++) {
926 if (pollers[p].pref == next) {
927 fprintf(out, " %10s : ", pollers[p].name);
928 if (pollers[p].pref == 0)
929 fprintf(out, "disabled, ");
930 else
931 fprintf(out, "pref=%3d, ", pollers[p].pref);
932 if (pollers[p].test(&pollers[p])) {
933 fprintf(out, " test result OK");
934 if (next > 0)
935 usable++;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100936 } else {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200937 fprintf(out, " test result FAILED");
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100938 if (bp == &pollers[p])
939 bp = NULL;
940 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200941 fprintf(out, "\n");
942 }
943 }
944 last = next;
945 next = -1;
946 };
947 fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none");
948 return 0;
949}
950
951/*
952 * Some pollers may lose their connection after a fork(). It may be necessary
953 * to create initialize part of them again. Returns 0 in case of failure,
954 * otherwise 1. The fork() function may be NULL if unused. In case of error,
955 * the the current poller is destroyed and the caller is responsible for trying
956 * another one by calling init_pollers() again.
957 */
958int fork_poller()
959{
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200960 int fd;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100961 for (fd = 0; fd < global.maxsock; fd++) {
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200962 if (fdtab[fd].owner) {
Willy Tarreau030dae12021-04-06 17:53:33 +0200963 HA_ATOMIC_OR(&fdtab[fd].state, FD_CLONED);
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200964 }
965 }
966
Willy Tarreau2ff76222007-04-09 19:29:56 +0200967 if (cur_poller.fork) {
968 if (cur_poller.fork(&cur_poller))
969 return 1;
970 cur_poller.term(&cur_poller);
971 return 0;
972 }
973 return 1;
974}
975
Willy Tarreaubc52bec2020-06-18 08:58:47 +0200976/* config parser for global "tune.fd.edge-triggered", accepts "on" or "off" */
977static int cfg_parse_tune_fd_edge_triggered(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100978 const struct proxy *defpx, const char *file, int line,
Willy Tarreaubc52bec2020-06-18 08:58:47 +0200979 char **err)
980{
981 if (too_many_args(1, args, err, NULL))
982 return -1;
983
984 if (strcmp(args[1], "on") == 0)
985 global.tune.options |= GTUNE_FD_ET;
986 else if (strcmp(args[1], "off") == 0)
987 global.tune.options &= ~GTUNE_FD_ET;
988 else {
989 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
990 return -1;
991 }
992 return 0;
993}
994
995/* config keyword parsers */
996static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau9eec7e22021-05-08 11:06:32 +0200997 { CFG_GLOBAL, "tune.fd.edge-triggered", cfg_parse_tune_fd_edge_triggered, KWF_EXPERIMENTAL },
Willy Tarreaubc52bec2020-06-18 08:58:47 +0200998 { 0, NULL, NULL }
999}};
1000
1001INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1002
Willy Tarreau082b6282019-05-22 14:42:12 +02001003REGISTER_PER_THREAD_ALLOC(alloc_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +01001004REGISTER_PER_THREAD_INIT(init_pollers_per_thread);
1005REGISTER_PER_THREAD_DEINIT(deinit_pollers_per_thread);
Willy Tarreau082b6282019-05-22 14:42:12 +02001006REGISTER_PER_THREAD_FREE(free_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +01001007
Willy Tarreau2ff76222007-04-09 19:29:56 +02001008/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001009 * Local variables:
1010 * c-indent-level: 8
1011 * c-basic-offset: 8
1012 * End:
1013 */