blob: ca13a71968b3cb13541af3d4fc9c8928a441869a [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 Tarreau4781b152021-04-06 13:53:36 +0200144 _HA_ATOMIC_INC(&li->thr_conn[tid]);
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
530 if (px && !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;
563 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200564 int ret = 1;
565
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200566 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200567 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
568
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100569 if (!lli)
570 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200571
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200572 /* check that another thread didn't to the job in parallel (e.g. at the
573 * end of listen_accept() while we'd come from dequeue_all_listeners().
574 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200575 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200576 goto end;
577
Aurelien DARRAGON23705992023-02-14 08:51:14 +0100578 if (!(l->flags & LI_F_FINALIZED) || l->state == LI_READY)
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200579 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200580
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100581 if (l->rx.proto->resume) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200582 ret = l->rx.proto->resume(l);
Aurelien DARRAGON3bb2a382023-02-07 13:26:14 +0100583 if (!ret)
584 goto end; /* failure to resume */
585 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200586
Willy Tarreau758c69d2023-01-12 18:59:37 +0100587 if (l->bind_conf->maxconn && l->nbconn >= l->bind_conf->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200588 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200589 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200590 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200591 }
592
Willy Tarreau4b51f422020-09-25 20:32:28 +0200593 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200594 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200595
596 done:
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +0100597 if (px && (l->flags & LI_F_SUSPENDED))
598 px->li_suspended--;
599 l->flags &= ~LI_F_SUSPENDED;
600
Willy Tarreau58651b42020-09-24 16:03:29 +0200601 if (was_paused && !px->li_paused) {
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +0200602 /* PROXY_LOCK is required */
603 proxy_cond_resume(px);
Willy Tarreau58651b42020-09-24 16:03:29 +0200604 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
605 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
606 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200607 end:
Aurelien DARRAGON4059e092023-02-06 17:06:03 +0100608 if (!lli)
609 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200610
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +0200611 if (!lpx && px)
Aurelien DARRAGON00132882022-09-09 15:32:57 +0200612 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
613
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200614 return ret;
615}
616
Aurelien DARRAGONbcad7e62023-02-15 09:30:54 +0100617/* Same as resume_listener(), but will only work to resume from
618 * LI_FULL or LI_LIMITED states because we try to relax listeners that
619 * were temporarily restricted and not to resume inactive listeners that
620 * may have been paused or completely stopped in the meantime.
621 * Returns positive value for success and 0 for failure.
622 * It will need to operate under the proxy's lock and the listener's lock.
623 * The caller is responsible for indicating in lpx, lli whether the respective
624 * locks are already held (non-zero) or not (zero) so that the function pick
625 * the missing ones, in this order.
626 */
627int relax_listener(struct listener *l, int lpx, int lli)
628{
629 int ret = 1;
630
631 if (!lli)
632 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
633
634 if (l->state != LI_FULL && l->state != LI_LIMITED)
635 goto end; /* listener may be suspended or even stopped */
636 ret = resume_listener(l, lpx, 1);
637
638 end:
639 if (!lli)
640 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
641 return ret;
642}
643
Willy Tarreau87b09662015-04-03 00:22:06 +0200644/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100645 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200646 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200647static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200648{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100649 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200650 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200651 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100652 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200653 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200654 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100655 }
Willy Tarreau62793712011-07-24 19:23:38 +0200656 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100657 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200658}
659
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200660/* Marks a ready listener as limited so that we only try to re-enable it when
661 * resources are free again. It will be queued into the specified queue.
662 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200663static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200664{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100665 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200666 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200667 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200668 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200669 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200670 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100671 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200672}
673
Willy Tarreau241797a2019-12-10 14:10:52 +0100674/* Dequeues all listeners waiting for a resource the global wait queue */
675void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200676{
Willy Tarreau01abd022019-02-28 10:27:18 +0100677 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200678
Willy Tarreau241797a2019-12-10 14:10:52 +0100679 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200680 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100681 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200682 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100683 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200684 }
685}
686
Willy Tarreau241797a2019-12-10 14:10:52 +0100687/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
688void dequeue_proxy_listeners(struct proxy *px)
689{
690 struct listener *listener;
691
692 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
693 /* This cannot fail because the listeners are by definition in
694 * the LI_LIMITED state.
695 */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +0100696 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100697 }
698}
699
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200700
701/* default function used to unbind a listener. This is for use by standard
702 * protocols working on top of accepted sockets. The receiver's rx_unbind()
703 * will automatically be used after the listener is disabled if the socket is
704 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100705 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200706void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100707{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200708 if (listener->state <= LI_ASSIGNED)
709 goto out_close;
710
711 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200712 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200713 goto out_close;
714 }
715
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200716 if (listener->state >= LI_READY) {
717 listener->rx.proto->disable(listener);
718 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200719 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200720 }
721
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200722 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200723 if (listener->rx.flags & RX_F_BOUND)
724 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200725}
726
727/* This function closes the listening socket for the specified listener,
728 * provided that it's already in a listening state. The protocol's unbind()
729 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
730 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
731 * the receiver is unbound. Must be called with the lock held.
732 */
733void do_unbind_listener(struct listener *listener)
734{
Willy Tarreau2b718102021-04-21 07:32:39 +0200735 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200736
737 if (listener->rx.proto->unbind)
738 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200739
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200740 /* we may have to downgrade the listener if the rx was closed */
741 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200742 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100743}
744
Olivier Houchard1fc05162017-04-06 01:05:05 +0200745/* This function closes the listening socket for the specified listener,
746 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200747 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
748 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100749 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200750 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100751void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200752{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100753 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200754 do_unbind_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100755 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200756}
757
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200758/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
759 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200760 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200761 * passed in <proto> must be usable on this family. The protocol's default iocb
762 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200763 * listeners is automatically increased by the number of listeners created. It
764 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200765 */
766int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200767 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200768{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200769 struct listener *l;
770 int port;
771
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200772 for (port = portl; port <= porth; port++) {
773 l = calloc(1, sizeof(*l));
774 if (!l) {
775 memprintf(err, "out of memory");
776 return 0;
777 }
778 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200779 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
780 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200781 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200782 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200783 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200784 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200785 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100786
Willy Tarreau37159062020-08-27 07:48:42 +0200787 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100788 if (proto->fam->set_port)
789 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100790
Olivier Houchard859dc802019-08-08 15:47:21 +0200791 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200792 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200793
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100794 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200795
Willy Tarreau909c23b2020-09-15 13:50:58 +0200796 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200797 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100798
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100799 l->extra_counters = NULL;
800
Willy Tarreau08b6f962022-02-01 16:23:00 +0100801 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200802 _HA_ATOMIC_INC(&jobs);
803 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200804 }
805 return 1;
806}
807
Willy Tarreau59a877d2021-10-12 09:36:10 +0200808/* clones listener <src> and returns the new one. All dynamically allocated
809 * fields are reallocated (name for now). The new listener is inserted before
810 * the original one in the bind_conf and frontend lists. This allows it to be
811 * duplicated while iterating over the current list. The original listener must
812 * only be in the INIT or ASSIGNED states, and the new listener will only be
813 * placed into the INIT state. The counters are always set to NULL. Maxsock is
814 * updated. Returns NULL on allocation error.
815 */
816struct listener *clone_listener(struct listener *src)
817{
818 struct listener *l;
819
820 l = calloc(1, sizeof(*l));
821 if (!l)
822 goto oom1;
823 memcpy(l, src, sizeof(*l));
824
825 if (l->name) {
826 l->name = strdup(l->name);
827 if (!l->name)
828 goto oom2;
829 }
830
831 l->rx.owner = l;
832 l->state = LI_INIT;
833 l->counters = NULL;
834 l->extra_counters = NULL;
835
836 LIST_APPEND(&src->by_fe, &l->by_fe);
837 LIST_APPEND(&src->by_bind, &l->by_bind);
838
839 MT_LIST_INIT(&l->wait_queue);
840
841 l->rx.proto->add(l->rx.proto, l);
842
Willy Tarreau08b6f962022-02-01 16:23:00 +0100843 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau59a877d2021-10-12 09:36:10 +0200844 _HA_ATOMIC_INC(&jobs);
845 _HA_ATOMIC_INC(&listeners);
846 global.maxsock++;
847 return l;
848
Willy Tarreau59a877d2021-10-12 09:36:10 +0200849 oom2:
850 free(l);
851 oom1:
Willy Tarreaua1462892021-10-16 14:45:29 +0200852 return NULL;
Willy Tarreau59a877d2021-10-12 09:36:10 +0200853}
854
Willy Tarreau1a64d162007-10-28 22:26:05 +0100855/* Delete a listener from its protocol's list of listeners. The listener's
856 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200857 * number of listeners is updated, as well as the global number of listeners
858 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200859 * is a low-level function expected to be called with the proto_lock and the
860 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100861 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200862void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100863{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100864 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200865 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200866 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200867 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200868 _HA_ATOMIC_DEC(&jobs);
869 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100870 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200871}
872
873/* Delete a listener from its protocol's list of listeners (please check
874 * __delete_listener() above). The proto_lock and the listener's lock will
875 * be grabbed in this order.
876 */
877void delete_listener(struct listener *listener)
878{
879 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100880 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200881 __delete_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100882 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200883 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100884}
885
Willy Tarreaue2711c72019-02-27 15:39:41 +0100886/* Returns a suitable value for a listener's backlog. It uses the listener's,
887 * otherwise the frontend's backlog, otherwise the listener's maxconn,
888 * otherwise the frontend's maxconn, otherwise 1024.
889 */
890int listener_backlog(const struct listener *l)
891{
Willy Tarreau1920f892023-01-12 18:55:13 +0100892 if (l->bind_conf->backlog)
893 return l->bind_conf->backlog;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100894
895 if (l->bind_conf->frontend->backlog)
896 return l->bind_conf->frontend->backlog;
897
Willy Tarreau758c69d2023-01-12 18:59:37 +0100898 if (l->bind_conf->maxconn)
899 return l->bind_conf->maxconn;
Willy Tarreaue2711c72019-02-27 15:39:41 +0100900
901 if (l->bind_conf->frontend->maxconn)
902 return l->bind_conf->frontend->maxconn;
903
904 return 1024;
905}
906
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200907/* This function is called on a read event from a listening socket, corresponding
908 * to an accept. It tries to accept as many connections as possible, and for each
909 * calls the listener's accept handler (generally the frontend's accept handler).
910 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200911void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200912{
Willy Tarreau83efc322020-10-14 17:37:17 +0200913 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100914 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200915 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100916 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100917 int next_feconn = 0;
918 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200919 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200920 int ret;
921
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100922 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200923
Willy Tarreau882f2482023-01-12 18:52:23 +0100924 /* if l->bind_conf->maxaccept is -1, then max_accept is UINT_MAX. It is
925 * not really illimited, but it is probably enough.
Christopher Faulet102854c2019-04-30 12:17:13 +0200926 */
Willy Tarreau882f2482023-01-12 18:52:23 +0100927 max_accept = l->bind_conf->maxaccept ? l->bind_conf->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200928
Willy Tarreau17146802023-01-12 19:58:42 +0100929 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.sps_lim) {
Willy Tarreau93e7c002013-10-07 18:51:07 +0200930 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200931
932 if (unlikely(!max)) {
933 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200934 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100935 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200936 }
937
938 if (max_accept > max)
939 max_accept = max;
940 }
941
Willy Tarreau17146802023-01-12 19:58:42 +0100942 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200943 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
944
945 if (unlikely(!max)) {
946 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200947 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100948 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200949 }
950
951 if (max_accept > max)
952 max_accept = max;
953 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200954#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +0100955 if (!(l->bind_conf->options & BC_O_UNLIMITED) && global.ssl_lim &&
Willy Tarreau11ba4042022-05-20 15:56:32 +0200956 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Willy Tarreaue43d5322013-10-07 20:01:52 +0200957 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200958
Willy Tarreaue43d5322013-10-07 20:01:52 +0200959 if (unlikely(!max)) {
960 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200961 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100962 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200963 }
964
965 if (max_accept > max)
966 max_accept = max;
967 }
968#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200969 if (p && p->fe_sps_lim) {
970 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
971
972 if (unlikely(!max)) {
973 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100974 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
975 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200976 }
977
978 if (max_accept > max)
979 max_accept = max;
980 }
981
982 /* Note: if we fail to allocate a connection because of configured
983 * limits, we'll schedule a new attempt worst 1 second later in the
984 * worst case. If we fail due to system limits or temporary resource
985 * shortage, we try again 100ms later in the worst case.
986 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100987 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200988 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200989 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200990 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200991
Willy Tarreau82c97892019-02-27 19:32:32 +0100992 /* pre-increase the number of connections without going too far.
993 * We process the listener, then the proxy, then the process.
994 * We know which ones to unroll based on the next_xxx value.
995 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100996 do {
997 count = l->nbconn;
Willy Tarreau758c69d2023-01-12 18:59:37 +0100998 if (unlikely(l->bind_conf->maxconn && count >= l->bind_conf->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100999 /* the listener was marked full or another
1000 * thread is going to do it.
1001 */
1002 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001003 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001004 goto end;
1005 }
1006 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001007 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001008
Willy Tarreau82c97892019-02-27 19:32:32 +01001009 if (p) {
1010 do {
1011 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001012 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001013 /* the frontend was marked full or another
1014 * thread is going to do it.
1015 */
1016 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001017 expire = TICK_ETERNITY;
1018 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +01001019 }
1020 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +01001021 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001022 }
1023
Willy Tarreau17146802023-01-12 19:58:42 +01001024 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001025 do {
1026 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +01001027 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001028 /* the process was marked full or another
1029 * thread is going to do it.
1030 */
1031 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +01001032 expire = tick_add(now_ms, 1000); /* try again in 1 second */
1033 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +01001034 }
1035 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +00001036 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001037 }
1038
Willy Tarreaufed93d32022-02-01 16:37:00 +01001039 /* be careful below, the listener might be shutting down in
1040 * another thread on error and we must not dereference its
1041 * FD without a bit of protection.
1042 */
1043 cli_conn = NULL;
1044 status = CO_AC_PERMERR;
1045
1046 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
1047 if (l->rx.flags & RX_F_BOUND)
1048 cli_conn = l->rx.proto->accept_conn(l, &status);
1049 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
1050
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001051 if (!cli_conn) {
1052 switch (status) {
1053 case CO_AC_DONE:
1054 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +01001055
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001056 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +02001057 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001058 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +02001059 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau17146802023-01-12 19:58:42 +01001060 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001061 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +01001062 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001063
1064 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +01001065 max_accept = 0;
1066 goto end;
William Lallemandd9138002018-11-27 12:02:39 +01001067
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001068 default:
1069 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +02001070 }
1071 }
1072
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001073 /* The connection was accepted, it must be counted as such */
1074 if (l->counters)
1075 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
1076
Willy Tarreaud8679342022-05-09 20:41:54 +02001077 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001078 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreaud8679342022-05-09 20:41:54 +02001079 proxy_inc_fe_conn_ctr(l, p);
1080 }
Willy Tarreau82c97892019-02-27 19:32:32 +01001081
Willy Tarreau17146802023-01-12 19:58:42 +01001082 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001083 count = update_freq_ctr(&global.conn_per_sec, 1);
1084 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001085 }
1086
Willy Tarreau4781b152021-04-06 13:53:36 +02001087 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +02001088
Willy Tarreau30836152023-01-12 19:10:17 +01001089 /* past this point, l->bind_conf->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +01001090 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
1091 * allows the error path not to rollback on nbconn. It's more
1092 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001093 */
1094 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +01001095 next_feconn = 0;
1096 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001097
Willy Tarreau83efc322020-10-14 17:37:17 +02001098
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001099#if defined(USE_THREAD)
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001100 if (l->rx.flags & RX_F_LOCAL_ACCEPT)
1101 goto local_accept;
1102
Willy Tarreaub2f38c12023-01-19 19:14:18 +01001103 mask = l->rx.bind_thread & _HA_ATOMIC_LOAD(&tg->threads_enabled);
Willy Tarreaua7da5e82020-03-12 17:33:29 +01001104 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001105 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001106 unsigned int t, t0, t1, t2;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001107 int base = tg->base;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001108
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001109 /* The principle is that we have two running indexes,
1110 * each visiting in turn all threads bound to this
1111 * listener. The connection will be assigned to the one
1112 * with the least connections, and the other one will
1113 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001114 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001115 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001116 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001117
1118 /* keep a copy for the final update. thr_idx is composite
1119 * and made of (t2<<16) + t1.
1120 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001121 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001122 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001123 unsigned long m1, m2;
1124 int q1, q2;
1125
1126 t2 = t1 = t0;
1127 t2 >>= 16;
1128 t1 &= 0xFFFF;
1129
1130 /* t1 walks low to high bits ;
1131 * t2 walks high to low.
1132 */
1133 m1 = mask >> t1;
1134 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1135
Willy Tarreau85d04242019-04-16 18:09:13 +02001136 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001137 m1 &= ~1UL;
1138 if (!m1) {
1139 m1 = mask;
1140 t1 = 0;
1141 }
1142 t1 += my_ffsl(m1) - 1;
1143 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001144
Willy Tarreau85d04242019-04-16 18:09:13 +02001145 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1146 /* highest bit not set */
1147 if (!m2)
1148 m2 = mask;
1149
1150 t2 = my_flsl(m2) - 1;
1151 }
1152
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001153 /* now we have two distinct thread IDs belonging to the mask */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001154 q1 = accept_queue_rings[base + t1].tail - accept_queue_rings[base + t1].head + ACCEPT_QUEUE_SIZE;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001155 if (q1 >= ACCEPT_QUEUE_SIZE)
1156 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001157
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001158 q2 = accept_queue_rings[base + t2].tail - accept_queue_rings[base + t2].head + ACCEPT_QUEUE_SIZE;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001159 if (q2 >= ACCEPT_QUEUE_SIZE)
1160 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001161
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001162 /* we have 3 possibilities now :
1163 * q1 < q2 : t1 is less loaded than t2, so we pick it
1164 * and update t2 (since t1 might still be
1165 * lower than another thread)
1166 * q1 > q2 : t2 is less loaded than t1, so we pick it
1167 * and update t1 (since t2 might still be
1168 * lower than another thread)
1169 * q1 = q2 : both are equally loaded, thus we pick t1
1170 * and update t1 as it will become more loaded
1171 * than t2.
1172 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001173
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001174 q1 += l->thr_conn[base + t1];
1175 q2 += l->thr_conn[base + t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001176
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001177 if (q1 - q2 < 0) {
1178 t = t1;
1179 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1180 }
1181 else if (q1 - q2 > 0) {
1182 t = t2;
1183 t1++;
1184 if (t1 >= LONGBITS)
1185 t1 = 0;
1186 }
1187 else {
1188 t = t1;
1189 t1++;
1190 if (t1 >= LONGBITS)
1191 t1 = 0;
1192 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001193
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001194 /* new value for thr_idx */
1195 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001196 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001197
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001198 /* We successfully selected the best thread "t" for this
1199 * connection. We use deferred accepts even if it's the
1200 * local thread because tests show that it's the best
1201 * performing model, likely due to better cache locality
1202 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001203 */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001204 ring = &accept_queue_rings[base + t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001205 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001206 _HA_ATOMIC_INC(&activity[base + t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001207 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001208 continue;
1209 }
1210 /* If the ring is full we do a synchronous accept on
1211 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001212 */
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02001213 _HA_ATOMIC_INC(&activity[base + t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001214 }
1215#endif // USE_THREAD
1216
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001217 local_accept:
Willy Tarreau4781b152021-04-06 13:53:36 +02001218 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau30836152023-01-12 19:10:17 +01001219 ret = l->bind_conf->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001220 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001221 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001222 * we just have to ignore it (ret == 0) or it's a critical
1223 * error due to a resource shortage, and we must stop the
1224 * listener (ret < 0).
1225 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001226 if (ret == 0) /* successful termination */
1227 continue;
1228
Willy Tarreaubb660302014-05-07 19:47:02 +02001229 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001230 }
1231
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001232 /* increase the per-process number of cumulated sessions, this
Willy Tarreau30836152023-01-12 19:10:17 +01001233 * may only be done once l->bind_conf->accept() has accepted the
1234 * connection.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001235 */
Willy Tarreau17146802023-01-12 19:58:42 +01001236 if (!(l->bind_conf->options & BC_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001237 count = update_freq_ctr(&global.sess_per_sec, 1);
1238 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001239 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001240#ifdef USE_OPENSSL
Willy Tarreau17146802023-01-12 19:58:42 +01001241 if (!(l->bind_conf->options & BC_O_UNLIMITED) &&
Willy Tarreau11ba4042022-05-20 15:56:32 +02001242 l->bind_conf && l->bind_conf->options & BC_O_USE_SSL) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001243 count = update_freq_ctr(&global.ssl_per_sec, 1);
1244 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001245 }
1246#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001247
Willy Tarreaubdcd3252022-06-22 09:19:46 +02001248 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001249 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001250
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001251 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001252 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001253 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001254
Willy Tarreau82c97892019-02-27 19:32:32 +01001255 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001256 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001257
1258 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001259 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001260
Willy Tarreau758c69d2023-01-12 18:59:37 +01001261 if ((l->state == LI_FULL && (!l->bind_conf->maxconn || l->nbconn < l->bind_conf->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001262 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001263 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1264 (!tick_isset(global_listener_queue_task->expire) ||
1265 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001266 /* at least one thread has to this when quitting */
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001267 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001268
Willy Tarreau02757d02021-01-28 18:07:24 +01001269 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001270 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001271
Olivier Houchard859dc802019-08-08 15:47:21 +02001272 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001273 (!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 +01001274 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001275 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001276 return;
1277
1278 transient_error:
1279 /* pause the listener for up to 100 ms */
1280 expire = tick_add(now_ms, 100);
1281
Willy Tarreau258b3512020-10-13 17:46:05 +02001282 /* This may be a shared socket that was paused by another process.
1283 * Let's put it to pause in this case.
1284 */
1285 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGONd3ffba42023-02-13 17:45:08 +01001286 suspend_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001287 goto end;
1288 }
1289
Willy Tarreau0591bf72019-12-10 12:01:21 +01001290 limit_global:
1291 /* (re-)queue the listener to the global queue and set it to expire no
1292 * later than <expire> ahead. The listener turns to LI_LIMITED.
1293 */
1294 limit_listener(l, &global_listener_queue);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001295 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001296 task_schedule(global_listener_queue_task, expire);
Christopher Faulet13e86d92022-11-17 14:40:20 +01001297 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001298 goto end;
1299
1300 limit_proxy:
1301 /* (re-)queue the listener to the proxy's queue and set it to expire no
1302 * later than <expire> ahead. The listener turns to LI_LIMITED.
1303 */
1304 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001305 if (p->task && tick_isset(expire))
1306 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001307 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001308}
1309
Willy Tarreau05f50472017-09-15 09:19:58 +02001310/* Notify the listener that a connection initiated from it was released. This
1311 * is used to keep the connection count consistent and to possibly re-open
1312 * listening when it was limited.
1313 */
1314void listener_release(struct listener *l)
1315{
1316 struct proxy *fe = l->bind_conf->frontend;
1317
Willy Tarreau17146802023-01-12 19:58:42 +01001318 if (!(l->bind_conf->options & BC_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001319 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001320 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001321 _HA_ATOMIC_DEC(&fe->feconn);
1322 _HA_ATOMIC_DEC(&l->nbconn);
1323 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001324
1325 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONf5d98932023-02-06 17:19:58 +01001326 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001327
Willy Tarreau02757d02021-01-28 18:07:24 +01001328 /* Dequeues all of the listeners waiting for a resource */
1329 dequeue_all_listeners();
1330
Aurelien DARRAGONa57786e2022-09-12 09:26:21 +02001331 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001332 (!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 +01001333 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001334}
1335
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001336/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1337static int listener_queue_init()
1338{
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001339 global_listener_queue_task = task_new_anywhere();
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001340 if (!global_listener_queue_task) {
1341 ha_alert("Out of memory when initializing global listener queue\n");
1342 return ERR_FATAL|ERR_ABORT;
1343 }
1344 /* very simple initialization, users will queue the task if needed */
1345 global_listener_queue_task->context = NULL; /* not even a context! */
1346 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001347 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001348
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001349 return 0;
1350}
1351
1352static void listener_queue_deinit()
1353{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001354 task_destroy(global_listener_queue_task);
1355 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001356}
1357
1358REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1359REGISTER_POST_DEINIT(listener_queue_deinit);
1360
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001361
1362/* This is the global management task for listeners. It enables listeners waiting
1363 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001364 * a while. It is designed to be called as a task. It's exported so that it's easy
1365 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001366 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001367struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001368{
1369 /* If there are still too many concurrent connections, let's wait for
1370 * some of them to go away. We don't need to re-arm the timer because
1371 * each of them will scan the queue anyway.
1372 */
1373 if (unlikely(actconn >= global.maxconn))
1374 goto out;
1375
1376 /* We should periodically try to enable listeners waiting for a global
1377 * resource here, because it is possible, though very unlikely, that
1378 * they have been blocked by a temporary lack of global resource such
1379 * as a file descriptor or memory and that the temporary condition has
1380 * disappeared.
1381 */
1382 dequeue_all_listeners();
1383
1384 out:
Christopher Faulet13e86d92022-11-17 14:40:20 +01001385 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001386 t->expire = TICK_ETERNITY;
Christopher Faulet13e86d92022-11-17 14:40:20 +01001387 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001388 return t;
1389}
1390
Willy Tarreau26982662012-09-12 23:17:10 +02001391/*
1392 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1393 * parsing sessions.
1394 */
1395void bind_register_keywords(struct bind_kw_list *kwl)
1396{
Willy Tarreau2b718102021-04-21 07:32:39 +02001397 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001398}
1399
1400/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1401 * keyword is found with a NULL ->parse() function, then an attempt is made to
1402 * find one with a valid ->parse() function. This way it is possible to declare
1403 * platform-dependant, known keywords as NULL, then only declare them as valid
1404 * if some options are met. Note that if the requested keyword contains an
1405 * opening parenthesis, everything from this point is ignored.
1406 */
1407struct bind_kw *bind_find_kw(const char *kw)
1408{
1409 int index;
1410 const char *kwend;
1411 struct bind_kw_list *kwl;
1412 struct bind_kw *ret = NULL;
1413
1414 kwend = strchr(kw, '(');
1415 if (!kwend)
1416 kwend = kw + strlen(kw);
1417
1418 list_for_each_entry(kwl, &bind_keywords.list, list) {
1419 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1420 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1421 kwl->kw[index].kw[kwend-kw] == 0) {
1422 if (kwl->kw[index].parse)
1423 return &kwl->kw[index]; /* found it !*/
1424 else
1425 ret = &kwl->kw[index]; /* may be OK */
1426 }
1427 }
1428 }
1429 return ret;
1430}
1431
Willy Tarreau8638f482012-09-18 18:01:17 +02001432/* Dumps all registered "bind" keywords to the <out> string pointer. The
1433 * unsupported keywords are only dumped if their supported form was not
1434 * found.
1435 */
1436void bind_dump_kws(char **out)
1437{
1438 struct bind_kw_list *kwl;
1439 int index;
1440
Christopher Faulet784063e2020-05-18 12:14:18 +02001441 if (!out)
1442 return;
1443
Willy Tarreau8638f482012-09-18 18:01:17 +02001444 *out = NULL;
1445 list_for_each_entry(kwl, &bind_keywords.list, list) {
1446 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1447 if (kwl->kw[index].parse ||
1448 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001449 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1450 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001451 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001452 kwl->kw[index].skip ? " <arg>" : "",
1453 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001454 }
1455 }
1456 }
1457}
1458
Willy Tarreau433b05f2021-03-12 10:14:07 +01001459/* Try to find in srv_keyword the word that looks closest to <word> by counting
1460 * transitions between letters, digits and other characters. Will return the
1461 * best matching word if found, otherwise NULL.
1462 */
1463const char *bind_find_best_kw(const char *word)
1464{
1465 uint8_t word_sig[1024];
1466 uint8_t list_sig[1024];
1467 const struct bind_kw_list *kwl;
1468 const char *best_ptr = NULL;
1469 int dist, best_dist = INT_MAX;
1470 int index;
1471
1472 make_word_fingerprint(word_sig, word);
1473 list_for_each_entry(kwl, &bind_keywords.list, list) {
1474 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1475 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1476 dist = word_fingerprint_distance(word_sig, list_sig);
1477 if (dist < best_dist) {
1478 best_dist = dist;
1479 best_ptr = kwl->kw[index].kw;
1480 }
1481 }
1482 }
1483
1484 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1485 best_ptr = NULL;
1486
1487 return best_ptr;
1488}
1489
Willy Tarreaudbf78022021-10-06 09:05:08 +02001490/* allocate an bind_conf struct for a bind line, and chain it to the frontend <fe>.
1491 * If <arg> is not NULL, it is duplicated into ->arg to store useful config
1492 * information for error reporting. NULL is returned on error.
1493 */
1494struct bind_conf *bind_conf_alloc(struct proxy *fe, const char *file,
1495 int line, const char *arg, struct xprt_ops *xprt)
1496{
1497 struct bind_conf *bind_conf = calloc(1, sizeof(*bind_conf));
1498
1499 if (!bind_conf)
1500 goto err;
1501
1502 bind_conf->file = strdup(file);
1503 if (!bind_conf->file)
1504 goto err;
1505 bind_conf->line = line;
1506 if (arg) {
1507 bind_conf->arg = strdup(arg);
1508 if (!bind_conf->arg)
1509 goto err;
1510 }
1511
1512 LIST_APPEND(&fe->conf.bind, &bind_conf->by_fe);
1513 bind_conf->settings.ux.uid = -1;
1514 bind_conf->settings.ux.gid = -1;
1515 bind_conf->settings.ux.mode = 0;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001516 bind_conf->settings.shards = 1;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001517 bind_conf->xprt = xprt;
1518 bind_conf->frontend = fe;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01001519 bind_conf->analysers = fe->fe_req_ana;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001520 bind_conf->severity_output = CLI_SEVERITY_NONE;
1521#ifdef USE_OPENSSL
1522 HA_RWLOCK_INIT(&bind_conf->sni_lock);
1523 bind_conf->sni_ctx = EB_ROOT;
1524 bind_conf->sni_w_ctx = EB_ROOT;
1525#endif
1526 LIST_INIT(&bind_conf->listeners);
1527 return bind_conf;
1528
1529 err:
1530 if (bind_conf) {
1531 ha_free(&bind_conf->file);
1532 ha_free(&bind_conf->arg);
1533 }
1534 ha_free(&bind_conf);
1535 return NULL;
1536}
1537
1538const char *listener_state_str(const struct listener *l)
1539{
1540 static const char *states[8] = {
1541 "NEW", "INI", "ASS", "PAU", "LIS", "RDY", "FUL", "LIM",
1542 };
1543 unsigned int st = l->state;
1544
1545 if (st >= sizeof(states) / sizeof(*states))
1546 return "INVALID";
1547 return states[st];
1548}
1549
Willy Tarreau645513a2010-05-24 20:55:15 +02001550/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001551/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001552/************************************************************************/
1553
Willy Tarreaua5e37562011-12-16 17:06:15 +01001554/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001555static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001556smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001557{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001558 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001559 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001560 return 1;
1561}
1562
Willy Tarreaua5e37562011-12-16 17:06:15 +01001563/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001564static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001565smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001566{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001567 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001568 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001569 return 1;
1570}
Jerome Magnineb421b22020-03-27 22:08:40 +01001571static int
1572smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1573{
1574 smp->data.u.str.area = smp->sess->listener->name;
1575 if (!smp->data.u.str.area)
1576 return 0;
1577
1578 smp->data.type = SMP_T_STR;
1579 smp->flags = SMP_F_CONST;
1580 smp->data.u.str.data = strlen(smp->data.u.str.area);
1581 return 1;
1582}
Willy Tarreau645513a2010-05-24 20:55:15 +02001583
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001584/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001585static 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 +02001586{
Willy Tarreauf1b47302023-01-12 19:48:50 +01001587 conf->options |= BC_O_ACC_PROXY;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001588 return 0;
1589}
1590
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001591/* parse the "accept-netscaler-cip" bind keyword */
1592static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1593{
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001594 uint32_t val;
1595
1596 if (!*args[cur_arg + 1]) {
1597 memprintf(err, "'%s' : missing value", args[cur_arg]);
1598 return ERR_ALERT | ERR_FATAL;
1599 }
1600
1601 val = atol(args[cur_arg + 1]);
1602 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001603 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001604 return ERR_ALERT | ERR_FATAL;
1605 }
1606
Willy Tarreauf1b47302023-01-12 19:48:50 +01001607 conf->options |= BC_O_ACC_CIP;
1608 conf->ns_cip_magic = val;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001609 return 0;
1610}
1611
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001612/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001613static 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 +02001614{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001615 int val;
1616
1617 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001618 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001619 return ERR_ALERT | ERR_FATAL;
1620 }
1621
1622 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001623 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001624 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001625 return ERR_ALERT | ERR_FATAL;
1626 }
1627
Willy Tarreau1920f892023-01-12 18:55:13 +01001628 conf->backlog = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001629 return 0;
1630}
1631
1632/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001633static 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 +02001634{
1635 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001636 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001637 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001638
Willy Tarreau4348fad2012-09-20 16:48:07 +02001639 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001640 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001641 return ERR_ALERT | ERR_FATAL;
1642 }
1643
1644 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001645 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001646 return ERR_ALERT | ERR_FATAL;
1647 }
1648
Willy Tarreau4348fad2012-09-20 16:48:07 +02001649 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001650 new->luid = strtol(args[cur_arg + 1], &error, 10);
1651 if (*error != '\0') {
1652 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1653 return ERR_ALERT | ERR_FATAL;
1654 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001655 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001656
Willy Tarreau4348fad2012-09-20 16:48:07 +02001657 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001658 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001659 return ERR_ALERT | ERR_FATAL;
1660 }
1661
Willy Tarreau4348fad2012-09-20 16:48:07 +02001662 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001663 if (node) {
1664 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001665 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1666 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1667 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001668 return ERR_ALERT | ERR_FATAL;
1669 }
1670
Willy Tarreau4348fad2012-09-20 16:48:07 +02001671 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001672 return 0;
1673}
1674
Willy Tarreau3882d2a2022-05-20 15:41:45 +02001675/* Complete a bind_conf by parsing the args after the address. <args> is the
1676 * arguments array, <cur_arg> is the first one to be considered. <section> is
1677 * the section name to report in error messages, and <file> and <linenum> are
1678 * the file name and line number respectively. Note that args[0..1] are used
1679 * in error messages to provide some context. The return value is an error
1680 * code, zero on success or an OR of ERR_{FATAL,ABORT,ALERT,WARN}.
1681 */
1682int bind_parse_args_list(struct bind_conf *bind_conf, char **args, int cur_arg, const char *section, const char *file, int linenum)
1683{
1684 int err_code = 0;
1685
1686 while (*(args[cur_arg])) {
1687 struct bind_kw *kw;
1688 const char *best;
1689
1690 kw = bind_find_kw(args[cur_arg]);
1691 if (kw) {
1692 char *err = NULL;
1693 int code;
1694
1695 if (!kw->parse) {
1696 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : '%s' option is not implemented in this version (check build options).\n",
1697 file, linenum, args[0], args[1], section, args[cur_arg]);
1698 cur_arg += 1 + kw->skip ;
1699 err_code |= ERR_ALERT | ERR_FATAL;
1700 goto out;
1701 }
1702
1703 code = kw->parse(args, cur_arg, bind_conf->frontend, bind_conf, &err);
1704 err_code |= code;
1705
1706 if (code) {
1707 if (err && *err) {
1708 indent_msg(&err, 2);
1709 if (((code & (ERR_WARN|ERR_ALERT)) == ERR_WARN))
1710 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
1711 else
1712 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : %s\n", file, linenum, args[0], args[1], section, err);
1713 }
1714 else
1715 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : error encountered while processing '%s'.\n",
1716 file, linenum, args[0], args[1], section, args[cur_arg]);
1717 if (code & ERR_FATAL) {
1718 free(err);
1719 cur_arg += 1 + kw->skip;
1720 goto out;
1721 }
1722 }
1723 free(err);
1724 cur_arg += 1 + kw->skip;
1725 continue;
1726 }
1727
1728 best = bind_find_best_kw(args[cur_arg]);
1729 if (best)
1730 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'; did you mean '%s' maybe ?\n",
1731 file, linenum, args[0], args[1], section, args[cur_arg], best);
1732 else
1733 ha_alert("parsing [%s:%d] : '%s %s' in section '%s': unknown keyword '%s'.\n",
1734 file, linenum, args[0], args[1], section, args[cur_arg]);
1735
1736 err_code |= ERR_ALERT | ERR_FATAL;
1737 goto out;
1738 }
Willy Tarreau64306cc2022-05-20 16:20:52 +02001739
1740 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_SOCK_STREAM) ||
1741 (bind_conf->options & (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_XPRT_DGRAM|BC_O_USE_XPRT_STREAM)) {
1742 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : cannot mix datagram and stream protocols.\n",
1743 file, linenum, args[0], args[1], section);
1744 err_code |= ERR_ALERT | ERR_FATAL;
1745 goto out;
1746 }
1747
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001748 /* The transport layer automatically switches to QUIC when QUIC is
1749 * selected, regardless of bind_conf settings. We then need to
1750 * initialize QUIC params.
1751 */
1752 if ((bind_conf->options & (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) == (BC_O_USE_SOCK_DGRAM|BC_O_USE_XPRT_STREAM)) {
1753#ifdef USE_QUIC
1754 bind_conf->xprt = xprt_get(XPRT_QUIC);
Willy Tarreau287f32f2022-05-20 18:16:52 +02001755 if (!(bind_conf->options & BC_O_USE_SSL)) {
1756 bind_conf->options |= BC_O_USE_SSL;
1757 ha_warning("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol detected, enabling ssl. Use 'ssl' to shut this warning.\n",
1758 file, linenum, args[0], args[1], section);
1759 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001760 quic_transport_params_init(&bind_conf->quic_params, 1);
1761#else
1762 ha_alert("parsing [%s:%d] : '%s %s' in section '%s' : QUIC protocol selected but support not compiled in (check build options).\n",
1763 file, linenum, args[0], args[1], section);
1764 err_code |= ERR_ALERT | ERR_FATAL;
1765 goto out;
1766#endif
1767 }
Willy Tarreau2071a992022-05-20 17:14:31 +02001768 else if (bind_conf->options & BC_O_USE_SSL) {
1769 bind_conf->xprt = xprt_get(XPRT_SSL);
1770 }
Willy Tarreau78d0dcd2022-05-20 17:10:00 +02001771
Willy Tarreau3882d2a2022-05-20 15:41:45 +02001772 out:
1773 return err_code;
1774}
1775
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001776/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001777static 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 +02001778{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001779 int val;
1780
1781 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001782 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001783 return ERR_ALERT | ERR_FATAL;
1784 }
1785
1786 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001787 if (val < 0) {
1788 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001789 return ERR_ALERT | ERR_FATAL;
1790 }
1791
Willy Tarreau758c69d2023-01-12 18:59:37 +01001792 conf->maxconn = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001793 return 0;
1794}
1795
1796/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001797static 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 +02001798{
1799 struct listener *l;
1800
1801 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001802 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001803 return ERR_ALERT | ERR_FATAL;
1804 }
1805
Willy Tarreau4348fad2012-09-20 16:48:07 +02001806 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001807 l->name = strdup(args[cur_arg + 1]);
1808
1809 return 0;
1810}
1811
1812/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001813static 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 +02001814{
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001815 int val;
1816
1817 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001818 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001819 return ERR_ALERT | ERR_FATAL;
1820 }
1821
1822 val = atol(args[cur_arg + 1]);
1823 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001824 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001825 return ERR_ALERT | ERR_FATAL;
1826 }
1827
Willy Tarreau7dbd4182023-01-12 19:32:45 +01001828 conf->nice = val;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001829 return 0;
1830}
1831
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001832/* parse the "process" bind keyword */
1833static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1834{
Willy Tarreauacd64412022-07-15 17:16:01 +02001835 memprintf(err, "'process %s' on 'bind' lines is not supported anymore, please use 'thread' instead.", args[cur_arg+1]);
1836 return ERR_ALERT | ERR_FATAL;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001837}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001838
Christopher Fauleta717b992018-04-10 14:43:00 +02001839/* parse the "proto" bind keyword */
1840static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1841{
1842 struct ist proto;
1843
1844 if (!*args[cur_arg + 1]) {
1845 memprintf(err, "'%s' : missing value", args[cur_arg]);
1846 return ERR_ALERT | ERR_FATAL;
1847 }
1848
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001849 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001850 conf->mux_proto = get_mux_proto(proto);
1851 if (!conf->mux_proto) {
1852 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1853 return ERR_ALERT | ERR_FATAL;
1854 }
Willy Tarreauc8cac042021-09-21 14:31:29 +02001855 return 0;
1856}
1857
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001858/* parse the "shards" bind keyword. Takes an integer or "by-thread" */
1859static int bind_parse_shards(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1860{
1861 int val;
1862
1863 if (!*args[cur_arg + 1]) {
1864 memprintf(err, "'%s' : missing value", args[cur_arg]);
1865 return ERR_ALERT | ERR_FATAL;
1866 }
1867
1868 if (strcmp(args[cur_arg + 1], "by-thread") == 0) {
1869 val = MAX_THREADS; /* will be trimmed later anyway */
1870 } else {
1871 val = atol(args[cur_arg + 1]);
1872 if (val < 1 || val > MAX_THREADS) {
1873 memprintf(err, "'%s' : invalid value %d, allowed range is %d..%d or 'by-thread'", args[cur_arg], val, 1, MAX_THREADS);
1874 return ERR_ALERT | ERR_FATAL;
1875 }
1876 }
1877
1878 conf->settings.shards = val;
1879 return 0;
1880}
1881
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01001882/* parse the "thread" bind keyword. This will replace any preset thread_set */
Willy Tarreauc8cac042021-09-21 14:31:29 +02001883static int bind_parse_thread(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1884{
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01001885 /* note that the thread set is zeroed before first call, and we don't
1886 * want to reset it so that it remains possible to chain multiple
1887 * "thread" directives.
1888 */
1889 if (parse_thread_set(args[cur_arg+1], &conf->thread_set, err) < 0)
Willy Tarreauc8cac042021-09-21 14:31:29 +02001890 return ERR_ALERT | ERR_FATAL;
Christopher Fauleta717b992018-04-10 14:43:00 +02001891 return 0;
1892}
1893
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001894/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1895static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001896 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001897 char **err)
1898{
1899 if (too_many_args(1, args, err, NULL))
1900 return -1;
1901
1902 if (strcmp(args[1], "on") == 0)
1903 global.tune.options |= GTUNE_LISTENER_MQ;
1904 else if (strcmp(args[1], "off") == 0)
1905 global.tune.options &= ~GTUNE_LISTENER_MQ;
1906 else {
1907 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1908 return -1;
1909 }
1910 return 0;
1911}
1912
Willy Tarreau61612d42012-04-19 18:42:05 +02001913/* Note: must not be declared <const> as its list will be overwritten.
1914 * Please take care of keeping this list alphabetically sorted.
1915 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001916static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001917 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1918 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001919 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001920 { /* END */ },
1921}};
1922
Willy Tarreau0108d902018-11-25 19:14:37 +01001923INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1924
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001925/* Note: must not be declared <const> as its list will be overwritten.
1926 * Please take care of keeping this list alphabetically sorted.
1927 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001928static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001929 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001930}};
1931
Willy Tarreau0108d902018-11-25 19:14:37 +01001932INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1933
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001934/* Note: must not be declared <const> as its list will be overwritten.
1935 * Please take care of keeping this list alphabetically sorted, doing so helps
1936 * all code contributors.
1937 * Optional keywords are also declared with a NULL ->parse() function so that
1938 * the config parser can report an appropriate error when a known keyword was
1939 * not enabled.
1940 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001941static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001942 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001943 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1944 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1945 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1946 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1947 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1948 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001949 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001950 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001951 { "shards", bind_parse_shards, 1 }, /* set number of shards */
Willy Tarreauc8cac042021-09-21 14:31:29 +02001952 { "thread", bind_parse_thread, 1 }, /* set list of allowed threads for this socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001953 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001954}};
1955
Willy Tarreau0108d902018-11-25 19:14:37 +01001956INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1957
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001958/* config keyword parsers */
1959static struct cfg_kw_list cfg_kws = {ILH, {
1960 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1961 { 0, NULL, NULL }
1962}};
1963
1964INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1965
Willy Tarreau645513a2010-05-24 20:55:15 +02001966/*
1967 * Local variables:
1968 * c-indent-level: 8
1969 * c-basic-offset: 8
1970 * End:
1971 */