blob: e262e85b0aafb747e21203251865a15459448aee [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];
394 int err;
395
396 err = l->rx.proto->listen(l, msg, sizeof(msg));
397 if (err & ERR_ALERT)
398 ha_alert("Resuming listener: %s\n", msg);
399 else if (err & ERR_WARN)
400 ha_warning("Resuming listener: %s\n", msg);
401
402 if (err & (ERR_FATAL | ERR_ABORT)) {
403 ret = 0;
404 goto end;
405 }
406 }
407
408 if (l->state < LI_PAUSED) {
409 ret = 0;
410 goto end;
411 }
412
413 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
414 l->rx.proto->rx_resume(&l->rx) <= 0)
415 ret = 0;
416 end:
417 return ret;
418}
419
420
Willy Tarreaube58c382011-07-24 18:28:10 +0200421/* This function tries to temporarily disable a listener, depending on the OS
422 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
423 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
424 * closes upon SHUT_WR and refuses to rebind. So a common validation path
425 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
426 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100427 * pause() may totally stop a listener if it doesn't support the PAUSED state,
428 * in which case state will be set to ASSIGNED.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100429 * It will need to operate under the proxy's lock and the listener's lock.
430 * The caller is responsible for indicating in lpx, lli whether the respective
431 * locks are already held (non-zero) or not (zero) so that the function pick
432 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200433 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100434int pause_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200435{
Willy Tarreau58651b42020-09-24 16:03:29 +0200436 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200437 int ret = 1;
438
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200439 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200440 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
441
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100442 if (!lli)
443 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200444
Willy Tarreau02e19752020-09-23 17:17:22 +0200445 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
446 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
447 goto end;
448
Aurelien DARRAGON3b78de12023-02-14 08:51:14 +0100449 if (!(l->flags & LI_F_FINALIZED) || l->state <= LI_PAUSED)
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200450 goto end;
451
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100452 if (l->rx.proto->suspend) {
Willy Tarreaue03204c2020-10-09 17:02:21 +0200453 ret = l->rx.proto->suspend(l);
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100454 /* if the suspend() fails, we don't want to change the
455 * current listener state
456 */
457 if (ret < 0)
458 goto end;
459 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200460
Willy Tarreau2b718102021-04-21 07:32:39 +0200461 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200462
Aurelien DARRAGON39f16152023-02-07 11:23:38 +0100463 /* ret == 0 means that the suspend() has been turned into
464 * an unbind(), meaning the listener is now stopped (ie: ABNS), we need
465 * to report this state change properly
466 */
467 listener_set_state(l, ((ret) ? LI_PAUSED : LI_ASSIGNED));
468
469 /* at this point, everything is under control, no error should be
470 * returned to calling function
471 */
472 ret = 1;
Willy Tarreau58651b42020-09-24 16:03:29 +0200473
474 if (px && !px->li_ready) {
475 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
476 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
477 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200478 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100479 if (!lli)
480 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200481
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200482 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200483 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
484
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200485 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200486}
487
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200488/* This function tries to resume a temporarily disabled listener. Paused, full,
489 * limited and disabled listeners are handled, which means that this function
490 * may replace enable_listener(). The resulting state will either be LI_READY
491 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200492 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200493 * foreground mode, and are ignored. If the listener was only in the assigned
494 * state, it's totally rebound. This can happen if a pause() has completely
495 * stopped it. If the resume fails, 0 is returned and an error might be
496 * displayed.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100497 * It will need to operate under the proxy's lock and the listener's lock.
498 * The caller is responsible for indicating in lpx, lli whether the respective
499 * locks are already held (non-zero) or not (zero) so that the function pick
500 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200501 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100502int resume_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200503{
Willy Tarreau58651b42020-09-24 16:03:29 +0200504 struct proxy *px = l->bind_conf->frontend;
505 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200506 int ret = 1;
507
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200508 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200509 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
510
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100511 if (!lli)
512 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200513
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200514 /* check that another thread didn't to the job in parallel (e.g. at the
515 * end of listen_accept() while we'd come from dequeue_all_listeners().
516 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200517 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200518 goto end;
519
William Lallemand095ba4c2017-06-01 17:38:50 +0200520 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200521 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200522 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100523
Aurelien DARRAGON3b78de12023-02-14 08:51:14 +0100524 if (!(l->flags & LI_F_FINALIZED) || l->state == LI_READY)
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200525 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200526
Willy Tarreaue03204c2020-10-09 17:02:21 +0200527 if (l->rx.proto->resume)
528 ret = l->rx.proto->resume(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200529
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100530 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200531 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200532 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200533 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200534 }
535
Willy Tarreau4b51f422020-09-25 20:32:28 +0200536 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200537 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200538
539 done:
540 if (was_paused && !px->li_paused) {
541 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
542 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
543 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200544 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100545 if (!lli)
546 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200547
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200548 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200549 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
550
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200551 return ret;
552}
553
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100554/* Same as resume_listener(), but will only work to resume from
555 * LI_FULL or LI_LIMITED states because we try to relax listeners that
556 * were temporarily restricted and not to resume inactive listeners that
557 * may have been paused or completely stopped in the meantime.
558 * Returns positive value for success and 0 for failure.
559 * It will need to operate under the proxy's lock and the listener's lock.
560 * The caller is responsible for indicating in lpx, lli whether the respective
561 * locks are already held (non-zero) or not (zero) so that the function pick
562 * the missing ones, in this order.
563 */
564int relax_listener(struct listener *l, int lpx, int lli)
565{
566 int ret = 1;
567
568 if (!lli)
569 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
570
571 if (l->state != LI_FULL && l->state != LI_LIMITED)
572 goto end; /* listener may be suspended or even stopped */
573 ret = resume_listener(l, lpx, 1);
574
575 end:
576 if (!lli)
577 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
578 return ret;
579}
580
Willy Tarreau87b09662015-04-03 00:22:06 +0200581/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100582 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200583 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200584static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200585{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100586 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200587 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200588 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100589 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200590 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200591 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100592 }
Willy Tarreau62793712011-07-24 19:23:38 +0200593 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100594 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200595}
596
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200597/* Marks a ready listener as limited so that we only try to re-enable it when
598 * resources are free again. It will be queued into the specified queue.
599 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200600static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200601{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100602 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200603 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200604 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200605 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200606 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200607 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100608 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200609}
610
Willy Tarreau241797a2019-12-10 14:10:52 +0100611/* Dequeues all listeners waiting for a resource the global wait queue */
612void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200613{
Willy Tarreau01abd022019-02-28 10:27:18 +0100614 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200615
Willy Tarreau241797a2019-12-10 14:10:52 +0100616 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200617 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100618 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200619 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100620 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200621 }
622}
623
Willy Tarreau241797a2019-12-10 14:10:52 +0100624/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
625void dequeue_proxy_listeners(struct proxy *px)
626{
627 struct listener *listener;
628
629 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
630 /* This cannot fail because the listeners are by definition in
631 * the LI_LIMITED state.
632 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100633 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100634 }
635}
636
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200637
638/* default function used to unbind a listener. This is for use by standard
639 * protocols working on top of accepted sockets. The receiver's rx_unbind()
640 * will automatically be used after the listener is disabled if the socket is
641 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100642 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200643void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100644{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200645 if (listener->state <= LI_ASSIGNED)
646 goto out_close;
647
648 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200649 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200650 goto out_close;
651 }
652
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200653 if (listener->state >= LI_READY) {
654 listener->rx.proto->disable(listener);
655 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200656 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200657 }
658
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200659 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200660 if (listener->rx.flags & RX_F_BOUND)
661 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200662}
663
664/* This function closes the listening socket for the specified listener,
665 * provided that it's already in a listening state. The protocol's unbind()
666 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
667 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
668 * the receiver is unbound. Must be called with the lock held.
669 */
670void do_unbind_listener(struct listener *listener)
671{
Willy Tarreau2b718102021-04-21 07:32:39 +0200672 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200673
674 if (listener->rx.proto->unbind)
675 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200676
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200677 /* we may have to downgrade the listener if the rx was closed */
678 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200679 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100680}
681
Olivier Houchard1fc05162017-04-06 01:05:05 +0200682/* This function closes the listening socket for the specified listener,
683 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200684 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
685 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100686 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200687 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100688void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200689{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100690 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200691 do_unbind_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100692 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200693}
694
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200695/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
696 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200697 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200698 * passed in <proto> must be usable on this family. The protocol's default iocb
699 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200700 * listeners is automatically increased by the number of listeners created. It
701 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200702 */
703int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200704 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200705{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200706 struct listener *l;
707 int port;
708
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200709 for (port = portl; port <= porth; port++) {
710 l = calloc(1, sizeof(*l));
711 if (!l) {
712 memprintf(err, "out of memory");
713 return 0;
714 }
715 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200716 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
717 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200718 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200719 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200720 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200721 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200722 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100723
Willy Tarreau37159062020-08-27 07:48:42 +0200724 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100725 if (proto->fam->set_port)
726 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100727
Olivier Houchard859dc802019-08-08 15:47:21 +0200728 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200729 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200730
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100731 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200732
Willy Tarreau909c23b2020-09-15 13:50:58 +0200733 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200734 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100735
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100736 l->extra_counters = NULL;
737
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100738 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200739 _HA_ATOMIC_INC(&jobs);
740 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200741 }
742 return 1;
743}
744
Willy Tarreau1a64d162007-10-28 22:26:05 +0100745/* Delete a listener from its protocol's list of listeners. The listener's
746 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200747 * number of listeners is updated, as well as the global number of listeners
748 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200749 * is a low-level function expected to be called with the proto_lock and the
750 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100751 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200752void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100753{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100754 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200755 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200756 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200757 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200758 _HA_ATOMIC_DEC(&jobs);
759 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100760 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200761}
762
763/* Delete a listener from its protocol's list of listeners (please check
764 * __delete_listener() above). The proto_lock and the listener's lock will
765 * be grabbed in this order.
766 */
767void delete_listener(struct listener *listener)
768{
769 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100770 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200771 __delete_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100772 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200773 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100774}
775
Willy Tarreaue2711c72019-02-27 15:39:41 +0100776/* Returns a suitable value for a listener's backlog. It uses the listener's,
777 * otherwise the frontend's backlog, otherwise the listener's maxconn,
778 * otherwise the frontend's maxconn, otherwise 1024.
779 */
780int listener_backlog(const struct listener *l)
781{
782 if (l->backlog)
783 return l->backlog;
784
785 if (l->bind_conf->frontend->backlog)
786 return l->bind_conf->frontend->backlog;
787
788 if (l->maxconn)
789 return l->maxconn;
790
791 if (l->bind_conf->frontend->maxconn)
792 return l->bind_conf->frontend->maxconn;
793
794 return 1024;
795}
796
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200797/* This function is called on a read event from a listening socket, corresponding
798 * to an accept. It tries to accept as many connections as possible, and for each
799 * calls the listener's accept handler (generally the frontend's accept handler).
800 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200801void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200802{
Willy Tarreau83efc322020-10-14 17:37:17 +0200803 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100804 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200805 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100806 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100807 int next_feconn = 0;
808 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200809 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200810 int ret;
811
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100812 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200813
814 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
815 * illimited, but it is probably enough.
816 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100817 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200818
Willy Tarreau93e7c002013-10-07 18:51:07 +0200819 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
820 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200821
822 if (unlikely(!max)) {
823 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200824 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100825 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200826 }
827
828 if (max_accept > max)
829 max_accept = max;
830 }
831
832 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200833 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
834
835 if (unlikely(!max)) {
836 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200837 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100838 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200839 }
840
841 if (max_accept > max)
842 max_accept = max;
843 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200844#ifdef USE_OPENSSL
845 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
846 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200847
Willy Tarreaue43d5322013-10-07 20:01:52 +0200848 if (unlikely(!max)) {
849 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200850 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100851 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200852 }
853
854 if (max_accept > max)
855 max_accept = max;
856 }
857#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200858 if (p && p->fe_sps_lim) {
859 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
860
861 if (unlikely(!max)) {
862 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100863 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
864 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200865 }
866
867 if (max_accept > max)
868 max_accept = max;
869 }
870
871 /* Note: if we fail to allocate a connection because of configured
872 * limits, we'll schedule a new attempt worst 1 second later in the
873 * worst case. If we fail due to system limits or temporary resource
874 * shortage, we try again 100ms later in the worst case.
875 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100876 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200877 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200878 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200879 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200880
Willy Tarreau82c97892019-02-27 19:32:32 +0100881 /* pre-increase the number of connections without going too far.
882 * We process the listener, then the proxy, then the process.
883 * We know which ones to unroll based on the next_xxx value.
884 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100885 do {
886 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100887 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100888 /* the listener was marked full or another
889 * thread is going to do it.
890 */
891 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100892 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100893 goto end;
894 }
895 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000896 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100897
Willy Tarreau82c97892019-02-27 19:32:32 +0100898 if (p) {
899 do {
900 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100901 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100902 /* the frontend was marked full or another
903 * thread is going to do it.
904 */
905 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100906 expire = TICK_ETERNITY;
907 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100908 }
909 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100910 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200911 }
912
Willy Tarreau82c97892019-02-27 19:32:32 +0100913 if (!(l->options & LI_O_UNLIMITED)) {
914 do {
915 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100916 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100917 /* the process was marked full or another
918 * thread is going to do it.
919 */
920 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100921 expire = tick_add(now_ms, 1000); /* try again in 1 second */
922 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100923 }
924 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000925 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200926 }
927
Willy Tarreaud276ee52022-02-01 16:37:00 +0100928 /* be careful below, the listener might be shutting down in
929 * another thread on error and we must not dereference its
930 * FD without a bit of protection.
931 */
932 cli_conn = NULL;
933 status = CO_AC_PERMERR;
934
935 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
936 if (l->rx.flags & RX_F_BOUND)
937 cli_conn = l->rx.proto->accept_conn(l, &status);
938 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
939
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200940 if (!cli_conn) {
941 switch (status) {
942 case CO_AC_DONE:
943 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100944
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200945 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200946 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100947 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200948 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100949 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200950 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100951 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200952
953 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100954 max_accept = 0;
955 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100956
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200957 default:
958 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200959 }
960 }
961
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100962 /* The connection was accepted, it must be counted as such */
963 if (l->counters)
964 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
965
Willy Tarreauee3ec402022-05-09 20:41:54 +0200966 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100967 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreauee3ec402022-05-09 20:41:54 +0200968 proxy_inc_fe_conn_ctr(l, p);
969 }
Willy Tarreau82c97892019-02-27 19:32:32 +0100970
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100971 if (!(l->options & LI_O_UNLIMITED)) {
972 count = update_freq_ctr(&global.conn_per_sec, 1);
973 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100974 }
975
Willy Tarreau4781b152021-04-06 13:53:36 +0200976 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +0200977
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200978 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200979 send_log(p, LOG_EMERG,
980 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
981 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200982 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +0200983 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100984 expire = tick_add(now_ms, 1000); /* try again in 1 second */
985 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200986 }
987
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100988 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100989 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
990 * allows the error path not to rollback on nbconn. It's more
991 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100992 */
993 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100994 next_feconn = 0;
995 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200996
Willy Tarreau83efc322020-10-14 17:37:17 +0200997
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100998#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200999 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +01001000 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001001 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001002 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001003
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001004 /* The principle is that we have two running indexes,
1005 * each visiting in turn all threads bound to this
1006 * listener. The connection will be assigned to the one
1007 * with the least connections, and the other one will
1008 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001009 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001010 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001011 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001012
1013 /* keep a copy for the final update. thr_idx is composite
1014 * and made of (t2<<16) + t1.
1015 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001016 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001017 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001018 unsigned long m1, m2;
1019 int q1, q2;
1020
1021 t2 = t1 = t0;
1022 t2 >>= 16;
1023 t1 &= 0xFFFF;
1024
1025 /* t1 walks low to high bits ;
1026 * t2 walks high to low.
1027 */
1028 m1 = mask >> t1;
1029 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1030
Willy Tarreau85d04242019-04-16 18:09:13 +02001031 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001032 m1 &= ~1UL;
1033 if (!m1) {
1034 m1 = mask;
1035 t1 = 0;
1036 }
1037 t1 += my_ffsl(m1) - 1;
1038 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001039
Willy Tarreau85d04242019-04-16 18:09:13 +02001040 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1041 /* highest bit not set */
1042 if (!m2)
1043 m2 = mask;
1044
1045 t2 = my_flsl(m2) - 1;
1046 }
1047
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001048 /* now we have two distinct thread IDs belonging to the mask */
1049 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
1050 if (q1 >= ACCEPT_QUEUE_SIZE)
1051 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001052
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001053 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1054 if (q2 >= ACCEPT_QUEUE_SIZE)
1055 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001056
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001057 /* we have 3 possibilities now :
1058 * q1 < q2 : t1 is less loaded than t2, so we pick it
1059 * and update t2 (since t1 might still be
1060 * lower than another thread)
1061 * q1 > q2 : t2 is less loaded than t1, so we pick it
1062 * and update t1 (since t2 might still be
1063 * lower than another thread)
1064 * q1 = q2 : both are equally loaded, thus we pick t1
1065 * and update t1 as it will become more loaded
1066 * than t2.
1067 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001068
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001069 q1 += l->thr_conn[t1];
1070 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001071
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001072 if (q1 - q2 < 0) {
1073 t = t1;
1074 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1075 }
1076 else if (q1 - q2 > 0) {
1077 t = t2;
1078 t1++;
1079 if (t1 >= LONGBITS)
1080 t1 = 0;
1081 }
1082 else {
1083 t = t1;
1084 t1++;
1085 if (t1 >= LONGBITS)
1086 t1 = 0;
1087 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001088
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001089 /* new value for thr_idx */
1090 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001091 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001092
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001093 /* We successfully selected the best thread "t" for this
1094 * connection. We use deferred accepts even if it's the
1095 * local thread because tests show that it's the best
1096 * performing model, likely due to better cache locality
1097 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001098 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001099 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001100 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001101 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001102 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001103 continue;
1104 }
1105 /* If the ring is full we do a synchronous accept on
1106 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001107 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001108 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001109 }
1110#endif // USE_THREAD
1111
Willy Tarreau4781b152021-04-06 13:53:36 +02001112 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001113 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001114 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001115 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001116 * we just have to ignore it (ret == 0) or it's a critical
1117 * error due to a resource shortage, and we must stop the
1118 * listener (ret < 0).
1119 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001120 if (ret == 0) /* successful termination */
1121 continue;
1122
Willy Tarreaubb660302014-05-07 19:47:02 +02001123 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001124 }
1125
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001126 /* increase the per-process number of cumulated sessions, this
1127 * may only be done once l->accept() has accepted the connection.
1128 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001129 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001130 count = update_freq_ctr(&global.sess_per_sec, 1);
1131 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001132 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001133#ifdef USE_OPENSSL
1134 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001135 count = update_freq_ctr(&global.ssl_per_sec, 1);
1136 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001137 }
1138#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001139
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001140 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001141 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001142
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001143 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001144 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001145 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001146
Willy Tarreau82c97892019-02-27 19:32:32 +01001147 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001148 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001149
1150 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001151 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001152
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001153 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001154 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001155 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1156 (!tick_isset(global_listener_queue_task->expire) ||
1157 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001158 /* at least one thread has to this when quitting */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001159 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001160
Willy Tarreau02757d02021-01-28 18:07:24 +01001161 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001162 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001163
Olivier Houchard859dc802019-08-08 15:47:21 +02001164 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001165 (!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 +01001166 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001167 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001168 return;
1169
1170 transient_error:
1171 /* pause the listener for up to 100 ms */
1172 expire = tick_add(now_ms, 100);
1173
Willy Tarreau258b3512020-10-13 17:46:05 +02001174 /* This may be a shared socket that was paused by another process.
1175 * Let's put it to pause in this case.
1176 */
1177 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +01001178 pause_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001179 goto end;
1180 }
1181
Willy Tarreau0591bf72019-12-10 12:01:21 +01001182 limit_global:
1183 /* (re-)queue the listener to the global queue and set it to expire no
1184 * later than <expire> ahead. The listener turns to LI_LIMITED.
1185 */
1186 limit_listener(l, &global_listener_queue);
Christopher Faulete088fb32022-11-17 14:40:20 +01001187 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001188 task_schedule(global_listener_queue_task, expire);
Christopher Faulete088fb32022-11-17 14:40:20 +01001189 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001190 goto end;
1191
1192 limit_proxy:
1193 /* (re-)queue the listener to the proxy's queue and set it to expire no
1194 * later than <expire> ahead. The listener turns to LI_LIMITED.
1195 */
1196 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001197 if (p->task && tick_isset(expire))
1198 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001199 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001200}
1201
Willy Tarreau05f50472017-09-15 09:19:58 +02001202/* Notify the listener that a connection initiated from it was released. This
1203 * is used to keep the connection count consistent and to possibly re-open
1204 * listening when it was limited.
1205 */
1206void listener_release(struct listener *l)
1207{
1208 struct proxy *fe = l->bind_conf->frontend;
1209
1210 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001211 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001212 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001213 _HA_ATOMIC_DEC(&fe->feconn);
1214 _HA_ATOMIC_DEC(&l->nbconn);
1215 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001216
1217 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001218 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001219
Willy Tarreau02757d02021-01-28 18:07:24 +01001220 /* Dequeues all of the listeners waiting for a resource */
1221 dequeue_all_listeners();
1222
Aurelien DARRAGON15c43862022-09-12 09:26:21 +02001223 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001224 (!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 +01001225 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001226}
1227
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001228/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1229static int listener_queue_init()
1230{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001231 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1232 if (!global_listener_queue_task) {
1233 ha_alert("Out of memory when initializing global listener queue\n");
1234 return ERR_FATAL|ERR_ABORT;
1235 }
1236 /* very simple initialization, users will queue the task if needed */
1237 global_listener_queue_task->context = NULL; /* not even a context! */
1238 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulete088fb32022-11-17 14:40:20 +01001239 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001240
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001241 return 0;
1242}
1243
1244static void listener_queue_deinit()
1245{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001246 task_destroy(global_listener_queue_task);
1247 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001248}
1249
1250REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1251REGISTER_POST_DEINIT(listener_queue_deinit);
1252
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001253
1254/* This is the global management task for listeners. It enables listeners waiting
1255 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001256 * a while. It is designed to be called as a task. It's exported so that it's easy
1257 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001258 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001259struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001260{
1261 /* If there are still too many concurrent connections, let's wait for
1262 * some of them to go away. We don't need to re-arm the timer because
1263 * each of them will scan the queue anyway.
1264 */
1265 if (unlikely(actconn >= global.maxconn))
1266 goto out;
1267
1268 /* We should periodically try to enable listeners waiting for a global
1269 * resource here, because it is possible, though very unlikely, that
1270 * they have been blocked by a temporary lack of global resource such
1271 * as a file descriptor or memory and that the temporary condition has
1272 * disappeared.
1273 */
1274 dequeue_all_listeners();
1275
1276 out:
Christopher Faulete088fb32022-11-17 14:40:20 +01001277 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001278 t->expire = TICK_ETERNITY;
Christopher Faulete088fb32022-11-17 14:40:20 +01001279 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001280 task_queue(t);
1281 return t;
1282}
1283
Willy Tarreau26982662012-09-12 23:17:10 +02001284/*
1285 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1286 * parsing sessions.
1287 */
1288void bind_register_keywords(struct bind_kw_list *kwl)
1289{
Willy Tarreau2b718102021-04-21 07:32:39 +02001290 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001291}
1292
1293/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1294 * keyword is found with a NULL ->parse() function, then an attempt is made to
1295 * find one with a valid ->parse() function. This way it is possible to declare
1296 * platform-dependant, known keywords as NULL, then only declare them as valid
1297 * if some options are met. Note that if the requested keyword contains an
1298 * opening parenthesis, everything from this point is ignored.
1299 */
1300struct bind_kw *bind_find_kw(const char *kw)
1301{
1302 int index;
1303 const char *kwend;
1304 struct bind_kw_list *kwl;
1305 struct bind_kw *ret = NULL;
1306
1307 kwend = strchr(kw, '(');
1308 if (!kwend)
1309 kwend = kw + strlen(kw);
1310
1311 list_for_each_entry(kwl, &bind_keywords.list, list) {
1312 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1313 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1314 kwl->kw[index].kw[kwend-kw] == 0) {
1315 if (kwl->kw[index].parse)
1316 return &kwl->kw[index]; /* found it !*/
1317 else
1318 ret = &kwl->kw[index]; /* may be OK */
1319 }
1320 }
1321 }
1322 return ret;
1323}
1324
Willy Tarreau8638f482012-09-18 18:01:17 +02001325/* Dumps all registered "bind" keywords to the <out> string pointer. The
1326 * unsupported keywords are only dumped if their supported form was not
1327 * found.
1328 */
1329void bind_dump_kws(char **out)
1330{
1331 struct bind_kw_list *kwl;
1332 int index;
1333
Christopher Faulet784063e2020-05-18 12:14:18 +02001334 if (!out)
1335 return;
1336
Willy Tarreau8638f482012-09-18 18:01:17 +02001337 *out = NULL;
1338 list_for_each_entry(kwl, &bind_keywords.list, list) {
1339 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1340 if (kwl->kw[index].parse ||
1341 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001342 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1343 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001344 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001345 kwl->kw[index].skip ? " <arg>" : "",
1346 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001347 }
1348 }
1349 }
1350}
1351
Willy Tarreau433b05f2021-03-12 10:14:07 +01001352/* Try to find in srv_keyword the word that looks closest to <word> by counting
1353 * transitions between letters, digits and other characters. Will return the
1354 * best matching word if found, otherwise NULL.
1355 */
1356const char *bind_find_best_kw(const char *word)
1357{
1358 uint8_t word_sig[1024];
1359 uint8_t list_sig[1024];
1360 const struct bind_kw_list *kwl;
1361 const char *best_ptr = NULL;
1362 int dist, best_dist = INT_MAX;
1363 int index;
1364
1365 make_word_fingerprint(word_sig, word);
1366 list_for_each_entry(kwl, &bind_keywords.list, list) {
1367 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1368 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1369 dist = word_fingerprint_distance(word_sig, list_sig);
1370 if (dist < best_dist) {
1371 best_dist = dist;
1372 best_ptr = kwl->kw[index].kw;
1373 }
1374 }
1375 }
1376
1377 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1378 best_ptr = NULL;
1379
1380 return best_ptr;
1381}
1382
Willy Tarreau645513a2010-05-24 20:55:15 +02001383/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001384/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001385/************************************************************************/
1386
Willy Tarreaua5e37562011-12-16 17:06:15 +01001387/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001388static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001389smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001390{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001391 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001392 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001393 return 1;
1394}
1395
Willy Tarreaua5e37562011-12-16 17:06:15 +01001396/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001397static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001398smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001399{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001400 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001401 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001402 return 1;
1403}
Jerome Magnineb421b22020-03-27 22:08:40 +01001404static int
1405smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1406{
1407 smp->data.u.str.area = smp->sess->listener->name;
1408 if (!smp->data.u.str.area)
1409 return 0;
1410
1411 smp->data.type = SMP_T_STR;
1412 smp->flags = SMP_F_CONST;
1413 smp->data.u.str.data = strlen(smp->data.u.str.area);
1414 return 1;
1415}
Willy Tarreau645513a2010-05-24 20:55:15 +02001416
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001417/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001418static 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 +02001419{
1420 struct listener *l;
1421
Willy Tarreau4348fad2012-09-20 16:48:07 +02001422 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001423 l->options |= LI_O_ACC_PROXY;
1424
1425 return 0;
1426}
1427
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001428/* parse the "accept-netscaler-cip" bind keyword */
1429static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1430{
1431 struct listener *l;
1432 uint32_t val;
1433
1434 if (!*args[cur_arg + 1]) {
1435 memprintf(err, "'%s' : missing value", args[cur_arg]);
1436 return ERR_ALERT | ERR_FATAL;
1437 }
1438
1439 val = atol(args[cur_arg + 1]);
1440 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001441 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001442 return ERR_ALERT | ERR_FATAL;
1443 }
1444
1445 list_for_each_entry(l, &conf->listeners, by_bind) {
1446 l->options |= LI_O_ACC_CIP;
1447 conf->ns_cip_magic = val;
1448 }
1449
1450 return 0;
1451}
1452
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001453/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001454static 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 +02001455{
1456 struct listener *l;
1457 int val;
1458
1459 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001460 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001461 return ERR_ALERT | ERR_FATAL;
1462 }
1463
1464 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001465 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001466 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001467 return ERR_ALERT | ERR_FATAL;
1468 }
1469
Willy Tarreau4348fad2012-09-20 16:48:07 +02001470 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001471 l->backlog = val;
1472
1473 return 0;
1474}
1475
1476/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001477static 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 +02001478{
1479 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001480 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001481 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001482
Willy Tarreau4348fad2012-09-20 16:48:07 +02001483 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001484 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001485 return ERR_ALERT | ERR_FATAL;
1486 }
1487
1488 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001489 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001490 return ERR_ALERT | ERR_FATAL;
1491 }
1492
Willy Tarreau4348fad2012-09-20 16:48:07 +02001493 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001494 new->luid = strtol(args[cur_arg + 1], &error, 10);
1495 if (*error != '\0') {
1496 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1497 return ERR_ALERT | ERR_FATAL;
1498 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001499 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001500
Willy Tarreau4348fad2012-09-20 16:48:07 +02001501 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001502 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001503 return ERR_ALERT | ERR_FATAL;
1504 }
1505
Willy Tarreau4348fad2012-09-20 16:48:07 +02001506 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001507 if (node) {
1508 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001509 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1510 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1511 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001512 return ERR_ALERT | ERR_FATAL;
1513 }
1514
Willy Tarreau4348fad2012-09-20 16:48:07 +02001515 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001516 return 0;
1517}
1518
1519/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001520static 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 +02001521{
1522 struct listener *l;
1523 int val;
1524
1525 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001526 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001527 return ERR_ALERT | ERR_FATAL;
1528 }
1529
1530 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001531 if (val < 0) {
1532 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001533 return ERR_ALERT | ERR_FATAL;
1534 }
1535
Willy Tarreau4348fad2012-09-20 16:48:07 +02001536 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001537 l->maxconn = val;
1538
1539 return 0;
1540}
1541
1542/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001543static 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 +02001544{
1545 struct listener *l;
1546
1547 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001548 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001549 return ERR_ALERT | ERR_FATAL;
1550 }
1551
Willy Tarreau4348fad2012-09-20 16:48:07 +02001552 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001553 l->name = strdup(args[cur_arg + 1]);
1554
1555 return 0;
1556}
1557
1558/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001559static 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 +02001560{
1561 struct listener *l;
1562 int val;
1563
1564 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001565 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001566 return ERR_ALERT | ERR_FATAL;
1567 }
1568
1569 val = atol(args[cur_arg + 1]);
1570 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001571 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001572 return ERR_ALERT | ERR_FATAL;
1573 }
1574
Willy Tarreau4348fad2012-09-20 16:48:07 +02001575 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001576 l->nice = val;
1577
1578 return 0;
1579}
1580
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001581/* parse the "process" bind keyword */
1582static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1583{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001584 char *slash;
1585 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001586
Christopher Fauletc644fa92017-11-23 22:44:11 +01001587 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1588 *slash = 0;
1589
Willy Tarreauff9c9142019-02-07 10:39:36 +01001590 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001591 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001592 return ERR_ALERT | ERR_FATAL;
1593 }
1594
Christopher Fauletc644fa92017-11-23 22:44:11 +01001595 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001596 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001597 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1598 return ERR_ALERT | ERR_FATAL;
1599 }
1600 *slash = '/';
1601 }
1602
Willy Tarreaue26993c2020-09-03 07:18:55 +02001603 conf->settings.bind_proc |= proc;
1604 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001605 return 0;
1606}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001607
Christopher Fauleta717b992018-04-10 14:43:00 +02001608/* parse the "proto" bind keyword */
1609static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1610{
1611 struct ist proto;
1612
1613 if (!*args[cur_arg + 1]) {
1614 memprintf(err, "'%s' : missing value", args[cur_arg]);
1615 return ERR_ALERT | ERR_FATAL;
1616 }
1617
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001618 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001619 conf->mux_proto = get_mux_proto(proto);
1620 if (!conf->mux_proto) {
1621 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1622 return ERR_ALERT | ERR_FATAL;
1623 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001624 return 0;
1625}
1626
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001627/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1628static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001629 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001630 char **err)
1631{
1632 if (too_many_args(1, args, err, NULL))
1633 return -1;
1634
1635 if (strcmp(args[1], "on") == 0)
1636 global.tune.options |= GTUNE_LISTENER_MQ;
1637 else if (strcmp(args[1], "off") == 0)
1638 global.tune.options &= ~GTUNE_LISTENER_MQ;
1639 else {
1640 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1641 return -1;
1642 }
1643 return 0;
1644}
1645
Willy Tarreau61612d42012-04-19 18:42:05 +02001646/* Note: must not be declared <const> as its list will be overwritten.
1647 * Please take care of keeping this list alphabetically sorted.
1648 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001649static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001650 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1651 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001652 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001653 { /* END */ },
1654}};
1655
Willy Tarreau0108d902018-11-25 19:14:37 +01001656INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1657
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001658/* Note: must not be declared <const> as its list will be overwritten.
1659 * Please take care of keeping this list alphabetically sorted.
1660 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001661static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001662 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001663}};
1664
Willy Tarreau0108d902018-11-25 19:14:37 +01001665INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1666
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001667/* Note: must not be declared <const> as its list will be overwritten.
1668 * Please take care of keeping this list alphabetically sorted, doing so helps
1669 * all code contributors.
1670 * Optional keywords are also declared with a NULL ->parse() function so that
1671 * the config parser can report an appropriate error when a known keyword was
1672 * not enabled.
1673 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001674static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001675 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001676 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1677 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1678 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1679 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1680 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1681 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001682 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001683 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001684 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001685}};
1686
Willy Tarreau0108d902018-11-25 19:14:37 +01001687INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1688
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001689/* config keyword parsers */
1690static struct cfg_kw_list cfg_kws = {ILH, {
1691 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1692 { 0, NULL, NULL }
1693}};
1694
1695INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1696
Willy Tarreau645513a2010-05-24 20:55:15 +02001697/*
1698 * Local variables:
1699 * c-indent-level: 8
1700 * c-basic-offset: 8
1701 * End:
1702 */