blob: 2e373a3614f10581a86982118369f252d9a1385d [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 Tarreau469fa472022-11-22 09:08:23 +010050__decl_thread(static HA_RWLOCK_T global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +010051
William Dauchy3679d0c2021-02-14 23:22:55 +010052/* listener status for stats */
53const char* li_status_st[LI_STATE_COUNT] = {
54 [LI_STATUS_WAITING] = "WAITING",
55 [LI_STATUS_OPEN] = "OPEN",
56 [LI_STATUS_FULL] = "FULL",
57};
Willy Tarreaua1d97f82019-12-10 11:18:41 +010058
Willy Tarreau1efafce2019-01-27 15:37:19 +010059#if defined(USE_THREAD)
60
61struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
62
63/* dequeue and process a pending connection from the local accept queue (single
Willy Tarreau83efc322020-10-14 17:37:17 +020064 * consumer). Returns the accepted connection or NULL if none was found.
Willy Tarreau1efafce2019-01-27 15:37:19 +010065 */
Willy Tarreau83efc322020-10-14 17:37:17 +020066struct connection *accept_queue_pop_sc(struct accept_queue_ring *ring)
Willy Tarreau1efafce2019-01-27 15:37:19 +010067{
Willy Tarreau1efafce2019-01-27 15:37:19 +010068 unsigned int pos, next;
Willy Tarreau83efc322020-10-14 17:37:17 +020069 struct connection *ptr;
70 struct connection **e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010071
72 pos = ring->head;
73
74 if (pos == ring->tail)
Willy Tarreau83efc322020-10-14 17:37:17 +020075 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010076
77 next = pos + 1;
78 if (next >= ACCEPT_QUEUE_SIZE)
79 next = 0;
80
81 e = &ring->entry[pos];
82
83 /* wait for the producer to update the listener's pointer */
84 while (1) {
Willy Tarreau83efc322020-10-14 17:37:17 +020085 ptr = *e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010086 __ha_barrier_load();
87 if (ptr)
88 break;
89 pl_cpu_relax();
90 }
91
Willy Tarreau1efafce2019-01-27 15:37:19 +010092 /* release the entry */
Willy Tarreau83efc322020-10-14 17:37:17 +020093 *e = NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010094
95 __ha_barrier_store();
96 ring->head = next;
Willy Tarreau83efc322020-10-14 17:37:17 +020097 return ptr;
Willy Tarreau1efafce2019-01-27 15:37:19 +010098}
99
100
Willy Tarreau83efc322020-10-14 17:37:17 +0200101/* tries to push a new accepted connection <conn> into ring <ring>. Returns
102 * non-zero if it succeeds, or zero if the ring is full. Supports multiple
103 * producers.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100104 */
Willy Tarreau83efc322020-10-14 17:37:17 +0200105int accept_queue_push_mp(struct accept_queue_ring *ring, struct connection *conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100106{
Willy Tarreau1efafce2019-01-27 15:37:19 +0100107 unsigned int pos, next;
108
109 pos = ring->tail;
110 do {
111 next = pos + 1;
112 if (next >= ACCEPT_QUEUE_SIZE)
113 next = 0;
114 if (next == ring->head)
115 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100116 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100117
Willy Tarreau83efc322020-10-14 17:37:17 +0200118 ring->entry[pos] = conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100119 __ha_barrier_store();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100120 return 1;
121}
122
Willy Tarreaufb5401f2021-01-29 12:25:23 +0100123/* proceed with accepting new connections. Don't mark it static so that it appears
124 * in task dumps.
125 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100126struct task *accept_queue_process(struct task *t, void *context, unsigned int state)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100127{
128 struct accept_queue_ring *ring = context;
Willy Tarreau83efc322020-10-14 17:37:17 +0200129 struct connection *conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100130 struct listener *li;
Christopher Faulet102854c2019-04-30 12:17:13 +0200131 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100132 int ret;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100133
Christopher Faulet102854c2019-04-30 12:17:13 +0200134 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
135 * is not really illimited, but it is probably enough.
136 */
Willy Tarreau66161322021-02-19 15:50:27 +0100137 max_accept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Christopher Faulet102854c2019-04-30 12:17:13 +0200138 for (; max_accept; max_accept--) {
Willy Tarreau83efc322020-10-14 17:37:17 +0200139 conn = accept_queue_pop_sc(ring);
140 if (!conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100141 break;
142
Willy Tarreau83efc322020-10-14 17:37:17 +0200143 li = __objt_listener(conn->target);
Willy Tarreaufea8c192023-02-28 10:25:57 +0100144 _HA_ATOMIC_INC(&li->thr_conn[ti->ltid]);
Willy Tarreau30836152023-01-12 19:10:17 +0100145 ret = li->bind_conf->accept(conn);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100146 if (ret <= 0) {
147 /* connection was terminated by the application */
148 continue;
149 }
150
151 /* increase the per-process number of cumulated sessions, this
Willy Tarreau30836152023-01-12 19:10:17 +0100152 * may only be done once l->bind_conf->accept() has accepted the
153 * connection.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100154 */
Willy Tarreau17146802023-01-12 19:58:42 +0100155 if (!(li->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100156 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
157 update_freq_ctr(&global.sess_per_sec, 1));
Willy Tarreau11ba4042022-05-20 15:56:32 +0200158 if (li->bind_conf && li->bind_conf->options & BC_O_USE_SSL) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100159 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
160 update_freq_ctr(&global.ssl_per_sec, 1));
161 }
162 }
163 }
164
165 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200166 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200167 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100168
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200169 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100170}
171
172/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
173static int accept_queue_init()
174{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200175 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100176 int i;
177
178 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200179 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100180 if (!t) {
181 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
182 return ERR_FATAL|ERR_ABORT;
183 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200184 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100185 t->process = accept_queue_process;
186 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200187 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100188 }
189 return 0;
190}
191
192REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
193
Willy Tarreaue01b08d2022-04-27 18:42:47 +0200194static void accept_queue_deinit()
195{
196 int i;
197
198 for (i = 0; i < global.nbthread; i++) {
199 if (accept_queue_rings[i].tasklet)
200 tasklet_free(accept_queue_rings[i].tasklet);
201 }
202}
203
204REGISTER_POST_DEINIT(accept_queue_deinit);
205
Willy Tarreau1efafce2019-01-27 15:37:19 +0100206#endif // USE_THREAD
207
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100208/* Memory allocation and initialization of the per_thr field.
209 * Returns 0 if the field has been successfully initialized, -1 on failure.
210 */
211int li_init_per_thr(struct listener *li)
212{
213 int i;
214
215 /* allocate per-thread elements for listener */
216 li->per_thr = calloc(global.nbthread, sizeof(*li->per_thr));
217 if (!li->per_thr)
218 return -1;
219
220 for (i = 0; i < global.nbthread; ++i) {
221 MT_LIST_INIT(&li->per_thr[i].quic_accept.list);
222 MT_LIST_INIT(&li->per_thr[i].quic_accept.conns);
223
224 li->per_thr[i].li = li;
225 }
226
227 return 0;
228}
229
William Dauchy3679d0c2021-02-14 23:22:55 +0100230/* helper to get listener status for stats */
231enum li_status get_li_status(struct listener *l)
232{
Willy Tarreau758c69d2023-01-12 18:59:37 +0100233 if (!l->bind_conf->maxconn || l->nbconn < l->bind_conf->maxconn) {
William Dauchy3679d0c2021-02-14 23:22:55 +0100234 if (l->state == LI_LIMITED)
235 return LI_STATUS_WAITING;
236 else
237 return LI_STATUS_OPEN;
238 }
239 return LI_STATUS_FULL;
240}
241
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200242/* adjust the listener's state and its proxy's listener counters if needed.
243 * It must be called under the listener's lock, but uses atomic ops to change
244 * the proxy's counters so that the proxy lock is not needed.
245 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200246void listener_set_state(struct listener *l, enum li_state st)
247{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200248 struct proxy *px = l->bind_conf->frontend;
249
250 if (px) {
251 /* from state */
252 switch (l->state) {
253 case LI_NEW: /* first call */
Willy Tarreau4781b152021-04-06 13:53:36 +0200254 _HA_ATOMIC_INC(&px->li_all);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200255 break;
256 case LI_INIT:
257 case LI_ASSIGNED:
258 break;
259 case LI_PAUSED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200260 _HA_ATOMIC_DEC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200261 break;
262 case LI_LISTEN:
Willy Tarreau4781b152021-04-06 13:53:36 +0200263 _HA_ATOMIC_DEC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200264 break;
265 case LI_READY:
266 case LI_FULL:
267 case LI_LIMITED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200268 _HA_ATOMIC_DEC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200269 break;
270 }
271
272 /* to state */
273 switch (st) {
274 case LI_NEW:
275 case LI_INIT:
276 case LI_ASSIGNED:
277 break;
278 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200279 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200280 _HA_ATOMIC_INC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200281 break;
282 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200283 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200284 _HA_ATOMIC_INC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200285 break;
286 case LI_READY:
287 case LI_FULL:
288 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200289 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200290 _HA_ATOMIC_INC(&px->li_ready);
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100291 l->flags |= LI_F_FINALIZED;
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200292 break;
293 }
294 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200295 l->state = st;
296}
297
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100298/* This function adds the specified listener's file descriptor to the polling
299 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500300 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200301 * also support binding only the relevant processes to their respective
302 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100303 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200304void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100305{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100306 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200307
308 /* If this listener is supposed to be only in the master, close it in
309 * the workers. Conversely, if it's supposed to be only in the workers
310 * close it in the master.
311 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200312 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200313 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200314
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100315 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200316 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200317 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau72faef32021-06-15 08:36:30 +0200318 (!!master != !!(listener->rx.flags & RX_F_MWORKER))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200319 /* we don't want to enable this listener and don't
320 * want any fd event to reach it.
321 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200322 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200323 }
Willy Tarreau758c69d2023-01-12 18:59:37 +0100324 else if (!listener->bind_conf->maxconn || listener->nbconn < listener->bind_conf->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200325 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200326 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200327 }
328 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200329 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100330 }
331 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200332
Willy Tarreau08b6f962022-02-01 16:23:00 +0100333 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100334}
335
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200336/*
Aurelien DARRAGON187396e2022-09-11 16:19:49 +0200337 * This function completely stops a listener.
338 * The proxy's listeners count is updated and the proxy is
339 * disabled and woken up after the last one is gone.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100340 * It will need to operate under the proxy's lock, the protocol's lock and
341 * the listener's lock. The caller is responsible for indicating in lpx,
342 * lpr, lli whether the respective locks are already held (non-zero) or
343 * not (zero) so that the function picks the missing ones, in this order.
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200344 */
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100345void stop_listener(struct listener *l, int lpx, int lpr, int lli)
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200346{
347 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200348
Willy Tarreau17146802023-01-12 19:58:42 +0100349 if (l->bind_conf->options & BC_O_NOSTOP) {
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200350 /* master-worker sockpairs are never closed but don't count as a
351 * job.
352 */
353 return;
354 }
355
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200356 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200357 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200358
359 if (!lpr)
360 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
361
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100362 if (!lli)
363 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200364
365 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200366 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200367
368 if (l->state >= LI_ASSIGNED)
369 __delete_listener(l);
370
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200371 if (px)
372 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200373 }
374
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100375 if (!lli)
376 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200377
378 if (!lpr)
379 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
380
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200381 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200382 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200383}
384
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100385/* This function adds the specified <listener> to the protocol <proto>. It
386 * does nothing if the protocol was already added. The listener's state is
387 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
388 * for the protocol is updated. This must be called with the proto lock held.
389 */
390void default_add_listener(struct protocol *proto, struct listener *listener)
391{
392 if (listener->state != LI_INIT)
393 return;
394 listener_set_state(listener, LI_ASSIGNED);
395 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200396 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100397 proto->nb_receivers++;
398}
399
Willy Tarreaue03204c2020-10-09 17:02:21 +0200400/* default function called to suspend a listener: it simply passes the call to
401 * the underlying receiver. This is find for most socket-based protocols. This
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100402 * must be called under the listener's lock. It will return < 0 in case of
403 * failure, 0 if the listener was totally stopped, or > 0 if correctly paused..
404 * If no receiver-level suspend is provided, the operation is assumed
405 * to succeed.
Willy Tarreaue03204c2020-10-09 17:02:21 +0200406 */
407int default_suspend_listener(struct listener *l)
408{
Willy Tarreaue03204c2020-10-09 17:02:21 +0200409 if (!l->rx.proto->rx_suspend)
410 return 1;
411
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100412 return l->rx.proto->rx_suspend(&l->rx);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200413}
414
415
416/* Tries to resume a suspended listener, and returns non-zero on success or
417 * zero on failure. On certain errors, an alert or a warning might be displayed.
418 * It must be called with the listener's lock held. Depending on the listener's
419 * state and protocol, a listen() call might be used to resume operations, or a
420 * call to the receiver's resume() function might be used as well. This is
421 * suitable as a default function for TCP and UDP. This must be called with the
422 * listener's lock held.
423 */
424int default_resume_listener(struct listener *l)
425{
426 int ret = 1;
427
428 if (l->state == LI_ASSIGNED) {
429 char msg[100];
Aurelien DARRAGON046a75e2023-02-07 12:17:20 +0100430 char *errmsg;
Willy Tarreaue03204c2020-10-09 17:02:21 +0200431 int err;
432
Aurelien DARRAGON046a75e2023-02-07 12:17:20 +0100433 /* first, try to bind the receiver */
434 err = l->rx.proto->fam->bind(&l->rx, &errmsg);
435 if (err != ERR_NONE) {
436 if (err & ERR_WARN)
437 ha_warning("Resuming listener: %s\n", errmsg);
438 else if (err & ERR_ALERT)
439 ha_alert("Resuming listener: %s\n", errmsg);
440 ha_free(&errmsg);
441 if (err & (ERR_FATAL | ERR_ABORT)) {
442 ret = 0;
443 goto end;
444 }
445 }
446
447 /* then, try to listen:
448 * for now there's still always a listening function
449 * (same check performed in protocol_bind_all()
450 */
451 BUG_ON(!l->rx.proto->listen);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200452 err = l->rx.proto->listen(l, msg, sizeof(msg));
453 if (err & ERR_ALERT)
454 ha_alert("Resuming listener: %s\n", msg);
455 else if (err & ERR_WARN)
456 ha_warning("Resuming listener: %s\n", msg);
457
458 if (err & (ERR_FATAL | ERR_ABORT)) {
459 ret = 0;
460 goto end;
461 }
462 }
463
464 if (l->state < LI_PAUSED) {
465 ret = 0;
466 goto end;
467 }
468
469 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
470 l->rx.proto->rx_resume(&l->rx) <= 0)
471 ret = 0;
472 end:
473 return ret;
474}
475
476
Willy Tarreaube58c382011-07-24 18:28:10 +0200477/* This function tries to temporarily disable a listener, depending on the OS
478 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
479 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
480 * closes upon SHUT_WR and refuses to rebind. So a common validation path
481 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
482 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100483 * suspend() may totally stop a listener if it doesn't support the PAUSED
484 * state, in which case state will be set to ASSIGNED.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100485 * It will need to operate under the proxy's lock and the listener's lock.
486 * The caller is responsible for indicating in lpx, lli whether the respective
487 * locks are already held (non-zero) or not (zero) so that the function pick
488 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200489 */
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100490int suspend_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200491{
Willy Tarreau58651b42020-09-24 16:03:29 +0200492 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200493 int ret = 1;
494
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200495 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200496 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
497
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100498 if (!lli)
499 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200500
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100501 if (!(l->flags & LI_F_FINALIZED) || l->state <= LI_PAUSED)
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200502 goto end;
503
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100504 if (l->rx.proto->suspend) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200505 ret = l->rx.proto->suspend(l);
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100506 /* if the suspend() fails, we don't want to change the
507 * current listener state
508 */
509 if (ret < 0)
510 goto end;
511 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200512
Willy Tarreau2b718102021-04-21 07:32:39 +0200513 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200514
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100515 /* ret == 0 means that the suspend() has been turned into
516 * an unbind(), meaning the listener is now stopped (ie: ABNS), we need
517 * to report this state change properly
518 */
519 listener_set_state(l, ((ret) ? LI_PAUSED : LI_ASSIGNED));
520
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100521 if (px && !(l->flags & LI_F_SUSPENDED))
522 px->li_suspended++;
523 l->flags |= LI_F_SUSPENDED;
524
Aurelien DARRAGON7a15fa52023-02-07 11:23:38 +0100525 /* at this point, everything is under control, no error should be
526 * returned to calling function
527 */
528 ret = 1;
Willy Tarreau58651b42020-09-24 16:03:29 +0200529
Aurelien DARRAGONca8a4b22023-02-07 12:36:27 +0100530 if (px && !(px->flags & PR_FL_PAUSED) && !px->li_ready) {
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +0200531 /* PROXY_LOCK is required */
532 proxy_cond_pause(px);
Willy Tarreau58651b42020-09-24 16:03:29 +0200533 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
534 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
535 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200536 end:
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100537 if (!lli)
538 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200539
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200540 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200541 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
542
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200543 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200544}
545
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200546/* This function tries to resume a temporarily disabled listener. Paused, full,
547 * limited and disabled listeners are handled, which means that this function
548 * may replace enable_listener(). The resulting state will either be LI_READY
549 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200550 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200551 * foreground mode, and are ignored. If the listener was only in the assigned
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100552 * state, it's totally rebound. This can happen if a suspend() has completely
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200553 * stopped it. If the resume fails, 0 is returned and an error might be
554 * displayed.
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100555 * It will need to operate under the proxy's lock and the listener's lock.
556 * The caller is responsible for indicating in lpx, lli whether the respective
557 * locks are already held (non-zero) or not (zero) so that the function pick
558 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200559 */
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100560int resume_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200561{
Willy Tarreau58651b42020-09-24 16:03:29 +0200562 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200563 int ret = 1;
564
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200565 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200566 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
567
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100568 if (!lli)
569 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200570
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200571 /* check that another thread didn't to the job in parallel (e.g. at the
572 * end of listen_accept() while we'd come from dequeue_all_listeners().
573 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200574 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200575 goto end;
576
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100577 if (!(l->flags & LI_F_FINALIZED) || l->state == LI_READY)
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200578 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200579
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100580 if (l->rx.proto->resume) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200581 ret = l->rx.proto->resume(l);
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100582 if (!ret)
583 goto end; /* failure to resume */
584 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200585
Willy Tarreau758c69d2023-01-12 18:59:37 +0100586 if (l->bind_conf->maxconn && l->nbconn >= l->bind_conf->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200587 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200588 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200589 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200590 }
591
Willy Tarreau4b51f422020-09-25 20:32:28 +0200592 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200593 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200594
595 done:
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100596 if (px && (l->flags & LI_F_SUSPENDED))
597 px->li_suspended--;
598 l->flags &= ~LI_F_SUSPENDED;
599
Aurelien DARRAGONca8a4b22023-02-07 12:36:27 +0100600 if (px && (px->flags & PR_FL_PAUSED) && !px->li_suspended) {
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +0200601 /* PROXY_LOCK is required */
602 proxy_cond_resume(px);
Willy Tarreau58651b42020-09-24 16:03:29 +0200603 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
604 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
605 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200606 end:
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100607 if (!lli)
608 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200609
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200610 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200611 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
612
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200613 return ret;
614}
615
Aurelien DARRAGONbcad7e62023-02-15 09:30:54 +0100616/* Same as resume_listener(), but will only work to resume from
617 * LI_FULL or LI_LIMITED states because we try to relax listeners that
618 * were temporarily restricted and not to resume inactive listeners that
619 * may have been paused or completely stopped in the meantime.
620 * Returns positive value for success and 0 for failure.
621 * It will need to operate under the proxy's lock and the listener's lock.
622 * The caller is responsible for indicating in lpx, lli whether the respective
623 * locks are already held (non-zero) or not (zero) so that the function pick
624 * the missing ones, in this order.
625 */
626int relax_listener(struct listener *l, int lpx, int lli)
627{
628 int ret = 1;
629
630 if (!lli)
631 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
632
633 if (l->state != LI_FULL && l->state != LI_LIMITED)
634 goto end; /* listener may be suspended or even stopped */
635 ret = resume_listener(l, lpx, 1);
636
637 end:
638 if (!lli)
639 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
640 return ret;
641}
642
Willy Tarreau87b09662015-04-03 00:22:06 +0200643/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100644 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200645 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200646static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200647{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100648 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200649 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200650 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100651 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200652 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200653 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100654 }
Willy Tarreau62793712011-07-24 19:23:38 +0200655 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100656 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200657}
658
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200659/* Marks a ready listener as limited so that we only try to re-enable it when
660 * resources are free again. It will be queued into the specified queue.
661 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200662static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200663{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100664 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200665 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200666 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200667 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200668 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200669 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100670 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200671}
672
Willy Tarreau241797a2019-12-10 14:10:52 +0100673/* Dequeues all listeners waiting for a resource the global wait queue */
674void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200675{
Willy Tarreau01abd022019-02-28 10:27:18 +0100676 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200677
Willy Tarreau241797a2019-12-10 14:10:52 +0100678 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200679 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100680 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200681 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100682 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200683 }
684}
685
Willy Tarreau241797a2019-12-10 14:10:52 +0100686/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
687void dequeue_proxy_listeners(struct proxy *px)
688{
689 struct listener *listener;
690
691 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
692 /* This cannot fail because the listeners are by definition in
693 * the LI_LIMITED state.
694 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100695 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100696 }
697}
698
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200699
700/* default function used to unbind a listener. This is for use by standard
701 * protocols working on top of accepted sockets. The receiver's rx_unbind()
702 * will automatically be used after the listener is disabled if the socket is
703 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100704 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200705void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100706{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200707 if (listener->state <= LI_ASSIGNED)
708 goto out_close;
709
710 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200711 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200712 goto out_close;
713 }
714
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200715 if (listener->state >= LI_READY) {
716 listener->rx.proto->disable(listener);
717 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200718 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200719 }
720
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200721 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200722 if (listener->rx.flags & RX_F_BOUND)
723 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200724}
725
726/* This function closes the listening socket for the specified listener,
727 * provided that it's already in a listening state. The protocol's unbind()
728 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
729 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
730 * the receiver is unbound. Must be called with the lock held.
731 */
732void do_unbind_listener(struct listener *listener)
733{
Willy Tarreau2b718102021-04-21 07:32:39 +0200734 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200735
736 if (listener->rx.proto->unbind)
737 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200738
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200739 /* we may have to downgrade the listener if the rx was closed */
740 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200741 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100742}
743
Olivier Houchard1fc05162017-04-06 01:05:05 +0200744/* This function closes the listening socket for the specified listener,
745 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200746 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
747 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100748 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200749 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100750void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200751{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100752 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200753 do_unbind_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100754 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200755}
756
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200757/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
758 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200759 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200760 * passed in <proto> must be usable on this family. The protocol's default iocb
761 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200762 * listeners is automatically increased by the number of listeners created. It
763 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200764 */
765int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200766 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200767{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200768 struct listener *l;
769 int port;
770
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200771 for (port = portl; port <= porth; port++) {
772 l = calloc(1, sizeof(*l));
773 if (!l) {
774 memprintf(err, "out of memory");
775 return 0;
776 }
777 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200778 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
779 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200780 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200781 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200782 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200783 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200784 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100785
Willy Tarreau37159062020-08-27 07:48:42 +0200786 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100787 if (proto->fam->set_port)
788 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100789
Olivier Houchard859dc802019-08-08 15:47:21 +0200790 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200791 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200792
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100793 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200794
Willy Tarreau909c23b2020-09-15 13:50:58 +0200795 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200796 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100797
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100798 l->extra_counters = NULL;
799
Willy Tarreau08b6f962022-02-01 16:23:00 +0100800 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200801 _HA_ATOMIC_INC(&jobs);
802 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200803 }
804 return 1;
805}
806
Willy Tarreau59a877d2021-10-12 09:36:10 +0200807/* clones listener <src> and returns the new one. All dynamically allocated
808 * fields are reallocated (name for now). The new listener is inserted before
809 * the original one in the bind_conf and frontend lists. This allows it to be
810 * duplicated while iterating over the current list. The original listener must
811 * only be in the INIT or ASSIGNED states, and the new listener will only be
812 * placed into the INIT state. The counters are always set to NULL. Maxsock is
813 * updated. Returns NULL on allocation error.
814 */
815struct listener *clone_listener(struct listener *src)
816{
817 struct listener *l;
818
819 l = calloc(1, sizeof(*l));
820 if (!l)
821 goto oom1;
822 memcpy(l, src, sizeof(*l));
823
824 if (l->name) {
825 l->name = strdup(l->name);
826 if (!l->name)
827 goto oom2;
828 }
829
830 l->rx.owner = l;
831 l->state = LI_INIT;
832 l->counters = NULL;
833 l->extra_counters = NULL;
834
835 LIST_APPEND(&src->by_fe, &l->by_fe);
836 LIST_APPEND(&src->by_bind, &l->by_bind);
837
838 MT_LIST_INIT(&l->wait_queue);
839
840 l->rx.proto->add(l->rx.proto, l);
841
Willy Tarreau08b6f962022-02-01 16:23:00 +0100842 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau59a877d2021-10-12 09:36:10 +0200843 _HA_ATOMIC_INC(&jobs);
844 _HA_ATOMIC_INC(&listeners);
845 global.maxsock++;
846 return l;
847
Willy Tarreau59a877d2021-10-12 09:36:10 +0200848 oom2:
849 free(l);
850 oom1:
Willy Tarreaua1462892021-10-16 14:45:29 +0200851 return NULL;
Willy Tarreau59a877d2021-10-12 09:36:10 +0200852}
853
Willy Tarreau1a64d162007-10-28 22:26:05 +0100854/* Delete a listener from its protocol's list of listeners. The listener's
855 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200856 * number of listeners is updated, as well as the global number of listeners
857 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200858 * is a low-level function expected to be called with the proto_lock and the
859 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100860 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200861void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100862{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100863 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200864 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200865 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200866 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200867 _HA_ATOMIC_DEC(&jobs);
868 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100869 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200870}
871
872/* Delete a listener from its protocol's list of listeners (please check
873 * __delete_listener() above). The proto_lock and the listener's lock will
874 * be grabbed in this order.
875 */
876void delete_listener(struct listener *listener)
877{
878 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100879 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200880 __delete_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100881 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200882 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100883}
884
Willy Tarreaue2711c72019-02-27 15:39:41 +0100885/* Returns a suitable value for a listener's backlog. It uses the listener's,
886 * otherwise the frontend's backlog, otherwise the listener's maxconn,
887 * otherwise the frontend's maxconn, otherwise 1024.
888 */
889int listener_backlog(const struct listener *l)
890{
Willy Tarreau1920f892023-01-12 18:55:13 +0100891 if (l->bind_conf->backlog)
892 return l->bind_conf->backlog;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100893
894 if (l->bind_conf->frontend->backlog)
895 return l->bind_conf->frontend->backlog;
896
Willy Tarreau758c69d2023-01-12 18:59:37 +0100897 if (l->bind_conf->maxconn)
898 return l->bind_conf->maxconn;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100899
900 if (l->bind_conf->frontend->maxconn)
901 return l->bind_conf->frontend->maxconn;
902
903 return 1024;
904}
905
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200906/* This function is called on a read event from a listening socket, corresponding
907 * to an accept. It tries to accept as many connections as possible, and for each
908 * calls the listener's accept handler (generally the frontend's accept handler).
909 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200910void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200911{
Willy Tarreau83efc322020-10-14 17:37:17 +0200912 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100913 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200914 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100915 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100916 int next_feconn = 0;
917 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200918 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200919 int ret;
920
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100921 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200922
Willy Tarreau882f2482023-01-12 18:52:23 +0100923 /* if l->bind_conf->maxaccept is -1, then max_accept is UINT_MAX. It is
924 * not really illimited, but it is probably enough.
Christopher Faulet102854c2019-04-30 12:17:13 +0200925 */
Willy Tarreau882f2482023-01-12 18:52:23 +0100926 max_accept = l->bind_conf->maxaccept ? l->bind_conf->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200927
Willy Tarreau17146802023-01-12 19:58:42 +0100928 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.sps_lim) {
Willy Tarreau93e7c002013-10-07 18:51:07 +0200929 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200930
931 if (unlikely(!max)) {
932 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200933 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100934 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200935 }
936
937 if (max_accept > max)
938 max_accept = max;
939 }
940
Willy Tarreau17146802023-01-12 19:58:42 +0100941 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200942 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
943
944 if (unlikely(!max)) {
945 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200946 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100947 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200948 }
949
950 if (max_accept > max)
951 max_accept = max;
952 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200953#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +0100954 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.ssl_lim &&
Willy Tarreau11ba4042022-05-20 15:56:32 +0200955 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Willy Tarreaue43d5322013-10-07 20:01:52 +0200956 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200957
Willy Tarreaue43d5322013-10-07 20:01:52 +0200958 if (unlikely(!max)) {
959 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200960 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100961 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200962 }
963
964 if (max_accept > max)
965 max_accept = max;
966 }
967#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200968 if (p && p->fe_sps_lim) {
969 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
970
971 if (unlikely(!max)) {
972 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100973 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
974 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200975 }
976
977 if (max_accept > max)
978 max_accept = max;
979 }
980
981 /* Note: if we fail to allocate a connection because of configured
982 * limits, we'll schedule a new attempt worst 1 second later in the
983 * worst case. If we fail due to system limits or temporary resource
984 * shortage, we try again 100ms later in the worst case.
985 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100986 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200987 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200988 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200989 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200990
Willy Tarreau82c97892019-02-27 19:32:32 +0100991 /* pre-increase the number of connections without going too far.
992 * We process the listener, then the proxy, then the process.
993 * We know which ones to unroll based on the next_xxx value.
994 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100995 do {
996 count = l->nbconn;
Willy Tarreau758c69d2023-01-12 18:59:37 +0100997 if (unlikely(l->bind_conf->maxconn && count >= l->bind_conf->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100998 /* the listener was marked full or another
999 * thread is going to do it.
1000 */
1001 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001002 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001003 goto end;
1004 }
1005 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001006 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001007
Willy Tarreau82c97892019-02-27 19:32:32 +01001008 if (p) {
1009 do {
1010 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001011 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001012 /* the frontend was marked full or another
1013 * thread is going to do it.
1014 */
1015 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001016 expire = TICK_ETERNITY;
1017 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +01001018 }
1019 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +01001020 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001021 }
1022
Willy Tarreau17146802023-01-12 19:58:42 +01001023 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001024 do {
1025 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001026 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001027 /* the process was marked full or another
1028 * thread is going to do it.
1029 */
1030 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001031 expire = tick_add(now_ms, 1000); /* try again in 1 second */
1032 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +01001033 }
1034 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001035 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001036 }
1037
Willy Tarreaufed93d32022-02-01 16:37:00 +01001038 /* be careful below, the listener might be shutting down in
1039 * another thread on error and we must not dereference its
1040 * FD without a bit of protection.
1041 */
1042 cli_conn = NULL;
1043 status = CO_AC_PERMERR;
1044
1045 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
1046 if (l->rx.flags & RX_F_BOUND)
1047 cli_conn = l->rx.proto->accept_conn(l, &status);
1048 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
1049
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001050 if (!cli_conn) {
1051 switch (status) {
1052 case CO_AC_DONE:
1053 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +01001054
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001055 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +02001056 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001057 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +02001058 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau17146802023-01-12 19:58:42 +01001059 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001060 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +01001061 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001062
1063 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +01001064 max_accept = 0;
1065 goto end;
William Lallemandd9138002018-11-27 12:02:39 +01001066
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001067 default:
1068 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +02001069 }
1070 }
1071
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001072 /* The connection was accepted, it must be counted as such */
1073 if (l->counters)
1074 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
1075
Willy Tarreaud8679342022-05-09 20:41:54 +02001076 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001077 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreaud8679342022-05-09 20:41:54 +02001078 proxy_inc_fe_conn_ctr(l, p);
1079 }
Willy Tarreau82c97892019-02-27 19:32:32 +01001080
Willy Tarreau17146802023-01-12 19:58:42 +01001081 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001082 count = update_freq_ctr(&global.conn_per_sec, 1);
1083 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001084 }
1085
Willy Tarreau4781b152021-04-06 13:53:36 +02001086 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +02001087
Willy Tarreau30836152023-01-12 19:10:17 +01001088 /* past this point, l->bind_conf->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +01001089 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
1090 * allows the error path not to rollback on nbconn. It's more
1091 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001092 */
1093 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +01001094 next_feconn = 0;
1095 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001096
Willy Tarreau83efc322020-10-14 17:37:17 +02001097
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001098#if defined(USE_THREAD)
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001099 if (l->rx.flags & RX_F_LOCAL_ACCEPT)
1100 goto local_accept;
1101
Willy Tarreaub2f38c12023-01-19 19:14:18 +01001102 mask = l->rx.bind_thread & _HA_ATOMIC_LOAD(&tg->threads_enabled);
Willy Tarreaua7da5e82020-03-12 17:33:29 +01001103 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001104 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001105 unsigned int t, t0, t1, t2;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001106 int base = tg->base;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001107
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001108 /* The principle is that we have two running indexes,
1109 * each visiting in turn all threads bound to this
1110 * listener. The connection will be assigned to the one
1111 * with the least connections, and the other one will
1112 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001113 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001114 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001115 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001116
1117 /* keep a copy for the final update. thr_idx is composite
1118 * and made of (t2<<16) + t1.
1119 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001120 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001121 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001122 unsigned long m1, m2;
1123 int q1, q2;
1124
1125 t2 = t1 = t0;
1126 t2 >>= 16;
1127 t1 &= 0xFFFF;
1128
1129 /* t1 walks low to high bits ;
1130 * t2 walks high to low.
1131 */
1132 m1 = mask >> t1;
1133 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1134
Willy Tarreau85d04242019-04-16 18:09:13 +02001135 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001136 m1 &= ~1UL;
1137 if (!m1) {
1138 m1 = mask;
1139 t1 = 0;
1140 }
1141 t1 += my_ffsl(m1) - 1;
1142 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001143
Willy Tarreau85d04242019-04-16 18:09:13 +02001144 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1145 /* highest bit not set */
1146 if (!m2)
1147 m2 = mask;
1148
1149 t2 = my_flsl(m2) - 1;
1150 }
1151
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001152 /* now we have two distinct thread IDs belonging to the mask */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001153 q1 = accept_queue_rings[base + t1].tail - accept_queue_rings[base + t1].head + ACCEPT_QUEUE_SIZE;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001154 if (q1 >= ACCEPT_QUEUE_SIZE)
1155 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001156
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001157 q2 = accept_queue_rings[base + t2].tail - accept_queue_rings[base + t2].head + ACCEPT_QUEUE_SIZE;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001158 if (q2 >= ACCEPT_QUEUE_SIZE)
1159 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001160
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001161 /* we have 3 possibilities now :
1162 * q1 < q2 : t1 is less loaded than t2, so we pick it
1163 * and update t2 (since t1 might still be
1164 * lower than another thread)
1165 * q1 > q2 : t2 is less loaded than t1, so we pick it
1166 * and update t1 (since t2 might still be
1167 * lower than another thread)
1168 * q1 = q2 : both are equally loaded, thus we pick t1
1169 * and update t1 as it will become more loaded
1170 * than t2.
1171 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001172
Willy Tarreaufea8c192023-02-28 10:25:57 +01001173 q1 += l->thr_conn[t1];
1174 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001175
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001176 if (q1 - q2 < 0) {
1177 t = t1;
1178 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1179 }
1180 else if (q1 - q2 > 0) {
1181 t = t2;
1182 t1++;
1183 if (t1 >= LONGBITS)
1184 t1 = 0;
1185 }
1186 else {
1187 t = t1;
1188 t1++;
1189 if (t1 >= LONGBITS)
1190 t1 = 0;
1191 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001192
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001193 /* new value for thr_idx */
1194 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001195 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001196
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001197 /* We successfully selected the best thread "t" for this
1198 * connection. We use deferred accepts even if it's the
1199 * local thread because tests show that it's the best
1200 * performing model, likely due to better cache locality
1201 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001202 */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001203 ring = &accept_queue_rings[base + t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001204 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001205 _HA_ATOMIC_INC(&activity[base + t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001206 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001207 continue;
1208 }
1209 /* If the ring is full we do a synchronous accept on
1210 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001211 */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001212 _HA_ATOMIC_INC(&activity[base + t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001213 }
1214#endif // USE_THREAD
1215
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001216 local_accept:
Willy Tarreaufea8c192023-02-28 10:25:57 +01001217 _HA_ATOMIC_INC(&l->thr_conn[ti->ltid]);
Willy Tarreau30836152023-01-12 19:10:17 +01001218 ret = l->bind_conf->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001219 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001220 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001221 * we just have to ignore it (ret == 0) or it's a critical
1222 * error due to a resource shortage, and we must stop the
1223 * listener (ret < 0).
1224 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001225 if (ret == 0) /* successful termination */
1226 continue;
1227
Willy Tarreaubb660302014-05-07 19:47:02 +02001228 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001229 }
1230
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001231 /* increase the per-process number of cumulated sessions, this
Willy Tarreau30836152023-01-12 19:10:17 +01001232 * may only be done once l->bind_conf->accept() has accepted the
1233 * connection.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001234 */
Willy Tarreau17146802023-01-12 19:58:42 +01001235 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001236 count = update_freq_ctr(&global.sess_per_sec, 1);
1237 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001238 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001239#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +01001240 if (!(l->bind_conf->options & BC_O_UNLIMITED) &&
Willy Tarreau11ba4042022-05-20 15:56:32 +02001241 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001242 count = update_freq_ctr(&global.ssl_per_sec, 1);
1243 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001244 }
1245#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001246
Willy Tarreaubdcd3252022-06-22 09:19:46 +02001247 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001248 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001249
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001250 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001251 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001252 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001253
Willy Tarreau82c97892019-02-27 19:32:32 +01001254 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001255 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001256
1257 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001258 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001259
Willy Tarreau758c69d2023-01-12 18:59:37 +01001260 if ((l->state == LI_FULL && (!l->bind_conf->maxconn || l->nbconn < l->bind_conf->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001261 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001262 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1263 (!tick_isset(global_listener_queue_task->expire) ||
1264 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001265 /* at least one thread has to this when quitting */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001266 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001267
Willy Tarreau02757d02021-01-28 18:07:24 +01001268 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001269 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001270
Olivier Houchard859dc802019-08-08 15:47:21 +02001271 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001272 (!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 +01001273 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001274 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001275 return;
1276
1277 transient_error:
1278 /* pause the listener for up to 100 ms */
1279 expire = tick_add(now_ms, 100);
1280
Willy Tarreau258b3512020-10-13 17:46:05 +02001281 /* This may be a shared socket that was paused by another process.
1282 * Let's put it to pause in this case.
1283 */
1284 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +01001285 suspend_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001286 goto end;
1287 }
1288
Willy Tarreau0591bf72019-12-10 12:01:21 +01001289 limit_global:
1290 /* (re-)queue the listener to the global queue and set it to expire no
1291 * later than <expire> ahead. The listener turns to LI_LIMITED.
1292 */
1293 limit_listener(l, &global_listener_queue);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001294 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001295 task_schedule(global_listener_queue_task, expire);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001296 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001297 goto end;
1298
1299 limit_proxy:
1300 /* (re-)queue the listener to the proxy's queue and set it to expire no
1301 * later than <expire> ahead. The listener turns to LI_LIMITED.
1302 */
1303 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001304 if (p->task && tick_isset(expire))
1305 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001306 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001307}
1308
Willy Tarreau05f50472017-09-15 09:19:58 +02001309/* Notify the listener that a connection initiated from it was released. This
1310 * is used to keep the connection count consistent and to possibly re-open
1311 * listening when it was limited.
1312 */
1313void listener_release(struct listener *l)
1314{
1315 struct proxy *fe = l->bind_conf->frontend;
1316
Willy Tarreau17146802023-01-12 19:58:42 +01001317 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001318 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001319 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001320 _HA_ATOMIC_DEC(&fe->feconn);
1321 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreaufea8c192023-02-28 10:25:57 +01001322 _HA_ATOMIC_DEC(&l->thr_conn[ti->ltid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001323
1324 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001325 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001326
Willy Tarreau02757d02021-01-28 18:07:24 +01001327 /* Dequeues all of the listeners waiting for a resource */
1328 dequeue_all_listeners();
1329
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +02001330 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001331 (!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 +01001332 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001333}
1334
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001335/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1336static int listener_queue_init()
1337{
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001338 global_listener_queue_task = task_new_anywhere();
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001339 if (!global_listener_queue_task) {
1340 ha_alert("Out of memory when initializing global listener queue\n");
1341 return ERR_FATAL|ERR_ABORT;
1342 }
1343 /* very simple initialization, users will queue the task if needed */
1344 global_listener_queue_task->context = NULL; /* not even a context! */
1345 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001346 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001347
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001348 return 0;
1349}
1350
1351static void listener_queue_deinit()
1352{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001353 task_destroy(global_listener_queue_task);
1354 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001355}
1356
1357REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1358REGISTER_POST_DEINIT(listener_queue_deinit);
1359
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001360
1361/* This is the global management task for listeners. It enables listeners waiting
1362 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001363 * a while. It is designed to be called as a task. It's exported so that it's easy
1364 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001365 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001366struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001367{
1368 /* If there are still too many concurrent connections, let's wait for
1369 * some of them to go away. We don't need to re-arm the timer because
1370 * each of them will scan the queue anyway.
1371 */
1372 if (unlikely(actconn >= global.maxconn))
1373 goto out;
1374
1375 /* We should periodically try to enable listeners waiting for a global
1376 * resource here, because it is possible, though very unlikely, that
1377 * they have been blocked by a temporary lack of global resource such
1378 * as a file descriptor or memory and that the temporary condition has
1379 * disappeared.
1380 */
1381 dequeue_all_listeners();
1382
1383 out:
Christopher Faulet13e86d92022-11-17 14:40:20 +01001384 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001385 t->expire = TICK_ETERNITY;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001386 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001387 return t;
1388}
1389
Willy Tarreau26982662012-09-12 23:17:10 +02001390/*
1391 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1392 * parsing sessions.
1393 */
1394void bind_register_keywords(struct bind_kw_list *kwl)
1395{
Willy Tarreau2b718102021-04-21 07:32:39 +02001396 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001397}
1398
1399/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1400 * keyword is found with a NULL ->parse() function, then an attempt is made to
1401 * find one with a valid ->parse() function. This way it is possible to declare
1402 * platform-dependant, known keywords as NULL, then only declare them as valid
1403 * if some options are met. Note that if the requested keyword contains an
1404 * opening parenthesis, everything from this point is ignored.
1405 */
1406struct bind_kw *bind_find_kw(const char *kw)
1407{
1408 int index;
1409 const char *kwend;
1410 struct bind_kw_list *kwl;
1411 struct bind_kw *ret = NULL;
1412
1413 kwend = strchr(kw, '(');
1414 if (!kwend)
1415 kwend = kw + strlen(kw);
1416
1417 list_for_each_entry(kwl, &bind_keywords.list, list) {
1418 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1419 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1420 kwl->kw[index].kw[kwend-kw] == 0) {
1421 if (kwl->kw[index].parse)
1422 return &kwl->kw[index]; /* found it !*/
1423 else
1424 ret = &kwl->kw[index]; /* may be OK */
1425 }
1426 }
1427 }
1428 return ret;
1429}
1430
Willy Tarreau8638f482012-09-18 18:01:17 +02001431/* Dumps all registered "bind" keywords to the <out> string pointer. The
1432 * unsupported keywords are only dumped if their supported form was not
1433 * found.
1434 */
1435void bind_dump_kws(char **out)
1436{
1437 struct bind_kw_list *kwl;
1438 int index;
1439
Christopher Faulet784063e2020-05-18 12:14:18 +02001440 if (!out)
1441 return;
1442
Willy Tarreau8638f482012-09-18 18:01:17 +02001443 *out = NULL;
1444 list_for_each_entry(kwl, &bind_keywords.list, list) {
1445 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1446 if (kwl->kw[index].parse ||
1447 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001448 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1449 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001450 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001451 kwl->kw[index].skip ? " <arg>" : "",
1452 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001453 }
1454 }
1455 }
1456}
1457
Willy Tarreau433b05f2021-03-12 10:14:07 +01001458/* Try to find in srv_keyword the word that looks closest to <word> by counting
1459 * transitions between letters, digits and other characters. Will return the
1460 * best matching word if found, otherwise NULL.
1461 */
1462const char *bind_find_best_kw(const char *word)
1463{
1464 uint8_t word_sig[1024];
1465 uint8_t list_sig[1024];
1466 const struct bind_kw_list *kwl;
1467 const char *best_ptr = NULL;
1468 int dist, best_dist = INT_MAX;
1469 int index;
1470
1471 make_word_fingerprint(word_sig, word);
1472 list_for_each_entry(kwl, &bind_keywords.list, list) {
1473 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1474 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1475 dist = word_fingerprint_distance(word_sig, list_sig);
1476 if (dist < best_dist) {
1477 best_dist = dist;
1478 best_ptr = kwl->kw[index].kw;
1479 }
1480 }
1481 }
1482
1483 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1484 best_ptr = NULL;
1485
1486 return best_ptr;
1487}
1488
Willy Tarreaudbf78022021-10-06 09:05:08 +02001489/* allocate an bind_conf struct for a bind line, and chain it to the frontend <fe>.
1490 * If <arg> is not NULL, it is duplicated into ->arg to store useful config
1491 * information for error reporting. NULL is returned on error.
1492 */
1493struct bind_conf *bind_conf_alloc(struct proxy *fe, const char *file,
1494 int line, const char *arg, struct xprt_ops *xprt)
1495{
1496 struct bind_conf *bind_conf = calloc(1, sizeof(*bind_conf));
1497
1498 if (!bind_conf)
1499 goto err;
1500
1501 bind_conf->file = strdup(file);
1502 if (!bind_conf->file)
1503 goto err;
1504 bind_conf->line = line;
1505 if (arg) {
1506 bind_conf->arg = strdup(arg);
1507 if (!bind_conf->arg)
1508 goto err;
1509 }
1510
1511 LIST_APPEND(&fe->conf.bind, &bind_conf->by_fe);
1512 bind_conf->settings.ux.uid = -1;
1513 bind_conf->settings.ux.gid = -1;
1514 bind_conf->settings.ux.mode = 0;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001515 bind_conf->settings.shards = 1;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001516 bind_conf->xprt = xprt;
1517 bind_conf->frontend = fe;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01001518 bind_conf->analysers = fe->fe_req_ana;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001519 bind_conf->severity_output = CLI_SEVERITY_NONE;
1520#ifdef USE_OPENSSL
1521 HA_RWLOCK_INIT(&bind_conf->sni_lock);
1522 bind_conf->sni_ctx = EB_ROOT;
1523 bind_conf->sni_w_ctx = EB_ROOT;
1524#endif
1525 LIST_INIT(&bind_conf->listeners);
1526 return bind_conf;
1527
1528 err:
1529 if (bind_conf) {
1530 ha_free(&bind_conf->file);
1531 ha_free(&bind_conf->arg);
1532 }
1533 ha_free(&bind_conf);
1534 return NULL;
1535}
1536
1537const char *listener_state_str(const struct listener *l)
1538{
1539 static const char *states[8] = {
1540 "NEW", "INI", "ASS", "PAU", "LIS", "RDY", "FUL", "LIM",
1541 };
1542 unsigned int st = l->state;
1543
1544 if (st >= sizeof(states) / sizeof(*states))
1545 return "INVALID";
1546 return states[st];
1547}
1548
Willy Tarreau645513a2010-05-24 20:55:15 +02001549/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001550/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001551/************************************************************************/
1552
Willy Tarreaua5e37562011-12-16 17:06:15 +01001553/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001554static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001555smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001556{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001557 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001558 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001559 return 1;
1560}
1561
Willy Tarreaua5e37562011-12-16 17:06:15 +01001562/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001563static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001564smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001565{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001566 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001567 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001568 return 1;
1569}
Jerome Magnineb421b22020-03-27 22:08:40 +01001570static int
1571smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1572{
1573 smp->data.u.str.area = smp->sess->listener->name;
1574 if (!smp->data.u.str.area)
1575 return 0;
1576
1577 smp->data.type = SMP_T_STR;
1578 smp->flags = SMP_F_CONST;
1579 smp->data.u.str.data = strlen(smp->data.u.str.area);
1580 return 1;
1581}
Willy Tarreau645513a2010-05-24 20:55:15 +02001582
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001583/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001584static 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 +02001585{
Willy Tarreauf1b47302023-01-12 19:48:50 +01001586 conf->options |= BC_O_ACC_PROXY;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001587 return 0;
1588}
1589
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001590/* parse the "accept-netscaler-cip" bind keyword */
1591static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1592{
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001593 uint32_t val;
1594
1595 if (!*args[cur_arg + 1]) {
1596 memprintf(err, "'%s' : missing value", args[cur_arg]);
1597 return ERR_ALERT | ERR_FATAL;
1598 }
1599
1600 val = atol(args[cur_arg + 1]);
1601 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001602 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001603 return ERR_ALERT | ERR_FATAL;
1604 }
1605
Willy Tarreauf1b47302023-01-12 19:48:50 +01001606 conf->options |= BC_O_ACC_CIP;
1607 conf->ns_cip_magic = val;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001608 return 0;
1609}
1610
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001611/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001612static 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 +02001613{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001614 int val;
1615
1616 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001617 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001618 return ERR_ALERT | ERR_FATAL;
1619 }
1620
1621 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001622 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001623 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001624 return ERR_ALERT | ERR_FATAL;
1625 }
1626
Willy Tarreau1920f892023-01-12 18:55:13 +01001627 conf->backlog = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001628 return 0;
1629}
1630
1631/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001632static 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 +02001633{
1634 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001635 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001636 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001637
Willy Tarreau4348fad2012-09-20 16:48:07 +02001638 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001639 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001640 return ERR_ALERT | ERR_FATAL;
1641 }
1642
1643 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001644 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001645 return ERR_ALERT | ERR_FATAL;
1646 }
1647
Willy Tarreau4348fad2012-09-20 16:48:07 +02001648 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001649 new->luid = strtol(args[cur_arg + 1], &error, 10);
1650 if (*error != '\0') {
1651 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1652 return ERR_ALERT | ERR_FATAL;
1653 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001654 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001655
Willy Tarreau4348fad2012-09-20 16:48:07 +02001656 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001657 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001658 return ERR_ALERT | ERR_FATAL;
1659 }
1660
Willy Tarreau4348fad2012-09-20 16:48:07 +02001661 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001662 if (node) {
1663 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001664 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1665 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1666 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001667 return ERR_ALERT | ERR_FATAL;
1668 }
1669
Willy Tarreau4348fad2012-09-20 16:48:07 +02001670 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001671 return 0;
1672}
1673
Willy Tarreau3882d2a2022-05-20 15:41:45 +02001674/* Complete a bind_conf by parsing the args after the address. <args> is the
1675 * arguments array, <cur_arg> is the first one to be considered. <section> is
1676 * the section name to report in error messages, and <file> and <linenum> are
1677 * the file name and line number respectively. Note that args[0..1] are used
1678 * in error messages to provide some context. The return value is an error
1679 * code, zero on success or an OR of ERR_{FATAL,ABORT,ALERT,WARN}.
1680 */
1681int bind_parse_args_list(struct bind_conf *bind_conf, char **args, int cur_arg, const char *section, const char *file, int linenum)
1682{
1683 int err_code = 0;
1684
1685 while (*(args[cur_arg])) {
1686 struct bind_kw *kw;
1687 const char *best;
1688
1689 kw = bind_find_kw(args[cur_arg]);
1690 if (kw) {
1691 char *err = NULL;
1692 int code;
1693
1694 if (!kw->parse) {
1695 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : '%s' option is not implemented in this version (check build options).\n",
1696 file, linenum, args[0], args[1], section, args[cur_arg]);
1697 cur_arg += 1 + kw->skip ;
1698 err_code |= ERR_ALERT | ERR_FATAL;
1699 goto out;
1700 }
1701
1702 code = kw->parse(args, cur_arg, bind_conf->frontend, bind_conf, &err);
1703 err_code |= code;
1704
1705 if (code) {
1706 if (err && *err) {
1707 indent_msg(&err, 2);
1708 if (((code & (ERR_WARN|ERR_ALERT)) == ERR_WARN))
1709 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
1710 else
1711 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
1712 }
1713 else
1714 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : error encountered while processing '%s'.\n",
1715 file, linenum, args[0], args[1], section, args[cur_arg]);
1716 if (code & ERR_FATAL) {
1717 free(err);
1718 cur_arg += 1 + kw->skip;
1719 goto out;
1720 }
1721 }
1722 free(err);
1723 cur_arg += 1 + kw->skip;
1724 continue;
1725 }
1726
1727 best = bind_find_best_kw(args[cur_arg]);
1728 if (best)
1729 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'; did you mean '%s' maybe ?\n",
1730 file, linenum, args[0], args[1], section, args[cur_arg], best);
1731 else
1732 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'.\n",
1733 file, linenum, args[0], args[1], section, args[cur_arg]);
1734
1735 err_code |= ERR_ALERT | ERR_FATAL;
1736 goto out;
1737 }
Willy Tarreau64306cc2022-05-20 16:20:52 +02001738
1739 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM) ||
1740 (bind_conf->options & (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) {
1741 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : cannot mix datagram and stream protocols.\n",
1742 file, linenum, args[0], args[1], section);
1743 err_code |= ERR_ALERT | ERR_FATAL;
1744 goto out;
1745 }
1746
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001747 /* The transport layer automatically switches to QUIC when QUIC is
1748 * selected, regardless of bind_conf settings. We then need to
1749 * initialize QUIC params.
1750 */
1751 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) {
1752#ifdef USE_QUIC
1753 bind_conf->xprt = xprt_get(XPRT_QUIC);
Willy Tarreau287f32f2022-05-20 18:16:52 +02001754 if (!(bind_conf->options & BC_O_USE_SSL)) {
1755 bind_conf->options |= BC_O_USE_SSL;
1756 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol detected, enabling ssl. Use 'ssl' to shut this warning.\n",
1757 file, linenum, args[0], args[1], section);
1758 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001759 quic_transport_params_init(&bind_conf->quic_params, 1);
1760#else
1761 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol selected but support not compiled in (check build options).\n",
1762 file, linenum, args[0], args[1], section);
1763 err_code |= ERR_ALERT | ERR_FATAL;
1764 goto out;
1765#endif
1766 }
Willy Tarreau2071a992022-05-20 17:14:31 +02001767 else if (bind_conf->options & BC_O_USE_SSL) {
1768 bind_conf->xprt = xprt_get(XPRT_SSL);
1769 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001770
Willy Tarreau3882d2a2022-05-20 15:41:45 +02001771 out:
1772 return err_code;
1773}
1774
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001775/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001776static 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 +02001777{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001778 int val;
1779
1780 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001781 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001782 return ERR_ALERT | ERR_FATAL;
1783 }
1784
1785 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001786 if (val < 0) {
1787 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001788 return ERR_ALERT | ERR_FATAL;
1789 }
1790
Willy Tarreau758c69d2023-01-12 18:59:37 +01001791 conf->maxconn = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001792 return 0;
1793}
1794
1795/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001796static 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 +02001797{
1798 struct listener *l;
1799
1800 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001801 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001802 return ERR_ALERT | ERR_FATAL;
1803 }
1804
Willy Tarreau4348fad2012-09-20 16:48:07 +02001805 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001806 l->name = strdup(args[cur_arg + 1]);
1807
1808 return 0;
1809}
1810
1811/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001812static 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 +02001813{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001814 int val;
1815
1816 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001817 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001818 return ERR_ALERT | ERR_FATAL;
1819 }
1820
1821 val = atol(args[cur_arg + 1]);
1822 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001823 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001824 return ERR_ALERT | ERR_FATAL;
1825 }
1826
Willy Tarreau7dbd4182023-01-12 19:32:45 +01001827 conf->nice = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001828 return 0;
1829}
1830
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001831/* parse the "process" bind keyword */
1832static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1833{
Willy Tarreauacd64412022-07-15 17:16:01 +02001834 memprintf(err, "'process %s' on 'bind' lines is not supported anymore, please use 'thread' instead.", args[cur_arg+1]);
1835 return ERR_ALERT | ERR_FATAL;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001836}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001837
Christopher Fauleta717b992018-04-10 14:43:00 +02001838/* parse the "proto" bind keyword */
1839static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1840{
1841 struct ist proto;
1842
1843 if (!*args[cur_arg + 1]) {
1844 memprintf(err, "'%s' : missing value", args[cur_arg]);
1845 return ERR_ALERT | ERR_FATAL;
1846 }
1847
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001848 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001849 conf->mux_proto = get_mux_proto(proto);
1850 if (!conf->mux_proto) {
1851 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1852 return ERR_ALERT | ERR_FATAL;
1853 }
Willy Tarreauc8cac042021-09-21 14:31:29 +02001854 return 0;
1855}
1856
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001857/* parse the "shards" bind keyword. Takes an integer or "by-thread" */
1858static int bind_parse_shards(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1859{
1860 int val;
1861
1862 if (!*args[cur_arg + 1]) {
1863 memprintf(err, "'%s' : missing value", args[cur_arg]);
1864 return ERR_ALERT | ERR_FATAL;
1865 }
1866
1867 if (strcmp(args[cur_arg + 1], "by-thread") == 0) {
1868 val = MAX_THREADS; /* will be trimmed later anyway */
1869 } else {
1870 val = atol(args[cur_arg + 1]);
1871 if (val < 1 || val > MAX_THREADS) {
1872 memprintf(err, "'%s' : invalid value %d, allowed range is %d..%d or 'by-thread'", args[cur_arg], val, 1, MAX_THREADS);
1873 return ERR_ALERT | ERR_FATAL;
1874 }
1875 }
1876
1877 conf->settings.shards = val;
1878 return 0;
1879}
1880
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01001881/* parse the "thread" bind keyword. This will replace any preset thread_set */
Willy Tarreauc8cac042021-09-21 14:31:29 +02001882static int bind_parse_thread(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1883{
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01001884 /* note that the thread set is zeroed before first call, and we don't
1885 * want to reset it so that it remains possible to chain multiple
1886 * "thread" directives.
1887 */
1888 if (parse_thread_set(args[cur_arg+1], &conf->thread_set, err) < 0)
Willy Tarreauc8cac042021-09-21 14:31:29 +02001889 return ERR_ALERT | ERR_FATAL;
Christopher Fauleta717b992018-04-10 14:43:00 +02001890 return 0;
1891}
1892
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001893/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1894static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001895 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001896 char **err)
1897{
1898 if (too_many_args(1, args, err, NULL))
1899 return -1;
1900
1901 if (strcmp(args[1], "on") == 0)
1902 global.tune.options |= GTUNE_LISTENER_MQ;
1903 else if (strcmp(args[1], "off") == 0)
1904 global.tune.options &= ~GTUNE_LISTENER_MQ;
1905 else {
1906 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1907 return -1;
1908 }
1909 return 0;
1910}
1911
Willy Tarreau61612d42012-04-19 18:42:05 +02001912/* Note: must not be declared <const> as its list will be overwritten.
1913 * Please take care of keeping this list alphabetically sorted.
1914 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001915static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001916 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1917 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001918 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001919 { /* END */ },
1920}};
1921
Willy Tarreau0108d902018-11-25 19:14:37 +01001922INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1923
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001924/* Note: must not be declared <const> as its list will be overwritten.
1925 * Please take care of keeping this list alphabetically sorted.
1926 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001927static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001928 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001929}};
1930
Willy Tarreau0108d902018-11-25 19:14:37 +01001931INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1932
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001933/* Note: must not be declared <const> as its list will be overwritten.
1934 * Please take care of keeping this list alphabetically sorted, doing so helps
1935 * all code contributors.
1936 * Optional keywords are also declared with a NULL ->parse() function so that
1937 * the config parser can report an appropriate error when a known keyword was
1938 * not enabled.
1939 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001940static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001941 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001942 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1943 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1944 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1945 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1946 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1947 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001948 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001949 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001950 { "shards", bind_parse_shards, 1 }, /* set number of shards */
Willy Tarreauc8cac042021-09-21 14:31:29 +02001951 { "thread", bind_parse_thread, 1 }, /* set list of allowed threads for this socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001952 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001953}};
1954
Willy Tarreau0108d902018-11-25 19:14:37 +01001955INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1956
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001957/* config keyword parsers */
1958static struct cfg_kw_list cfg_kws = {ILH, {
1959 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1960 { 0, NULL, NULL }
1961}};
1962
1963INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1964
Willy Tarreau645513a2010-05-24 20:55:15 +02001965/*
1966 * Local variables:
1967 * c-indent-level: 8
1968 * c-basic-offset: 8
1969 * End:
1970 */