blob: cd295e960ea5ec4991c16709131144571d6abdb1 [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>
18#include <fcntl.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020019
Willy Tarreaudcc048a2020-06-04 19:11:43 +020020#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020021#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020022#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020023#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020024#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/fd.h>
26#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020027#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020028#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020029#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020030#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/protocol.h>
Willy Tarreau5958c432021-05-08 20:30:37 +020032#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/sample.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020034#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020035#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020036#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/tools.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020038
Willy Tarreaub648d632007-10-28 22:13:50 +010039
Willy Tarreau26982662012-09-12 23:17:10 +020040/* List head of all known bind keywords */
41static struct bind_kw_list bind_keywords = {
42 .list = LIST_HEAD_INIT(bind_keywords.list)
43};
44
Willy Tarreaua1d97f82019-12-10 11:18:41 +010045/* list of the temporarily limited listeners because of lack of resource */
46static struct mt_list global_listener_queue = MT_LIST_HEAD_INIT(global_listener_queue);
47static struct task *global_listener_queue_task;
Willy Tarreau49a2f602022-11-22 09:08:23 +010048__decl_thread(static HA_RWLOCK_T global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +010049
William Dauchy3679d0c2021-02-14 23:22:55 +010050/* listener status for stats */
51const char* li_status_st[LI_STATE_COUNT] = {
52 [LI_STATUS_WAITING] = "WAITING",
53 [LI_STATUS_OPEN] = "OPEN",
54 [LI_STATUS_FULL] = "FULL",
55};
Willy Tarreaua1d97f82019-12-10 11:18:41 +010056
Willy Tarreau1efafce2019-01-27 15:37:19 +010057#if defined(USE_THREAD)
58
59struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
60
61/* dequeue and process a pending connection from the local accept queue (single
Willy Tarreau83efc322020-10-14 17:37:17 +020062 * consumer). Returns the accepted connection or NULL if none was found.
Willy Tarreau1efafce2019-01-27 15:37:19 +010063 */
Willy Tarreau83efc322020-10-14 17:37:17 +020064struct connection *accept_queue_pop_sc(struct accept_queue_ring *ring)
Willy Tarreau1efafce2019-01-27 15:37:19 +010065{
Willy Tarreau1efafce2019-01-27 15:37:19 +010066 unsigned int pos, next;
Willy Tarreau83efc322020-10-14 17:37:17 +020067 struct connection *ptr;
68 struct connection **e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010069
70 pos = ring->head;
71
72 if (pos == ring->tail)
Willy Tarreau83efc322020-10-14 17:37:17 +020073 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010074
75 next = pos + 1;
76 if (next >= ACCEPT_QUEUE_SIZE)
77 next = 0;
78
79 e = &ring->entry[pos];
80
81 /* wait for the producer to update the listener's pointer */
82 while (1) {
Willy Tarreau83efc322020-10-14 17:37:17 +020083 ptr = *e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010084 __ha_barrier_load();
85 if (ptr)
86 break;
87 pl_cpu_relax();
88 }
89
Willy Tarreau1efafce2019-01-27 15:37:19 +010090 /* release the entry */
Willy Tarreau83efc322020-10-14 17:37:17 +020091 *e = NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010092
93 __ha_barrier_store();
94 ring->head = next;
Willy Tarreau83efc322020-10-14 17:37:17 +020095 return ptr;
Willy Tarreau1efafce2019-01-27 15:37:19 +010096}
97
98
Willy Tarreau83efc322020-10-14 17:37:17 +020099/* tries to push a new accepted connection <conn> into ring <ring>. Returns
100 * non-zero if it succeeds, or zero if the ring is full. Supports multiple
101 * producers.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100102 */
Willy Tarreau83efc322020-10-14 17:37:17 +0200103int accept_queue_push_mp(struct accept_queue_ring *ring, struct connection *conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100104{
Willy Tarreau1efafce2019-01-27 15:37:19 +0100105 unsigned int pos, next;
106
107 pos = ring->tail;
108 do {
109 next = pos + 1;
110 if (next >= ACCEPT_QUEUE_SIZE)
111 next = 0;
112 if (next == ring->head)
113 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100114 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100115
Willy Tarreau83efc322020-10-14 17:37:17 +0200116 ring->entry[pos] = conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100117 __ha_barrier_store();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100118 return 1;
119}
120
Willy Tarreaufb5401f2021-01-29 12:25:23 +0100121/* proceed with accepting new connections. Don't mark it static so that it appears
122 * in task dumps.
123 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100124struct task *accept_queue_process(struct task *t, void *context, unsigned int state)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100125{
126 struct accept_queue_ring *ring = context;
Willy Tarreau83efc322020-10-14 17:37:17 +0200127 struct connection *conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100128 struct listener *li;
Christopher Faulet102854c2019-04-30 12:17:13 +0200129 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100130 int ret;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100131
Christopher Faulet102854c2019-04-30 12:17:13 +0200132 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
133 * is not really illimited, but it is probably enough.
134 */
Willy Tarreau66161322021-02-19 15:50:27 +0100135 max_accept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Christopher Faulet102854c2019-04-30 12:17:13 +0200136 for (; max_accept; max_accept--) {
Willy Tarreau83efc322020-10-14 17:37:17 +0200137 conn = accept_queue_pop_sc(ring);
138 if (!conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100139 break;
140
Willy Tarreau83efc322020-10-14 17:37:17 +0200141 li = __objt_listener(conn->target);
Willy Tarreau4781b152021-04-06 13:53:36 +0200142 _HA_ATOMIC_INC(&li->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +0200143 ret = li->accept(conn);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100144 if (ret <= 0) {
145 /* connection was terminated by the application */
146 continue;
147 }
148
149 /* increase the per-process number of cumulated sessions, this
150 * may only be done once l->accept() has accepted the connection.
151 */
152 if (!(li->options & LI_O_UNLIMITED)) {
153 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
154 update_freq_ctr(&global.sess_per_sec, 1));
155 if (li->bind_conf && li->bind_conf->is_ssl) {
156 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
157 update_freq_ctr(&global.ssl_per_sec, 1));
158 }
159 }
160 }
161
162 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200163 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200164 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100165
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200166 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100167}
168
169/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
170static int accept_queue_init()
171{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200172 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100173 int i;
174
175 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200176 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100177 if (!t) {
178 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
179 return ERR_FATAL|ERR_ABORT;
180 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200181 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100182 t->process = accept_queue_process;
183 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200184 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100185 }
186 return 0;
187}
188
189REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
190
191#endif // USE_THREAD
192
William Dauchy3679d0c2021-02-14 23:22:55 +0100193/* helper to get listener status for stats */
194enum li_status get_li_status(struct listener *l)
195{
196 if (!l->maxconn || l->nbconn < l->maxconn) {
197 if (l->state == LI_LIMITED)
198 return LI_STATUS_WAITING;
199 else
200 return LI_STATUS_OPEN;
201 }
202 return LI_STATUS_FULL;
203}
204
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200205/* adjust the listener's state and its proxy's listener counters if needed.
206 * It must be called under the listener's lock, but uses atomic ops to change
207 * the proxy's counters so that the proxy lock is not needed.
208 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200209void listener_set_state(struct listener *l, enum li_state st)
210{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200211 struct proxy *px = l->bind_conf->frontend;
212
213 if (px) {
214 /* from state */
215 switch (l->state) {
216 case LI_NEW: /* first call */
Willy Tarreau4781b152021-04-06 13:53:36 +0200217 _HA_ATOMIC_INC(&px->li_all);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200218 break;
219 case LI_INIT:
220 case LI_ASSIGNED:
221 break;
222 case LI_PAUSED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200223 _HA_ATOMIC_DEC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200224 break;
225 case LI_LISTEN:
Willy Tarreau4781b152021-04-06 13:53:36 +0200226 _HA_ATOMIC_DEC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200227 break;
228 case LI_READY:
229 case LI_FULL:
230 case LI_LIMITED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200231 _HA_ATOMIC_DEC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200232 break;
233 }
234
235 /* to state */
236 switch (st) {
237 case LI_NEW:
238 case LI_INIT:
239 case LI_ASSIGNED:
240 break;
241 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200242 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200243 _HA_ATOMIC_INC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200244 break;
245 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200246 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200247 _HA_ATOMIC_INC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200248 break;
249 case LI_READY:
250 case LI_FULL:
251 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200252 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200253 _HA_ATOMIC_INC(&px->li_ready);
Aurelien DARRAGON3b78de12023-02-14 08:51:14 +0100254 l->flags |= LI_F_FINALIZED;
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200255 break;
256 }
257 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200258 l->state = st;
259}
260
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100261/* This function adds the specified listener's file descriptor to the polling
262 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500263 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200264 * also support binding only the relevant processes to their respective
265 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100266 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200267void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100268{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100269 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200270
271 /* If this listener is supposed to be only in the master, close it in
272 * the workers. Conversely, if it's supposed to be only in the workers
273 * close it in the master.
274 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200275 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200276 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200277
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100278 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200279 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200280 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau38dba272020-11-04 13:54:00 +0100281 (!!master != !!(listener->rx.flags & RX_F_MWORKER) ||
282 !(proc_mask(listener->rx.settings->bind_proc) & pid_bit))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200283 /* we don't want to enable this listener and don't
284 * want any fd event to reach it.
285 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200286 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200287 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100288 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200289 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200290 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200291 }
292 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200293 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100294 }
295 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200296
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100297 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100298}
299
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200300/*
Aurelien DARRAGON7c9e1f92022-09-11 16:19:49 +0200301 * This function completely stops a listener.
302 * The proxy's listeners count is updated and the proxy is
303 * disabled and woken up after the last one is gone.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100304 * It will need to operate under the proxy's lock, the protocol's lock and
305 * the listener's lock. The caller is responsible for indicating in lpx,
306 * lpr, lli whether the respective locks are already held (non-zero) or
307 * not (zero) so that the function picks the missing ones, in this order.
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200308 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100309void stop_listener(struct listener *l, int lpx, int lpr, int lli)
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200310{
311 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200312
313 if (l->options & LI_O_NOSTOP) {
314 /* master-worker sockpairs are never closed but don't count as a
315 * job.
316 */
317 return;
318 }
319
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200320 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200321 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200322
323 if (!lpr)
324 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
325
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100326 if (!lli)
327 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200328
329 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200330 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200331
332 if (l->state >= LI_ASSIGNED)
333 __delete_listener(l);
334
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200335 if (px)
336 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200337 }
338
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100339 if (!lli)
340 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200341
342 if (!lpr)
343 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
344
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200345 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200346 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200347}
348
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100349/* This function adds the specified <listener> to the protocol <proto>. It
350 * does nothing if the protocol was already added. The listener's state is
351 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
352 * for the protocol is updated. This must be called with the proto lock held.
353 */
354void default_add_listener(struct protocol *proto, struct listener *listener)
355{
356 if (listener->state != LI_INIT)
357 return;
358 listener_set_state(listener, LI_ASSIGNED);
359 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200360 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100361 proto->nb_receivers++;
362}
363
Willy Tarreaue03204c2020-10-09 17:02:21 +0200364/* default function called to suspend a listener: it simply passes the call to
365 * the underlying receiver. This is find for most socket-based protocols. This
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100366 * must be called under the listener's lock. It will return < 0 in case of
367 * failure, 0 if the listener was totally stopped, or > 0 if correctly paused..
368 * If no receiver-level suspend is provided, the operation is assumed
369 * to succeed.
Willy Tarreaue03204c2020-10-09 17:02:21 +0200370 */
371int default_suspend_listener(struct listener *l)
372{
Willy Tarreaue03204c2020-10-09 17:02:21 +0200373 if (!l->rx.proto->rx_suspend)
374 return 1;
375
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100376 return l->rx.proto->rx_suspend(&l->rx);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200377}
378
379
380/* Tries to resume a suspended listener, and returns non-zero on success or
381 * zero on failure. On certain errors, an alert or a warning might be displayed.
382 * It must be called with the listener's lock held. Depending on the listener's
383 * state and protocol, a listen() call might be used to resume operations, or a
384 * call to the receiver's resume() function might be used as well. This is
385 * suitable as a default function for TCP and UDP. This must be called with the
386 * listener's lock held.
387 */
388int default_resume_listener(struct listener *l)
389{
390 int ret = 1;
391
392 if (l->state == LI_ASSIGNED) {
393 char msg[100];
Aurelien DARRAGONd41af3e2023-02-07 12:17:20 +0100394 char *errmsg;
Willy Tarreaue03204c2020-10-09 17:02:21 +0200395 int err;
396
Aurelien DARRAGONd41af3e2023-02-07 12:17:20 +0100397 /* first, try to bind the receiver */
398 err = l->rx.proto->fam->bind(&l->rx, &errmsg);
399 if (err != ERR_NONE) {
400 if (err & ERR_WARN)
401 ha_warning("Resuming listener: %s\n", errmsg);
402 else if (err & ERR_ALERT)
403 ha_alert("Resuming listener: %s\n", errmsg);
404 ha_free(&errmsg);
405 if (err & (ERR_FATAL | ERR_ABORT)) {
406 ret = 0;
407 goto end;
408 }
409 }
410
411 /* then, try to listen:
412 * for now there's still always a listening function
413 * (same check performed in protocol_bind_all()
414 */
415 BUG_ON(!l->rx.proto->listen);
Willy Tarreaue03204c2020-10-09 17:02:21 +0200416 err = l->rx.proto->listen(l, msg, sizeof(msg));
417 if (err & ERR_ALERT)
418 ha_alert("Resuming listener: %s\n", msg);
419 else if (err & ERR_WARN)
420 ha_warning("Resuming listener: %s\n", msg);
421
422 if (err & (ERR_FATAL | ERR_ABORT)) {
423 ret = 0;
424 goto end;
425 }
426 }
427
428 if (l->state < LI_PAUSED) {
429 ret = 0;
430 goto end;
431 }
432
433 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
434 l->rx.proto->rx_resume(&l->rx) <= 0)
435 ret = 0;
436 end:
437 return ret;
438}
439
440
Willy Tarreaube58c382011-07-24 18:28:10 +0200441/* This function tries to temporarily disable a listener, depending on the OS
442 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
443 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
444 * closes upon SHUT_WR and refuses to rebind. So a common validation path
445 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
446 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGON8283d592023-02-13 17:45:08 +0100447 * suspend() may totally stop a listener if it doesn't support the PAUSED
448 * state, in which case state will be set to ASSIGNED.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100449 * It will need to operate under the proxy's lock and the listener's lock.
450 * The caller is responsible for indicating in lpx, lli whether the respective
451 * locks are already held (non-zero) or not (zero) so that the function pick
452 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200453 */
Aurelien DARRAGON8283d592023-02-13 17:45:08 +0100454int suspend_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200455{
Willy Tarreau58651b42020-09-24 16:03:29 +0200456 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200457 int ret = 1;
458
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200459 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200460 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
461
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100462 if (!lli)
463 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200464
Willy Tarreau02e19752020-09-23 17:17:22 +0200465 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
466 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
467 goto end;
468
Aurelien DARRAGON3b78de12023-02-14 08:51:14 +0100469 if (!(l->flags & LI_F_FINALIZED) || l->state <= LI_PAUSED)
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200470 goto end;
471
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100472 if (l->rx.proto->suspend) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200473 ret = l->rx.proto->suspend(l);
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100474 /* if the suspend() fails, we don't want to change the
475 * current listener state
476 */
477 if (ret < 0)
478 goto end;
479 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200480
Willy Tarreau2b718102021-04-21 07:32:39 +0200481 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200482
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100483 /* ret == 0 means that the suspend() has been turned into
484 * an unbind(), meaning the listener is now stopped (ie: ABNS), we need
485 * to report this state change properly
486 */
487 listener_set_state(l, ((ret) ? LI_PAUSED : LI_ASSIGNED));
488
Aurelien DARRAGON8283d592023-02-13 17:45:08 +0100489 if (px && !(l->flags & LI_F_SUSPENDED))
490 px->li_suspended++;
491 l->flags |= LI_F_SUSPENDED;
492
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100493 /* at this point, everything is under control, no error should be
494 * returned to calling function
495 */
496 ret = 1;
Willy Tarreau58651b42020-09-24 16:03:29 +0200497
498 if (px && !px->li_ready) {
499 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
500 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
501 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200502 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100503 if (!lli)
504 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200505
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200506 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200507 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
508
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200509 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200510}
511
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200512/* This function tries to resume a temporarily disabled listener. Paused, full,
513 * limited and disabled listeners are handled, which means that this function
514 * may replace enable_listener(). The resulting state will either be LI_READY
515 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200516 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200517 * foreground mode, and are ignored. If the listener was only in the assigned
Aurelien DARRAGON8283d592023-02-13 17:45:08 +0100518 * state, it's totally rebound. This can happen if a suspend() has completely
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200519 * stopped it. If the resume fails, 0 is returned and an error might be
520 * displayed.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100521 * It will need to operate under the proxy's lock and the listener's lock.
522 * The caller is responsible for indicating in lpx, lli whether the respective
523 * locks are already held (non-zero) or not (zero) so that the function pick
524 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200525 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100526int resume_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200527{
Willy Tarreau58651b42020-09-24 16:03:29 +0200528 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200529 int ret = 1;
530
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200531 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200532 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
533
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100534 if (!lli)
535 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200536
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200537 /* check that another thread didn't to the job in parallel (e.g. at the
538 * end of listen_accept() while we'd come from dequeue_all_listeners().
539 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200540 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200541 goto end;
542
William Lallemand095ba4c2017-06-01 17:38:50 +0200543 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200544 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200545 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100546
Aurelien DARRAGON3b78de12023-02-14 08:51:14 +0100547 if (!(l->flags & LI_F_FINALIZED) || l->state == LI_READY)
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200548 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200549
Aurelien DARRAGON4713adc2023-02-07 13:26:14 +0100550 if (l->rx.proto->resume) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200551 ret = l->rx.proto->resume(l);
Aurelien DARRAGON4713adc2023-02-07 13:26:14 +0100552 if (!ret)
553 goto end; /* failure to resume */
554 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200555
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100556 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200557 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200558 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200559 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200560 }
561
Willy Tarreau4b51f422020-09-25 20:32:28 +0200562 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200563 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200564
565 done:
Aurelien DARRAGON8283d592023-02-13 17:45:08 +0100566 if (px && (l->flags & LI_F_SUSPENDED))
567 px->li_suspended--;
568 l->flags &= ~LI_F_SUSPENDED;
569
Aurelien DARRAGON77419282023-02-07 12:36:27 +0100570 if (px && !px->li_suspended) {
Willy Tarreau58651b42020-09-24 16:03:29 +0200571 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
572 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
573 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200574 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100575 if (!lli)
576 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200577
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200578 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200579 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
580
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200581 return ret;
582}
583
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100584/* Same as resume_listener(), but will only work to resume from
585 * LI_FULL or LI_LIMITED states because we try to relax listeners that
586 * were temporarily restricted and not to resume inactive listeners that
587 * may have been paused or completely stopped in the meantime.
588 * Returns positive value for success and 0 for failure.
589 * It will need to operate under the proxy's lock and the listener's lock.
590 * The caller is responsible for indicating in lpx, lli whether the respective
591 * locks are already held (non-zero) or not (zero) so that the function pick
592 * the missing ones, in this order.
593 */
594int relax_listener(struct listener *l, int lpx, int lli)
595{
Christopher Faulet793a4b52023-07-20 14:53:50 +0200596 struct proxy *px = l->bind_conf->frontend;
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100597 int ret = 1;
598
Christopher Faulet793a4b52023-07-20 14:53:50 +0200599 if (!lpx && px)
600 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
601
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100602 if (!lli)
603 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
604
605 if (l->state != LI_FULL && l->state != LI_LIMITED)
606 goto end; /* listener may be suspended or even stopped */
Christopher Faulet793a4b52023-07-20 14:53:50 +0200607 ret = resume_listener(l, 1, 1);
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100608
609 end:
610 if (!lli)
611 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet793a4b52023-07-20 14:53:50 +0200612
613 if (!lpx && px)
614 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
615
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100616 return ret;
617}
618
Willy Tarreau87b09662015-04-03 00:22:06 +0200619/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100620 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200621 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200622static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200623{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100624 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200625 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200626 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100627 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200628 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200629 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100630 }
Willy Tarreau62793712011-07-24 19:23:38 +0200631 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100632 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200633}
634
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200635/* Marks a ready listener as limited so that we only try to re-enable it when
636 * resources are free again. It will be queued into the specified queue.
637 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200638static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200639{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100640 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200641 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200642 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200643 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200644 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200645 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100646 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200647}
648
Willy Tarreau241797a2019-12-10 14:10:52 +0100649/* Dequeues all listeners waiting for a resource the global wait queue */
650void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200651{
Willy Tarreau01abd022019-02-28 10:27:18 +0100652 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200653
Willy Tarreau241797a2019-12-10 14:10:52 +0100654 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200655 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100656 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200657 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100658 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200659 }
660}
661
Willy Tarreau241797a2019-12-10 14:10:52 +0100662/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
663void dequeue_proxy_listeners(struct proxy *px)
664{
665 struct listener *listener;
666
667 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
668 /* This cannot fail because the listeners are by definition in
669 * the LI_LIMITED state.
670 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100671 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100672 }
673}
674
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200675
676/* default function used to unbind a listener. This is for use by standard
677 * protocols working on top of accepted sockets. The receiver's rx_unbind()
678 * will automatically be used after the listener is disabled if the socket is
679 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100680 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200681void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100682{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200683 if (listener->state <= LI_ASSIGNED)
684 goto out_close;
685
686 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200687 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200688 goto out_close;
689 }
690
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200691 if (listener->state >= LI_READY) {
692 listener->rx.proto->disable(listener);
693 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200694 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200695 }
696
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200697 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200698 if (listener->rx.flags & RX_F_BOUND)
699 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200700}
701
702/* This function closes the listening socket for the specified listener,
703 * provided that it's already in a listening state. The protocol's unbind()
704 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
705 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
706 * the receiver is unbound. Must be called with the lock held.
707 */
708void do_unbind_listener(struct listener *listener)
709{
Willy Tarreau2b718102021-04-21 07:32:39 +0200710 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200711
712 if (listener->rx.proto->unbind)
713 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200714
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200715 /* we may have to downgrade the listener if the rx was closed */
716 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200717 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100718}
719
Olivier Houchard1fc05162017-04-06 01:05:05 +0200720/* This function closes the listening socket for the specified listener,
721 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200722 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
723 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100724 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200725 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100726void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200727{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100728 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200729 do_unbind_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100730 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200731}
732
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200733/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
734 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200735 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200736 * passed in <proto> must be usable on this family. The protocol's default iocb
737 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200738 * listeners is automatically increased by the number of listeners created. It
739 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200740 */
741int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200742 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200743{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200744 struct listener *l;
745 int port;
746
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200747 for (port = portl; port <= porth; port++) {
748 l = calloc(1, sizeof(*l));
749 if (!l) {
750 memprintf(err, "out of memory");
751 return 0;
752 }
753 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200754 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
755 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200756 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200757 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200758 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200759 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200760 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100761
Willy Tarreau37159062020-08-27 07:48:42 +0200762 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100763 if (proto->fam->set_port)
764 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100765
Olivier Houchard859dc802019-08-08 15:47:21 +0200766 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200767 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200768
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100769 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200770
Willy Tarreau909c23b2020-09-15 13:50:58 +0200771 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200772 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100773
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100774 l->extra_counters = NULL;
775
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100776 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200777 _HA_ATOMIC_INC(&jobs);
778 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200779 }
780 return 1;
781}
782
Willy Tarreau1a64d162007-10-28 22:26:05 +0100783/* Delete a listener from its protocol's list of listeners. The listener's
784 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200785 * number of listeners is updated, as well as the global number of listeners
786 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200787 * is a low-level function expected to be called with the proto_lock and the
788 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100789 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200790void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100791{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100792 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200793 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200794 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200795 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200796 _HA_ATOMIC_DEC(&jobs);
797 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100798 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200799}
800
801/* Delete a listener from its protocol's list of listeners (please check
802 * __delete_listener() above). The proto_lock and the listener's lock will
803 * be grabbed in this order.
804 */
805void delete_listener(struct listener *listener)
806{
807 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100808 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200809 __delete_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100810 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200811 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100812}
813
Willy Tarreaue2711c72019-02-27 15:39:41 +0100814/* Returns a suitable value for a listener's backlog. It uses the listener's,
815 * otherwise the frontend's backlog, otherwise the listener's maxconn,
816 * otherwise the frontend's maxconn, otherwise 1024.
817 */
818int listener_backlog(const struct listener *l)
819{
820 if (l->backlog)
821 return l->backlog;
822
823 if (l->bind_conf->frontend->backlog)
824 return l->bind_conf->frontend->backlog;
825
826 if (l->maxconn)
827 return l->maxconn;
828
829 if (l->bind_conf->frontend->maxconn)
830 return l->bind_conf->frontend->maxconn;
831
832 return 1024;
833}
834
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200835/* This function is called on a read event from a listening socket, corresponding
836 * to an accept. It tries to accept as many connections as possible, and for each
837 * calls the listener's accept handler (generally the frontend's accept handler).
838 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200839void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200840{
Willy Tarreau83efc322020-10-14 17:37:17 +0200841 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100842 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200843 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100844 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100845 int next_feconn = 0;
846 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200847 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200848 int ret;
849
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100850 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200851
852 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
853 * illimited, but it is probably enough.
854 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100855 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200856
Willy Tarreau93e7c002013-10-07 18:51:07 +0200857 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
858 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200859
860 if (unlikely(!max)) {
861 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200862 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100863 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200864 }
865
866 if (max_accept > max)
867 max_accept = max;
868 }
869
870 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200871 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
872
873 if (unlikely(!max)) {
874 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200875 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100876 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200877 }
878
879 if (max_accept > max)
880 max_accept = max;
881 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200882#ifdef USE_OPENSSL
883 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
884 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200885
Willy Tarreaue43d5322013-10-07 20:01:52 +0200886 if (unlikely(!max)) {
887 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200888 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100889 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200890 }
891
892 if (max_accept > max)
893 max_accept = max;
894 }
895#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200896 if (p && p->fe_sps_lim) {
897 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
898
899 if (unlikely(!max)) {
900 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100901 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
902 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200903 }
904
905 if (max_accept > max)
906 max_accept = max;
907 }
908
909 /* Note: if we fail to allocate a connection because of configured
910 * limits, we'll schedule a new attempt worst 1 second later in the
911 * worst case. If we fail due to system limits or temporary resource
912 * shortage, we try again 100ms later in the worst case.
913 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100914 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200915 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200916 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200917 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200918
Willy Tarreau82c97892019-02-27 19:32:32 +0100919 /* pre-increase the number of connections without going too far.
920 * We process the listener, then the proxy, then the process.
921 * We know which ones to unroll based on the next_xxx value.
922 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100923 do {
924 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100925 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100926 /* the listener was marked full or another
927 * thread is going to do it.
928 */
929 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100930 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100931 goto end;
932 }
933 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000934 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100935
Willy Tarreau82c97892019-02-27 19:32:32 +0100936 if (p) {
937 do {
938 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100939 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100940 /* the frontend was marked full or another
941 * thread is going to do it.
942 */
943 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100944 expire = TICK_ETERNITY;
945 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100946 }
947 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100948 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200949 }
950
Willy Tarreau82c97892019-02-27 19:32:32 +0100951 if (!(l->options & LI_O_UNLIMITED)) {
952 do {
953 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100954 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100955 /* the process was marked full or another
956 * thread is going to do it.
957 */
958 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100959 expire = tick_add(now_ms, 1000); /* try again in 1 second */
960 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100961 }
962 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000963 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200964 }
965
Willy Tarreaud276ee52022-02-01 16:37:00 +0100966 /* be careful below, the listener might be shutting down in
967 * another thread on error and we must not dereference its
968 * FD without a bit of protection.
969 */
970 cli_conn = NULL;
971 status = CO_AC_PERMERR;
972
973 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
974 if (l->rx.flags & RX_F_BOUND)
975 cli_conn = l->rx.proto->accept_conn(l, &status);
976 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
977
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200978 if (!cli_conn) {
979 switch (status) {
980 case CO_AC_DONE:
981 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100982
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200983 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200984 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100985 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200986 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100987 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200988 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100989 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200990
991 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100992 max_accept = 0;
993 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100994
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200995 default:
996 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200997 }
998 }
999
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001000 /* The connection was accepted, it must be counted as such */
1001 if (l->counters)
1002 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
1003
Willy Tarreauee3ec402022-05-09 20:41:54 +02001004 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +01001005 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreauee3ec402022-05-09 20:41:54 +02001006 proxy_inc_fe_conn_ctr(l, p);
1007 }
Willy Tarreau82c97892019-02-27 19:32:32 +01001008
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001009 if (!(l->options & LI_O_UNLIMITED)) {
1010 count = update_freq_ctr(&global.conn_per_sec, 1);
1011 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001012 }
1013
Willy Tarreau4781b152021-04-06 13:53:36 +02001014 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +02001015
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001016 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001017 send_log(p, LOG_EMERG,
1018 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
1019 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +02001020 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +02001021 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001022 expire = tick_add(now_ms, 1000); /* try again in 1 second */
1023 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001024 }
1025
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001026 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +01001027 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
1028 * allows the error path not to rollback on nbconn. It's more
1029 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001030 */
1031 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +01001032 next_feconn = 0;
1033 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001034
Willy Tarreau83efc322020-10-14 17:37:17 +02001035
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001036#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +02001037 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +01001038 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001039 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001040 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001041
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001042 /* The principle is that we have two running indexes,
1043 * each visiting in turn all threads bound to this
1044 * listener. The connection will be assigned to the one
1045 * with the least connections, and the other one will
1046 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001047 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001048 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001049 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001050
1051 /* keep a copy for the final update. thr_idx is composite
1052 * and made of (t2<<16) + t1.
1053 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001054 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001055 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001056 unsigned long m1, m2;
1057 int q1, q2;
1058
1059 t2 = t1 = t0;
1060 t2 >>= 16;
1061 t1 &= 0xFFFF;
1062
1063 /* t1 walks low to high bits ;
1064 * t2 walks high to low.
1065 */
1066 m1 = mask >> t1;
1067 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1068
Willy Tarreau85d04242019-04-16 18:09:13 +02001069 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001070 m1 &= ~1UL;
1071 if (!m1) {
1072 m1 = mask;
1073 t1 = 0;
1074 }
1075 t1 += my_ffsl(m1) - 1;
1076 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001077
Willy Tarreau85d04242019-04-16 18:09:13 +02001078 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1079 /* highest bit not set */
1080 if (!m2)
1081 m2 = mask;
1082
1083 t2 = my_flsl(m2) - 1;
1084 }
1085
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001086 /* now we have two distinct thread IDs belonging to the mask */
1087 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
1088 if (q1 >= ACCEPT_QUEUE_SIZE)
1089 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001090
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001091 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1092 if (q2 >= ACCEPT_QUEUE_SIZE)
1093 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001094
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001095 /* we have 3 possibilities now :
1096 * q1 < q2 : t1 is less loaded than t2, so we pick it
1097 * and update t2 (since t1 might still be
1098 * lower than another thread)
1099 * q1 > q2 : t2 is less loaded than t1, so we pick it
1100 * and update t1 (since t2 might still be
1101 * lower than another thread)
1102 * q1 = q2 : both are equally loaded, thus we pick t1
1103 * and update t1 as it will become more loaded
1104 * than t2.
1105 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001106
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001107 q1 += l->thr_conn[t1];
1108 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001109
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001110 if (q1 - q2 < 0) {
1111 t = t1;
1112 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1113 }
1114 else if (q1 - q2 > 0) {
1115 t = t2;
1116 t1++;
1117 if (t1 >= LONGBITS)
1118 t1 = 0;
1119 }
1120 else {
1121 t = t1;
1122 t1++;
1123 if (t1 >= LONGBITS)
1124 t1 = 0;
1125 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001126
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001127 /* new value for thr_idx */
1128 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001129 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001130
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001131 /* We successfully selected the best thread "t" for this
1132 * connection. We use deferred accepts even if it's the
1133 * local thread because tests show that it's the best
1134 * performing model, likely due to better cache locality
1135 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001136 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001137 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001138 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001139 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001140 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001141 continue;
1142 }
1143 /* If the ring is full we do a synchronous accept on
1144 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001145 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001146 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001147 }
1148#endif // USE_THREAD
1149
Willy Tarreau4781b152021-04-06 13:53:36 +02001150 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001151 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001152 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001153 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001154 * we just have to ignore it (ret == 0) or it's a critical
1155 * error due to a resource shortage, and we must stop the
1156 * listener (ret < 0).
1157 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001158 if (ret == 0) /* successful termination */
1159 continue;
1160
Willy Tarreaubb660302014-05-07 19:47:02 +02001161 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001162 }
1163
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001164 /* increase the per-process number of cumulated sessions, this
1165 * may only be done once l->accept() has accepted the connection.
1166 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001167 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001168 count = update_freq_ctr(&global.sess_per_sec, 1);
1169 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001170 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001171#ifdef USE_OPENSSL
1172 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001173 count = update_freq_ctr(&global.ssl_per_sec, 1);
1174 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001175 }
1176#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001177
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001178 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001179 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001180
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001181 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001182 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001183 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001184
Willy Tarreau82c97892019-02-27 19:32:32 +01001185 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001186 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001187
1188 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001189 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001190
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001191 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001192 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001193 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1194 (!tick_isset(global_listener_queue_task->expire) ||
1195 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001196 /* at least one thread has to this when quitting */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001197 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001198
Willy Tarreau02757d02021-01-28 18:07:24 +01001199 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001200 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001201
Olivier Houchard859dc802019-08-08 15:47:21 +02001202 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001203 (!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 +01001204 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001205 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001206 return;
1207
1208 transient_error:
1209 /* pause the listener for up to 100 ms */
1210 expire = tick_add(now_ms, 100);
1211
Willy Tarreau258b3512020-10-13 17:46:05 +02001212 /* This may be a shared socket that was paused by another process.
1213 * Let's put it to pause in this case.
1214 */
1215 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGON8283d592023-02-13 17:45:08 +01001216 suspend_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001217 goto end;
1218 }
1219
Willy Tarreau0591bf72019-12-10 12:01:21 +01001220 limit_global:
1221 /* (re-)queue the listener to the global queue and set it to expire no
1222 * later than <expire> ahead. The listener turns to LI_LIMITED.
1223 */
1224 limit_listener(l, &global_listener_queue);
Christopher Faulete088fb32022-11-17 14:40:20 +01001225 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001226 task_schedule(global_listener_queue_task, expire);
Christopher Faulete088fb32022-11-17 14:40:20 +01001227 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001228 goto end;
1229
1230 limit_proxy:
1231 /* (re-)queue the listener to the proxy's queue and set it to expire no
1232 * later than <expire> ahead. The listener turns to LI_LIMITED.
1233 */
1234 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001235 if (p->task && tick_isset(expire))
1236 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001237 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001238}
1239
Willy Tarreau05f50472017-09-15 09:19:58 +02001240/* Notify the listener that a connection initiated from it was released. This
1241 * is used to keep the connection count consistent and to possibly re-open
1242 * listening when it was limited.
1243 */
1244void listener_release(struct listener *l)
1245{
1246 struct proxy *fe = l->bind_conf->frontend;
1247
1248 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001249 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001250 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001251 _HA_ATOMIC_DEC(&fe->feconn);
1252 _HA_ATOMIC_DEC(&l->nbconn);
1253 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001254
1255 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001256 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001257
Willy Tarreau02757d02021-01-28 18:07:24 +01001258 /* Dequeues all of the listeners waiting for a resource */
1259 dequeue_all_listeners();
1260
Aurelien DARRAGON15c43862022-09-12 09:26:21 +02001261 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001262 (!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 +01001263 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001264}
1265
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001266/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1267static int listener_queue_init()
1268{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001269 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1270 if (!global_listener_queue_task) {
1271 ha_alert("Out of memory when initializing global listener queue\n");
1272 return ERR_FATAL|ERR_ABORT;
1273 }
1274 /* very simple initialization, users will queue the task if needed */
1275 global_listener_queue_task->context = NULL; /* not even a context! */
1276 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulete088fb32022-11-17 14:40:20 +01001277 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001278
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001279 return 0;
1280}
1281
1282static void listener_queue_deinit()
1283{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001284 task_destroy(global_listener_queue_task);
1285 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001286}
1287
1288REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1289REGISTER_POST_DEINIT(listener_queue_deinit);
1290
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001291
1292/* This is the global management task for listeners. It enables listeners waiting
1293 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001294 * a while. It is designed to be called as a task. It's exported so that it's easy
1295 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001296 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001297struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001298{
1299 /* If there are still too many concurrent connections, let's wait for
1300 * some of them to go away. We don't need to re-arm the timer because
1301 * each of them will scan the queue anyway.
1302 */
1303 if (unlikely(actconn >= global.maxconn))
1304 goto out;
1305
1306 /* We should periodically try to enable listeners waiting for a global
1307 * resource here, because it is possible, though very unlikely, that
1308 * they have been blocked by a temporary lack of global resource such
1309 * as a file descriptor or memory and that the temporary condition has
1310 * disappeared.
1311 */
1312 dequeue_all_listeners();
1313
1314 out:
Christopher Faulete088fb32022-11-17 14:40:20 +01001315 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001316 t->expire = TICK_ETERNITY;
Christopher Faulete088fb32022-11-17 14:40:20 +01001317 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001318 task_queue(t);
1319 return t;
1320}
1321
Willy Tarreau26982662012-09-12 23:17:10 +02001322/*
1323 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1324 * parsing sessions.
1325 */
1326void bind_register_keywords(struct bind_kw_list *kwl)
1327{
Willy Tarreau2b718102021-04-21 07:32:39 +02001328 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001329}
1330
1331/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1332 * keyword is found with a NULL ->parse() function, then an attempt is made to
1333 * find one with a valid ->parse() function. This way it is possible to declare
1334 * platform-dependant, known keywords as NULL, then only declare them as valid
1335 * if some options are met. Note that if the requested keyword contains an
1336 * opening parenthesis, everything from this point is ignored.
1337 */
1338struct bind_kw *bind_find_kw(const char *kw)
1339{
1340 int index;
1341 const char *kwend;
1342 struct bind_kw_list *kwl;
1343 struct bind_kw *ret = NULL;
1344
1345 kwend = strchr(kw, '(');
1346 if (!kwend)
1347 kwend = kw + strlen(kw);
1348
1349 list_for_each_entry(kwl, &bind_keywords.list, list) {
1350 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1351 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1352 kwl->kw[index].kw[kwend-kw] == 0) {
1353 if (kwl->kw[index].parse)
1354 return &kwl->kw[index]; /* found it !*/
1355 else
1356 ret = &kwl->kw[index]; /* may be OK */
1357 }
1358 }
1359 }
1360 return ret;
1361}
1362
Willy Tarreau8638f482012-09-18 18:01:17 +02001363/* Dumps all registered "bind" keywords to the <out> string pointer. The
1364 * unsupported keywords are only dumped if their supported form was not
1365 * found.
1366 */
1367void bind_dump_kws(char **out)
1368{
1369 struct bind_kw_list *kwl;
1370 int index;
1371
Christopher Faulet784063e2020-05-18 12:14:18 +02001372 if (!out)
1373 return;
1374
Willy Tarreau8638f482012-09-18 18:01:17 +02001375 *out = NULL;
1376 list_for_each_entry(kwl, &bind_keywords.list, list) {
1377 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1378 if (kwl->kw[index].parse ||
1379 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001380 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1381 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001382 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001383 kwl->kw[index].skip ? " <arg>" : "",
1384 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001385 }
1386 }
1387 }
1388}
1389
Willy Tarreau433b05f2021-03-12 10:14:07 +01001390/* Try to find in srv_keyword the word that looks closest to <word> by counting
1391 * transitions between letters, digits and other characters. Will return the
1392 * best matching word if found, otherwise NULL.
1393 */
1394const char *bind_find_best_kw(const char *word)
1395{
1396 uint8_t word_sig[1024];
1397 uint8_t list_sig[1024];
1398 const struct bind_kw_list *kwl;
1399 const char *best_ptr = NULL;
1400 int dist, best_dist = INT_MAX;
1401 int index;
1402
1403 make_word_fingerprint(word_sig, word);
1404 list_for_each_entry(kwl, &bind_keywords.list, list) {
1405 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1406 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1407 dist = word_fingerprint_distance(word_sig, list_sig);
1408 if (dist < best_dist) {
1409 best_dist = dist;
1410 best_ptr = kwl->kw[index].kw;
1411 }
1412 }
1413 }
1414
1415 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1416 best_ptr = NULL;
1417
1418 return best_ptr;
1419}
1420
Willy Tarreau645513a2010-05-24 20:55:15 +02001421/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001422/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001423/************************************************************************/
1424
Willy Tarreaua5e37562011-12-16 17:06:15 +01001425/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001426static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001427smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001428{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001429 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001430 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001431 return 1;
1432}
1433
Willy Tarreaua5e37562011-12-16 17:06:15 +01001434/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001435static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001436smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001437{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001438 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001439 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001440 return 1;
1441}
Jerome Magnineb421b22020-03-27 22:08:40 +01001442static int
1443smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1444{
1445 smp->data.u.str.area = smp->sess->listener->name;
1446 if (!smp->data.u.str.area)
1447 return 0;
1448
1449 smp->data.type = SMP_T_STR;
1450 smp->flags = SMP_F_CONST;
1451 smp->data.u.str.data = strlen(smp->data.u.str.area);
1452 return 1;
1453}
Willy Tarreau645513a2010-05-24 20:55:15 +02001454
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001455/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001456static 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 +02001457{
1458 struct listener *l;
1459
Willy Tarreau4348fad2012-09-20 16:48:07 +02001460 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001461 l->options |= LI_O_ACC_PROXY;
1462
1463 return 0;
1464}
1465
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001466/* parse the "accept-netscaler-cip" bind keyword */
1467static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1468{
1469 struct listener *l;
1470 uint32_t val;
1471
1472 if (!*args[cur_arg + 1]) {
1473 memprintf(err, "'%s' : missing value", args[cur_arg]);
1474 return ERR_ALERT | ERR_FATAL;
1475 }
1476
1477 val = atol(args[cur_arg + 1]);
1478 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001479 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001480 return ERR_ALERT | ERR_FATAL;
1481 }
1482
1483 list_for_each_entry(l, &conf->listeners, by_bind) {
1484 l->options |= LI_O_ACC_CIP;
1485 conf->ns_cip_magic = val;
1486 }
1487
1488 return 0;
1489}
1490
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001491/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001492static 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 +02001493{
1494 struct listener *l;
1495 int val;
1496
1497 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001498 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001499 return ERR_ALERT | ERR_FATAL;
1500 }
1501
1502 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001503 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001504 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001505 return ERR_ALERT | ERR_FATAL;
1506 }
1507
Willy Tarreau4348fad2012-09-20 16:48:07 +02001508 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001509 l->backlog = val;
1510
1511 return 0;
1512}
1513
1514/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001515static 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 +02001516{
1517 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001518 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001519 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001520
Willy Tarreau4348fad2012-09-20 16:48:07 +02001521 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001522 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001523 return ERR_ALERT | ERR_FATAL;
1524 }
1525
1526 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001527 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001528 return ERR_ALERT | ERR_FATAL;
1529 }
1530
Willy Tarreau4348fad2012-09-20 16:48:07 +02001531 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001532 new->luid = strtol(args[cur_arg + 1], &error, 10);
1533 if (*error != '\0') {
1534 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1535 return ERR_ALERT | ERR_FATAL;
1536 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001537 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001538
Willy Tarreau4348fad2012-09-20 16:48:07 +02001539 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001540 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001541 return ERR_ALERT | ERR_FATAL;
1542 }
1543
Willy Tarreau4348fad2012-09-20 16:48:07 +02001544 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001545 if (node) {
1546 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001547 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1548 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1549 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001550 return ERR_ALERT | ERR_FATAL;
1551 }
1552
Willy Tarreau4348fad2012-09-20 16:48:07 +02001553 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001554 return 0;
1555}
1556
1557/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001558static 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 +02001559{
1560 struct listener *l;
1561 int val;
1562
1563 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001564 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001565 return ERR_ALERT | ERR_FATAL;
1566 }
1567
1568 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001569 if (val < 0) {
1570 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001571 return ERR_ALERT | ERR_FATAL;
1572 }
1573
Willy Tarreau4348fad2012-09-20 16:48:07 +02001574 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001575 l->maxconn = val;
1576
1577 return 0;
1578}
1579
1580/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001581static 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 +02001582{
1583 struct listener *l;
1584
1585 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001586 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001587 return ERR_ALERT | ERR_FATAL;
1588 }
1589
Willy Tarreau4348fad2012-09-20 16:48:07 +02001590 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001591 l->name = strdup(args[cur_arg + 1]);
1592
1593 return 0;
1594}
1595
1596/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001597static 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 +02001598{
1599 struct listener *l;
1600 int val;
1601
1602 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001603 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001604 return ERR_ALERT | ERR_FATAL;
1605 }
1606
1607 val = atol(args[cur_arg + 1]);
1608 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001609 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001610 return ERR_ALERT | ERR_FATAL;
1611 }
1612
Willy Tarreau4348fad2012-09-20 16:48:07 +02001613 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001614 l->nice = val;
1615
1616 return 0;
1617}
1618
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001619/* parse the "process" bind keyword */
1620static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1621{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001622 char *slash;
1623 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001624
Christopher Fauletc644fa92017-11-23 22:44:11 +01001625 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1626 *slash = 0;
1627
Willy Tarreauff9c9142019-02-07 10:39:36 +01001628 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001629 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001630 return ERR_ALERT | ERR_FATAL;
1631 }
1632
Christopher Fauletc644fa92017-11-23 22:44:11 +01001633 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001634 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001635 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1636 return ERR_ALERT | ERR_FATAL;
1637 }
1638 *slash = '/';
1639 }
1640
Willy Tarreaue26993c2020-09-03 07:18:55 +02001641 conf->settings.bind_proc |= proc;
1642 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001643 return 0;
1644}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001645
Christopher Fauleta717b992018-04-10 14:43:00 +02001646/* parse the "proto" bind keyword */
1647static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1648{
1649 struct ist proto;
1650
1651 if (!*args[cur_arg + 1]) {
1652 memprintf(err, "'%s' : missing value", args[cur_arg]);
1653 return ERR_ALERT | ERR_FATAL;
1654 }
1655
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001656 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001657 conf->mux_proto = get_mux_proto(proto);
1658 if (!conf->mux_proto) {
1659 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1660 return ERR_ALERT | ERR_FATAL;
1661 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001662 return 0;
1663}
1664
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001665/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1666static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001667 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001668 char **err)
1669{
1670 if (too_many_args(1, args, err, NULL))
1671 return -1;
1672
1673 if (strcmp(args[1], "on") == 0)
1674 global.tune.options |= GTUNE_LISTENER_MQ;
1675 else if (strcmp(args[1], "off") == 0)
1676 global.tune.options &= ~GTUNE_LISTENER_MQ;
1677 else {
1678 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1679 return -1;
1680 }
1681 return 0;
1682}
1683
Willy Tarreau61612d42012-04-19 18:42:05 +02001684/* Note: must not be declared <const> as its list will be overwritten.
1685 * Please take care of keeping this list alphabetically sorted.
1686 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001687static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001688 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1689 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001690 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001691 { /* END */ },
1692}};
1693
Willy Tarreau0108d902018-11-25 19:14:37 +01001694INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1695
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001696/* Note: must not be declared <const> as its list will be overwritten.
1697 * Please take care of keeping this list alphabetically sorted.
1698 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001699static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001700 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001701}};
1702
Willy Tarreau0108d902018-11-25 19:14:37 +01001703INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1704
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001705/* Note: must not be declared <const> as its list will be overwritten.
1706 * Please take care of keeping this list alphabetically sorted, doing so helps
1707 * all code contributors.
1708 * Optional keywords are also declared with a NULL ->parse() function so that
1709 * the config parser can report an appropriate error when a known keyword was
1710 * not enabled.
1711 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001712static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001713 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001714 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1715 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1716 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1717 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1718 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1719 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001720 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001721 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001722 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001723}};
1724
Willy Tarreau0108d902018-11-25 19:14:37 +01001725INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1726
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001727/* config keyword parsers */
1728static struct cfg_kw_list cfg_kws = {ILH, {
1729 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1730 { 0, NULL, NULL }
1731}};
1732
1733INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1734
Willy Tarreau645513a2010-05-24 20:55:15 +02001735/*
1736 * Local variables:
1737 * c-indent-level: 8
1738 * c-basic-offset: 8
1739 * End:
1740 */