blob: 28c3e633173a18b86e2a30162729460cab2ac578 [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);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200254 break;
255 }
256 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200257 l->state = st;
258}
259
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100260/* This function adds the specified listener's file descriptor to the polling
261 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500262 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200263 * also support binding only the relevant processes to their respective
264 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100265 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200266void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100267{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100268 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200269
270 /* If this listener is supposed to be only in the master, close it in
271 * the workers. Conversely, if it's supposed to be only in the workers
272 * close it in the master.
273 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200274 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200275 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200276
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100277 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200278 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200279 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau38dba272020-11-04 13:54:00 +0100280 (!!master != !!(listener->rx.flags & RX_F_MWORKER) ||
281 !(proc_mask(listener->rx.settings->bind_proc) & pid_bit))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200282 /* we don't want to enable this listener and don't
283 * want any fd event to reach it.
284 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200285 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200286 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100287 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200288 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200289 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200290 }
291 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200292 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100293 }
294 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200295
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100296 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100297}
298
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200299/*
Aurelien DARRAGON7c9e1f92022-09-11 16:19:49 +0200300 * This function completely stops a listener.
301 * The proxy's listeners count is updated and the proxy is
302 * disabled and woken up after the last one is gone.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100303 * It will need to operate under the proxy's lock, the protocol's lock and
304 * the listener's lock. The caller is responsible for indicating in lpx,
305 * lpr, lli whether the respective locks are already held (non-zero) or
306 * not (zero) so that the function picks the missing ones, in this order.
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200307 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100308void stop_listener(struct listener *l, int lpx, int lpr, int lli)
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200309{
310 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200311
312 if (l->options & LI_O_NOSTOP) {
313 /* master-worker sockpairs are never closed but don't count as a
314 * job.
315 */
316 return;
317 }
318
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200319 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200320 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200321
322 if (!lpr)
323 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
324
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100325 if (!lli)
326 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200327
328 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200329 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200330
331 if (l->state >= LI_ASSIGNED)
332 __delete_listener(l);
333
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200334 if (px)
335 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200336 }
337
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100338 if (!lli)
339 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200340
341 if (!lpr)
342 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
343
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200344 if (!lpx && px)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200345 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200346}
347
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100348/* This function adds the specified <listener> to the protocol <proto>. It
349 * does nothing if the protocol was already added. The listener's state is
350 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
351 * for the protocol is updated. This must be called with the proto lock held.
352 */
353void default_add_listener(struct protocol *proto, struct listener *listener)
354{
355 if (listener->state != LI_INIT)
356 return;
357 listener_set_state(listener, LI_ASSIGNED);
358 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200359 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100360 proto->nb_receivers++;
361}
362
Willy Tarreaue03204c2020-10-09 17:02:21 +0200363/* default function called to suspend a listener: it simply passes the call to
364 * the underlying receiver. This is find for most socket-based protocols. This
365 * must be called under the listener's lock. It will return non-zero on success,
366 * 0 on failure. If no receiver-level suspend is provided, the operation is
367 * assumed to succeed.
368 */
369int default_suspend_listener(struct listener *l)
370{
371 int ret = 1;
372
373 if (!l->rx.proto->rx_suspend)
374 return 1;
375
376 ret = l->rx.proto->rx_suspend(&l->rx);
377 return ret > 0 ? ret : 0;
378}
379
380
381/* Tries to resume a suspended listener, and returns non-zero on success or
382 * zero on failure. On certain errors, an alert or a warning might be displayed.
383 * It must be called with the listener's lock held. Depending on the listener's
384 * state and protocol, a listen() call might be used to resume operations, or a
385 * call to the receiver's resume() function might be used as well. This is
386 * suitable as a default function for TCP and UDP. This must be called with the
387 * listener's lock held.
388 */
389int default_resume_listener(struct listener *l)
390{
391 int ret = 1;
392
393 if (l->state == LI_ASSIGNED) {
394 char msg[100];
395 int err;
396
397 err = l->rx.proto->listen(l, msg, sizeof(msg));
398 if (err & ERR_ALERT)
399 ha_alert("Resuming listener: %s\n", msg);
400 else if (err & ERR_WARN)
401 ha_warning("Resuming listener: %s\n", msg);
402
403 if (err & (ERR_FATAL | ERR_ABORT)) {
404 ret = 0;
405 goto end;
406 }
407 }
408
409 if (l->state < LI_PAUSED) {
410 ret = 0;
411 goto end;
412 }
413
414 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
415 l->rx.proto->rx_resume(&l->rx) <= 0)
416 ret = 0;
417 end:
418 return ret;
419}
420
421
Willy Tarreaube58c382011-07-24 18:28:10 +0200422/* This function tries to temporarily disable a listener, depending on the OS
423 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
424 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
425 * closes upon SHUT_WR and refuses to rebind. So a common validation path
426 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
427 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100428 * It will need to operate under the proxy's lock and the listener's lock.
429 * The caller is responsible for indicating in lpx, lli whether the respective
430 * locks are already held (non-zero) or not (zero) so that the function pick
431 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200432 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100433int pause_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200434{
Willy Tarreau58651b42020-09-24 16:03:29 +0200435 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200436 int ret = 1;
437
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200438 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200439 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
440
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100441 if (!lli)
442 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200443
Willy Tarreau02e19752020-09-23 17:17:22 +0200444 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
445 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
446 goto end;
447
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200448 if (l->state <= LI_PAUSED)
449 goto end;
450
Willy Tarreaue03204c2020-10-09 17:02:21 +0200451 if (l->rx.proto->suspend)
452 ret = l->rx.proto->suspend(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200453
Willy Tarreau2b718102021-04-21 07:32:39 +0200454 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200455
Willy Tarreaua37b2442020-09-24 07:23:45 +0200456 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200457
458 if (px && !px->li_ready) {
459 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
460 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
461 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200462 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100463 if (!lli)
464 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200465
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200466 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200467 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
468
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200469 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200470}
471
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200472/* This function tries to resume a temporarily disabled listener. Paused, full,
473 * limited and disabled listeners are handled, which means that this function
474 * may replace enable_listener(). The resulting state will either be LI_READY
475 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200476 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200477 * foreground mode, and are ignored. If the listener was only in the assigned
478 * state, it's totally rebound. This can happen if a pause() has completely
479 * stopped it. If the resume fails, 0 is returned and an error might be
480 * displayed.
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100481 * It will need to operate under the proxy's lock and the listener's lock.
482 * The caller is responsible for indicating in lpx, lli whether the respective
483 * locks are already held (non-zero) or not (zero) so that the function pick
484 * the missing ones, in this order.
Willy Tarreaube58c382011-07-24 18:28:10 +0200485 */
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100486int resume_listener(struct listener *l, int lpx, int lli)
Willy Tarreaube58c382011-07-24 18:28:10 +0200487{
Willy Tarreau58651b42020-09-24 16:03:29 +0200488 struct proxy *px = l->bind_conf->frontend;
489 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200490 int ret = 1;
491
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200492 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200493 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
494
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100495 if (!lli)
496 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200497
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200498 /* check that another thread didn't to the job in parallel (e.g. at the
499 * end of listen_accept() while we'd come from dequeue_all_listeners().
500 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200501 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200502 goto end;
503
William Lallemand095ba4c2017-06-01 17:38:50 +0200504 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200505 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200506 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100507
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200508 if (l->state == LI_READY)
509 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200510
Willy Tarreaue03204c2020-10-09 17:02:21 +0200511 if (l->rx.proto->resume)
512 ret = l->rx.proto->resume(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200513
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100514 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200515 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200516 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200517 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200518 }
519
Willy Tarreau4b51f422020-09-25 20:32:28 +0200520 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200521 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200522
523 done:
524 if (was_paused && !px->li_paused) {
525 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
526 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
527 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200528 end:
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +0100529 if (!lli)
530 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200531
Aurelien DARRAGON15c43862022-09-12 09:26:21 +0200532 if (!lpx && px)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200533 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
534
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200535 return ret;
536}
537
Aurelien DARRAGON3e931a42023-02-15 09:30:54 +0100538/* Same as resume_listener(), but will only work to resume from
539 * LI_FULL or LI_LIMITED states because we try to relax listeners that
540 * were temporarily restricted and not to resume inactive listeners that
541 * may have been paused or completely stopped in the meantime.
542 * Returns positive value for success and 0 for failure.
543 * It will need to operate under the proxy's lock and the listener's lock.
544 * The caller is responsible for indicating in lpx, lli whether the respective
545 * locks are already held (non-zero) or not (zero) so that the function pick
546 * the missing ones, in this order.
547 */
548int relax_listener(struct listener *l, int lpx, int lli)
549{
550 int ret = 1;
551
552 if (!lli)
553 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
554
555 if (l->state != LI_FULL && l->state != LI_LIMITED)
556 goto end; /* listener may be suspended or even stopped */
557 ret = resume_listener(l, lpx, 1);
558
559 end:
560 if (!lli)
561 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
562 return ret;
563}
564
Willy Tarreau87b09662015-04-03 00:22:06 +0200565/* Marks a ready listener as full so that the stream code tries to re-enable
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100566 * it upon next close() using relax_listener().
Willy Tarreau62793712011-07-24 19:23:38 +0200567 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200568static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200569{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100570 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200571 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200572 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100573 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200574 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200575 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100576 }
Willy Tarreau62793712011-07-24 19:23:38 +0200577 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100578 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200579}
580
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200581/* Marks a ready listener as limited so that we only try to re-enable it when
582 * resources are free again. It will be queued into the specified queue.
583 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200584static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200585{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100586 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200587 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200588 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200589 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200590 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200591 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100592 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200593}
594
Willy Tarreau241797a2019-12-10 14:10:52 +0100595/* Dequeues all listeners waiting for a resource the global wait queue */
596void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200597{
Willy Tarreau01abd022019-02-28 10:27:18 +0100598 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200599
Willy Tarreau241797a2019-12-10 14:10:52 +0100600 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200601 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100602 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200603 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100604 relax_listener(listener, 0, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200605 }
606}
607
Willy Tarreau241797a2019-12-10 14:10:52 +0100608/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
609void dequeue_proxy_listeners(struct proxy *px)
610{
611 struct listener *listener;
612
613 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
614 /* This cannot fail because the listeners are by definition in
615 * the LI_LIMITED state.
616 */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +0100617 relax_listener(listener, 0, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100618 }
619}
620
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200621
622/* default function used to unbind a listener. This is for use by standard
623 * protocols working on top of accepted sockets. The receiver's rx_unbind()
624 * will automatically be used after the listener is disabled if the socket is
625 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100626 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200627void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100628{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200629 if (listener->state <= LI_ASSIGNED)
630 goto out_close;
631
632 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200633 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200634 goto out_close;
635 }
636
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200637 if (listener->state >= LI_READY) {
638 listener->rx.proto->disable(listener);
639 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200640 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200641 }
642
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200643 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200644 if (listener->rx.flags & RX_F_BOUND)
645 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200646}
647
648/* This function closes the listening socket for the specified listener,
649 * provided that it's already in a listening state. The protocol's unbind()
650 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
651 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
652 * the receiver is unbound. Must be called with the lock held.
653 */
654void do_unbind_listener(struct listener *listener)
655{
Willy Tarreau2b718102021-04-21 07:32:39 +0200656 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200657
658 if (listener->rx.proto->unbind)
659 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200660
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200661 /* we may have to downgrade the listener if the rx was closed */
662 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200663 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100664}
665
Olivier Houchard1fc05162017-04-06 01:05:05 +0200666/* This function closes the listening socket for the specified listener,
667 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200668 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
669 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100670 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200671 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100672void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200673{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100674 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200675 do_unbind_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100676 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200677}
678
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200679/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
680 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200681 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200682 * passed in <proto> must be usable on this family. The protocol's default iocb
683 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200684 * listeners is automatically increased by the number of listeners created. It
685 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200686 */
687int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200688 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200689{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200690 struct listener *l;
691 int port;
692
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200693 for (port = portl; port <= porth; port++) {
694 l = calloc(1, sizeof(*l));
695 if (!l) {
696 memprintf(err, "out of memory");
697 return 0;
698 }
699 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200700 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
701 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200702 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200703 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200704 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200705 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200706 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100707
Willy Tarreau37159062020-08-27 07:48:42 +0200708 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100709 if (proto->fam->set_port)
710 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100711
Olivier Houchard859dc802019-08-08 15:47:21 +0200712 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200713 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200714
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100715 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200716
Willy Tarreau909c23b2020-09-15 13:50:58 +0200717 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200718 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100719
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100720 l->extra_counters = NULL;
721
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100722 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200723 _HA_ATOMIC_INC(&jobs);
724 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200725 }
726 return 1;
727}
728
Willy Tarreau1a64d162007-10-28 22:26:05 +0100729/* Delete a listener from its protocol's list of listeners. The listener's
730 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200731 * number of listeners is updated, as well as the global number of listeners
732 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200733 * is a low-level function expected to be called with the proto_lock and the
734 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100735 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200736void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100737{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100738 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200739 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200740 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200741 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200742 _HA_ATOMIC_DEC(&jobs);
743 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100744 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200745}
746
747/* Delete a listener from its protocol's list of listeners (please check
748 * __delete_listener() above). The proto_lock and the listener's lock will
749 * be grabbed in this order.
750 */
751void delete_listener(struct listener *listener)
752{
753 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100754 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200755 __delete_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100756 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200757 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100758}
759
Willy Tarreaue2711c72019-02-27 15:39:41 +0100760/* Returns a suitable value for a listener's backlog. It uses the listener's,
761 * otherwise the frontend's backlog, otherwise the listener's maxconn,
762 * otherwise the frontend's maxconn, otherwise 1024.
763 */
764int listener_backlog(const struct listener *l)
765{
766 if (l->backlog)
767 return l->backlog;
768
769 if (l->bind_conf->frontend->backlog)
770 return l->bind_conf->frontend->backlog;
771
772 if (l->maxconn)
773 return l->maxconn;
774
775 if (l->bind_conf->frontend->maxconn)
776 return l->bind_conf->frontend->maxconn;
777
778 return 1024;
779}
780
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200781/* This function is called on a read event from a listening socket, corresponding
782 * to an accept. It tries to accept as many connections as possible, and for each
783 * calls the listener's accept handler (generally the frontend's accept handler).
784 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200785void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200786{
Willy Tarreau83efc322020-10-14 17:37:17 +0200787 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100788 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200789 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100790 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100791 int next_feconn = 0;
792 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200793 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200794 int ret;
795
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100796 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200797
798 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
799 * illimited, but it is probably enough.
800 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100801 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200802
Willy Tarreau93e7c002013-10-07 18:51:07 +0200803 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
804 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200805
806 if (unlikely(!max)) {
807 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200808 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100809 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200810 }
811
812 if (max_accept > max)
813 max_accept = max;
814 }
815
816 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200817 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
818
819 if (unlikely(!max)) {
820 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200821 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100822 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200823 }
824
825 if (max_accept > max)
826 max_accept = max;
827 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200828#ifdef USE_OPENSSL
829 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
830 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200831
Willy Tarreaue43d5322013-10-07 20:01:52 +0200832 if (unlikely(!max)) {
833 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200834 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100835 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200836 }
837
838 if (max_accept > max)
839 max_accept = max;
840 }
841#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200842 if (p && p->fe_sps_lim) {
843 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
844
845 if (unlikely(!max)) {
846 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100847 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
848 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200849 }
850
851 if (max_accept > max)
852 max_accept = max;
853 }
854
855 /* Note: if we fail to allocate a connection because of configured
856 * limits, we'll schedule a new attempt worst 1 second later in the
857 * worst case. If we fail due to system limits or temporary resource
858 * shortage, we try again 100ms later in the worst case.
859 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100860 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200861 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200862 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200863 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200864
Willy Tarreau82c97892019-02-27 19:32:32 +0100865 /* pre-increase the number of connections without going too far.
866 * We process the listener, then the proxy, then the process.
867 * We know which ones to unroll based on the next_xxx value.
868 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100869 do {
870 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100871 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100872 /* the listener was marked full or another
873 * thread is going to do it.
874 */
875 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100876 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100877 goto end;
878 }
879 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000880 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100881
Willy Tarreau82c97892019-02-27 19:32:32 +0100882 if (p) {
883 do {
884 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100885 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100886 /* the frontend was marked full or another
887 * thread is going to do it.
888 */
889 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100890 expire = TICK_ETERNITY;
891 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100892 }
893 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100894 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200895 }
896
Willy Tarreau82c97892019-02-27 19:32:32 +0100897 if (!(l->options & LI_O_UNLIMITED)) {
898 do {
899 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100900 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100901 /* the process was marked full or another
902 * thread is going to do it.
903 */
904 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100905 expire = tick_add(now_ms, 1000); /* try again in 1 second */
906 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100907 }
908 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000909 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200910 }
911
Willy Tarreaud276ee52022-02-01 16:37:00 +0100912 /* be careful below, the listener might be shutting down in
913 * another thread on error and we must not dereference its
914 * FD without a bit of protection.
915 */
916 cli_conn = NULL;
917 status = CO_AC_PERMERR;
918
919 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
920 if (l->rx.flags & RX_F_BOUND)
921 cli_conn = l->rx.proto->accept_conn(l, &status);
922 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
923
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200924 if (!cli_conn) {
925 switch (status) {
926 case CO_AC_DONE:
927 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100928
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200929 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200930 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100931 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200932 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100933 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200934 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100935 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200936
937 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100938 max_accept = 0;
939 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100940
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200941 default:
942 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200943 }
944 }
945
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100946 /* The connection was accepted, it must be counted as such */
947 if (l->counters)
948 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
949
Willy Tarreauee3ec402022-05-09 20:41:54 +0200950 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100951 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreauee3ec402022-05-09 20:41:54 +0200952 proxy_inc_fe_conn_ctr(l, p);
953 }
Willy Tarreau82c97892019-02-27 19:32:32 +0100954
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100955 if (!(l->options & LI_O_UNLIMITED)) {
956 count = update_freq_ctr(&global.conn_per_sec, 1);
957 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100958 }
959
Willy Tarreau4781b152021-04-06 13:53:36 +0200960 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +0200961
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200962 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200963 send_log(p, LOG_EMERG,
964 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
965 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200966 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +0200967 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100968 expire = tick_add(now_ms, 1000); /* try again in 1 second */
969 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200970 }
971
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100972 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100973 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
974 * allows the error path not to rollback on nbconn. It's more
975 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100976 */
977 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100978 next_feconn = 0;
979 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200980
Willy Tarreau83efc322020-10-14 17:37:17 +0200981
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100982#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200983 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100984 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100985 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100986 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100987
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100988 /* The principle is that we have two running indexes,
989 * each visiting in turn all threads bound to this
990 * listener. The connection will be assigned to the one
991 * with the least connections, and the other one will
992 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100993 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100994 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100995 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100996
997 /* keep a copy for the final update. thr_idx is composite
998 * and made of (t2<<16) + t1.
999 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001000 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001001 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001002 unsigned long m1, m2;
1003 int q1, q2;
1004
1005 t2 = t1 = t0;
1006 t2 >>= 16;
1007 t1 &= 0xFFFF;
1008
1009 /* t1 walks low to high bits ;
1010 * t2 walks high to low.
1011 */
1012 m1 = mask >> t1;
1013 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1014
Willy Tarreau85d04242019-04-16 18:09:13 +02001015 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001016 m1 &= ~1UL;
1017 if (!m1) {
1018 m1 = mask;
1019 t1 = 0;
1020 }
1021 t1 += my_ffsl(m1) - 1;
1022 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001023
Willy Tarreau85d04242019-04-16 18:09:13 +02001024 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1025 /* highest bit not set */
1026 if (!m2)
1027 m2 = mask;
1028
1029 t2 = my_flsl(m2) - 1;
1030 }
1031
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001032 /* now we have two distinct thread IDs belonging to the mask */
1033 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
1034 if (q1 >= ACCEPT_QUEUE_SIZE)
1035 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001036
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001037 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1038 if (q2 >= ACCEPT_QUEUE_SIZE)
1039 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001040
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001041 /* we have 3 possibilities now :
1042 * q1 < q2 : t1 is less loaded than t2, so we pick it
1043 * and update t2 (since t1 might still be
1044 * lower than another thread)
1045 * q1 > q2 : t2 is less loaded than t1, so we pick it
1046 * and update t1 (since t2 might still be
1047 * lower than another thread)
1048 * q1 = q2 : both are equally loaded, thus we pick t1
1049 * and update t1 as it will become more loaded
1050 * than t2.
1051 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001052
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001053 q1 += l->thr_conn[t1];
1054 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001055
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001056 if (q1 - q2 < 0) {
1057 t = t1;
1058 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1059 }
1060 else if (q1 - q2 > 0) {
1061 t = t2;
1062 t1++;
1063 if (t1 >= LONGBITS)
1064 t1 = 0;
1065 }
1066 else {
1067 t = t1;
1068 t1++;
1069 if (t1 >= LONGBITS)
1070 t1 = 0;
1071 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001072
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001073 /* new value for thr_idx */
1074 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001075 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001076
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001077 /* We successfully selected the best thread "t" for this
1078 * connection. We use deferred accepts even if it's the
1079 * local thread because tests show that it's the best
1080 * performing model, likely due to better cache locality
1081 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001082 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001083 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001084 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001085 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001086 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001087 continue;
1088 }
1089 /* If the ring is full we do a synchronous accept on
1090 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001091 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001092 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001093 }
1094#endif // USE_THREAD
1095
Willy Tarreau4781b152021-04-06 13:53:36 +02001096 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001097 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001098 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001099 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001100 * we just have to ignore it (ret == 0) or it's a critical
1101 * error due to a resource shortage, and we must stop the
1102 * listener (ret < 0).
1103 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001104 if (ret == 0) /* successful termination */
1105 continue;
1106
Willy Tarreaubb660302014-05-07 19:47:02 +02001107 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001108 }
1109
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001110 /* increase the per-process number of cumulated sessions, this
1111 * may only be done once l->accept() has accepted the connection.
1112 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001113 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001114 count = update_freq_ctr(&global.sess_per_sec, 1);
1115 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001116 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001117#ifdef USE_OPENSSL
1118 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001119 count = update_freq_ctr(&global.ssl_per_sec, 1);
1120 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001121 }
1122#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001123
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001124 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001125 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001126
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001127 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001128 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001129 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001130
Willy Tarreau82c97892019-02-27 19:32:32 +01001131 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001132 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001133
1134 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001135 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001136
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001137 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001138 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001139 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1140 (!tick_isset(global_listener_queue_task->expire) ||
1141 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001142 /* at least one thread has to this when quitting */
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001143 relax_listener(l, 0, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001144
Willy Tarreau02757d02021-01-28 18:07:24 +01001145 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001146 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001147
Olivier Houchard859dc802019-08-08 15:47:21 +02001148 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001149 (!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 +01001150 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001151 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001152 return;
1153
1154 transient_error:
1155 /* pause the listener for up to 100 ms */
1156 expire = tick_add(now_ms, 100);
1157
Willy Tarreau258b3512020-10-13 17:46:05 +02001158 /* This may be a shared socket that was paused by another process.
1159 * Let's put it to pause in this case.
1160 */
1161 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGON7e2eee02023-02-06 17:06:03 +01001162 pause_listener(l, 0, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001163 goto end;
1164 }
1165
Willy Tarreau0591bf72019-12-10 12:01:21 +01001166 limit_global:
1167 /* (re-)queue the listener to the global queue and set it to expire no
1168 * later than <expire> ahead. The listener turns to LI_LIMITED.
1169 */
1170 limit_listener(l, &global_listener_queue);
Christopher Faulete088fb32022-11-17 14:40:20 +01001171 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001172 task_schedule(global_listener_queue_task, expire);
Christopher Faulete088fb32022-11-17 14:40:20 +01001173 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001174 goto end;
1175
1176 limit_proxy:
1177 /* (re-)queue the listener to the proxy's queue and set it to expire no
1178 * later than <expire> ahead. The listener turns to LI_LIMITED.
1179 */
1180 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001181 if (p->task && tick_isset(expire))
1182 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001183 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001184}
1185
Willy Tarreau05f50472017-09-15 09:19:58 +02001186/* Notify the listener that a connection initiated from it was released. This
1187 * is used to keep the connection count consistent and to possibly re-open
1188 * listening when it was limited.
1189 */
1190void listener_release(struct listener *l)
1191{
1192 struct proxy *fe = l->bind_conf->frontend;
1193
1194 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001195 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001196 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001197 _HA_ATOMIC_DEC(&fe->feconn);
1198 _HA_ATOMIC_DEC(&l->nbconn);
1199 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001200
1201 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONb1918b12023-02-06 17:19:58 +01001202 relax_listener(l, 0, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001203
Willy Tarreau02757d02021-01-28 18:07:24 +01001204 /* Dequeues all of the listeners waiting for a resource */
1205 dequeue_all_listeners();
1206
Aurelien DARRAGON15c43862022-09-12 09:26:21 +02001207 if (fe && !MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001208 (!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 +01001209 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001210}
1211
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001212/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1213static int listener_queue_init()
1214{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001215 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1216 if (!global_listener_queue_task) {
1217 ha_alert("Out of memory when initializing global listener queue\n");
1218 return ERR_FATAL|ERR_ABORT;
1219 }
1220 /* very simple initialization, users will queue the task if needed */
1221 global_listener_queue_task->context = NULL; /* not even a context! */
1222 global_listener_queue_task->process = manage_global_listener_queue;
Christopher Faulete088fb32022-11-17 14:40:20 +01001223 HA_RWLOCK_INIT(&global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001224
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001225 return 0;
1226}
1227
1228static void listener_queue_deinit()
1229{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001230 task_destroy(global_listener_queue_task);
1231 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001232}
1233
1234REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1235REGISTER_POST_DEINIT(listener_queue_deinit);
1236
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001237
1238/* This is the global management task for listeners. It enables listeners waiting
1239 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001240 * a while. It is designed to be called as a task. It's exported so that it's easy
1241 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001242 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001243struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001244{
1245 /* If there are still too many concurrent connections, let's wait for
1246 * some of them to go away. We don't need to re-arm the timer because
1247 * each of them will scan the queue anyway.
1248 */
1249 if (unlikely(actconn >= global.maxconn))
1250 goto out;
1251
1252 /* We should periodically try to enable listeners waiting for a global
1253 * resource here, because it is possible, though very unlikely, that
1254 * they have been blocked by a temporary lack of global resource such
1255 * as a file descriptor or memory and that the temporary condition has
1256 * disappeared.
1257 */
1258 dequeue_all_listeners();
1259
1260 out:
Christopher Faulete088fb32022-11-17 14:40:20 +01001261 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001262 t->expire = TICK_ETERNITY;
Christopher Faulete088fb32022-11-17 14:40:20 +01001263 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &global_listener_rwlock);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001264 task_queue(t);
1265 return t;
1266}
1267
Willy Tarreau26982662012-09-12 23:17:10 +02001268/*
1269 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1270 * parsing sessions.
1271 */
1272void bind_register_keywords(struct bind_kw_list *kwl)
1273{
Willy Tarreau2b718102021-04-21 07:32:39 +02001274 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001275}
1276
1277/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1278 * keyword is found with a NULL ->parse() function, then an attempt is made to
1279 * find one with a valid ->parse() function. This way it is possible to declare
1280 * platform-dependant, known keywords as NULL, then only declare them as valid
1281 * if some options are met. Note that if the requested keyword contains an
1282 * opening parenthesis, everything from this point is ignored.
1283 */
1284struct bind_kw *bind_find_kw(const char *kw)
1285{
1286 int index;
1287 const char *kwend;
1288 struct bind_kw_list *kwl;
1289 struct bind_kw *ret = NULL;
1290
1291 kwend = strchr(kw, '(');
1292 if (!kwend)
1293 kwend = kw + strlen(kw);
1294
1295 list_for_each_entry(kwl, &bind_keywords.list, list) {
1296 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1297 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1298 kwl->kw[index].kw[kwend-kw] == 0) {
1299 if (kwl->kw[index].parse)
1300 return &kwl->kw[index]; /* found it !*/
1301 else
1302 ret = &kwl->kw[index]; /* may be OK */
1303 }
1304 }
1305 }
1306 return ret;
1307}
1308
Willy Tarreau8638f482012-09-18 18:01:17 +02001309/* Dumps all registered "bind" keywords to the <out> string pointer. The
1310 * unsupported keywords are only dumped if their supported form was not
1311 * found.
1312 */
1313void bind_dump_kws(char **out)
1314{
1315 struct bind_kw_list *kwl;
1316 int index;
1317
Christopher Faulet784063e2020-05-18 12:14:18 +02001318 if (!out)
1319 return;
1320
Willy Tarreau8638f482012-09-18 18:01:17 +02001321 *out = NULL;
1322 list_for_each_entry(kwl, &bind_keywords.list, list) {
1323 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1324 if (kwl->kw[index].parse ||
1325 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001326 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1327 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001328 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001329 kwl->kw[index].skip ? " <arg>" : "",
1330 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001331 }
1332 }
1333 }
1334}
1335
Willy Tarreau433b05f2021-03-12 10:14:07 +01001336/* Try to find in srv_keyword the word that looks closest to <word> by counting
1337 * transitions between letters, digits and other characters. Will return the
1338 * best matching word if found, otherwise NULL.
1339 */
1340const char *bind_find_best_kw(const char *word)
1341{
1342 uint8_t word_sig[1024];
1343 uint8_t list_sig[1024];
1344 const struct bind_kw_list *kwl;
1345 const char *best_ptr = NULL;
1346 int dist, best_dist = INT_MAX;
1347 int index;
1348
1349 make_word_fingerprint(word_sig, word);
1350 list_for_each_entry(kwl, &bind_keywords.list, list) {
1351 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1352 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1353 dist = word_fingerprint_distance(word_sig, list_sig);
1354 if (dist < best_dist) {
1355 best_dist = dist;
1356 best_ptr = kwl->kw[index].kw;
1357 }
1358 }
1359 }
1360
1361 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1362 best_ptr = NULL;
1363
1364 return best_ptr;
1365}
1366
Willy Tarreau645513a2010-05-24 20:55:15 +02001367/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001368/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001369/************************************************************************/
1370
Willy Tarreaua5e37562011-12-16 17:06:15 +01001371/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001372static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001373smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001374{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001375 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001376 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001377 return 1;
1378}
1379
Willy Tarreaua5e37562011-12-16 17:06:15 +01001380/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001381static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001382smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001383{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001384 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001385 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001386 return 1;
1387}
Jerome Magnineb421b22020-03-27 22:08:40 +01001388static int
1389smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1390{
1391 smp->data.u.str.area = smp->sess->listener->name;
1392 if (!smp->data.u.str.area)
1393 return 0;
1394
1395 smp->data.type = SMP_T_STR;
1396 smp->flags = SMP_F_CONST;
1397 smp->data.u.str.data = strlen(smp->data.u.str.area);
1398 return 1;
1399}
Willy Tarreau645513a2010-05-24 20:55:15 +02001400
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001401/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001402static 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 +02001403{
1404 struct listener *l;
1405
Willy Tarreau4348fad2012-09-20 16:48:07 +02001406 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001407 l->options |= LI_O_ACC_PROXY;
1408
1409 return 0;
1410}
1411
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001412/* parse the "accept-netscaler-cip" bind keyword */
1413static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1414{
1415 struct listener *l;
1416 uint32_t val;
1417
1418 if (!*args[cur_arg + 1]) {
1419 memprintf(err, "'%s' : missing value", args[cur_arg]);
1420 return ERR_ALERT | ERR_FATAL;
1421 }
1422
1423 val = atol(args[cur_arg + 1]);
1424 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001425 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001426 return ERR_ALERT | ERR_FATAL;
1427 }
1428
1429 list_for_each_entry(l, &conf->listeners, by_bind) {
1430 l->options |= LI_O_ACC_CIP;
1431 conf->ns_cip_magic = val;
1432 }
1433
1434 return 0;
1435}
1436
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001437/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001438static 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 +02001439{
1440 struct listener *l;
1441 int val;
1442
1443 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001444 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001445 return ERR_ALERT | ERR_FATAL;
1446 }
1447
1448 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001449 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001450 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001451 return ERR_ALERT | ERR_FATAL;
1452 }
1453
Willy Tarreau4348fad2012-09-20 16:48:07 +02001454 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001455 l->backlog = val;
1456
1457 return 0;
1458}
1459
1460/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001461static 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 +02001462{
1463 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001464 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001465 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001466
Willy Tarreau4348fad2012-09-20 16:48:07 +02001467 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001468 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001469 return ERR_ALERT | ERR_FATAL;
1470 }
1471
1472 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001473 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001474 return ERR_ALERT | ERR_FATAL;
1475 }
1476
Willy Tarreau4348fad2012-09-20 16:48:07 +02001477 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001478 new->luid = strtol(args[cur_arg + 1], &error, 10);
1479 if (*error != '\0') {
1480 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1481 return ERR_ALERT | ERR_FATAL;
1482 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001483 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001484
Willy Tarreau4348fad2012-09-20 16:48:07 +02001485 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001486 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001487 return ERR_ALERT | ERR_FATAL;
1488 }
1489
Willy Tarreau4348fad2012-09-20 16:48:07 +02001490 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001491 if (node) {
1492 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001493 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1494 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1495 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001496 return ERR_ALERT | ERR_FATAL;
1497 }
1498
Willy Tarreau4348fad2012-09-20 16:48:07 +02001499 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001500 return 0;
1501}
1502
1503/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001504static 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 +02001505{
1506 struct listener *l;
1507 int val;
1508
1509 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001510 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001511 return ERR_ALERT | ERR_FATAL;
1512 }
1513
1514 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001515 if (val < 0) {
1516 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001517 return ERR_ALERT | ERR_FATAL;
1518 }
1519
Willy Tarreau4348fad2012-09-20 16:48:07 +02001520 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001521 l->maxconn = val;
1522
1523 return 0;
1524}
1525
1526/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001527static 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 +02001528{
1529 struct listener *l;
1530
1531 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001532 memprintf(err, "'%s' : missing name", args[cur_arg]);
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->name = strdup(args[cur_arg + 1]);
1538
1539 return 0;
1540}
1541
1542/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001543static 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 +02001544{
1545 struct listener *l;
1546 int val;
1547
1548 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001549 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001550 return ERR_ALERT | ERR_FATAL;
1551 }
1552
1553 val = atol(args[cur_arg + 1]);
1554 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001555 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001556 return ERR_ALERT | ERR_FATAL;
1557 }
1558
Willy Tarreau4348fad2012-09-20 16:48:07 +02001559 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001560 l->nice = val;
1561
1562 return 0;
1563}
1564
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001565/* parse the "process" bind keyword */
1566static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1567{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001568 char *slash;
1569 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001570
Christopher Fauletc644fa92017-11-23 22:44:11 +01001571 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1572 *slash = 0;
1573
Willy Tarreauff9c9142019-02-07 10:39:36 +01001574 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001575 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001576 return ERR_ALERT | ERR_FATAL;
1577 }
1578
Christopher Fauletc644fa92017-11-23 22:44:11 +01001579 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001580 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001581 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1582 return ERR_ALERT | ERR_FATAL;
1583 }
1584 *slash = '/';
1585 }
1586
Willy Tarreaue26993c2020-09-03 07:18:55 +02001587 conf->settings.bind_proc |= proc;
1588 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001589 return 0;
1590}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001591
Christopher Fauleta717b992018-04-10 14:43:00 +02001592/* parse the "proto" bind keyword */
1593static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1594{
1595 struct ist proto;
1596
1597 if (!*args[cur_arg + 1]) {
1598 memprintf(err, "'%s' : missing value", args[cur_arg]);
1599 return ERR_ALERT | ERR_FATAL;
1600 }
1601
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001602 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001603 conf->mux_proto = get_mux_proto(proto);
1604 if (!conf->mux_proto) {
1605 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1606 return ERR_ALERT | ERR_FATAL;
1607 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001608 return 0;
1609}
1610
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001611/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1612static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001613 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001614 char **err)
1615{
1616 if (too_many_args(1, args, err, NULL))
1617 return -1;
1618
1619 if (strcmp(args[1], "on") == 0)
1620 global.tune.options |= GTUNE_LISTENER_MQ;
1621 else if (strcmp(args[1], "off") == 0)
1622 global.tune.options &= ~GTUNE_LISTENER_MQ;
1623 else {
1624 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1625 return -1;
1626 }
1627 return 0;
1628}
1629
Willy Tarreau61612d42012-04-19 18:42:05 +02001630/* Note: must not be declared <const> as its list will be overwritten.
1631 * Please take care of keeping this list alphabetically sorted.
1632 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001633static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001634 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1635 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001636 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001637 { /* END */ },
1638}};
1639
Willy Tarreau0108d902018-11-25 19:14:37 +01001640INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1641
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001642/* Note: must not be declared <const> as its list will be overwritten.
1643 * Please take care of keeping this list alphabetically sorted.
1644 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001645static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001646 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001647}};
1648
Willy Tarreau0108d902018-11-25 19:14:37 +01001649INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1650
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001651/* Note: must not be declared <const> as its list will be overwritten.
1652 * Please take care of keeping this list alphabetically sorted, doing so helps
1653 * all code contributors.
1654 * Optional keywords are also declared with a NULL ->parse() function so that
1655 * the config parser can report an appropriate error when a known keyword was
1656 * not enabled.
1657 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001658static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001659 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001660 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1661 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1662 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1663 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1664 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1665 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001666 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001667 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001668 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001669}};
1670
Willy Tarreau0108d902018-11-25 19:14:37 +01001671INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1672
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001673/* config keyword parsers */
1674static struct cfg_kw_list cfg_kws = {ILH, {
1675 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1676 { 0, NULL, NULL }
1677}};
1678
1679INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1680
Willy Tarreau645513a2010-05-24 20:55:15 +02001681/*
1682 * Local variables:
1683 * c-indent-level: 8
1684 * c-basic-offset: 8
1685 * End:
1686 */