blob: 706aba829cc18f6238cd9dd7af7db244acb79398 [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
Willy Tarreau35ee7102022-07-08 11:33:43 +0200111volatile struct fdlist update_list[MAX_TGROUPS]; // 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 Tarreau4cc67a22018-02-05 17:14:55 +0100121/* adds fd <fd> to fd list <list> if it was not yet in it */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200122void fd_add_to_fd_list(volatile struct fdlist *list, int fd)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100123{
124 int next;
125 int new;
126 int old;
127 int last;
128
129redo_next:
Aurelien DARRAGONe51891a2023-02-27 14:48:46 +0100130 next = HA_ATOMIC_LOAD(&fdtab[fd].update.next);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100131 /* Check that we're not already in the cache, and if not, lock us. */
Olivier Houchardfc51f0f52019-12-19 18:33:08 +0100132 if (next > -2)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100133 goto done;
Olivier Houchardfc51f0f52019-12-19 18:33:08 +0100134 if (next == -2)
135 goto redo_next;
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200136 if (!_HA_ATOMIC_CAS(&fdtab[fd].update.next, &next, -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100137 goto redo_next;
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100138 __ha_barrier_atomic_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100139
140 new = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100141redo_last:
142 /* First, insert in the linked list */
143 last = list->last;
144 old = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100145
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200146 fdtab[fd].update.prev = -2;
Willy Tarreau11559a72018-02-05 17:52:24 +0100147 /* Make sure the "prev" store is visible before we update the last entry */
148 __ha_barrier_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100149
Willy Tarreau11559a72018-02-05 17:52:24 +0100150 if (unlikely(last == -1)) {
151 /* list is empty, try to add ourselves alone so that list->last=fd */
Olivier Houchardd3608792019-03-08 18:47:42 +0100152 if (unlikely(!_HA_ATOMIC_CAS(&list->last, &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100153 goto redo_last;
154
155 /* list->first was necessary -1, we're guaranteed to be alone here */
156 list->first = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100157 } else {
Willy Tarreau11559a72018-02-05 17:52:24 +0100158 /* adding ourselves past the last element
159 * The CAS will only succeed if its next is -1,
160 * which means it's in the cache, and the last element.
161 */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200162 if (unlikely(!_HA_ATOMIC_CAS(&fdtab[last].update.next, &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100163 goto redo_last;
Willy Tarreau11559a72018-02-05 17:52:24 +0100164
165 /* Then, update the last entry */
166 list->last = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100167 }
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100168 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100169 /* since we're alone at the end of the list and still locked(-2),
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +0500170 * we know no one tried to add past us. Mark the end of list.
Willy Tarreau11559a72018-02-05 17:52:24 +0100171 */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200172 fdtab[fd].update.prev = last;
173 fdtab[fd].update.next = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100174 __ha_barrier_store();
175done:
176 return;
177}
178
179/* removes fd <fd> from fd list <list> */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200180void fd_rm_from_fd_list(volatile struct fdlist *list, int fd)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100181{
182#if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B)
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100183 volatile union {
184 struct fdlist_entry ent;
185 uint64_t u64;
186 uint32_t u32[2];
187 } cur_list, next_list;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100188#endif
189 int old;
190 int new = -2;
191 int prev;
192 int next;
193 int last;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100194lock_self:
195#if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW))
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100196 next_list.ent.next = next_list.ent.prev = -2;
Aurelien DARRAGONe51891a2023-02-27 14:48:46 +0100197 cur_list.ent = *(volatile typeof(fdtab->update)*)&fdtab[fd].update;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100198 /* First, attempt to lock our own entries */
199 do {
200 /* The FD is not in the FD cache, give up */
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100201 if (unlikely(cur_list.ent.next <= -3))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100202 return;
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100203 if (unlikely(cur_list.ent.prev == -2 || cur_list.ent.next == -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100204 goto lock_self;
205 } while (
206#ifdef HA_CAS_IS_8B
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200207 unlikely(!_HA_ATOMIC_CAS(((uint64_t *)&fdtab[fd].update), (uint64_t *)&cur_list.u64, next_list.u64))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100208#else
Willy Tarreau85af7602022-09-17 11:15:29 +0200209 unlikely(!_HA_ATOMIC_DWCAS(((long *)&fdtab[fd].update), (uint32_t *)&cur_list.u32, (const uint32_t *)&next_list.u32))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100210#endif
Willy Tarreau2b9f0662020-02-25 09:25:53 +0100211 );
212 next = cur_list.ent.next;
213 prev = cur_list.ent.prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100214
215#else
216lock_self_next:
Aurelien DARRAGONe51891a2023-02-27 14:48:46 +0100217 next = HA_ATOMIC_LOAD(&fdtab[fd].update.next);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100218 if (next == -2)
219 goto lock_self_next;
220 if (next <= -3)
221 goto done;
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200222 if (unlikely(!_HA_ATOMIC_CAS(&fdtab[fd].update.next, &next, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100223 goto lock_self_next;
224lock_self_prev:
Aurelien DARRAGONe51891a2023-02-27 14:48:46 +0100225 prev = HA_ATOMIC_LOAD(&fdtab[fd].update.prev);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100226 if (prev == -2)
227 goto lock_self_prev;
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200228 if (unlikely(!_HA_ATOMIC_CAS(&fdtab[fd].update.prev, &prev, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100229 goto lock_self_prev;
230#endif
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100231 __ha_barrier_atomic_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100232
233 /* Now, lock the entries of our neighbours */
234 if (likely(prev != -1)) {
235redo_prev:
236 old = fd;
237
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200238 if (unlikely(!_HA_ATOMIC_CAS(&fdtab[prev].update.next, &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100239 if (unlikely(old == -2)) {
240 /* Neighbour already locked, give up and
241 * retry again once he's done
242 */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200243 fdtab[fd].update.prev = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100244 __ha_barrier_store();
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200245 fdtab[fd].update.next = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100246 __ha_barrier_store();
247 goto lock_self;
248 }
249 goto redo_prev;
250 }
251 }
252 if (likely(next != -1)) {
253redo_next:
254 old = fd;
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200255 if (unlikely(!_HA_ATOMIC_CAS(&fdtab[next].update.prev, &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100256 if (unlikely(old == -2)) {
257 /* Neighbour already locked, give up and
258 * retry again once he's done
259 */
260 if (prev != -1) {
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200261 fdtab[prev].update.next = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100262 __ha_barrier_store();
263 }
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200264 fdtab[fd].update.prev = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100265 __ha_barrier_store();
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200266 fdtab[fd].update.next = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100267 __ha_barrier_store();
268 goto lock_self;
269 }
270 goto redo_next;
271 }
272 }
273 if (list->first == fd)
274 list->first = next;
275 __ha_barrier_store();
276 last = list->last;
Olivier Houchardd3608792019-03-08 18:47:42 +0100277 while (unlikely(last == fd && (!_HA_ATOMIC_CAS(&list->last, &last, prev))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100278 __ha_compiler_barrier();
279 /* Make sure we let other threads know we're no longer in cache,
280 * before releasing our neighbours.
281 */
282 __ha_barrier_store();
283 if (likely(prev != -1))
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200284 fdtab[prev].update.next = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100285 __ha_barrier_store();
286 if (likely(next != -1))
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200287 fdtab[next].update.prev = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100288 __ha_barrier_store();
289 /* Ok, now we're out of the fd cache */
Willy Tarreau4d9888c2022-07-06 14:43:51 +0200290 fdtab[fd].update.next = -(next + 4);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100291 __ha_barrier_store();
292done:
293 return;
294}
295
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100296/* deletes the FD once nobody uses it anymore, as detected by the caller by its
297 * thread_mask being zero and its running mask turning to zero. There is no
298 * protection against concurrent accesses, it's up to the caller to make sure
Willy Tarreauc0f6f572023-02-27 18:35:39 +0100299 * only the last thread will call it. If called under isolation, it is safe to
300 * call this from another group than the FD's. This is only for internal use,
301 * please use fd_delete() instead.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200302 */
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100303void _fd_delete_orphan(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200304{
Willy Tarreauc0f6f572023-02-27 18:35:39 +0100305 int tgrp = fd_tgid(fd);
Emeric Brunf41a3f62022-07-01 17:31:25 +0200306 uint fd_disown;
307
308 fd_disown = fdtab[fd].state & FD_DISOWN;
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 Tarreau2f36d902022-07-06 16:23:41 +0200314
315 /* It's expected that a close() will result in the FD disappearing from
316 * pollers, but some pollers may have some internal bookkeeping to be
317 * done prior to the call (e.g. remove references from internal tables).
318 */
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100319 if (cur_poller.clo)
320 cur_poller.clo(fd);
Willy Tarreau2d423292021-03-24 15:34:25 +0100321
Willy Tarreau237e6a02023-03-04 15:33:24 +0100322 /* now we're about to reset some of this FD's fields. We don't want
323 * anyone to grab it anymore and we need to make sure those which could
324 * possibly have stumbled upon it right now are leaving before we
325 * proceed. This is done in two steps. First we reset the tgid so that
326 * fd_take_tgid() and fd_grab_tgid() fail, then we wait for existing
327 * ref counts to drop. Past this point we're alone dealing with the
328 * FD's thead/running/update/polled masks.
329 */
330 fd_reset_tgid(fd);
331
332 while (_HA_ATOMIC_LOAD(&fdtab[fd].refc_tgid) != 0) // refc==0 ?
333 __ha_cpu_relax();
334
Willy Tarreau2f36d902022-07-06 16:23:41 +0200335 /* we don't want this FD anymore in the global list */
Willy Tarreauc0f6f572023-02-27 18:35:39 +0100336 fd_rm_from_fd_list(&update_list[tgrp - 1], fd);
Willy Tarreau2f36d902022-07-06 16:23:41 +0200337
338 /* no more updates on this FD are relevant anymore */
339 HA_ATOMIC_STORE(&fdtab[fd].update_mask, 0);
Willy Tarreau8e2c0fa2022-07-06 16:20:11 +0200340 if (fd_nbupdt > 0 && fd_updt[fd_nbupdt - 1] == fd)
341 fd_nbupdt--;
Willy Tarreau2f36d902022-07-06 16:23:41 +0200342
Willy Tarreau2d423292021-03-24 15:34:25 +0100343 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
Olivier Houchardc22580c2019-08-05 18:51:52 +0200344 polled_mask[fd].poll_recv = polled_mask[fd].poll_send = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100345
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100346 fdtab[fd].state = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100347
Willy Tarreau38e8a1c2020-06-23 10:04:54 +0200348#ifdef DEBUG_FD
349 fdtab[fd].event_count = 0;
350#endif
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200351 fdinfo[fd].port_range = NULL;
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200352 fdtab[fd].owner = NULL;
Willy Tarreau2f36d902022-07-06 16:23:41 +0200353
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100354 /* perform the close() call last as it's what unlocks the instant reuse
355 * of this FD by any other thread.
356 */
Emeric Brunf41a3f62022-07-01 17:31:25 +0200357 if (!fd_disown)
358 close(fd);
Willy Tarreau4781b152021-04-06 13:53:36 +0200359 _HA_ATOMIC_DEC(&ha_used_fds);
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100360}
361
362/* Deletes an FD from the fdsets. The file descriptor is also closed, possibly
Willy Tarreau061754b2023-02-27 18:43:38 +0100363 * asynchronously. It is safe to call it from another thread from the same
364 * group as the FD's or from a thread from a different group. However if called
365 * from a thread from another group, there is an extra cost involved because
366 * the operation is performed under thread isolation, so doing so must be
367 * reserved for ultra-rare cases (e.g. stopping a listener).
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100368 */
369void fd_delete(int fd)
370{
Willy Tarreau9aa324d2022-01-31 20:05:02 +0100371 /* This must never happen and would definitely indicate a bug, in
372 * addition to overwriting some unexpected memory areas.
373 */
374 BUG_ON(fd < 0 || fd >= global.maxsock);
375
Willy Tarreau9baff4f2022-07-15 18:56:48 +0200376 /* NOTE: The master when going into reexec mode re-closes all FDs after
377 * they were already dispatched. But we know we didn't start the polling
378 * threads so we can still close them. The masks will probably not match
379 * however so we force the value and erase the refcount if any.
380 */
381 if (unlikely(global.mode & MODE_STARTING))
382 fdtab[fd].refc_tgid = ti->tgid;
383
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200384 /* the tgid cannot change before a complete close so we should never
385 * face the situation where we try to close an fd that was reassigned.
Willy Tarreau061754b2023-02-27 18:43:38 +0100386 * However there is one corner case where this happens, it's when an
387 * attempt to pause a listener fails (e.g. abns), leaving the listener
388 * in fault state and it is forcefully stopped. This needs to be done
389 * under isolation, and it's quite rare (i.e. once per such FD per
390 * process). Since we'll be isolated we can clear the thread mask and
391 * close the FD ourselves.
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200392 */
Willy Tarreau061754b2023-02-27 18:43:38 +0100393 if (unlikely(fd_tgid(fd) != ti->tgid)) {
394 int must_isolate = !thread_isolated() && !(global.mode & MODE_STOPPING);
395
396 if (must_isolate)
397 thread_isolate();
398
399 HA_ATOMIC_STORE(&fdtab[fd].thread_mask, 0);
400 HA_ATOMIC_STORE(&fdtab[fd].running_mask, 0);
401 _fd_delete_orphan(fd);
402
403 if (must_isolate)
404 thread_release();
405 return;
406 }
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200407
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100408 /* we must postpone removal of an FD that may currently be in use
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500409 * by another thread. This can happen in the following two situations:
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100410 * - after a takeover, the owning thread closes the connection but
411 * the previous one just woke up from the poller and entered
412 * the FD handler iocb. That thread holds an entry in running_mask
413 * and requires removal protection.
414 * - multiple threads are accepting connections on a listener, and
415 * one of them (or even an separate one) decides to unbind the
416 * listener under the listener's lock while other ones still hold
417 * the running bit.
418 * In both situations the FD is marked as unused (thread_mask = 0) and
419 * will not take new bits in its running_mask so we have the guarantee
420 * that the last thread eliminating running_mask is the one allowed to
421 * safely delete the FD. Most of the time it will be the current thread.
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800422 * We still need to set and check the one-shot flag FD_MUST_CLOSE
423 * to take care of the rare cases where a thread wakes up on late I/O
424 * before the thread_mask is zero, and sets its bit in the running_mask
425 * just after the current thread finishes clearing its own bit, hence
426 * the two threads see themselves as last ones (which they really are).
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100427 */
428
Willy Tarreaua707d022022-07-07 08:16:08 +0200429 HA_ATOMIC_OR(&fdtab[fd].running_mask, ti->ltid_bit);
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800430 HA_ATOMIC_OR(&fdtab[fd].state, FD_MUST_CLOSE);
Willy Tarreau2c3f9812021-03-24 10:51:32 +0100431 HA_ATOMIC_STORE(&fdtab[fd].thread_mask, 0);
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800432 if (fd_clr_running(fd) == ti->ltid_bit) {
433 if (HA_ATOMIC_BTR(&fdtab[fd].state, FD_MUST_CLOSE_BIT)) {
434 _fd_delete_orphan(fd);
435 }
436 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200437}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200438
Willy Tarreau97435892022-04-27 10:50:00 +0200439/* makes the new fd non-blocking and clears all other O_* flags; this is meant
440 * to be used on new FDs. Returns -1 on failure. The result is disguised at the
441 * end because some callers need to be able to ignore it regardless of the libc
442 * attributes.
Willy Tarreaua80e4a32022-04-26 10:18:07 +0200443 */
444int fd_set_nonblock(int fd)
445{
446 int ret = fcntl(fd, F_SETFL, O_NONBLOCK);
447
Willy Tarreau97435892022-04-27 10:50:00 +0200448 return DISGUISE(ret);
Willy Tarreaua80e4a32022-04-26 10:18:07 +0200449}
450
Willy Tarreau97435892022-04-27 10:50:00 +0200451/* sets the close-on-exec flag on fd; returns -1 on failure. The result is
452 * disguised at the end because some callers need to be able to ignore it
453 * regardless of the libc attributes.
454 */
Willy Tarreaua80e4a32022-04-26 10:18:07 +0200455int fd_set_cloexec(int fd)
456{
457 int flags, ret;
458
459 flags = fcntl(fd, F_GETFD);
460 flags |= FD_CLOEXEC;
461 ret = fcntl(fd, F_SETFD, flags);
Willy Tarreau97435892022-04-27 10:50:00 +0200462 return DISGUISE(ret);
Willy Tarreaua80e4a32022-04-26 10:18:07 +0200463}
464
Olivier Houchard88516642020-03-05 18:10:51 +0100465/*
466 * Take over a FD belonging to another thread.
467 * unexpected_conn is the expected owner of the fd.
468 * Returns 0 on success, and -1 on failure.
469 */
470int fd_takeover(int fd, void *expected_owner)
471{
Willy Tarreauf69fea62021-08-03 09:04:32 +0200472 unsigned long old;
Willy Tarreau42973632020-06-18 08:05:15 +0200473
Olivier Houchard88516642020-03-05 18:10:51 +0100474 /* protect ourself against a delete then an insert for the same fd,
475 * if it happens, then the owner will no longer be the expected
476 * connection.
477 */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200478 if (fdtab[fd].owner != expected_owner)
479 return -1;
Willy Tarreauf1cad382020-06-18 08:14:59 +0200480
Willy Tarreauf69fea62021-08-03 09:04:32 +0200481 /* we must be alone to work on this idle FD. If not, it means that its
482 * poller is currently waking up and is about to use it, likely to
483 * close it on shut/error, but maybe also to process any unexpectedly
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200484 * pending data. It's also possible that the FD was closed and
485 * reassigned to another thread group, so let's be careful.
Willy Tarreauf69fea62021-08-03 09:04:32 +0200486 */
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200487 if (unlikely(!fd_grab_tgid(fd, ti->tgid)))
488 return -1;
489
Willy Tarreauf69fea62021-08-03 09:04:32 +0200490 old = 0;
Willy Tarreaua707d022022-07-07 08:16:08 +0200491 if (!HA_ATOMIC_CAS(&fdtab[fd].running_mask, &old, ti->ltid_bit)) {
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200492 fd_drop_tgid(fd);
Willy Tarreauf69fea62021-08-03 09:04:32 +0200493 return -1;
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200494 }
Willy Tarreauf69fea62021-08-03 09:04:32 +0200495
496 /* success, from now on it's ours */
Willy Tarreau3638d172022-07-07 08:23:03 +0200497 HA_ATOMIC_STORE(&fdtab[fd].thread_mask, ti->ltid_bit);
Willy Tarreauf1cad382020-06-18 08:14:59 +0200498
Olivier Houchardddc874c2020-06-17 20:34:05 +0200499 /* Make sure the FD doesn't have the active bit. It is possible that
500 * the fd is polled by the thread that used to own it, the new thread
501 * is supposed to call subscribe() later, to activate polling.
502 */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200503 fd_stop_recv(fd);
504
505 /* we're done with it */
Willy Tarreaua707d022022-07-07 08:16:08 +0200506 HA_ATOMIC_AND(&fdtab[fd].running_mask, ~ti->ltid_bit);
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200507
508 /* no more changes planned */
509 fd_drop_tgid(fd);
Willy Tarreauf69fea62021-08-03 09:04:32 +0200510 return 0;
Olivier Houchard88516642020-03-05 18:10:51 +0100511}
512
Willy Tarreaudbe30602019-09-04 13:25:41 +0200513void updt_fd_polling(const int fd)
514{
Willy Tarreaucfdd20a2022-07-15 20:12:31 +0200515 uint tgrp = fd_take_tgid(fd);
516
517 /* closed ? may happen */
518 if (!tgrp)
519 return;
520
521 if (unlikely(tgrp != tgid && tgrp <= MAX_TGROUPS)) {
522 /* Hmmm delivered an update for another group... That may
523 * happen on suspend/resume of a listener for example when
524 * the FD was not even marked for running. Let's broadcast
525 * the update.
526 */
527 unsigned long update_mask = fdtab[fd].update_mask;
528 int thr;
529
Willy Tarreaub2f38c12023-01-19 19:14:18 +0100530 while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask,
531 _HA_ATOMIC_LOAD(&ha_tgroup_info[tgrp - 1].threads_enabled)))
Willy Tarreaucfdd20a2022-07-15 20:12:31 +0200532 __ha_cpu_relax();
533
534 fd_add_to_fd_list(&update_list[tgrp - 1], fd);
535
Willy Tarreauad901102023-01-19 17:10:10 +0100536 thr = one_among_mask(fdtab[fd].thread_mask & ha_tgroup_info[tgrp - 1].threads_enabled,
537 statistical_prng_range(ha_tgroup_info[tgrp - 1].count));
Willy Tarreaucfdd20a2022-07-15 20:12:31 +0200538 thr += ha_tgroup_info[tgrp - 1].base;
539 wake_thread(thr);
540
541 fd_drop_tgid(fd);
542 return;
543 }
544
545 fd_drop_tgid(fd);
546
Willy Tarreau3638d172022-07-07 08:23:03 +0200547 if (tg->threads_enabled == 1UL || (fdtab[fd].thread_mask & tg->threads_enabled) == ti->ltid_bit) {
Willy Tarreau6d3c5012022-07-05 19:21:06 +0200548 if (HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid))
Willy Tarreaudbe30602019-09-04 13:25:41 +0200549 return;
550
551 fd_updt[fd_nbupdt++] = fd;
552 } else {
553 unsigned long update_mask = fdtab[fd].update_mask;
554 do {
Willy Tarreau6d3c5012022-07-05 19:21:06 +0200555 if (update_mask == fdtab[fd].thread_mask) // FIXME: this works only on thread-groups 1
Willy Tarreaudbe30602019-09-04 13:25:41 +0200556 return;
Willy Tarreauf0158872020-09-25 12:18:53 +0200557 } while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask, fdtab[fd].thread_mask));
558
Willy Tarreau35ee7102022-07-08 11:33:43 +0200559 fd_add_to_fd_list(&update_list[tgid - 1], fd);
Willy Tarreauf0158872020-09-25 12:18:53 +0200560
Willy Tarreau3638d172022-07-07 08:23:03 +0200561 if (fd_active(fd) && !(fdtab[fd].thread_mask & ti->ltid_bit)) {
Willy Tarreau555c1922022-06-23 18:31:08 +0200562 /* we need to wake up another thread to handle it immediately, any will fit,
563 * so let's pick a random one so that it doesn't always end up on the same.
564 */
Willy Tarreau3638d172022-07-07 08:23:03 +0200565 int thr = one_among_mask(fdtab[fd].thread_mask & tg->threads_enabled,
Willy Tarreauad901102023-01-19 17:10:10 +0100566 statistical_prng_range(tg->count));
567 thr += tg->base;
Willy Tarreauf0158872020-09-25 12:18:53 +0200568 wake_thread(thr);
569 }
Willy Tarreaudbe30602019-09-04 13:25:41 +0200570 }
571}
572
Willy Tarreau84c79222021-07-29 16:53:46 +0200573/* Update events seen for FD <fd> and its state if needed. This should be
574 * called by the poller, passing FD_EV_*_{R,W,RW} in <evts>. FD_EV_ERR_*
575 * doesn't need to also pass FD_EV_SHUT_*, it's implied. ERR and SHUT are
Willy Tarreau200bd502021-07-29 16:57:19 +0200576 * allowed to be reported regardless of R/W readiness. Returns one of
577 * FD_UPDT_*.
Willy Tarreau84c79222021-07-29 16:53:46 +0200578 */
Willy Tarreau200bd502021-07-29 16:57:19 +0200579int fd_update_events(int fd, uint evts)
Willy Tarreau84c79222021-07-29 16:53:46 +0200580{
581 unsigned long locked;
582 uint old, new;
583 uint new_flags, must_stop;
Willy Tarreauf69fea62021-08-03 09:04:32 +0200584 ulong rmask, tmask;
Willy Tarreau84c79222021-07-29 16:53:46 +0200585
Willy Tarreaubdcd3252022-06-22 09:19:46 +0200586 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreau84c79222021-07-29 16:53:46 +0200587
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200588 if (unlikely(!fd_grab_tgid(fd, ti->tgid))) {
589 /* the FD changed to another tgid, we can't safely
590 * check it anymore. The bits in the masks are not
591 * ours anymore and we're not allowed to touch them.
592 * Ours have already been cleared and the FD was
593 * closed in between so we can safely leave now.
594 */
595 activity[tid].poll_drop_fd++;
596 return FD_UPDT_CLOSED;
597 }
598
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800599 /* Do not take running_mask if not strictly needed (will trigger a
600 * cosmetic BUG_ON() in fd_insert() anyway if done).
601 */
602 tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask);
603 if (!(tmask & ti->ltid_bit))
604 goto do_update;
605
606 HA_ATOMIC_OR(&fdtab[fd].running_mask, ti->ltid_bit);
607
608 /* From this point, our bit may possibly be in thread_mask, but it may
609 * still vanish, either because a takeover completed just before taking
610 * the bit above with the new owner deleting the FD, or because a
611 * takeover started just before taking the bit. In order to make sure a
612 * started takeover is complete, we need to verify that all bits of
613 * running_mask are present in thread_mask, since takeover first takes
614 * running then atomically replaces thread_mask. Once it's stable, if
615 * our bit remains there, no further takeover may happen because we
616 * hold running, but if our bit is not there it means we've lost the
617 * takeover race and have to decline touching the FD. Regarding the
618 * risk of deletion, our bit in running_mask prevents fd_delete() from
619 * finalizing the close, and the caller will leave the FD with a zero
620 * thread_mask and the FD_MUST_CLOSE flag set. It will then be our
621 * responsibility to close it.
622 */
Willy Tarreauf69fea62021-08-03 09:04:32 +0200623 do {
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800624 rmask = _HA_ATOMIC_LOAD(&fdtab[fd].running_mask);
625 tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask);
626 rmask &= ~ti->ltid_bit;
627 } while (rmask & ~tmask);
Willy Tarreauf69fea62021-08-03 09:04:32 +0200628
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800629 /* Now tmask is stable. Do nothing if the FD was taken over under us */
Willy Tarreaub1093c62022-07-09 18:55:37 +0200630
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800631 if (!(tmask & ti->ltid_bit)) {
632 /* a takeover has started */
633 activity[tid].poll_skip_fd++;
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200634
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800635 if (fd_clr_running(fd) == ti->ltid_bit)
636 goto closed_or_migrated;
637
638 goto do_update;
639 }
Willy Tarreau84c79222021-07-29 16:53:46 +0200640
Willy Tarreau0dc1cc92022-07-06 18:47:38 +0200641 /* with running we're safe now, we can drop the reference */
642 fd_drop_tgid(fd);
643
Willy Tarreau3638d172022-07-07 08:23:03 +0200644 locked = (tmask != ti->ltid_bit);
Willy Tarreau84c79222021-07-29 16:53:46 +0200645
646 /* OK now we are guaranteed that our thread_mask was present and
647 * that we're allowed to update the FD.
648 */
649
650 new_flags =
651 ((evts & FD_EV_READY_R) ? FD_POLL_IN : 0) |
652 ((evts & FD_EV_READY_W) ? FD_POLL_OUT : 0) |
653 ((evts & FD_EV_SHUT_R) ? FD_POLL_HUP : 0) |
654 ((evts & FD_EV_ERR_RW) ? FD_POLL_ERR : 0);
655
656 /* SHUTW reported while FD was active for writes is an error */
657 if ((fdtab[fd].state & FD_EV_ACTIVE_W) && (evts & FD_EV_SHUT_W))
658 new_flags |= FD_POLL_ERR;
659
660 /* compute the inactive events reported late that must be stopped */
661 must_stop = 0;
662 if (unlikely(!fd_active(fd))) {
663 /* both sides stopped */
664 must_stop = FD_POLL_IN | FD_POLL_OUT;
665 }
666 else if (unlikely(!fd_recv_active(fd) && (evts & (FD_EV_READY_R | FD_EV_SHUT_R | FD_EV_ERR_RW)))) {
667 /* only send remains */
668 must_stop = FD_POLL_IN;
669 }
670 else if (unlikely(!fd_send_active(fd) && (evts & (FD_EV_READY_W | FD_EV_SHUT_W | FD_EV_ERR_RW)))) {
671 /* only recv remains */
672 must_stop = FD_POLL_OUT;
673 }
674
675 if (new_flags & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
676 new_flags |= FD_EV_READY_R;
677
678 if (new_flags & (FD_POLL_OUT | FD_POLL_ERR))
679 new_flags |= FD_EV_READY_W;
680
681 old = fdtab[fd].state;
682 new = (old & ~FD_POLL_UPDT_MASK) | new_flags;
683
684 if (unlikely(locked)) {
685 /* Locked FDs (those with more than 2 threads) are atomically updated */
686 while (unlikely(new != old && !_HA_ATOMIC_CAS(&fdtab[fd].state, &old, new)))
687 new = (old & ~FD_POLL_UPDT_MASK) | new_flags;
688 } else {
689 if (new != old)
690 fdtab[fd].state = new;
691 }
692
693 if (fdtab[fd].iocb && fd_active(fd)) {
694 fdtab[fd].iocb(fd);
695 }
696
Willy Tarreau0b51eab2022-07-08 15:36:14 +0200697 /*
698 * We entered iocb with running set and with the valid tgid.
699 * Since then, this is what could have happened:
700 * - another thread tried to close the FD (e.g. timeout task from
701 * another one that owns it). We still have running set, but not
702 * tmask. We must call fd_clr_running() then _fd_delete_orphan()
703 * if we were the last one.
704 *
705 * - the iocb tried to close the FD => bit no more present in running,
706 * nothing to do. If it managed to close it, the poller's ->clo()
707 * has already been called.
708 *
709 * - after we closed, the FD was reassigned to another thread in
710 * another group => running not present, tgid differs, nothing to
711 * do because if it got reassigned it indicates it was already
712 * closed.
713 *
714 * There's no risk of takeover of the valid FD here during this period.
715 * Also if we still have running, immediately after we release it, the
716 * events above might instantly happen due to another thread taking
717 * over.
718 *
719 * As such, the only cases where the FD is still relevant are:
720 * - tgid still set and running still set (most common)
721 * - tgid still valid but running cleared due to fd_delete(): we may
722 * still need to stop polling otherwise we may keep it enabled
723 * while waiting for other threads to close it.
724 * And given that we may need to program a tentative update in case we
725 * don't immediately close, it's easier to grab the tgid during the
726 * whole check.
727 */
728
729 if (!fd_grab_tgid(fd, tgid))
730 return FD_UPDT_CLOSED;
731
732 tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask);
733
Willy Tarreau84c79222021-07-29 16:53:46 +0200734 /* another thread might have attempted to close this FD in the mean
735 * time (e.g. timeout task) striking on a previous thread and closing.
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800736 * This is detected by us being the last owners of a running_mask bit,
737 * and the thread_mask being zero. At the moment we release the running
738 * bit, a takeover may also happen, so in practice we check for our loss
739 * of the thread_mask bitboth thread_mask and running_mask being 0 after
Willy Tarreau0b51eab2022-07-08 15:36:14 +0200740 * we remove ourselves last. There is no risk the FD gets reassigned
741 * to a different group since it's not released until the real close()
742 * in _fd_delete_orphan().
Willy Tarreau84c79222021-07-29 16:53:46 +0200743 */
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800744 if (fd_clr_running(fd) == ti->ltid_bit && !(tmask & ti->ltid_bit))
745 goto closed_or_migrated;
Willy Tarreau84c79222021-07-29 16:53:46 +0200746
747 /* we had to stop this FD and it still must be stopped after the I/O
748 * cb's changes, so let's program an update for this.
749 */
Willy Tarreau6d3c5012022-07-05 19:21:06 +0200750 if (must_stop && !(fdtab[fd].update_mask & ti->ltid_bit)) {
Willy Tarreau84c79222021-07-29 16:53:46 +0200751 if (((must_stop & FD_POLL_IN) && !fd_recv_active(fd)) ||
752 ((must_stop & FD_POLL_OUT) && !fd_send_active(fd)))
Willy Tarreau6d3c5012022-07-05 19:21:06 +0200753 if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid))
Willy Tarreau84c79222021-07-29 16:53:46 +0200754 fd_updt[fd_nbupdt++] = fd;
755 }
Willy Tarreau200bd502021-07-29 16:57:19 +0200756
Willy Tarreau0b51eab2022-07-08 15:36:14 +0200757 fd_drop_tgid(fd);
Willy Tarreau200bd502021-07-29 16:57:19 +0200758 return FD_UPDT_DONE;
Willy Tarreaucd8914b2023-03-07 10:11:02 -0800759
760 closed_or_migrated:
761 /* We only come here once we've last dropped running and the FD is
762 * not for us as per !(tmask & tid_bit). It may imply we're
763 * responsible for closing it. Otherwise it's just a migration.
764 */
765 if (HA_ATOMIC_BTR(&fdtab[fd].state, FD_MUST_CLOSE_BIT)) {
766 fd_drop_tgid(fd);
767 _fd_delete_orphan(fd);
768 return FD_UPDT_CLOSED;
769 }
770
771 /* So we were alone, no close bit, at best the FD was migrated, at
772 * worst it's in the process of being closed by another thread. We must
773 * be ultra-careful as it can be re-inserted by yet another thread as
774 * the result of socket() or accept(). Let's just tell the poller the
775 * FD was lost. If it was closed it was already removed and this will
776 * only cost an update for nothing.
777 */
778
779 do_update:
780 /* The FD is not closed but we don't want the poller to wake up for
781 * it anymore.
782 */
783 if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid))
784 fd_updt[fd_nbupdt++] = fd;
785
786 fd_drop_tgid(fd);
787 return FD_UPDT_MIGRATED;
Willy Tarreau84c79222021-07-29 16:53:46 +0200788}
789
Willy Tarreau88c4c142022-07-09 23:19:19 +0200790/* This is used by pollers at boot time to re-register desired events for
791 * all FDs after new pollers have been created. It doesn't do much, it checks
792 * that their thread group matches the one in argument, and that the thread
793 * mask matches at least one of the bits in the mask, and if so, marks the FD
794 * as updated.
795 */
796void fd_reregister_all(int tgrp, ulong mask)
797{
798 int fd;
799
800 for (fd = 0; fd < global.maxsock; fd++) {
801 if (!fdtab[fd].owner)
802 continue;
803
804 /* make sure we don't register other tgroups' FDs. We just
805 * avoid needlessly taking the lock if not needed.
806 */
807 if (!(_HA_ATOMIC_LOAD(&fdtab[fd].thread_mask) & mask) ||
808 !fd_grab_tgid(fd, tgrp))
809 continue; // was not for us anyway
810
811 if (_HA_ATOMIC_LOAD(&fdtab[fd].thread_mask) & mask)
812 updt_fd_polling(fd);
813 fd_drop_tgid(fd);
814 }
815}
816
Willy Tarreau931d8b72019-08-27 11:08:17 +0200817/* Tries to send <npfx> parts from <prefix> followed by <nmsg> parts from <msg>
818 * optionally followed by a newline if <nl> is non-null, to file descriptor
819 * <fd>. The message is sent atomically using writev(). It may be truncated to
820 * <maxlen> bytes if <maxlen> is non-null. There is no distinction between the
821 * two lists, it's just a convenience to help the caller prepend some prefixes
822 * when necessary. It takes the fd's lock to make sure no other thread will
823 * write to the same fd in parallel. Returns the number of bytes sent, or <=0
824 * on failure. A limit to 31 total non-empty segments is enforced. The caller
825 * is responsible for taking care of making the fd non-blocking.
826 */
827ssize_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)
828{
829 struct iovec iovec[32];
Willy Tarreau931d8b72019-08-27 11:08:17 +0200830 size_t sent = 0;
831 int vec = 0;
Willy Tarreaudf187872020-06-11 14:25:47 +0200832 int attempts = 0;
Willy Tarreau931d8b72019-08-27 11:08:17 +0200833
834 if (!maxlen)
835 maxlen = ~0;
836
837 /* keep one char for a possible trailing '\n' in any case */
838 maxlen--;
839
840 /* make an iovec from the concatenation of all parts of the original
841 * message. Skip empty fields and truncate the whole message to maxlen,
842 * leaving one spare iovec for the '\n'.
843 */
844 while (vec < (sizeof(iovec) / sizeof(iovec[0]) - 1)) {
845 if (!npfx) {
846 pfx = msg;
847 npfx = nmsg;
848 nmsg = 0;
849 if (!npfx)
850 break;
851 }
852
853 iovec[vec].iov_base = pfx->ptr;
854 iovec[vec].iov_len = MIN(maxlen, pfx->len);
855 maxlen -= iovec[vec].iov_len;
Willy Tarreau931d8b72019-08-27 11:08:17 +0200856 if (iovec[vec].iov_len)
857 vec++;
858 pfx++; npfx--;
859 };
860
861 if (nl) {
862 iovec[vec].iov_base = "\n";
863 iovec[vec].iov_len = 1;
864 vec++;
865 }
866
Willy Tarreaudf187872020-06-11 14:25:47 +0200867 /* make sure we never interleave writes and we never block. This means
868 * we prefer to fail on collision than to block. But we don't want to
869 * lose too many logs so we just perform a few lock attempts then give
870 * up.
871 */
872
Willy Tarreau1673c4a2021-04-07 17:36:57 +0200873 while (HA_ATOMIC_BTS(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT)) {
Willy Tarreaudf187872020-06-11 14:25:47 +0200874 if (++attempts >= 200) {
875 /* so that the caller knows the message couldn't be delivered */
876 sent = -1;
877 errno = EAGAIN;
878 goto leave;
879 }
880 ha_thread_relax();
881 }
882
Willy Tarreau0cc61282021-04-06 17:57:12 +0200883 if (unlikely(!(fdtab[fd].state & FD_INITIALIZED))) {
884 HA_ATOMIC_OR(&fdtab[fd].state, FD_INITIALIZED);
Willy Tarreau7e9776a2019-08-30 14:41:47 +0200885 if (!isatty(fd))
Willy Tarreau38247432022-04-26 10:24:14 +0200886 fd_set_nonblock(fd);
Willy Tarreau7e9776a2019-08-30 14:41:47 +0200887 }
Willy Tarreau931d8b72019-08-27 11:08:17 +0200888 sent = writev(fd, iovec, vec);
Willy Tarreau1673c4a2021-04-07 17:36:57 +0200889 HA_ATOMIC_BTR(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT);
Willy Tarreau931d8b72019-08-27 11:08:17 +0200890
Willy Tarreaudf187872020-06-11 14:25:47 +0200891 leave:
Willy Tarreau931d8b72019-08-27 11:08:17 +0200892 /* sent > 0 if the message was delivered */
893 return sent;
894}
895
Olivier Houchard2292edf2019-02-25 14:26:54 +0100896#if defined(USE_CLOSEFROM)
897void my_closefrom(int start)
898{
899 closefrom(start);
900}
901
Willy Tarreaue5733232019-05-22 19:24:06 +0200902#elif defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100903/* This is a portable implementation of closefrom(). It closes all open file
904 * descriptors starting at <start> and above. It relies on the fact that poll()
905 * will return POLLNVAL for each invalid (hence close) file descriptor passed
906 * in argument in order to skip them. It acts with batches of FDs and will
907 * typically perform one poll() call per 1024 FDs so the overhead is low in
908 * case all FDs have to be closed.
909 */
910void my_closefrom(int start)
911{
912 struct pollfd poll_events[1024];
913 struct rlimit limit;
914 int nbfds, fd, ret, idx;
915 int step, next;
916
917 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
918 step = nbfds = limit.rlim_cur;
919 else
920 step = nbfds = 0;
921
922 if (nbfds <= 0) {
923 /* set safe limit */
924 nbfds = 1024;
925 step = 256;
926 }
927
928 if (step > sizeof(poll_events) / sizeof(poll_events[0]))
929 step = sizeof(poll_events) / sizeof(poll_events[0]);
930
931 while (start < nbfds) {
932 next = (start / step + 1) * step;
933
934 for (fd = start; fd < next && fd < nbfds; fd++) {
935 poll_events[fd - start].fd = fd;
936 poll_events[fd - start].events = 0;
937 }
938
939 do {
940 ret = poll(poll_events, fd - start, 0);
941 if (ret >= 0)
942 break;
Willy Tarreauacef5e22022-04-25 20:32:15 +0200943 } while (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR || errno == ENOMEM);
Willy Tarreau9188ac62019-02-21 22:12:47 +0100944
Willy Tarreaub8e602c2019-02-22 09:07:42 +0100945 if (ret)
946 ret = fd - start;
947
Willy Tarreau9188ac62019-02-21 22:12:47 +0100948 for (idx = 0; idx < ret; idx++) {
949 if (poll_events[idx].revents & POLLNVAL)
950 continue; /* already closed */
951
952 fd = poll_events[idx].fd;
953 close(fd);
954 }
955 start = next;
956 }
957}
958
Willy Tarreaue5733232019-05-22 19:24:06 +0200959#else // defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100960
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100961/* This is a portable implementation of closefrom(). It closes all open file
962 * descriptors starting at <start> and above. This is a naive version for use
963 * when the operating system provides no alternative.
964 */
965void my_closefrom(int start)
966{
967 struct rlimit limit;
968 int nbfds;
969
970 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
971 nbfds = limit.rlim_cur;
972 else
973 nbfds = 0;
974
975 if (nbfds <= 0)
976 nbfds = 1024; /* safe limit */
977
978 while (start < nbfds)
979 close(start++);
980}
Willy Tarreaue5733232019-05-22 19:24:06 +0200981#endif // defined(USE_POLL)
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100982
Willy Tarreau922a9072022-09-22 16:08:47 +0200983/* Sets the RLIMIT_NOFILE setting to <new_limit> and returns the previous one
984 * in <old_limit> if the pointer is not NULL, even if set_rlimit() fails. The
985 * two pointers may point to the same variable as the copy happens after
986 * setting the new value. The value is only changed if at least one of the new
987 * limits is strictly higher than the current one, otherwise returns 0 without
988 * changing anything. The getrlimit() or setrlimit() syscall return value is
989 * returned and errno is preserved.
990 */
991int raise_rlim_nofile(struct rlimit *old_limit, struct rlimit *new_limit)
992{
993 struct rlimit limit = { };
994 int ret = 0;
995
996 ret = getrlimit(RLIMIT_NOFILE, &limit);
997
998 if (ret == 0 &&
999 (limit.rlim_max < new_limit->rlim_max ||
1000 limit.rlim_cur < new_limit->rlim_cur)) {
1001 ret = setrlimit(RLIMIT_NOFILE, new_limit);
1002 }
1003
1004 if (old_limit)
1005 *old_limit = limit;
1006
1007 return ret;
1008}
1009
Willy Tarreaub63888c2021-10-06 19:55:29 +02001010/* Computes the bounded poll() timeout based on the next expiration timer <next>
1011 * by bounding it to MAX_DELAY_MS. <next> may equal TICK_ETERNITY. The pollers
1012 * just needs to call this function right before polling to get their timeout
1013 * value. Timeouts that are already expired (possibly due to a pending event)
1014 * are accounted for in activity.poll_exp.
1015 */
1016int compute_poll_timeout(int next)
1017{
1018 int wait_time;
1019
1020 if (!tick_isset(next))
1021 wait_time = MAX_DELAY_MS;
1022 else if (tick_is_expired(next, now_ms)) {
1023 activity[tid].poll_exp++;
1024 wait_time = 0;
1025 }
1026 else {
1027 wait_time = TICKS_TO_MS(tick_remain(now_ms, next)) + 1;
1028 if (wait_time > MAX_DELAY_MS)
1029 wait_time = MAX_DELAY_MS;
1030 }
1031 return wait_time;
1032}
1033
Willy Tarreau058b2c12022-06-22 15:21:34 +02001034/* Handle the return of the poller, which consists in calculating the idle
1035 * time, saving a few clocks, marking the thread harmful again etc. All that
1036 * is some boring stuff that all pollers have to do anyway.
1037 */
1038void fd_leaving_poll(int wait_time, int status)
1039{
1040 clock_leaving_poll(wait_time, status);
1041
1042 thread_harmless_end();
1043 thread_idle_end();
1044
Willy Tarreaue7475c82022-06-20 09:23:24 +02001045 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_SLEEPING);
Willy Tarreau058b2c12022-06-22 15:21:34 +02001046}
1047
Willy Tarreau4f60f162007-04-08 16:39:58 +02001048/* disable the specified poller */
1049void disable_poller(const char *poller_name)
1050{
1051 int p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001052
Willy Tarreau4f60f162007-04-08 16:39:58 +02001053 for (p = 0; p < nbpollers; p++)
1054 if (strcmp(pollers[p].name, poller_name) == 0)
1055 pollers[p].pref = 0;
1056}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001057
Olivier Houchard79321b92018-07-26 17:55:11 +02001058void poller_pipe_io_handler(int fd)
1059{
1060 char buf[1024];
1061 /* Flush the pipe */
1062 while (read(fd, buf, sizeof(buf)) > 0);
1063 fd_cant_recv(fd);
1064}
1065
Willy Tarreau082b6282019-05-22 14:42:12 +02001066/* allocate the per-thread fd_updt thus needs to be called early after
1067 * thread creation.
1068 */
1069static int alloc_pollers_per_thread()
1070{
1071 fd_updt = calloc(global.maxsock, sizeof(*fd_updt));
1072 return fd_updt != NULL;
1073}
1074
1075/* Initialize the pollers per thread.*/
Christopher Fauletd4604ad2017-05-29 10:40:41 +02001076static int init_pollers_per_thread()
1077{
Olivier Houchard79321b92018-07-26 17:55:11 +02001078 int mypipe[2];
Willy Tarreau082b6282019-05-22 14:42:12 +02001079
1080 if (pipe(mypipe) < 0)
Olivier Houchard79321b92018-07-26 17:55:11 +02001081 return 0;
Willy Tarreau082b6282019-05-22 14:42:12 +02001082
Olivier Houchard79321b92018-07-26 17:55:11 +02001083 poller_rd_pipe = mypipe[0];
1084 poller_wr_pipe[tid] = mypipe[1];
Willy Tarreau38247432022-04-26 10:24:14 +02001085 fd_set_nonblock(poller_rd_pipe);
Willy Tarreau27a32452022-07-07 08:29:00 +02001086 fd_insert(poller_rd_pipe, poller_pipe_io_handler, poller_pipe_io_handler, tgid, ti->ltid_bit);
1087 fd_insert(poller_wr_pipe[tid], poller_pipe_io_handler, poller_pipe_io_handler, tgid, ti->ltid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02001088 fd_want_recv(poller_rd_pipe);
Willy Tarreau3a6af1e2022-01-24 20:33:09 +01001089 fd_stop_both(poller_wr_pipe[tid]);
Christopher Fauletd4604ad2017-05-29 10:40:41 +02001090 return 1;
1091}
1092
1093/* Deinitialize the pollers per thread */
1094static void deinit_pollers_per_thread()
1095{
William Lallemand808e1b72018-12-15 22:34:31 +01001096 /* rd and wr are init at the same place, but only rd is init to -1, so
1097 we rely to rd to close. */
1098 if (poller_rd_pipe > -1) {
Willy Tarreaue6ca4352022-08-10 17:08:17 +02001099 fd_delete(poller_rd_pipe);
William Lallemand808e1b72018-12-15 22:34:31 +01001100 poller_rd_pipe = -1;
Willy Tarreaue6ca4352022-08-10 17:08:17 +02001101 fd_delete(poller_wr_pipe[tid]);
William Lallemand808e1b72018-12-15 22:34:31 +01001102 poller_wr_pipe[tid] = -1;
1103 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +02001104}
1105
Willy Tarreau082b6282019-05-22 14:42:12 +02001106/* Release the pollers per thread, to be called late */
1107static void free_pollers_per_thread()
1108{
Willy Tarreaub9831452022-07-26 19:06:17 +02001109 fd_nbupdt = 0;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001110 ha_free(&fd_updt);
Willy Tarreau082b6282019-05-22 14:42:12 +02001111}
1112
Willy Tarreaubaaee002006-06-26 02:48:02 +02001113/*
Willy Tarreau4f60f162007-04-08 16:39:58 +02001114 * Initialize the pollers till the best one is found.
1115 * If none works, returns 0, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001116 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001117int init_pollers()
Willy Tarreaubaaee002006-06-26 02:48:02 +02001118{
Willy Tarreau4f60f162007-04-08 16:39:58 +02001119 int p;
1120 struct poller *bp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001121
Willy Tarreau97ea9c42022-01-27 16:10:48 +01001122 if ((fdtab_addr = calloc(global.maxsock, sizeof(*fdtab) + 64)) == NULL) {
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001123 ha_alert("Not enough memory to allocate %d entries for fdtab!\n", global.maxsock);
Christopher Faulet63fe6522017-08-31 17:52:09 +02001124 goto fail_tab;
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001125 }
Christopher Faulet63fe6522017-08-31 17:52:09 +02001126
Willy Tarreau97ea9c42022-01-27 16:10:48 +01001127 /* always provide an aligned fdtab */
1128 fdtab = (struct fdtab*)((((size_t)fdtab_addr) + 63) & -(size_t)64);
1129
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001130 if ((polled_mask = calloc(global.maxsock, sizeof(*polled_mask))) == NULL) {
1131 ha_alert("Not enough memory to allocate %d entries for polled_mask!\n", global.maxsock);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +02001132 goto fail_polledmask;
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001133 }
Uman Shahzadda7eeed2019-01-17 08:21:39 +00001134
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001135 if ((fdinfo = calloc(global.maxsock, sizeof(*fdinfo))) == NULL) {
1136 ha_alert("Not enough memory to allocate %d entries for fdinfo!\n", global.maxsock);
Christopher Faulet63fe6522017-08-31 17:52:09 +02001137 goto fail_info;
Willy Tarreau7c9f7562020-10-13 15:45:07 +02001138 }
Christopher Faulet63fe6522017-08-31 17:52:09 +02001139
Willy Tarreau35ee7102022-07-08 11:33:43 +02001140 for (p = 0; p < MAX_TGROUPS; p++)
1141 update_list[p].first = update_list[p].last = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001142
Olivier Houchard4815c8c2018-01-24 18:17:56 +01001143 for (p = 0; p < global.maxsock; p++) {
Olivier Houchard4815c8c2018-01-24 18:17:56 +01001144 /* Mark the fd as out of the fd cache */
Olivier Houchard6b96f722018-04-25 16:58:25 +02001145 fdtab[p].update.next = -3;
Olivier Houchard4815c8c2018-01-24 18:17:56 +01001146 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +02001147
Willy Tarreau4f60f162007-04-08 16:39:58 +02001148 do {
1149 bp = NULL;
1150 for (p = 0; p < nbpollers; p++)
1151 if (!bp || (pollers[p].pref > bp->pref))
1152 bp = &pollers[p];
Willy Tarreaubaaee002006-06-26 02:48:02 +02001153
Willy Tarreau4f60f162007-04-08 16:39:58 +02001154 if (!bp || bp->pref == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001155 break;
1156
Willy Tarreau4f60f162007-04-08 16:39:58 +02001157 if (bp->init(bp)) {
1158 memcpy(&cur_poller, bp, sizeof(*bp));
1159 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001160 }
Willy Tarreau4f60f162007-04-08 16:39:58 +02001161 } while (!bp || bp->pref == 0);
Willy Tarreau7be79a42012-11-11 15:02:54 +01001162
Christopher Faulet63fe6522017-08-31 17:52:09 +02001163 free(fdinfo);
1164 fail_info:
Olivier Houchardcb92f5c2018-04-26 14:23:07 +02001165 free(polled_mask);
1166 fail_polledmask:
Willy Tarreau97ea9c42022-01-27 16:10:48 +01001167 free(fdtab_addr);
Uman Shahzadda7eeed2019-01-17 08:21:39 +00001168 fail_tab:
Willy Tarreau7be79a42012-11-11 15:02:54 +01001169 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001170}
1171
Willy Tarreaubaaee002006-06-26 02:48:02 +02001172/*
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001173 * Deinitialize the pollers.
1174 */
1175void deinit_pollers() {
1176
1177 struct poller *bp;
1178 int p;
1179
1180 for (p = 0; p < nbpollers; p++) {
1181 bp = &pollers[p];
1182
1183 if (bp && bp->pref)
1184 bp->term(bp);
1185 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +02001186
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001187 ha_free(&fdinfo);
Willy Tarreau97ea9c42022-01-27 16:10:48 +01001188 ha_free(&fdtab_addr);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001189 ha_free(&polled_mask);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001190}
1191
1192/*
Willy Tarreau2ff76222007-04-09 19:29:56 +02001193 * Lists the known pollers on <out>.
1194 * Should be performed only before initialization.
1195 */
1196int list_pollers(FILE *out)
1197{
1198 int p;
1199 int last, next;
1200 int usable;
1201 struct poller *bp;
1202
1203 fprintf(out, "Available polling systems :\n");
1204
1205 usable = 0;
1206 bp = NULL;
1207 last = next = -1;
1208 while (1) {
1209 for (p = 0; p < nbpollers; p++) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001210 if ((next < 0 || pollers[p].pref > next)
Willy Tarreaue79c3b22010-11-19 10:20:36 +01001211 && (last < 0 || pollers[p].pref < last)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001212 next = pollers[p].pref;
Willy Tarreaue79c3b22010-11-19 10:20:36 +01001213 if (!bp || (pollers[p].pref > bp->pref))
1214 bp = &pollers[p];
1215 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001216 }
1217
1218 if (next == -1)
1219 break;
1220
1221 for (p = 0; p < nbpollers; p++) {
1222 if (pollers[p].pref == next) {
1223 fprintf(out, " %10s : ", pollers[p].name);
1224 if (pollers[p].pref == 0)
1225 fprintf(out, "disabled, ");
1226 else
1227 fprintf(out, "pref=%3d, ", pollers[p].pref);
1228 if (pollers[p].test(&pollers[p])) {
1229 fprintf(out, " test result OK");
1230 if (next > 0)
1231 usable++;
Willy Tarreaue79c3b22010-11-19 10:20:36 +01001232 } else {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001233 fprintf(out, " test result FAILED");
Willy Tarreaue79c3b22010-11-19 10:20:36 +01001234 if (bp == &pollers[p])
1235 bp = NULL;
1236 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001237 fprintf(out, "\n");
1238 }
1239 }
1240 last = next;
1241 next = -1;
1242 };
1243 fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none");
1244 return 0;
1245}
1246
1247/*
1248 * Some pollers may lose their connection after a fork(). It may be necessary
1249 * to create initialize part of them again. Returns 0 in case of failure,
1250 * otherwise 1. The fork() function may be NULL if unused. In case of error,
1251 * the the current poller is destroyed and the caller is responsible for trying
1252 * another one by calling init_pollers() again.
1253 */
1254int fork_poller()
1255{
Conrad Hoffmann041751c2014-05-20 14:28:24 +02001256 int fd;
Willy Tarreauce036bc2018-01-29 14:58:02 +01001257 for (fd = 0; fd < global.maxsock; fd++) {
Conrad Hoffmann041751c2014-05-20 14:28:24 +02001258 if (fdtab[fd].owner) {
Willy Tarreau030dae12021-04-06 17:53:33 +02001259 HA_ATOMIC_OR(&fdtab[fd].state, FD_CLONED);
Conrad Hoffmann041751c2014-05-20 14:28:24 +02001260 }
1261 }
1262
Willy Tarreau2ff76222007-04-09 19:29:56 +02001263 if (cur_poller.fork) {
1264 if (cur_poller.fork(&cur_poller))
1265 return 1;
1266 cur_poller.term(&cur_poller);
1267 return 0;
1268 }
1269 return 1;
1270}
1271
Willy Tarreaubc52bec2020-06-18 08:58:47 +02001272/* config parser for global "tune.fd.edge-triggered", accepts "on" or "off" */
1273static int cfg_parse_tune_fd_edge_triggered(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001274 const struct proxy *defpx, const char *file, int line,
Willy Tarreaubc52bec2020-06-18 08:58:47 +02001275 char **err)
1276{
1277 if (too_many_args(1, args, err, NULL))
1278 return -1;
1279
1280 if (strcmp(args[1], "on") == 0)
1281 global.tune.options |= GTUNE_FD_ET;
1282 else if (strcmp(args[1], "off") == 0)
1283 global.tune.options &= ~GTUNE_FD_ET;
1284 else {
1285 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1286 return -1;
1287 }
1288 return 0;
1289}
1290
1291/* config keyword parsers */
1292static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau9eec7e22021-05-08 11:06:32 +02001293 { CFG_GLOBAL, "tune.fd.edge-triggered", cfg_parse_tune_fd_edge_triggered, KWF_EXPERIMENTAL },
Willy Tarreaubc52bec2020-06-18 08:58:47 +02001294 { 0, NULL, NULL }
1295}};
1296
1297INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1298
Willy Tarreau082b6282019-05-22 14:42:12 +02001299REGISTER_PER_THREAD_ALLOC(alloc_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +01001300REGISTER_PER_THREAD_INIT(init_pollers_per_thread);
1301REGISTER_PER_THREAD_DEINIT(deinit_pollers_per_thread);
Willy Tarreau082b6282019-05-22 14:42:12 +02001302REGISTER_PER_THREAD_FREE(free_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +01001303
Willy Tarreau2ff76222007-04-09 19:29:56 +02001304/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001305 * Local variables:
1306 * c-indent-level: 8
1307 * c-basic-offset: 8
1308 * End:
1309 */