blob: a1160da76f204cff6e0062f14e4ea08b7517f984 [file] [log] [blame]
Willy Tarreaudd815982007-10-16 12:25:14 +02001/*
Willy Tarreaud1d54542012-09-12 22:58:11 +02002 * Listener management functions.
Willy Tarreaudd815982007-10-16 12:25:14 +02003 *
Willy Tarreau0ccb7442013-01-07 22:54:17 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaudd815982007-10-16 12:25:14 +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 *
11 */
12
Willy Tarreau6ae1ba62014-05-07 19:01:58 +020013#include <ctype.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020014#include <errno.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020015#include <stdio.h>
16#include <string.h>
Willy Tarreau95ccdde2014-02-01 09:28:36 +010017#include <unistd.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020018
Willy Tarreaudcc048a2020-06-04 19:11:43 +020019#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020021#include <haproxy/activity.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020022#include <haproxy/cfgparse.h>
Willy Tarreaudbf78022021-10-06 09:05:08 +020023#include <haproxy/cli-t.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020024#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020025#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/fd.h>
27#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020028#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020029#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020030#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020031#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#include <haproxy/protocol.h>
Willy Tarreau5958c432021-05-08 20:30:37 +020033#include <haproxy/proxy.h>
Frédéric Lécaille748ece62022-05-21 23:58:40 +020034#include <haproxy/quic_tp.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/sample.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020036#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020037#include <haproxy/task.h>
Willy Tarreau9310f482021-10-06 16:18:40 +020038#include <haproxy/ticks.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/tools.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020040
Willy Tarreaub648d632007-10-28 22:13:50 +010041
Willy Tarreau26982662012-09-12 23:17:10 +020042/* List head of all known bind keywords */
Willy Tarreauca1acd62022-03-29 15:02:44 +020043struct bind_kw_list bind_keywords = {
Willy Tarreau26982662012-09-12 23:17:10 +020044 .list = LIST_HEAD_INIT(bind_keywords.list)
45};
46
Willy Tarreaua1d97f82019-12-10 11:18:41 +010047/* list of the temporarily limited listeners because of lack of resource */
48static struct mt_list global_listener_queue = MT_LIST_HEAD_INIT(global_listener_queue);
49static struct task *global_listener_queue_task;
Willy Tarreau96151022023-05-11 13:51:31 +020050/* number of times an accepted connection resulted in maxconn being reached */
51ullong maxconn_reached = 0;
Willy Tarreau469fa472022-11-22 09:08:23 +010052__decl_thread(static HA_RWLOCK_T global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +010053
William Dauchy3679d0c2021-02-14 23:22:55 +010054/* listener status for stats */
55const char* li_status_st[LI_STATE_COUNT] = {
56 [LI_STATUS_WAITING] = "WAITING",
57 [LI_STATUS_OPEN] = "OPEN",
58 [LI_STATUS_FULL] = "FULL",
59};
Willy Tarreaua1d97f82019-12-10 11:18:41 +010060
Willy Tarreau1efafce2019-01-27 15:37:19 +010061#if defined(USE_THREAD)
62
63struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
64
65/* dequeue and process a pending connection from the local accept queue (single
Willy Tarreau83efc322020-10-14 17:37:17 +020066 * consumer). Returns the accepted connection or NULL if none was found.
Willy Tarreau1efafce2019-01-27 15:37:19 +010067 */
Willy Tarreau83efc322020-10-14 17:37:17 +020068struct connection *accept_queue_pop_sc(struct accept_queue_ring *ring)
Willy Tarreau1efafce2019-01-27 15:37:19 +010069{
Willy Tarreau1efafce2019-01-27 15:37:19 +010070 unsigned int pos, next;
Willy Tarreau83efc322020-10-14 17:37:17 +020071 struct connection *ptr;
72 struct connection **e;
Willy Tarreaue6f5ab52023-04-20 11:05:28 +020073 uint32_t idx = _HA_ATOMIC_LOAD(&ring->idx); /* (head << 16) + tail */
Willy Tarreau1efafce2019-01-27 15:37:19 +010074
Willy Tarreaue6f5ab52023-04-20 11:05:28 +020075 pos = idx >> 16;
76 if (pos == (uint16_t)idx)
Willy Tarreau83efc322020-10-14 17:37:17 +020077 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010078
79 next = pos + 1;
80 if (next >= ACCEPT_QUEUE_SIZE)
81 next = 0;
82
83 e = &ring->entry[pos];
84
85 /* wait for the producer to update the listener's pointer */
86 while (1) {
Willy Tarreau83efc322020-10-14 17:37:17 +020087 ptr = *e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010088 __ha_barrier_load();
89 if (ptr)
90 break;
91 pl_cpu_relax();
92 }
93
Willy Tarreau1efafce2019-01-27 15:37:19 +010094 /* release the entry */
Willy Tarreau83efc322020-10-14 17:37:17 +020095 *e = NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010096
97 __ha_barrier_store();
Willy Tarreaue6f5ab52023-04-20 11:05:28 +020098 do {
99 pos = (next << 16) | (idx & 0xffff);
100 } while (unlikely(!HA_ATOMIC_CAS(&ring->idx, &idx, pos) && __ha_cpu_relax()));
101
Willy Tarreau83efc322020-10-14 17:37:17 +0200102 return ptr;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100103}
104
105
Willy Tarreau83efc322020-10-14 17:37:17 +0200106/* tries to push a new accepted connection <conn> into ring <ring>. Returns
107 * non-zero if it succeeds, or zero if the ring is full. Supports multiple
108 * producers.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100109 */
Willy Tarreau83efc322020-10-14 17:37:17 +0200110int accept_queue_push_mp(struct accept_queue_ring *ring, struct connection *conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100111{
Willy Tarreau1efafce2019-01-27 15:37:19 +0100112 unsigned int pos, next;
Willy Tarreaue6f5ab52023-04-20 11:05:28 +0200113 uint32_t idx = _HA_ATOMIC_LOAD(&ring->idx); /* (head << 16) + tail */
Willy Tarreau1efafce2019-01-27 15:37:19 +0100114
Willy Tarreau1efafce2019-01-27 15:37:19 +0100115 do {
Willy Tarreaue6f5ab52023-04-20 11:05:28 +0200116 pos = (uint16_t)idx;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100117 next = pos + 1;
118 if (next >= ACCEPT_QUEUE_SIZE)
119 next = 0;
Willy Tarreaue6f5ab52023-04-20 11:05:28 +0200120 if (next == (idx >> 16))
Willy Tarreau1efafce2019-01-27 15:37:19 +0100121 return 0; // ring full
Willy Tarreaue6f5ab52023-04-20 11:05:28 +0200122 next |= (idx & 0xffff0000U);
123 } while (unlikely(!_HA_ATOMIC_CAS(&ring->idx, &idx, next) && __ha_cpu_relax()));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100124
Willy Tarreau83efc322020-10-14 17:37:17 +0200125 ring->entry[pos] = conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100126 __ha_barrier_store();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100127 return 1;
128}
129
Willy Tarreaufb5401f2021-01-29 12:25:23 +0100130/* proceed with accepting new connections. Don't mark it static so that it appears
131 * in task dumps.
132 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100133struct task *accept_queue_process(struct task *t, void *context, unsigned int state)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100134{
135 struct accept_queue_ring *ring = context;
Willy Tarreau83efc322020-10-14 17:37:17 +0200136 struct connection *conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100137 struct listener *li;
Christopher Faulet102854c2019-04-30 12:17:13 +0200138 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100139 int ret;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100140
Christopher Faulet102854c2019-04-30 12:17:13 +0200141 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
142 * is not really illimited, but it is probably enough.
143 */
Willy Tarreau66161322021-02-19 15:50:27 +0100144 max_accept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Christopher Faulet102854c2019-04-30 12:17:13 +0200145 for (; max_accept; max_accept--) {
Willy Tarreau83efc322020-10-14 17:37:17 +0200146 conn = accept_queue_pop_sc(ring);
147 if (!conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100148 break;
149
Willy Tarreau83efc322020-10-14 17:37:17 +0200150 li = __objt_listener(conn->target);
Willy Tarreaufea8c192023-02-28 10:25:57 +0100151 _HA_ATOMIC_INC(&li->thr_conn[ti->ltid]);
Willy Tarreau30836152023-01-12 19:10:17 +0100152 ret = li->bind_conf->accept(conn);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100153 if (ret <= 0) {
154 /* connection was terminated by the application */
155 continue;
156 }
157
158 /* increase the per-process number of cumulated sessions, this
Willy Tarreau30836152023-01-12 19:10:17 +0100159 * may only be done once l->bind_conf->accept() has accepted the
160 * connection.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100161 */
Willy Tarreau17146802023-01-12 19:58:42 +0100162 if (!(li->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100163 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
164 update_freq_ctr(&global.sess_per_sec, 1));
Ilya Shipitsin83f54b92023-04-26 21:05:12 +0200165 if (li->bind_conf->options & BC_O_USE_SSL) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100166 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
167 update_freq_ctr(&global.ssl_per_sec, 1));
168 }
169 }
170 }
171
172 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200173 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200174 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100175
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200176 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100177}
178
179/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
180static int accept_queue_init()
181{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200182 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100183 int i;
184
185 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200186 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100187 if (!t) {
188 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
189 return ERR_FATAL|ERR_ABORT;
190 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200191 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100192 t->process = accept_queue_process;
193 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200194 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100195 }
196 return 0;
197}
198
199REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
200
Willy Tarreaue01b08d2022-04-27 18:42:47 +0200201static void accept_queue_deinit()
202{
203 int i;
204
205 for (i = 0; i < global.nbthread; i++) {
Tim Duesterhusb1ec21d2023-04-22 17:47:32 +0200206 tasklet_free(accept_queue_rings[i].tasklet);
Willy Tarreaue01b08d2022-04-27 18:42:47 +0200207 }
208}
209
210REGISTER_POST_DEINIT(accept_queue_deinit);
211
Willy Tarreau1efafce2019-01-27 15:37:19 +0100212#endif // USE_THREAD
213
Willy Tarreau6a4d48b2023-04-21 10:46:45 +0200214/* Memory allocation and initialization of the per_thr field (one entry per
215 * bound thread).
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100216 * Returns 0 if the field has been successfully initialized, -1 on failure.
217 */
218int li_init_per_thr(struct listener *li)
219{
Willy Tarreau6a4d48b2023-04-21 10:46:45 +0200220 int nbthr = MIN(global.nbthread, MAX_THREADS_PER_GROUP);
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100221 int i;
222
223 /* allocate per-thread elements for listener */
Willy Tarreau6a4d48b2023-04-21 10:46:45 +0200224 li->per_thr = calloc(nbthr, sizeof(*li->per_thr));
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100225 if (!li->per_thr)
226 return -1;
227
Willy Tarreau6a4d48b2023-04-21 10:46:45 +0200228 for (i = 0; i < nbthr; ++i) {
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100229 MT_LIST_INIT(&li->per_thr[i].quic_accept.list);
230 MT_LIST_INIT(&li->per_thr[i].quic_accept.conns);
231
232 li->per_thr[i].li = li;
233 }
234
235 return 0;
236}
237
William Dauchy3679d0c2021-02-14 23:22:55 +0100238/* helper to get listener status for stats */
239enum li_status get_li_status(struct listener *l)
240{
Willy Tarreau758c69d2023-01-12 18:59:37 +0100241 if (!l->bind_conf->maxconn || l->nbconn < l->bind_conf->maxconn) {
William Dauchy3679d0c2021-02-14 23:22:55 +0100242 if (l->state == LI_LIMITED)
243 return LI_STATUS_WAITING;
244 else
245 return LI_STATUS_OPEN;
246 }
247 return LI_STATUS_FULL;
248}
249
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200250/* adjust the listener's state and its proxy's listener counters if needed.
251 * It must be called under the listener's lock, but uses atomic ops to change
252 * the proxy's counters so that the proxy lock is not needed.
253 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200254void listener_set_state(struct listener *l, enum li_state st)
255{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200256 struct proxy *px = l->bind_conf->frontend;
257
258 if (px) {
259 /* from state */
260 switch (l->state) {
261 case LI_NEW: /* first call */
Willy Tarreau4781b152021-04-06 13:53:36 +0200262 _HA_ATOMIC_INC(&px->li_all);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200263 break;
264 case LI_INIT:
265 case LI_ASSIGNED:
266 break;
267 case LI_PAUSED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200268 _HA_ATOMIC_DEC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200269 break;
270 case LI_LISTEN:
Willy Tarreau4781b152021-04-06 13:53:36 +0200271 _HA_ATOMIC_DEC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200272 break;
273 case LI_READY:
274 case LI_FULL:
275 case LI_LIMITED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200276 _HA_ATOMIC_DEC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200277 break;
278 }
279
280 /* to state */
281 switch (st) {
282 case LI_NEW:
283 case LI_INIT:
284 case LI_ASSIGNED:
285 break;
286 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200287 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200288 _HA_ATOMIC_INC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200289 break;
290 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200291 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200292 _HA_ATOMIC_INC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200293 break;
294 case LI_READY:
295 case LI_FULL:
296 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200297 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200298 _HA_ATOMIC_INC(&px->li_ready);
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100299 l->flags |= LI_F_FINALIZED;
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200300 break;
301 }
302 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200303 l->state = st;
304}
305
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100306/* This function adds the specified listener's file descriptor to the polling
307 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500308 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200309 * also support binding only the relevant processes to their respective
310 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100311 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200312void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100313{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100314 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200315
316 /* If this listener is supposed to be only in the master, close it in
317 * the workers. Conversely, if it's supposed to be only in the workers
318 * close it in the master.
319 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200320 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200321 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200322
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100323 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200324 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200325 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau72faef32021-06-15 08:36:30 +0200326 (!!master != !!(listener->rx.flags & RX_F_MWORKER))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200327 /* we don't want to enable this listener and don't
328 * want any fd event to reach it.
329 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200330 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200331 }
Willy Tarreau758c69d2023-01-12 18:59:37 +0100332 else if (!listener->bind_conf->maxconn || listener->nbconn < listener->bind_conf->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200333 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200334 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200335 }
336 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200337 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100338 }
339 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200340
Willy Tarreau08b6f962022-02-01 16:23:00 +0100341 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100342}
343
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200344/*
Aurelien DARRAGON187396e2022-09-11 16:19:49 +0200345 * This function completely stops a listener.
346 * The proxy's listeners count is updated and the proxy is
347 * disabled and woken up after the last one is gone.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100348 * It will need to operate under the proxy's lock, the protocol's lock and
349 * the listener's lock. The caller is responsible for indicating in lpx,
350 * lpr, lli whether the respective locks are already held (non-zero) or
351 * not (zero) so that the function picks the missing ones, in this order.
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200352 */
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100353void stop_listener(struct listener *l, int lpx, int lpr, int lli)
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200354{
355 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200356
Willy Tarreau17146802023-01-12 19:58:42 +0100357 if (l->bind_conf->options & BC_O_NOSTOP) {
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200358 /* master-worker sockpairs are never closed but don't count as a
359 * job.
360 */
361 return;
362 }
363
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200364 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200365 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200366
367 if (!lpr)
368 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
369
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100370 if (!lli)
371 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200372
373 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200374 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200375
376 if (l->state >= LI_ASSIGNED)
377 __delete_listener(l);
378
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200379 if (px)
380 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200381 }
382
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100383 if (!lli)
384 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200385
386 if (!lpr)
387 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
388
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200389 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200390 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200391}
392
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100393/* This function adds the specified <listener> to the protocol <proto>. It
394 * does nothing if the protocol was already added. The listener's state is
395 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
396 * for the protocol is updated. This must be called with the proto lock held.
397 */
398void default_add_listener(struct protocol *proto, struct listener *listener)
399{
400 if (listener->state != LI_INIT)
401 return;
402 listener_set_state(listener, LI_ASSIGNED);
403 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200404 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100405 proto->nb_receivers++;
406}
407
Willy Tarreaue03204c2020-10-09 17:02:21 +0200408/* default function called to suspend a listener: it simply passes the call to
409 * the underlying receiver. This is find for most socket-based protocols. This
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100410 * must be called under the listener's lock. It will return < 0 in case of
411 * failure, 0 if the listener was totally stopped, or > 0 if correctly paused..
412 * If no receiver-level suspend is provided, the operation is assumed
413 * to succeed.
Willy Tarreaue03204c2020-10-09 17:02:21 +0200414 */
415int default_suspend_listener(struct listener *l)
416{
Willy Tarreaue03204c2020-10-09 17:02:21 +0200417 if (!l->rx.proto->rx_suspend)
418 return 1;
419
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100420 return l->rx.proto->rx_suspend(&l->rx);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200421}
422
423
424/* Tries to resume a suspended listener, and returns non-zero on success or
425 * zero on failure. On certain errors, an alert or a warning might be displayed.
426 * It must be called with the listener's lock held. Depending on the listener's
427 * state and protocol, a listen() call might be used to resume operations, or a
428 * call to the receiver's resume() function might be used as well. This is
429 * suitable as a default function for TCP and UDP. This must be called with the
430 * listener's lock held.
431 */
432int default_resume_listener(struct listener *l)
433{
434 int ret = 1;
435
436 if (l->state == LI_ASSIGNED) {
437 char msg[100];
Aurelien DARRAGON046a75e2023-02-07 12:17:20 +0100438 char *errmsg;
Willy Tarreaue03204c2020-10-09 17:02:21 +0200439 int err;
440
Aurelien DARRAGON046a75e2023-02-07 12:17:20 +0100441 /* first, try to bind the receiver */
442 err = l->rx.proto->fam->bind(&l->rx, &errmsg);
443 if (err != ERR_NONE) {
444 if (err & ERR_WARN)
445 ha_warning("Resuming listener: %s\n", errmsg);
446 else if (err & ERR_ALERT)
447 ha_alert("Resuming listener: %s\n", errmsg);
448 ha_free(&errmsg);
449 if (err & (ERR_FATAL | ERR_ABORT)) {
450 ret = 0;
451 goto end;
452 }
453 }
454
455 /* then, try to listen:
456 * for now there's still always a listening function
457 * (same check performed in protocol_bind_all()
458 */
459 BUG_ON(!l->rx.proto->listen);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200460 err = l->rx.proto->listen(l, msg, sizeof(msg));
461 if (err & ERR_ALERT)
462 ha_alert("Resuming listener: %s\n", msg);
463 else if (err & ERR_WARN)
464 ha_warning("Resuming listener: %s\n", msg);
465
466 if (err & (ERR_FATAL | ERR_ABORT)) {
467 ret = 0;
468 goto end;
469 }
470 }
471
472 if (l->state < LI_PAUSED) {
473 ret = 0;
474 goto end;
475 }
476
477 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
478 l->rx.proto->rx_resume(&l->rx) <= 0)
479 ret = 0;
480 end:
481 return ret;
482}
483
484
Willy Tarreaube58c382011-07-24 18:28:10 +0200485/* This function tries to temporarily disable a listener, depending on the OS
486 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
487 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
488 * closes upon SHUT_WR and refuses to rebind. So a common validation path
489 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
490 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100491 * suspend() may totally stop a listener if it doesn't support the PAUSED
492 * state, in which case state will be set to ASSIGNED.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100493 * It will need to operate under the proxy's lock and the listener's lock.
494 * The caller is responsible for indicating in lpx, lli whether the respective
495 * locks are already held (non-zero) or not (zero) so that the function pick
496 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200497 */
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100498int suspend_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200499{
Willy Tarreau58651b42020-09-24 16:03:29 +0200500 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200501 int ret = 1;
502
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200503 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200504 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
505
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100506 if (!lli)
507 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200508
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100509 if (!(l->flags & LI_F_FINALIZED) || l->state <= LI_PAUSED)
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200510 goto end;
511
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100512 if (l->rx.proto->suspend) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200513 ret = l->rx.proto->suspend(l);
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100514 /* if the suspend() fails, we don't want to change the
515 * current listener state
516 */
517 if (ret < 0)
518 goto end;
519 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200520
Willy Tarreau2b718102021-04-21 07:32:39 +0200521 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200522
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100523 /* ret == 0 means that the suspend() has been turned into
524 * an unbind(), meaning the listener is now stopped (ie: ABNS), we need
525 * to report this state change properly
526 */
527 listener_set_state(l, ((ret) ? LI_PAUSED : LI_ASSIGNED));
528
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100529 if (px && !(l->flags & LI_F_SUSPENDED))
530 px->li_suspended++;
531 l->flags |= LI_F_SUSPENDED;
532
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100533 /* at this point, everything is under control, no error should be
534 * returned to calling function
535 */
536 ret = 1;
Willy Tarreau58651b42020-09-24 16:03:29 +0200537
Aurelien DARRAGONca8a4b22023-02-07 12:36:27 +0100538 if (px && !(px->flags & PR_FL_PAUSED) && !px->li_ready) {
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +0200539 /* PROXY_LOCK is required */
540 proxy_cond_pause(px);
Willy Tarreau58651b42020-09-24 16:03:29 +0200541 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
542 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
543 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200544 end:
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100545 if (!lli)
546 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200547
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200548 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200549 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
550
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200551 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200552}
553
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200554/* This function tries to resume a temporarily disabled listener. Paused, full,
555 * limited and disabled listeners are handled, which means that this function
556 * may replace enable_listener(). The resulting state will either be LI_READY
557 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200558 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200559 * foreground mode, and are ignored. If the listener was only in the assigned
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100560 * state, it's totally rebound. This can happen if a suspend() has completely
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200561 * stopped it. If the resume fails, 0 is returned and an error might be
562 * displayed.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100563 * It will need to operate under the proxy's lock and the listener's lock.
564 * The caller is responsible for indicating in lpx, lli whether the respective
565 * locks are already held (non-zero) or not (zero) so that the function pick
566 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200567 */
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100568int resume_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200569{
Willy Tarreau58651b42020-09-24 16:03:29 +0200570 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200571 int ret = 1;
572
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200573 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200574 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
575
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100576 if (!lli)
577 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200578
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200579 /* check that another thread didn't to the job in parallel (e.g. at the
580 * end of listen_accept() while we'd come from dequeue_all_listeners().
581 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200582 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200583 goto end;
584
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100585 if (!(l->flags & LI_F_FINALIZED) || l->state == LI_READY)
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200586 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200587
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100588 if (l->rx.proto->resume) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200589 ret = l->rx.proto->resume(l);
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100590 if (!ret)
591 goto end; /* failure to resume */
592 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200593
Willy Tarreau758c69d2023-01-12 18:59:37 +0100594 if (l->bind_conf->maxconn && l->nbconn >= l->bind_conf->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200595 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200596 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200597 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200598 }
599
Willy Tarreau4b51f422020-09-25 20:32:28 +0200600 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200601 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200602
603 done:
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100604 if (px && (l->flags & LI_F_SUSPENDED))
605 px->li_suspended--;
606 l->flags &= ~LI_F_SUSPENDED;
607
Aurelien DARRAGONca8a4b22023-02-07 12:36:27 +0100608 if (px && (px->flags & PR_FL_PAUSED) && !px->li_suspended) {
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +0200609 /* PROXY_LOCK is required */
610 proxy_cond_resume(px);
Willy Tarreau58651b42020-09-24 16:03:29 +0200611 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
612 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
613 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200614 end:
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100615 if (!lli)
616 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200617
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200618 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200619 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
620
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200621 return ret;
622}
623
Aurelien DARRAGONbcad7e62023-02-15 09:30:54 +0100624/* Same as resume_listener(), but will only work to resume from
625 * LI_FULL or LI_LIMITED states because we try to relax listeners that
626 * were temporarily restricted and not to resume inactive listeners that
627 * may have been paused or completely stopped in the meantime.
628 * Returns positive value for success and 0 for failure.
629 * It will need to operate under the proxy's lock and the listener's lock.
630 * The caller is responsible for indicating in lpx, lli whether the respective
631 * locks are already held (non-zero) or not (zero) so that the function pick
632 * the missing ones, in this order.
633 */
634int relax_listener(struct listener *l, int lpx, int lli)
635{
636 int ret = 1;
637
638 if (!lli)
639 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
640
641 if (l->state != LI_FULL && l->state != LI_LIMITED)
642 goto end; /* listener may be suspended or even stopped */
643 ret = resume_listener(l, lpx, 1);
644
645 end:
646 if (!lli)
647 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
648 return ret;
649}
650
Willy Tarreau87b09662015-04-03 00:22:06 +0200651/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100652 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200653 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200654static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200655{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100656 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200657 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200658 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100659 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200660 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200661 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100662 }
Willy Tarreau62793712011-07-24 19:23:38 +0200663 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100664 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200665}
666
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200667/* Marks a ready listener as limited so that we only try to re-enable it when
668 * resources are free again. It will be queued into the specified queue.
669 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200670static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200671{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100672 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200673 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200674 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200675 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200676 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200677 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100678 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200679}
680
Willy Tarreau241797a2019-12-10 14:10:52 +0100681/* Dequeues all listeners waiting for a resource the global wait queue */
682void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200683{
Willy Tarreau01abd022019-02-28 10:27:18 +0100684 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200685
Willy Tarreau241797a2019-12-10 14:10:52 +0100686 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200687 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100688 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200689 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100690 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200691 }
692}
693
Willy Tarreau241797a2019-12-10 14:10:52 +0100694/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
695void dequeue_proxy_listeners(struct proxy *px)
696{
697 struct listener *listener;
698
699 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
700 /* This cannot fail because the listeners are by definition in
701 * the LI_LIMITED state.
702 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100703 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100704 }
705}
706
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200707
708/* default function used to unbind a listener. This is for use by standard
709 * protocols working on top of accepted sockets. The receiver's rx_unbind()
710 * will automatically be used after the listener is disabled if the socket is
711 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100712 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200713void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100714{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200715 if (listener->state <= LI_ASSIGNED)
716 goto out_close;
717
718 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200719 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200720 goto out_close;
721 }
722
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200723 if (listener->state >= LI_READY) {
724 listener->rx.proto->disable(listener);
725 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200726 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200727 }
728
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200729 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200730 if (listener->rx.flags & RX_F_BOUND)
731 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200732}
733
734/* This function closes the listening socket for the specified listener,
735 * provided that it's already in a listening state. The protocol's unbind()
736 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
737 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
738 * the receiver is unbound. Must be called with the lock held.
739 */
740void do_unbind_listener(struct listener *listener)
741{
Willy Tarreau2b718102021-04-21 07:32:39 +0200742 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200743
744 if (listener->rx.proto->unbind)
745 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200746
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200747 /* we may have to downgrade the listener if the rx was closed */
748 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200749 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100750}
751
Olivier Houchard1fc05162017-04-06 01:05:05 +0200752/* This function closes the listening socket for the specified listener,
753 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200754 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
755 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100756 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200757 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100758void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200759{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100760 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200761 do_unbind_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100762 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200763}
764
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200765/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
766 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200767 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200768 * passed in <proto> must be usable on this family. The protocol's default iocb
769 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200770 * listeners is automatically increased by the number of listeners created. It
771 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200772 */
773int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200774 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200775{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200776 struct listener *l;
777 int port;
778
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200779 for (port = portl; port <= porth; port++) {
780 l = calloc(1, sizeof(*l));
781 if (!l) {
782 memprintf(err, "out of memory");
783 return 0;
784 }
785 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200786 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
787 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200788 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200789 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200790 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200791 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200792 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100793
Willy Tarreau37159062020-08-27 07:48:42 +0200794 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100795 if (proto->fam->set_port)
796 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100797
Olivier Houchard859dc802019-08-08 15:47:21 +0200798 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200799 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200800
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100801 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200802
Willy Tarreau909c23b2020-09-15 13:50:58 +0200803 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200804 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100805
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100806 l->extra_counters = NULL;
807
Willy Tarreau08b6f962022-02-01 16:23:00 +0100808 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200809 _HA_ATOMIC_INC(&jobs);
810 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200811 }
812 return 1;
813}
814
Willy Tarreauaae18102023-03-01 18:25:58 +0100815/* Optionally allocates a new shard info (if si == NULL) for receiver rx and
816 * assigns it to it, or attaches to an existing one. If the rx already had a
817 * shard_info, it is simply returned. It is illegal to call this function with
818 * an rx that's part of a group that is already attached. Attaching means the
819 * shard_info's thread count and group count are updated so the rx's group is
820 * added to the shard_info's group mask. The rx are added to the members in the
821 * attachment order, though it must not matter. It is meant for boot time setup
822 * and is not thread safe. NULL is returned on allocation failure.
823 */
824struct shard_info *shard_info_attach(struct receiver *rx, struct shard_info *si)
825{
826 if (rx->shard_info)
827 return rx->shard_info;
828
829 if (!si) {
830 si = calloc(1, sizeof(*si));
831 if (!si)
832 return NULL;
833
834 si->ref = rx;
835 }
836
837 rx->shard_info = si;
838 BUG_ON (si->tgroup_mask & 1UL << (rx->bind_tgroup - 1));
839 si->tgroup_mask |= 1UL << (rx->bind_tgroup - 1);
840 si->nbgroups = my_popcountl(si->tgroup_mask);
841 si->nbthreads += my_popcountl(rx->bind_thread);
842 si->members[si->nbgroups - 1] = rx;
843 return si;
844}
845
846/* Detaches the rx from an optional shard_info it may be attached to. If so,
847 * the thread counts, group masks and refcounts are updated. The members list
848 * remains contiguous by replacing the current entry with the last one. The
849 * reference continues to point to the first receiver. If the group count
850 * reaches zero, the shard_info is automatically released.
851 */
852void shard_info_detach(struct receiver *rx)
853{
854 struct shard_info *si = rx->shard_info;
855 uint gr;
856
857 if (!si)
858 return;
859
860 rx->shard_info = NULL;
861
862 /* find the member slot this rx was attached to */
863 for (gr = 0; gr < MAX_TGROUPS && si->members[gr] != rx; gr++)
864 ;
865
866 BUG_ON(gr == MAX_TGROUPS);
867
868 si->nbthreads -= my_popcountl(rx->bind_thread);
869 si->tgroup_mask &= ~(1UL << (rx->bind_tgroup - 1));
870 si->nbgroups = my_popcountl(si->tgroup_mask);
871
872 /* replace the member by the last one. If we removed the reference, we
873 * have to switch to another one. It's always the first entry so we can
874 * simply enforce it upon every removal.
875 */
876 si->members[gr] = si->members[si->nbgroups];
877 si->members[si->nbgroups] = NULL;
878 si->ref = si->members[0];
879
880 if (!si->nbgroups)
881 free(si);
882}
883
Willy Tarreau59a877d2021-10-12 09:36:10 +0200884/* clones listener <src> and returns the new one. All dynamically allocated
885 * fields are reallocated (name for now). The new listener is inserted before
886 * the original one in the bind_conf and frontend lists. This allows it to be
887 * duplicated while iterating over the current list. The original listener must
888 * only be in the INIT or ASSIGNED states, and the new listener will only be
889 * placed into the INIT state. The counters are always set to NULL. Maxsock is
Willy Tarreauaae18102023-03-01 18:25:58 +0100890 * updated. Returns NULL on allocation error. The shard_info is never taken so
891 * that the caller can decide what to do with it depending on how it intends to
892 * clone the listener.
Willy Tarreau59a877d2021-10-12 09:36:10 +0200893 */
894struct listener *clone_listener(struct listener *src)
895{
896 struct listener *l;
897
898 l = calloc(1, sizeof(*l));
899 if (!l)
900 goto oom1;
901 memcpy(l, src, sizeof(*l));
902
903 if (l->name) {
904 l->name = strdup(l->name);
905 if (!l->name)
906 goto oom2;
907 }
908
909 l->rx.owner = l;
Willy Tarreauaae18102023-03-01 18:25:58 +0100910 l->rx.shard_info = NULL;
Willy Tarreau59a877d2021-10-12 09:36:10 +0200911 l->state = LI_INIT;
912 l->counters = NULL;
913 l->extra_counters = NULL;
914
915 LIST_APPEND(&src->by_fe, &l->by_fe);
916 LIST_APPEND(&src->by_bind, &l->by_bind);
917
918 MT_LIST_INIT(&l->wait_queue);
919
920 l->rx.proto->add(l->rx.proto, l);
921
Willy Tarreau08b6f962022-02-01 16:23:00 +0100922 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau59a877d2021-10-12 09:36:10 +0200923 _HA_ATOMIC_INC(&jobs);
924 _HA_ATOMIC_INC(&listeners);
925 global.maxsock++;
926 return l;
927
Willy Tarreau59a877d2021-10-12 09:36:10 +0200928 oom2:
929 free(l);
930 oom1:
Willy Tarreaua1462892021-10-16 14:45:29 +0200931 return NULL;
Willy Tarreau59a877d2021-10-12 09:36:10 +0200932}
933
Willy Tarreau1a64d162007-10-28 22:26:05 +0100934/* Delete a listener from its protocol's list of listeners. The listener's
935 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200936 * number of listeners is updated, as well as the global number of listeners
937 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200938 * is a low-level function expected to be called with the proto_lock and the
939 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100940 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200941void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100942{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100943 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200944 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200945 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreauaae18102023-03-01 18:25:58 +0100946 shard_info_detach(&listener->rx);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200947 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200948 _HA_ATOMIC_DEC(&jobs);
949 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100950 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200951}
952
953/* Delete a listener from its protocol's list of listeners (please check
954 * __delete_listener() above). The proto_lock and the listener's lock will
955 * be grabbed in this order.
956 */
957void delete_listener(struct listener *listener)
958{
959 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100960 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200961 __delete_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100962 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200963 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100964}
965
Willy Tarreaue2711c72019-02-27 15:39:41 +0100966/* Returns a suitable value for a listener's backlog. It uses the listener's,
967 * otherwise the frontend's backlog, otherwise the listener's maxconn,
968 * otherwise the frontend's maxconn, otherwise 1024.
969 */
970int listener_backlog(const struct listener *l)
971{
Willy Tarreau1920f892023-01-12 18:55:13 +0100972 if (l->bind_conf->backlog)
973 return l->bind_conf->backlog;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100974
975 if (l->bind_conf->frontend->backlog)
976 return l->bind_conf->frontend->backlog;
977
Willy Tarreau758c69d2023-01-12 18:59:37 +0100978 if (l->bind_conf->maxconn)
979 return l->bind_conf->maxconn;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100980
981 if (l->bind_conf->frontend->maxconn)
982 return l->bind_conf->frontend->maxconn;
983
984 return 1024;
985}
986
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200987/* This function is called on a read event from a listening socket, corresponding
988 * to an accept. It tries to accept as many connections as possible, and for each
989 * calls the listener's accept handler (generally the frontend's accept handler).
990 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200991void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200992{
Willy Tarreau83efc322020-10-14 17:37:17 +0200993 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100994 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200995 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100996 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100997 int next_feconn = 0;
998 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200999 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001000 int ret;
1001
Olivier Houchardd16a9df2019-02-25 16:18:16 +01001002 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +02001003
Willy Tarreau882f2482023-01-12 18:52:23 +01001004 /* if l->bind_conf->maxaccept is -1, then max_accept is UINT_MAX. It is
1005 * not really illimited, but it is probably enough.
Christopher Faulet102854c2019-04-30 12:17:13 +02001006 */
Willy Tarreau882f2482023-01-12 18:52:23 +01001007 max_accept = l->bind_conf->maxaccept ? l->bind_conf->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001008
Willy Tarreau17146802023-01-12 19:58:42 +01001009 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.sps_lim) {
Willy Tarreau93e7c002013-10-07 18:51:07 +02001010 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001011
1012 if (unlikely(!max)) {
1013 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001014 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +01001015 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +02001016 }
1017
1018 if (max_accept > max)
1019 max_accept = max;
1020 }
1021
Willy Tarreau17146802023-01-12 19:58:42 +01001022 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001023 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
1024
1025 if (unlikely(!max)) {
1026 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001027 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +01001028 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001029 }
1030
1031 if (max_accept > max)
1032 max_accept = max;
1033 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001034#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +01001035 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.ssl_lim &&
Willy Tarreau11ba4042022-05-20 15:56:32 +02001036 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001037 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001038
Willy Tarreaue43d5322013-10-07 20:01:52 +02001039 if (unlikely(!max)) {
1040 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +02001041 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +01001042 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +02001043 }
1044
1045 if (max_accept > max)
1046 max_accept = max;
1047 }
1048#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001049 if (p && p->fe_sps_lim) {
1050 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
1051
1052 if (unlikely(!max)) {
1053 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +01001054 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
1055 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001056 }
1057
1058 if (max_accept > max)
1059 max_accept = max;
1060 }
1061
1062 /* Note: if we fail to allocate a connection because of configured
1063 * limits, we'll schedule a new attempt worst 1 second later in the
1064 * worst case. If we fail due to system limits or temporary resource
1065 * shortage, we try again 100ms later in the worst case.
1066 */
Willy Tarreau02757d02021-01-28 18:07:24 +01001067 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001068 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001069 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +02001070 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001071
Willy Tarreau82c97892019-02-27 19:32:32 +01001072 /* pre-increase the number of connections without going too far.
1073 * We process the listener, then the proxy, then the process.
1074 * We know which ones to unroll based on the next_xxx value.
1075 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001076 do {
1077 count = l->nbconn;
Willy Tarreau758c69d2023-01-12 18:59:37 +01001078 if (unlikely(l->bind_conf->maxconn && count >= l->bind_conf->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001079 /* the listener was marked full or another
1080 * thread is going to do it.
1081 */
1082 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001083 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001084 goto end;
1085 }
1086 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001087 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001088
Willy Tarreau82c97892019-02-27 19:32:32 +01001089 if (p) {
1090 do {
1091 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001092 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001093 /* the frontend was marked full or another
1094 * thread is going to do it.
1095 */
1096 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001097 expire = TICK_ETERNITY;
1098 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +01001099 }
1100 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +01001101 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001102 }
1103
Willy Tarreau17146802023-01-12 19:58:42 +01001104 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001105 do {
1106 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001107 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001108 /* the process was marked full or another
1109 * thread is going to do it.
1110 */
1111 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001112 expire = tick_add(now_ms, 1000); /* try again in 1 second */
1113 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +01001114 }
1115 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001116 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001117 }
1118
Willy Tarreaufed93d32022-02-01 16:37:00 +01001119 /* be careful below, the listener might be shutting down in
1120 * another thread on error and we must not dereference its
1121 * FD without a bit of protection.
1122 */
1123 cli_conn = NULL;
1124 status = CO_AC_PERMERR;
1125
1126 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
1127 if (l->rx.flags & RX_F_BOUND)
1128 cli_conn = l->rx.proto->accept_conn(l, &status);
1129 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
1130
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001131 if (!cli_conn) {
1132 switch (status) {
1133 case CO_AC_DONE:
1134 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +01001135
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001136 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +02001137 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001138 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +02001139 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau17146802023-01-12 19:58:42 +01001140 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001141 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +01001142 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001143
1144 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +01001145 max_accept = 0;
1146 goto end;
William Lallemandd9138002018-11-27 12:02:39 +01001147
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001148 default:
1149 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +02001150 }
1151 }
1152
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001153 /* The connection was accepted, it must be counted as such */
1154 if (l->counters)
1155 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
1156
Willy Tarreaud8679342022-05-09 20:41:54 +02001157 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001158 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreaud8679342022-05-09 20:41:54 +02001159 proxy_inc_fe_conn_ctr(l, p);
1160 }
Willy Tarreau82c97892019-02-27 19:32:32 +01001161
Willy Tarreau17146802023-01-12 19:58:42 +01001162 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001163 count = update_freq_ctr(&global.conn_per_sec, 1);
1164 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001165 }
1166
Willy Tarreau4781b152021-04-06 13:53:36 +02001167 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +02001168
Willy Tarreau96151022023-05-11 13:51:31 +02001169 /* count the number of times an accepted connection resulted in
1170 * maxconn being reached.
1171 */
1172 if (unlikely(_HA_ATOMIC_LOAD(&actconn) + 1 >= global.maxconn))
1173 _HA_ATOMIC_INC(&maxconn_reached);
1174
Willy Tarreau30836152023-01-12 19:10:17 +01001175 /* past this point, l->bind_conf->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +01001176 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
1177 * allows the error path not to rollback on nbconn. It's more
1178 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001179 */
1180 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +01001181 next_feconn = 0;
1182 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001183
Willy Tarreau83efc322020-10-14 17:37:17 +02001184
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001185#if defined(USE_THREAD)
Willy Tarreau9d360602023-03-27 10:38:51 +02001186 if (!(global.tune.options & GTUNE_LISTENER_MQ_ANY) || stopping)
1187 goto local_accept;
1188
1189 /* we want to perform thread rebalancing if the listener is
1190 * bound to more than one thread or if it's part of a shard
1191 * with more than one listener.
1192 */
Willy Tarreaub2f38c12023-01-19 19:14:18 +01001193 mask = l->rx.bind_thread & _HA_ATOMIC_LOAD(&tg->threads_enabled);
Willy Tarreau9d360602023-03-27 10:38:51 +02001194 if (l->rx.shard_info || atleast2(mask)) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001195 struct accept_queue_ring *ring;
Willy Tarreau9d360602023-03-27 10:38:51 +02001196 struct listener *new_li;
Willy Tarreauff185042023-04-20 16:52:21 +02001197 uint r1, r2, t, t1, t2;
1198 ulong n0, n1;
Willy Tarreau9d360602023-03-27 10:38:51 +02001199 const struct tgroup_info *g1, *g2;
1200 ulong m1, m2;
Willy Tarreauff185042023-04-20 16:52:21 +02001201 ulong *thr_idx_ptr;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001202
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001203 /* The principle is that we have two running indexes,
1204 * each visiting in turn all threads bound to this
Willy Tarreau9d360602023-03-27 10:38:51 +02001205 * listener's shard. The connection will be assigned to
1206 * the one with the least connections, and the other
1207 * one will be updated. This provides a good fairness
1208 * on short connections (round robin) and on long ones
1209 * (conn count), without ever missing any idle thread.
1210 * Each thread number is encoded as a combination of
1211 * times the receiver number and its local thread
1212 * number from 0 to MAX_THREADS_PER_GROUP - 1. The two
Willy Tarreauff185042023-04-20 16:52:21 +02001213 * indexes are stored as 10/12 bit numbers in the thr_idx
1214 * array, since there are up to LONGBITS threads and
1215 * groups that can be represented. They are represented
1216 * like this:
1217 * 31:20 19:15 14:10 9:5 4:0
1218 * 32b: [ counter | r2num | t2num | r1num | t1num ]
1219 *
1220 * 63:24 23:18 17:12 11:6 5:0
1221 * 64b: [ counter | r2num | t2num | r1num | t1num ]
1222 *
1223 * The change counter is only used to avoid swapping too
1224 * old a value when the value loops back.
Willy Tarreau9d360602023-03-27 10:38:51 +02001225 *
1226 * In the loop below we have this for each index:
1227 * - n is the thread index
1228 * - r is the receiver number
1229 * - g is the receiver's thread group
1230 * - t is the thread number in this receiver
1231 * - m is the receiver's thread mask shifted by the thread number
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001232 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001233
1234 /* keep a copy for the final update. thr_idx is composite
Willy Tarreau9d360602023-03-27 10:38:51 +02001235 * and made of (n2<<16) + n1.
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001236 */
Willy Tarreaub6574922023-03-29 17:02:17 +02001237 thr_idx_ptr = l->rx.shard_info ? &((struct listener *)(l->rx.shard_info->ref->owner))->thr_idx : &l->thr_idx;
Willy Tarreau9d360602023-03-27 10:38:51 +02001238 while (1) {
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001239 int q0, q1, q2;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001240
Willy Tarreauff185042023-04-20 16:52:21 +02001241 /* calculate r1/g1/t1 first (ascending idx) */
1242 n0 = _HA_ATOMIC_LOAD(thr_idx_ptr);
Willy Tarreau9d360602023-03-27 10:38:51 +02001243 new_li = NULL;
1244
Willy Tarreauff185042023-04-20 16:52:21 +02001245 t1 = (uint)n0 & (LONGBITS - 1);
1246 r1 = ((uint)n0 / LONGBITS) & (LONGBITS - 1);
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001247
Willy Tarreau9d360602023-03-27 10:38:51 +02001248 while (1) {
1249 if (l->rx.shard_info) {
1250 /* multiple listeners, take the group into account */
1251 if (r1 >= l->rx.shard_info->nbgroups)
1252 r1 = 0;
1253
1254 g1 = &ha_tgroup_info[l->rx.shard_info->members[r1]->bind_tgroup - 1];
1255 m1 = l->rx.shard_info->members[r1]->bind_thread;
1256 } else {
1257 /* single listener */
1258 r1 = 0;
1259 g1 = tg;
1260 m1 = l->rx.bind_thread;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001261 }
Willy Tarreau9d360602023-03-27 10:38:51 +02001262 m1 &= _HA_ATOMIC_LOAD(&g1->threads_enabled);
1263 m1 >>= t1;
1264
1265 /* find first existing thread */
1266 if (unlikely(!(m1 & 1))) {
1267 m1 &= ~1UL;
1268 if (!m1) {
1269 /* no more threads here, switch to
1270 * first thread of next group.
1271 */
1272 t1 = 0;
1273 if (l->rx.shard_info)
1274 r1++;
1275 /* loop again */
1276 continue;
1277 }
1278 t1 += my_ffsl(m1) - 1;
1279 }
1280 /* done: r1 and t1 are OK */
1281 break;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001282 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001283
Willy Tarreauff185042023-04-20 16:52:21 +02001284 /* now r2/g2/t2 (descending idx) */
1285 t2 = ((uint)n0 / LONGBITS / LONGBITS) & (LONGBITS - 1);
1286 r2 = ((uint)n0 / LONGBITS / LONGBITS / LONGBITS) & (LONGBITS - 1);
Willy Tarreau9d360602023-03-27 10:38:51 +02001287
Willy Tarreau84fe1f42023-04-20 15:40:38 +02001288 /* if running in round-robin mode ("fair"), we don't need
1289 * to go further.
1290 */
1291 if ((global.tune.options & GTUNE_LISTENER_MQ_ANY) == GTUNE_LISTENER_MQ_FAIR) {
Willy Tarreau9d360602023-03-27 10:38:51 +02001292 t = g1->base + t1;
1293 if (l->rx.shard_info && t != tid)
1294 new_li = l->rx.shard_info->members[r1]->owner;
Willy Tarreau84fe1f42023-04-20 15:40:38 +02001295 goto updt_t1;
1296 }
1297
Willy Tarreau9d360602023-03-27 10:38:51 +02001298 while (1) {
1299 if (l->rx.shard_info) {
1300 /* multiple listeners, take the group into account */
1301 if (r2 >= l->rx.shard_info->nbgroups)
1302 r2 = l->rx.shard_info->nbgroups - 1;
Willy Tarreau85d04242019-04-16 18:09:13 +02001303
Willy Tarreau9d360602023-03-27 10:38:51 +02001304 g2 = &ha_tgroup_info[l->rx.shard_info->members[r2]->bind_tgroup - 1];
1305 m2 = l->rx.shard_info->members[r2]->bind_thread;
1306 } else {
1307 /* single listener */
1308 r2 = 0;
1309 g2 = tg;
1310 m2 = l->rx.bind_thread;
1311 }
1312 m2 &= _HA_ATOMIC_LOAD(&g2->threads_enabled);
1313 m2 &= nbits(t2 + 1);
1314
1315 /* find previous existing thread */
1316 if (unlikely(!(m2 & (1UL << t2)) || (g1 == g2 && t1 == t2))) {
1317 /* highest bit not set or colliding threads, let's check
1318 * if we still have other threads available after this
1319 * one.
1320 */
1321 m2 &= ~(1UL << t2);
1322 if (!m2) {
1323 /* no more threads here, switch to
1324 * last thread of previous group.
1325 */
1326 t2 = MAX_THREADS_PER_GROUP - 1;
1327 if (l->rx.shard_info)
1328 r2--;
1329 /* loop again */
1330 continue;
1331 }
1332 t2 = my_flsl(m2) - 1;
1333 }
1334 /* done: r2 and t2 are OK */
1335 break;
Willy Tarreau85d04242019-04-16 18:09:13 +02001336 }
1337
Willy Tarreau77e33502023-04-19 17:19:28 +02001338 /* tests show that it's worth checking that other threads have not
1339 * already changed the index to save the rest of the calculation,
1340 * or we'd have to redo it anyway.
1341 */
Willy Tarreauff185042023-04-20 16:52:21 +02001342 if (n0 != _HA_ATOMIC_LOAD(thr_idx_ptr))
Willy Tarreau77e33502023-04-19 17:19:28 +02001343 continue;
Willy Tarreau77e33502023-04-19 17:19:28 +02001344
Willy Tarreau9d360602023-03-27 10:38:51 +02001345 /* here we have (r1,g1,t1) that designate the first receiver, its
1346 * thread group and local thread, and (r2,g2,t2) that designate
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001347 * the second receiver, its thread group and local thread. We'll
1348 * also consider the local thread with q0.
Willy Tarreau9d360602023-03-27 10:38:51 +02001349 */
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001350 q0 = accept_queue_ring_len(&accept_queue_rings[tid]);
Willy Tarreau9d360602023-03-27 10:38:51 +02001351 q1 = accept_queue_ring_len(&accept_queue_rings[g1->base + t1]);
1352 q2 = accept_queue_ring_len(&accept_queue_rings[g2->base + t2]);
1353
1354 /* add to this the currently active connections */
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001355 q0 += _HA_ATOMIC_LOAD(&l->thr_conn[ti->ltid]);
Willy Tarreau9d360602023-03-27 10:38:51 +02001356 if (l->rx.shard_info) {
1357 q1 += _HA_ATOMIC_LOAD(&((struct listener *)l->rx.shard_info->members[r1]->owner)->thr_conn[t1]);
1358 q2 += _HA_ATOMIC_LOAD(&((struct listener *)l->rx.shard_info->members[r2]->owner)->thr_conn[t2]);
1359 } else {
1360 q1 += _HA_ATOMIC_LOAD(&l->thr_conn[t1]);
1361 q2 += _HA_ATOMIC_LOAD(&l->thr_conn[t2]);
1362 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001363
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001364 /* we have 3 possibilities now :
1365 * q1 < q2 : t1 is less loaded than t2, so we pick it
1366 * and update t2 (since t1 might still be
1367 * lower than another thread)
1368 * q1 > q2 : t2 is less loaded than t1, so we pick it
1369 * and update t1 (since t2 might still be
1370 * lower than another thread)
1371 * q1 = q2 : both are equally loaded, thus we pick t1
1372 * and update t1 as it will become more loaded
1373 * than t2.
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001374 * On top of that, if in the end the current thread appears
1375 * to be as good of a deal, we'll prefer it over a foreign
1376 * one as it will improve locality and avoid a migration.
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001377 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001378
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001379 if (q1 - q2 < 0) {
Willy Tarreau9d360602023-03-27 10:38:51 +02001380 t = g1->base + t1;
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001381 if (q0 <= q1)
1382 t = tid;
Willy Tarreau9d360602023-03-27 10:38:51 +02001383
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001384 if (l->rx.shard_info && t != tid)
Willy Tarreau9d360602023-03-27 10:38:51 +02001385 new_li = l->rx.shard_info->members[r1]->owner;
1386
1387 t2--;
1388 if (t2 >= MAX_THREADS_PER_GROUP) {
1389 if (l->rx.shard_info)
1390 r2--;
1391 t2 = MAX_THREADS_PER_GROUP - 1;
1392 }
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001393 }
1394 else if (q1 - q2 > 0) {
Willy Tarreau9d360602023-03-27 10:38:51 +02001395 t = g2->base + t2;
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001396 if (q0 <= q2)
1397 t = tid;
Willy Tarreau9d360602023-03-27 10:38:51 +02001398
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001399 if (l->rx.shard_info && t != tid)
Willy Tarreau9d360602023-03-27 10:38:51 +02001400 new_li = l->rx.shard_info->members[r2]->owner;
1401 goto updt_t1;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001402 }
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001403 else { // q1 == q2
Willy Tarreau9d360602023-03-27 10:38:51 +02001404 t = g1->base + t1;
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001405 if (q0 < q1) // local must be strictly better than both
1406 t = tid;
Willy Tarreau9d360602023-03-27 10:38:51 +02001407
Willy Tarreau8adffaa2023-04-19 18:06:16 +02001408 if (l->rx.shard_info && t != tid)
Willy Tarreau9d360602023-03-27 10:38:51 +02001409 new_li = l->rx.shard_info->members[r1]->owner;
Willy Tarreau84fe1f42023-04-20 15:40:38 +02001410 updt_t1:
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001411 t1++;
Willy Tarreau9d360602023-03-27 10:38:51 +02001412 if (t1 >= MAX_THREADS_PER_GROUP) {
1413 if (l->rx.shard_info)
1414 r1++;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001415 t1 = 0;
Willy Tarreau9d360602023-03-27 10:38:51 +02001416 }
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001417 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001418
Willy Tarreauff185042023-04-20 16:52:21 +02001419 /* The target thread number is in <t> now. Let's
1420 * compute the new index and try to update it.
1421 */
Willy Tarreau9d360602023-03-27 10:38:51 +02001422
Willy Tarreauff185042023-04-20 16:52:21 +02001423 /* take previous counter and increment it */
1424 n1 = n0 & -(ulong)(LONGBITS * LONGBITS * LONGBITS * LONGBITS);
1425 n1 += LONGBITS * LONGBITS * LONGBITS * LONGBITS;
1426 n1 += (((r2 * LONGBITS) + t2) * LONGBITS * LONGBITS);
1427 n1 += (r1 * LONGBITS) + t1;
Willy Tarreaub6574922023-03-29 17:02:17 +02001428 if (likely(_HA_ATOMIC_CAS(thr_idx_ptr, &n0, n1)))
Willy Tarreau9d360602023-03-27 10:38:51 +02001429 break;
Willy Tarreauff185042023-04-20 16:52:21 +02001430
1431 /* bah we lost the race, try again */
1432 __ha_cpu_relax();
Willy Tarreau9d360602023-03-27 10:38:51 +02001433 } /* end of main while() loop */
1434
1435 /* we may need to update the listener in the connection
1436 * if we switched to another group.
1437 */
1438 if (new_li)
1439 cli_conn->target = &new_li->obj_type;
1440
1441 /* here we have the target thread number in <t> and we hold a
1442 * reservation in the target ring.
1443 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001444
Amaury Denoyellea66e0432023-04-05 18:16:28 +02001445 if (l->rx.proto && l->rx.proto->set_affinity) {
Willy Tarreau9d360602023-03-27 10:38:51 +02001446 if (l->rx.proto->set_affinity(cli_conn, t)) {
Amaury Denoyellea66e0432023-04-05 18:16:28 +02001447 /* Failed migration, stay on the same thread. */
1448 goto local_accept;
1449 }
1450 }
1451
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001452 /* We successfully selected the best thread "t" for this
1453 * connection. We use deferred accepts even if it's the
1454 * local thread because tests show that it's the best
1455 * performing model, likely due to better cache locality
1456 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001457 */
Willy Tarreau9d360602023-03-27 10:38:51 +02001458 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001459 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau9d360602023-03-27 10:38:51 +02001460 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001461 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001462 continue;
1463 }
1464 /* If the ring is full we do a synchronous accept on
1465 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001466 */
Willy Tarreau9d360602023-03-27 10:38:51 +02001467 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001468 }
1469#endif // USE_THREAD
1470
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001471 local_accept:
Willy Tarreau9d360602023-03-27 10:38:51 +02001472 /* restore the connection's listener in case we failed to migrate above */
1473 cli_conn->target = &l->obj_type;
Willy Tarreaufea8c192023-02-28 10:25:57 +01001474 _HA_ATOMIC_INC(&l->thr_conn[ti->ltid]);
Willy Tarreau30836152023-01-12 19:10:17 +01001475 ret = l->bind_conf->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001476 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001477 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001478 * we just have to ignore it (ret == 0) or it's a critical
1479 * error due to a resource shortage, and we must stop the
1480 * listener (ret < 0).
1481 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001482 if (ret == 0) /* successful termination */
1483 continue;
1484
Willy Tarreaubb660302014-05-07 19:47:02 +02001485 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001486 }
1487
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001488 /* increase the per-process number of cumulated sessions, this
Willy Tarreau30836152023-01-12 19:10:17 +01001489 * may only be done once l->bind_conf->accept() has accepted the
1490 * connection.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001491 */
Willy Tarreau17146802023-01-12 19:58:42 +01001492 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001493 count = update_freq_ctr(&global.sess_per_sec, 1);
1494 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001495 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001496#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +01001497 if (!(l->bind_conf->options & BC_O_UNLIMITED) &&
Willy Tarreau11ba4042022-05-20 15:56:32 +02001498 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001499 count = update_freq_ctr(&global.ssl_per_sec, 1);
1500 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001501 }
1502#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001503
Willy Tarreaubdcd3252022-06-22 09:19:46 +02001504 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001505 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001506
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001507 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001508 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001509 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001510
Willy Tarreau82c97892019-02-27 19:32:32 +01001511 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001512 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001513
1514 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001515 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001516
Willy Tarreau758c69d2023-01-12 18:59:37 +01001517 if ((l->state == LI_FULL && (!l->bind_conf->maxconn || l->nbconn < l->bind_conf->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001518 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001519 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1520 (!tick_isset(global_listener_queue_task->expire) ||
1521 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001522 /* at least one thread has to this when quitting */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001523 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001524
Willy Tarreau02757d02021-01-28 18:07:24 +01001525 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001526 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001527
Olivier Houchard859dc802019-08-08 15:47:21 +02001528 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001529 (!p->fe_sps_lim || freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0) > 0))
Willy Tarreau241797a2019-12-10 14:10:52 +01001530 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001531 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001532 return;
1533
1534 transient_error:
1535 /* pause the listener for up to 100 ms */
1536 expire = tick_add(now_ms, 100);
1537
Willy Tarreau258b3512020-10-13 17:46:05 +02001538 /* This may be a shared socket that was paused by another process.
1539 * Let's put it to pause in this case.
1540 */
1541 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +01001542 suspend_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001543 goto end;
1544 }
1545
Willy Tarreau0591bf72019-12-10 12:01:21 +01001546 limit_global:
1547 /* (re-)queue the listener to the global queue and set it to expire no
1548 * later than <expire> ahead. The listener turns to LI_LIMITED.
1549 */
1550 limit_listener(l, &global_listener_queue);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001551 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001552 task_schedule(global_listener_queue_task, expire);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001553 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001554 goto end;
1555
1556 limit_proxy:
1557 /* (re-)queue the listener to the proxy's queue and set it to expire no
1558 * later than <expire> ahead. The listener turns to LI_LIMITED.
1559 */
1560 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001561 if (p->task && tick_isset(expire))
1562 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001563 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001564}
1565
Willy Tarreau05f50472017-09-15 09:19:58 +02001566/* Notify the listener that a connection initiated from it was released. This
1567 * is used to keep the connection count consistent and to possibly re-open
1568 * listening when it was limited.
1569 */
1570void listener_release(struct listener *l)
1571{
1572 struct proxy *fe = l->bind_conf->frontend;
1573
Willy Tarreau17146802023-01-12 19:58:42 +01001574 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001575 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001576 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001577 _HA_ATOMIC_DEC(&fe->feconn);
1578 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreaufea8c192023-02-28 10:25:57 +01001579 _HA_ATOMIC_DEC(&l->thr_conn[ti->ltid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001580
1581 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001582 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001583
Willy Tarreau02757d02021-01-28 18:07:24 +01001584 /* Dequeues all of the listeners waiting for a resource */
1585 dequeue_all_listeners();
1586
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +02001587 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001588 (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0))
Willy Tarreau241797a2019-12-10 14:10:52 +01001589 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001590}
1591
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001592/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1593static int listener_queue_init()
1594{
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001595 global_listener_queue_task = task_new_anywhere();
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001596 if (!global_listener_queue_task) {
1597 ha_alert("Out of memory when initializing global listener queue\n");
1598 return ERR_FATAL|ERR_ABORT;
1599 }
1600 /* very simple initialization, users will queue the task if needed */
1601 global_listener_queue_task->context = NULL; /* not even a context! */
1602 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001603 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001604
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001605 return 0;
1606}
1607
1608static void listener_queue_deinit()
1609{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001610 task_destroy(global_listener_queue_task);
1611 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001612}
1613
1614REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1615REGISTER_POST_DEINIT(listener_queue_deinit);
1616
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001617
1618/* This is the global management task for listeners. It enables listeners waiting
1619 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001620 * a while. It is designed to be called as a task. It's exported so that it's easy
1621 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001622 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001623struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001624{
1625 /* If there are still too many concurrent connections, let's wait for
1626 * some of them to go away. We don't need to re-arm the timer because
1627 * each of them will scan the queue anyway.
1628 */
1629 if (unlikely(actconn >= global.maxconn))
1630 goto out;
1631
1632 /* We should periodically try to enable listeners waiting for a global
1633 * resource here, because it is possible, though very unlikely, that
1634 * they have been blocked by a temporary lack of global resource such
1635 * as a file descriptor or memory and that the temporary condition has
1636 * disappeared.
1637 */
1638 dequeue_all_listeners();
1639
1640 out:
Christopher Faulet13e86d92022-11-17 14:40:20 +01001641 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001642 t->expire = TICK_ETERNITY;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001643 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001644 return t;
1645}
1646
Willy Tarreauf6a84442023-04-22 23:25:38 +02001647/* Applies the thread mask, shards etc to the bind_conf. It normally returns 0
1648 * otherwie the number of errors. Upon error it may set error codes (ERR_*) in
1649 * err_code. It is supposed to be called only once very late in the boot process
1650 * after the bind_conf's thread_set is fixed. The function may emit warnings and
1651 * alerts. Extra listeners may be created on the fly.
1652 */
1653int bind_complete_thread_setup(struct bind_conf *bind_conf, int *err_code)
1654{
1655 struct proxy *fe = bind_conf->frontend;
1656 struct listener *li, *new_li, *ref;
1657 struct thread_set new_ts;
1658 int shard, shards, todo, done, grp, dups;
1659 ulong mask, gmask, bit;
1660 int cfgerr = 0;
1661 char *err;
1662
1663 err = NULL;
Willy Tarreauc38499c2023-04-22 22:27:31 +02001664 if (thread_resolve_group_mask(&bind_conf->thread_set, 0, &err) < 0) {
Willy Tarreaua22db652023-04-22 23:52:17 +02001665 ha_alert("%s '%s': %s in 'bind %s' at [%s:%d].\n",
1666 proxy_type_str(fe),
Willy Tarreauf6a84442023-04-22 23:25:38 +02001667 fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
1668 free(err);
1669 cfgerr++;
1670 return cfgerr;
1671 }
1672
1673 /* apply thread masks and groups to all receivers */
1674 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
1675 shards = bind_conf->settings.shards;
1676 todo = thread_set_count(&bind_conf->thread_set);
1677
1678 /* special values: -1 = "by-thread", -2 = "by-group" */
Willy Tarreauc1fbdd62023-04-22 11:38:55 +02001679 if (shards == -1) {
Willy Tarreau8a5e6f42023-04-22 17:39:30 +02001680 if (protocol_supports_flag(li->rx.proto, PROTO_F_REUSEPORT_SUPPORTED))
Willy Tarreauc1fbdd62023-04-22 11:38:55 +02001681 shards = todo;
1682 else {
1683 if (fe != global.cli_fe)
1684 ha_diag_warning("[%s:%d]: Disabling per-thread sharding for listener in"
1685 " %s '%s' because SO_REUSEPORT is disabled\n",
1686 bind_conf->file, bind_conf->line, proxy_type_str(fe), fe->id);
1687 shards = 1;
1688 }
1689 }
Willy Tarreauf6a84442023-04-22 23:25:38 +02001690 else if (shards == -2)
Willy Tarreau8a5e6f42023-04-22 17:39:30 +02001691 shards = protocol_supports_flag(li->rx.proto, PROTO_F_REUSEPORT_SUPPORTED) ? my_popcountl(bind_conf->thread_set.grps) : 1;
Willy Tarreauf6a84442023-04-22 23:25:38 +02001692
1693 /* no more shards than total threads */
1694 if (shards > todo)
1695 shards = todo;
1696
Willy Tarreauc1fbdd62023-04-22 11:38:55 +02001697 /* We also need to check if an explicit shards count was set and cannot be honored */
Willy Tarreau8a5e6f42023-04-22 17:39:30 +02001698 if (shards > 1 && !protocol_supports_flag(li->rx.proto, PROTO_F_REUSEPORT_SUPPORTED)) {
Willy Tarreauc1fbdd62023-04-22 11:38:55 +02001699 ha_warning("[%s:%d]: Disabling sharding for listener in %s '%s' because SO_REUSEPORT is disabled\n",
1700 bind_conf->file, bind_conf->line, proxy_type_str(fe), fe->id);
1701 shards = 1;
1702 }
1703
Willy Tarreauf6a84442023-04-22 23:25:38 +02001704 shard = done = grp = bit = mask = 0;
1705 new_li = li;
1706
1707 while (shard < shards) {
1708 memset(&new_ts, 0, sizeof(new_ts));
1709 while (grp < global.nbtgroups && done < todo) {
1710 /* enlarge mask to cover next bit of bind_thread till we
1711 * have enough bits for one shard. We restart from the
1712 * current grp+bit.
1713 */
1714
1715 /* first let's find the first non-empty group starting at <mask> */
1716 if (!(bind_conf->thread_set.rel[grp] & ha_tgroup_info[grp].threads_enabled & ~mask)) {
1717 grp++;
1718 mask = 0;
1719 continue;
1720 }
1721
1722 /* take next unassigned bit */
1723 bit = (bind_conf->thread_set.rel[grp] & ~mask) & -(bind_conf->thread_set.rel[grp] & ~mask);
1724 new_ts.rel[grp] |= bit;
1725 mask |= bit;
1726 new_ts.grps |= 1UL << grp;
1727
1728 done += shards;
1729 };
1730
1731 BUG_ON(!new_ts.grps); // no more bits left unassigned
1732
1733 /* Create all required listeners for all bound groups. If more than one group is
1734 * needed, the first receiver serves as a reference, and subsequent ones point to
1735 * it. We already have a listener available in new_li() so we only allocate a new
1736 * one if we're not on the last one. We count the remaining groups by copying their
1737 * mask into <gmask> and dropping the lowest bit at the end of the loop until there
1738 * is no more. Ah yes, it's not pretty :-/
1739 */
1740 ref = new_li;
1741 gmask = new_ts.grps;
1742 for (dups = 0; gmask; dups++) {
1743 /* assign the first (and only) thread and group */
1744 new_li->rx.bind_thread = thread_set_nth_tmask(&new_ts, dups);
1745 new_li->rx.bind_tgroup = thread_set_nth_group(&new_ts, dups);
1746
1747 if (dups) {
1748 /* it has been allocated already in the previous round */
1749 shard_info_attach(&new_li->rx, ref->rx.shard_info);
1750 new_li->rx.flags |= RX_F_MUST_DUP;
1751 }
1752
1753 gmask &= gmask - 1; // drop lowest bit
1754 if (gmask) {
1755 /* yet another listener expected in this shard, let's
1756 * chain it.
1757 */
1758 struct listener *tmp_li = clone_listener(new_li);
1759
1760 if (!tmp_li) {
1761 ha_alert("Out of memory while trying to allocate extra listener for group %u of shard %d in %s %s\n",
1762 new_li->rx.bind_tgroup, shard, proxy_type_str(fe), fe->id);
1763 cfgerr++;
1764 *err_code |= ERR_FATAL | ERR_ALERT;
1765 return cfgerr;
1766 }
1767
1768 /* if we're forced to create at least two listeners, we have to
1769 * allocate a shared shard_info that's linked to from the reference
1770 * and each other listener, so we'll create it here.
1771 */
1772 if (!shard_info_attach(&ref->rx, NULL)) {
1773 ha_alert("Out of memory while trying to allocate shard_info for listener for group %u of shard %d in %s %s\n",
1774 new_li->rx.bind_tgroup, shard, proxy_type_str(fe), fe->id);
1775 cfgerr++;
1776 *err_code |= ERR_FATAL | ERR_ALERT;
1777 return cfgerr;
1778 }
1779 new_li = tmp_li;
1780 }
1781 }
1782 done -= todo;
1783
1784 shard++;
1785 if (shard >= shards)
1786 break;
1787
1788 /* create another listener for new shards */
1789 new_li = clone_listener(li);
1790 if (!new_li) {
1791 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
1792 shard, proxy_type_str(fe), fe->id);
1793 cfgerr++;
1794 *err_code |= ERR_FATAL | ERR_ALERT;
1795 return cfgerr;
1796 }
1797 }
1798 }
1799
1800 /* success */
1801 return cfgerr;
1802}
1803
Willy Tarreau26982662012-09-12 23:17:10 +02001804/*
1805 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1806 * parsing sessions.
1807 */
1808void bind_register_keywords(struct bind_kw_list *kwl)
1809{
Willy Tarreau2b718102021-04-21 07:32:39 +02001810 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001811}
1812
1813/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1814 * keyword is found with a NULL ->parse() function, then an attempt is made to
1815 * find one with a valid ->parse() function. This way it is possible to declare
1816 * platform-dependant, known keywords as NULL, then only declare them as valid
1817 * if some options are met. Note that if the requested keyword contains an
1818 * opening parenthesis, everything from this point is ignored.
1819 */
1820struct bind_kw *bind_find_kw(const char *kw)
1821{
1822 int index;
1823 const char *kwend;
1824 struct bind_kw_list *kwl;
1825 struct bind_kw *ret = NULL;
1826
1827 kwend = strchr(kw, '(');
1828 if (!kwend)
1829 kwend = kw + strlen(kw);
1830
1831 list_for_each_entry(kwl, &bind_keywords.list, list) {
1832 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1833 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1834 kwl->kw[index].kw[kwend-kw] == 0) {
1835 if (kwl->kw[index].parse)
1836 return &kwl->kw[index]; /* found it !*/
1837 else
1838 ret = &kwl->kw[index]; /* may be OK */
1839 }
1840 }
1841 }
1842 return ret;
1843}
1844
Willy Tarreau8638f482012-09-18 18:01:17 +02001845/* Dumps all registered "bind" keywords to the <out> string pointer. The
1846 * unsupported keywords are only dumped if their supported form was not
1847 * found.
1848 */
1849void bind_dump_kws(char **out)
1850{
1851 struct bind_kw_list *kwl;
1852 int index;
1853
Christopher Faulet784063e2020-05-18 12:14:18 +02001854 if (!out)
1855 return;
1856
Willy Tarreau8638f482012-09-18 18:01:17 +02001857 *out = NULL;
1858 list_for_each_entry(kwl, &bind_keywords.list, list) {
1859 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1860 if (kwl->kw[index].parse ||
1861 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001862 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1863 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001864 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001865 kwl->kw[index].skip ? " <arg>" : "",
1866 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001867 }
1868 }
1869 }
1870}
1871
Willy Tarreau433b05f2021-03-12 10:14:07 +01001872/* Try to find in srv_keyword the word that looks closest to <word> by counting
1873 * transitions between letters, digits and other characters. Will return the
1874 * best matching word if found, otherwise NULL.
1875 */
1876const char *bind_find_best_kw(const char *word)
1877{
1878 uint8_t word_sig[1024];
1879 uint8_t list_sig[1024];
1880 const struct bind_kw_list *kwl;
1881 const char *best_ptr = NULL;
1882 int dist, best_dist = INT_MAX;
1883 int index;
1884
1885 make_word_fingerprint(word_sig, word);
1886 list_for_each_entry(kwl, &bind_keywords.list, list) {
1887 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1888 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1889 dist = word_fingerprint_distance(word_sig, list_sig);
1890 if (dist < best_dist) {
1891 best_dist = dist;
1892 best_ptr = kwl->kw[index].kw;
1893 }
1894 }
1895 }
1896
1897 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1898 best_ptr = NULL;
1899
1900 return best_ptr;
1901}
1902
Willy Tarreaudbf78022021-10-06 09:05:08 +02001903/* allocate an bind_conf struct for a bind line, and chain it to the frontend <fe>.
1904 * If <arg> is not NULL, it is duplicated into ->arg to store useful config
1905 * information for error reporting. NULL is returned on error.
1906 */
1907struct bind_conf *bind_conf_alloc(struct proxy *fe, const char *file,
1908 int line, const char *arg, struct xprt_ops *xprt)
1909{
1910 struct bind_conf *bind_conf = calloc(1, sizeof(*bind_conf));
1911
1912 if (!bind_conf)
1913 goto err;
1914
1915 bind_conf->file = strdup(file);
1916 if (!bind_conf->file)
1917 goto err;
1918 bind_conf->line = line;
1919 if (arg) {
1920 bind_conf->arg = strdup(arg);
1921 if (!bind_conf->arg)
1922 goto err;
1923 }
1924
1925 LIST_APPEND(&fe->conf.bind, &bind_conf->by_fe);
1926 bind_conf->settings.ux.uid = -1;
1927 bind_conf->settings.ux.gid = -1;
1928 bind_conf->settings.ux.mode = 0;
Willy Tarreau73101642023-04-22 22:06:23 +02001929 bind_conf->settings.shards = global.tune.default_shards;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001930 bind_conf->xprt = xprt;
1931 bind_conf->frontend = fe;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01001932 bind_conf->analysers = fe->fe_req_ana;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001933 bind_conf->severity_output = CLI_SEVERITY_NONE;
1934#ifdef USE_OPENSSL
1935 HA_RWLOCK_INIT(&bind_conf->sni_lock);
1936 bind_conf->sni_ctx = EB_ROOT;
1937 bind_conf->sni_w_ctx = EB_ROOT;
1938#endif
1939 LIST_INIT(&bind_conf->listeners);
1940 return bind_conf;
1941
1942 err:
1943 if (bind_conf) {
1944 ha_free(&bind_conf->file);
1945 ha_free(&bind_conf->arg);
1946 }
1947 ha_free(&bind_conf);
1948 return NULL;
1949}
1950
1951const char *listener_state_str(const struct listener *l)
1952{
1953 static const char *states[8] = {
1954 "NEW", "INI", "ASS", "PAU", "LIS", "RDY", "FUL", "LIM",
1955 };
1956 unsigned int st = l->state;
1957
1958 if (st >= sizeof(states) / sizeof(*states))
1959 return "INVALID";
1960 return states[st];
1961}
1962
Willy Tarreau645513a2010-05-24 20:55:15 +02001963/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001964/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001965/************************************************************************/
1966
Willy Tarreaua5e37562011-12-16 17:06:15 +01001967/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001968static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001969smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001970{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001971 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001972 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001973 return 1;
1974}
1975
Willy Tarreaua5e37562011-12-16 17:06:15 +01001976/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001977static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001978smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001979{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001980 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001981 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001982 return 1;
1983}
Jerome Magnineb421b22020-03-27 22:08:40 +01001984static int
1985smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1986{
1987 smp->data.u.str.area = smp->sess->listener->name;
1988 if (!smp->data.u.str.area)
1989 return 0;
1990
1991 smp->data.type = SMP_T_STR;
1992 smp->flags = SMP_F_CONST;
1993 smp->data.u.str.data = strlen(smp->data.u.str.area);
1994 return 1;
1995}
Willy Tarreau645513a2010-05-24 20:55:15 +02001996
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001997/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001998static int bind_parse_accept_proxy(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001999{
Willy Tarreauf1b47302023-01-12 19:48:50 +01002000 conf->options |= BC_O_ACC_PROXY;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002001 return 0;
2002}
2003
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01002004/* parse the "accept-netscaler-cip" bind keyword */
2005static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2006{
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01002007 uint32_t val;
2008
2009 if (!*args[cur_arg + 1]) {
2010 memprintf(err, "'%s' : missing value", args[cur_arg]);
2011 return ERR_ALERT | ERR_FATAL;
2012 }
2013
2014 val = atol(args[cur_arg + 1]);
2015 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01002016 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01002017 return ERR_ALERT | ERR_FATAL;
2018 }
2019
Willy Tarreauf1b47302023-01-12 19:48:50 +01002020 conf->options |= BC_O_ACC_CIP;
2021 conf->ns_cip_magic = val;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01002022 return 0;
2023}
2024
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002025/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002026static int bind_parse_backlog(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002027{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002028 int val;
2029
2030 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002031 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002032 return ERR_ALERT | ERR_FATAL;
2033 }
2034
2035 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01002036 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002037 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002038 return ERR_ALERT | ERR_FATAL;
2039 }
2040
Willy Tarreau1920f892023-01-12 18:55:13 +01002041 conf->backlog = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002042 return 0;
2043}
2044
2045/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002046static int bind_parse_id(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002047{
2048 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02002049 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01002050 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002051
Willy Tarreau4348fad2012-09-20 16:48:07 +02002052 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002053 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002054 return ERR_ALERT | ERR_FATAL;
2055 }
2056
2057 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002058 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002059 return ERR_ALERT | ERR_FATAL;
2060 }
2061
Willy Tarreau4348fad2012-09-20 16:48:07 +02002062 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01002063 new->luid = strtol(args[cur_arg + 1], &error, 10);
2064 if (*error != '\0') {
2065 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
2066 return ERR_ALERT | ERR_FATAL;
2067 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02002068 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002069
Willy Tarreau4348fad2012-09-20 16:48:07 +02002070 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002071 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002072 return ERR_ALERT | ERR_FATAL;
2073 }
2074
Willy Tarreau4348fad2012-09-20 16:48:07 +02002075 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002076 if (node) {
2077 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002078 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
2079 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
2080 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002081 return ERR_ALERT | ERR_FATAL;
2082 }
2083
Willy Tarreau4348fad2012-09-20 16:48:07 +02002084 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002085 return 0;
2086}
2087
Willy Tarreau3882d2a2022-05-20 15:41:45 +02002088/* Complete a bind_conf by parsing the args after the address. <args> is the
2089 * arguments array, <cur_arg> is the first one to be considered. <section> is
2090 * the section name to report in error messages, and <file> and <linenum> are
2091 * the file name and line number respectively. Note that args[0..1] are used
2092 * in error messages to provide some context. The return value is an error
2093 * code, zero on success or an OR of ERR_{FATAL,ABORT,ALERT,WARN}.
2094 */
2095int bind_parse_args_list(struct bind_conf *bind_conf, char **args, int cur_arg, const char *section, const char *file, int linenum)
2096{
2097 int err_code = 0;
2098
2099 while (*(args[cur_arg])) {
2100 struct bind_kw *kw;
2101 const char *best;
2102
2103 kw = bind_find_kw(args[cur_arg]);
2104 if (kw) {
2105 char *err = NULL;
2106 int code;
2107
2108 if (!kw->parse) {
2109 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : '%s' option is not implemented in this version (check build options).\n",
2110 file, linenum, args[0], args[1], section, args[cur_arg]);
2111 cur_arg += 1 + kw->skip ;
2112 err_code |= ERR_ALERT | ERR_FATAL;
2113 goto out;
2114 }
2115
2116 code = kw->parse(args, cur_arg, bind_conf->frontend, bind_conf, &err);
2117 err_code |= code;
2118
2119 if (code) {
2120 if (err && *err) {
2121 indent_msg(&err, 2);
2122 if (((code & (ERR_WARN|ERR_ALERT)) == ERR_WARN))
2123 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
2124 else
2125 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
2126 }
2127 else
2128 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : error encountered while processing '%s'.\n",
2129 file, linenum, args[0], args[1], section, args[cur_arg]);
2130 if (code & ERR_FATAL) {
2131 free(err);
2132 cur_arg += 1 + kw->skip;
2133 goto out;
2134 }
2135 }
2136 free(err);
2137 cur_arg += 1 + kw->skip;
2138 continue;
2139 }
2140
2141 best = bind_find_best_kw(args[cur_arg]);
2142 if (best)
2143 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'; did you mean '%s' maybe ?\n",
2144 file, linenum, args[0], args[1], section, args[cur_arg], best);
2145 else
2146 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'.\n",
2147 file, linenum, args[0], args[1], section, args[cur_arg]);
2148
2149 err_code |= ERR_ALERT | ERR_FATAL;
2150 goto out;
2151 }
Willy Tarreau64306cc2022-05-20 16:20:52 +02002152
2153 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM) ||
2154 (bind_conf->options & (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) {
2155 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : cannot mix datagram and stream protocols.\n",
2156 file, linenum, args[0], args[1], section);
2157 err_code |= ERR_ALERT | ERR_FATAL;
2158 goto out;
2159 }
2160
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02002161 /* The transport layer automatically switches to QUIC when QUIC is
2162 * selected, regardless of bind_conf settings. We then need to
2163 * initialize QUIC params.
2164 */
2165 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) {
2166#ifdef USE_QUIC
2167 bind_conf->xprt = xprt_get(XPRT_QUIC);
Willy Tarreau287f32f2022-05-20 18:16:52 +02002168 if (!(bind_conf->options & BC_O_USE_SSL)) {
2169 bind_conf->options |= BC_O_USE_SSL;
2170 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol detected, enabling ssl. Use 'ssl' to shut this warning.\n",
2171 file, linenum, args[0], args[1], section);
2172 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02002173 quic_transport_params_init(&bind_conf->quic_params, 1);
2174#else
2175 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol selected but support not compiled in (check build options).\n",
2176 file, linenum, args[0], args[1], section);
2177 err_code |= ERR_ALERT | ERR_FATAL;
2178 goto out;
2179#endif
2180 }
Willy Tarreau2071a992022-05-20 17:14:31 +02002181 else if (bind_conf->options & BC_O_USE_SSL) {
2182 bind_conf->xprt = xprt_get(XPRT_SSL);
2183 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02002184
Willy Tarreau3882d2a2022-05-20 15:41:45 +02002185 out:
2186 return err_code;
2187}
2188
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002189/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002190static int bind_parse_maxconn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002191{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002192 int val;
2193
2194 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002195 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002196 return ERR_ALERT | ERR_FATAL;
2197 }
2198
2199 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01002200 if (val < 0) {
2201 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002202 return ERR_ALERT | ERR_FATAL;
2203 }
2204
Willy Tarreau758c69d2023-01-12 18:59:37 +01002205 conf->maxconn = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002206 return 0;
2207}
2208
2209/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002210static int bind_parse_name(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002211{
2212 struct listener *l;
2213
2214 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002215 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002216 return ERR_ALERT | ERR_FATAL;
2217 }
2218
Willy Tarreau4348fad2012-09-20 16:48:07 +02002219 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002220 l->name = strdup(args[cur_arg + 1]);
2221
2222 return 0;
2223}
2224
2225/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002226static int bind_parse_nice(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002227{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002228 int val;
2229
2230 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002231 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002232 return ERR_ALERT | ERR_FATAL;
2233 }
2234
2235 val = atol(args[cur_arg + 1]);
2236 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002237 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002238 return ERR_ALERT | ERR_FATAL;
2239 }
2240
Willy Tarreau7dbd4182023-01-12 19:32:45 +01002241 conf->nice = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002242 return 0;
2243}
2244
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02002245/* parse the "process" bind keyword */
2246static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2247{
Willy Tarreauacd64412022-07-15 17:16:01 +02002248 memprintf(err, "'process %s' on 'bind' lines is not supported anymore, please use 'thread' instead.", args[cur_arg+1]);
2249 return ERR_ALERT | ERR_FATAL;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02002250}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002251
Christopher Fauleta717b992018-04-10 14:43:00 +02002252/* parse the "proto" bind keyword */
2253static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2254{
2255 struct ist proto;
2256
2257 if (!*args[cur_arg + 1]) {
2258 memprintf(err, "'%s' : missing value", args[cur_arg]);
2259 return ERR_ALERT | ERR_FATAL;
2260 }
2261
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01002262 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02002263 conf->mux_proto = get_mux_proto(proto);
2264 if (!conf->mux_proto) {
2265 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
2266 return ERR_ALERT | ERR_FATAL;
2267 }
Willy Tarreauc8cac042021-09-21 14:31:29 +02002268 return 0;
2269}
2270
Willy Tarreaua07635e2023-04-13 17:25:43 +02002271/* parse the "shards" bind keyword. Takes an integer, "by-thread", or "by-group" */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002272static int bind_parse_shards(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2273{
2274 int val;
2275
2276 if (!*args[cur_arg + 1]) {
2277 memprintf(err, "'%s' : missing value", args[cur_arg]);
2278 return ERR_ALERT | ERR_FATAL;
2279 }
2280
2281 if (strcmp(args[cur_arg + 1], "by-thread") == 0) {
Willy Tarreaud30e82b2023-04-13 17:11:23 +02002282 val = -1; /* -1 = "by-thread", will be fixed in check_config_validity() */
Willy Tarreaua07635e2023-04-13 17:25:43 +02002283 } else if (strcmp(args[cur_arg + 1], "by-group") == 0) {
2284 val = -2; /* -2 = "by-group", will be fixed in check_config_validity() */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002285 } else {
2286 val = atol(args[cur_arg + 1]);
2287 if (val < 1 || val > MAX_THREADS) {
2288 memprintf(err, "'%s' : invalid value %d, allowed range is %d..%d or 'by-thread'", args[cur_arg], val, 1, MAX_THREADS);
2289 return ERR_ALERT | ERR_FATAL;
2290 }
2291 }
2292
2293 conf->settings.shards = val;
2294 return 0;
2295}
2296
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01002297/* parse the "thread" bind keyword. This will replace any preset thread_set */
Willy Tarreauc8cac042021-09-21 14:31:29 +02002298static int bind_parse_thread(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2299{
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01002300 /* note that the thread set is zeroed before first call, and we don't
2301 * want to reset it so that it remains possible to chain multiple
2302 * "thread" directives.
2303 */
2304 if (parse_thread_set(args[cur_arg+1], &conf->thread_set, err) < 0)
Willy Tarreauc8cac042021-09-21 14:31:29 +02002305 return ERR_ALERT | ERR_FATAL;
Christopher Fauleta717b992018-04-10 14:43:00 +02002306 return 0;
2307}
2308
Willy Tarreau73101642023-04-22 22:06:23 +02002309/* config parser for global "tune.listener.default-shards" */
2310static int cfg_parse_tune_listener_shards(char **args, int section_type, struct proxy *curpx,
2311 const struct proxy *defpx, const char *file, int line,
2312 char **err)
2313{
2314 if (too_many_args(1, args, err, NULL))
2315 return -1;
2316
2317 if (strcmp(args[1], "by-thread") == 0)
2318 global.tune.default_shards = -1;
2319 else if (strcmp(args[1], "by-group") == 0)
2320 global.tune.default_shards = -2;
2321 else if (strcmp(args[1], "by-process") == 0)
2322 global.tune.default_shards = 1;
2323 else {
2324 memprintf(err, "'%s' expects either 'by-process', 'by-group', or 'by-thread' but got '%s'.", args[0], args[1]);
2325 return -1;
2326 }
2327 return 0;
2328}
2329
Willy Tarreau84fe1f42023-04-20 15:40:38 +02002330/* config parser for global "tune.listener.multi-queue", accepts "on", "fair" or "off" */
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002331static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01002332 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002333 char **err)
2334{
2335 if (too_many_args(1, args, err, NULL))
2336 return -1;
2337
2338 if (strcmp(args[1], "on") == 0)
Willy Tarreau84fe1f42023-04-20 15:40:38 +02002339 global.tune.options = (global.tune.options & ~GTUNE_LISTENER_MQ_ANY) | GTUNE_LISTENER_MQ_OPT;
2340 else if (strcmp(args[1], "fair") == 0)
2341 global.tune.options = (global.tune.options & ~GTUNE_LISTENER_MQ_ANY) | GTUNE_LISTENER_MQ_FAIR;
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002342 else if (strcmp(args[1], "off") == 0)
Willy Tarreau84fe1f42023-04-20 15:40:38 +02002343 global.tune.options &= ~GTUNE_LISTENER_MQ_ANY;
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002344 else {
Willy Tarreau84fe1f42023-04-20 15:40:38 +02002345 memprintf(err, "'%s' expects either 'on', 'fair', or 'off' but got '%s'.", args[0], args[1]);
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002346 return -1;
2347 }
2348 return 0;
2349}
2350
Willy Tarreau61612d42012-04-19 18:42:05 +02002351/* Note: must not be declared <const> as its list will be overwritten.
2352 * Please take care of keeping this list alphabetically sorted.
2353 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002354static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002355 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
2356 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01002357 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01002358 { /* END */ },
2359}};
2360
Willy Tarreau0108d902018-11-25 19:14:37 +01002361INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2362
Willy Tarreau0ccb7442013-01-07 22:54:17 +01002363/* Note: must not be declared <const> as its list will be overwritten.
2364 * Please take care of keeping this list alphabetically sorted.
2365 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002366static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01002367 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02002368}};
2369
Willy Tarreau0108d902018-11-25 19:14:37 +01002370INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
2371
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002372/* Note: must not be declared <const> as its list will be overwritten.
2373 * Please take care of keeping this list alphabetically sorted, doing so helps
2374 * all code contributors.
2375 * Optional keywords are also declared with a NULL ->parse() function so that
2376 * the config parser can report an appropriate error when a known keyword was
2377 * not enabled.
2378 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02002379static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01002380 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002381 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
2382 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
2383 { "id", bind_parse_id, 1 }, /* set id of listening socket */
2384 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
2385 { "name", bind_parse_name, 1 }, /* set name of listening socket */
2386 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02002387 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02002388 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002389 { "shards", bind_parse_shards, 1 }, /* set number of shards */
Willy Tarreauc8cac042021-09-21 14:31:29 +02002390 { "thread", bind_parse_thread, 1 }, /* set list of allowed threads for this socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01002391 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02002392}};
2393
Willy Tarreau0108d902018-11-25 19:14:37 +01002394INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
2395
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002396/* config keyword parsers */
2397static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau73101642023-04-22 22:06:23 +02002398 { CFG_GLOBAL, "tune.listener.default-shards", cfg_parse_tune_listener_shards },
Willy Tarreau7ac908b2019-02-27 12:02:18 +01002399 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
2400 { 0, NULL, NULL }
2401}};
2402
2403INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2404
Willy Tarreau645513a2010-05-24 20:55:15 +02002405/*
2406 * Local variables:
2407 * c-indent-level: 8
2408 * c-basic-offset: 8
2409 * End:
2410 */