blob: 0ffd0feac6e4211dfa1482babe4a9239869e1ed9 [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 Tarreaua1d97f82019-12-10 11:18:41 +010048
William Dauchy3679d0c2021-02-14 23:22:55 +010049/* listener status for stats */
50const char* li_status_st[LI_STATE_COUNT] = {
51 [LI_STATUS_WAITING] = "WAITING",
52 [LI_STATUS_OPEN] = "OPEN",
53 [LI_STATUS_FULL] = "FULL",
54};
Willy Tarreaua1d97f82019-12-10 11:18:41 +010055
Willy Tarreau1efafce2019-01-27 15:37:19 +010056#if defined(USE_THREAD)
57
58struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
59
60/* dequeue and process a pending connection from the local accept queue (single
Willy Tarreau83efc322020-10-14 17:37:17 +020061 * consumer). Returns the accepted connection or NULL if none was found.
Willy Tarreau1efafce2019-01-27 15:37:19 +010062 */
Willy Tarreau83efc322020-10-14 17:37:17 +020063struct connection *accept_queue_pop_sc(struct accept_queue_ring *ring)
Willy Tarreau1efafce2019-01-27 15:37:19 +010064{
Willy Tarreau1efafce2019-01-27 15:37:19 +010065 unsigned int pos, next;
Willy Tarreau83efc322020-10-14 17:37:17 +020066 struct connection *ptr;
67 struct connection **e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010068
69 pos = ring->head;
70
71 if (pos == ring->tail)
Willy Tarreau83efc322020-10-14 17:37:17 +020072 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010073
74 next = pos + 1;
75 if (next >= ACCEPT_QUEUE_SIZE)
76 next = 0;
77
78 e = &ring->entry[pos];
79
80 /* wait for the producer to update the listener's pointer */
81 while (1) {
Willy Tarreau83efc322020-10-14 17:37:17 +020082 ptr = *e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010083 __ha_barrier_load();
84 if (ptr)
85 break;
86 pl_cpu_relax();
87 }
88
Willy Tarreau1efafce2019-01-27 15:37:19 +010089 /* release the entry */
Willy Tarreau83efc322020-10-14 17:37:17 +020090 *e = NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010091
92 __ha_barrier_store();
93 ring->head = next;
Willy Tarreau83efc322020-10-14 17:37:17 +020094 return ptr;
Willy Tarreau1efafce2019-01-27 15:37:19 +010095}
96
97
Willy Tarreau83efc322020-10-14 17:37:17 +020098/* tries to push a new accepted connection <conn> into ring <ring>. Returns
99 * non-zero if it succeeds, or zero if the ring is full. Supports multiple
100 * producers.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100101 */
Willy Tarreau83efc322020-10-14 17:37:17 +0200102int accept_queue_push_mp(struct accept_queue_ring *ring, struct connection *conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100103{
Willy Tarreau1efafce2019-01-27 15:37:19 +0100104 unsigned int pos, next;
105
106 pos = ring->tail;
107 do {
108 next = pos + 1;
109 if (next >= ACCEPT_QUEUE_SIZE)
110 next = 0;
111 if (next == ring->head)
112 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100113 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100114
Willy Tarreau83efc322020-10-14 17:37:17 +0200115 ring->entry[pos] = conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100116 __ha_barrier_store();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100117 return 1;
118}
119
Willy Tarreaufb5401f2021-01-29 12:25:23 +0100120/* proceed with accepting new connections. Don't mark it static so that it appears
121 * in task dumps.
122 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100123struct task *accept_queue_process(struct task *t, void *context, unsigned int state)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100124{
125 struct accept_queue_ring *ring = context;
Willy Tarreau83efc322020-10-14 17:37:17 +0200126 struct connection *conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100127 struct listener *li;
Christopher Faulet102854c2019-04-30 12:17:13 +0200128 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100129 int ret;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100130
Christopher Faulet102854c2019-04-30 12:17:13 +0200131 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
132 * is not really illimited, but it is probably enough.
133 */
Willy Tarreau66161322021-02-19 15:50:27 +0100134 max_accept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Christopher Faulet102854c2019-04-30 12:17:13 +0200135 for (; max_accept; max_accept--) {
Willy Tarreau83efc322020-10-14 17:37:17 +0200136 conn = accept_queue_pop_sc(ring);
137 if (!conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100138 break;
139
Willy Tarreau83efc322020-10-14 17:37:17 +0200140 li = __objt_listener(conn->target);
Willy Tarreau4781b152021-04-06 13:53:36 +0200141 _HA_ATOMIC_INC(&li->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +0200142 ret = li->accept(conn);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100143 if (ret <= 0) {
144 /* connection was terminated by the application */
145 continue;
146 }
147
148 /* increase the per-process number of cumulated sessions, this
149 * may only be done once l->accept() has accepted the connection.
150 */
151 if (!(li->options & LI_O_UNLIMITED)) {
152 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
153 update_freq_ctr(&global.sess_per_sec, 1));
154 if (li->bind_conf && li->bind_conf->is_ssl) {
155 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
156 update_freq_ctr(&global.ssl_per_sec, 1));
157 }
158 }
159 }
160
161 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200162 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200163 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100164
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200165 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100166}
167
168/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
169static int accept_queue_init()
170{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200171 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100172 int i;
173
174 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200175 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100176 if (!t) {
177 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
178 return ERR_FATAL|ERR_ABORT;
179 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200180 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100181 t->process = accept_queue_process;
182 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200183 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100184 }
185 return 0;
186}
187
188REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
189
190#endif // USE_THREAD
191
William Dauchy3679d0c2021-02-14 23:22:55 +0100192/* helper to get listener status for stats */
193enum li_status get_li_status(struct listener *l)
194{
195 if (!l->maxconn || l->nbconn < l->maxconn) {
196 if (l->state == LI_LIMITED)
197 return LI_STATUS_WAITING;
198 else
199 return LI_STATUS_OPEN;
200 }
201 return LI_STATUS_FULL;
202}
203
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200204/* adjust the listener's state and its proxy's listener counters if needed.
205 * It must be called under the listener's lock, but uses atomic ops to change
206 * the proxy's counters so that the proxy lock is not needed.
207 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200208void listener_set_state(struct listener *l, enum li_state st)
209{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200210 struct proxy *px = l->bind_conf->frontend;
211
212 if (px) {
213 /* from state */
214 switch (l->state) {
215 case LI_NEW: /* first call */
Willy Tarreau4781b152021-04-06 13:53:36 +0200216 _HA_ATOMIC_INC(&px->li_all);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200217 break;
218 case LI_INIT:
219 case LI_ASSIGNED:
220 break;
221 case LI_PAUSED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200222 _HA_ATOMIC_DEC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200223 break;
224 case LI_LISTEN:
Willy Tarreau4781b152021-04-06 13:53:36 +0200225 _HA_ATOMIC_DEC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200226 break;
227 case LI_READY:
228 case LI_FULL:
229 case LI_LIMITED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200230 _HA_ATOMIC_DEC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200231 break;
232 }
233
234 /* to state */
235 switch (st) {
236 case LI_NEW:
237 case LI_INIT:
238 case LI_ASSIGNED:
239 break;
240 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200241 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200242 _HA_ATOMIC_INC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200243 break;
244 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200245 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200246 _HA_ATOMIC_INC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200247 break;
248 case LI_READY:
249 case LI_FULL:
250 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200251 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200252 _HA_ATOMIC_INC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200253 break;
254 }
255 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200256 l->state = st;
257}
258
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100259/* This function adds the specified listener's file descriptor to the polling
260 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500261 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200262 * also support binding only the relevant processes to their respective
263 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100264 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200265void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100266{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100267 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200268
269 /* If this listener is supposed to be only in the master, close it in
270 * the workers. Conversely, if it's supposed to be only in the workers
271 * close it in the master.
272 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200273 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200274 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200275
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100276 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200277 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200278 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau38dba272020-11-04 13:54:00 +0100279 (!!master != !!(listener->rx.flags & RX_F_MWORKER) ||
280 !(proc_mask(listener->rx.settings->bind_proc) & pid_bit))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200281 /* we don't want to enable this listener and don't
282 * want any fd event to reach it.
283 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200284 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200285 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100286 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200287 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200288 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200289 }
290 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200291 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100292 }
293 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200294
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100295 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100296}
297
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200298/*
299 * This function completely stops a listener. It will need to operate under the
300 * proxy's lock, the protocol's lock, and the listener's lock. The caller is
301 * responsible for indicating in lpx, lpr, lli whether the respective locks are
302 * already held (non-zero) or not (zero) so that the function picks the missing
303 * ones, in this order. The proxy's listeners count is updated and the proxy is
304 * disabled and woken up after the last one is gone.
305 */
306void stop_listener(struct listener *l, int lpx, int lpr, int lli)
307{
308 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200309
310 if (l->options & LI_O_NOSTOP) {
311 /* master-worker sockpairs are never closed but don't count as a
312 * job.
313 */
314 return;
315 }
316
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200317 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200318 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200319
320 if (!lpr)
321 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
322
323 if (!lli)
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100324 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200325
326 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200327 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200328
329 if (l->state >= LI_ASSIGNED)
330 __delete_listener(l);
331
Willy Tarreauacde1522020-10-07 16:31:39 +0200332 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200333 }
334
335 if (!lli)
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100336 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200337
338 if (!lpr)
339 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
340
341 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200342 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200343}
344
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100345/* This function adds the specified <listener> to the protocol <proto>. It
346 * does nothing if the protocol was already added. The listener's state is
347 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
348 * for the protocol is updated. This must be called with the proto lock held.
349 */
350void default_add_listener(struct protocol *proto, struct listener *listener)
351{
352 if (listener->state != LI_INIT)
353 return;
354 listener_set_state(listener, LI_ASSIGNED);
355 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200356 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100357 proto->nb_receivers++;
358}
359
Willy Tarreaue03204c2020-10-09 17:02:21 +0200360/* default function called to suspend a listener: it simply passes the call to
361 * the underlying receiver. This is find for most socket-based protocols. This
362 * must be called under the listener's lock. It will return non-zero on success,
363 * 0 on failure. If no receiver-level suspend is provided, the operation is
364 * assumed to succeed.
365 */
366int default_suspend_listener(struct listener *l)
367{
368 int ret = 1;
369
370 if (!l->rx.proto->rx_suspend)
371 return 1;
372
373 ret = l->rx.proto->rx_suspend(&l->rx);
374 return ret > 0 ? ret : 0;
375}
376
377
378/* Tries to resume a suspended listener, and returns non-zero on success or
379 * zero on failure. On certain errors, an alert or a warning might be displayed.
380 * It must be called with the listener's lock held. Depending on the listener's
381 * state and protocol, a listen() call might be used to resume operations, or a
382 * call to the receiver's resume() function might be used as well. This is
383 * suitable as a default function for TCP and UDP. This must be called with the
384 * listener's lock held.
385 */
386int default_resume_listener(struct listener *l)
387{
388 int ret = 1;
389
390 if (l->state == LI_ASSIGNED) {
391 char msg[100];
392 int err;
393
394 err = l->rx.proto->listen(l, msg, sizeof(msg));
395 if (err & ERR_ALERT)
396 ha_alert("Resuming listener: %s\n", msg);
397 else if (err & ERR_WARN)
398 ha_warning("Resuming listener: %s\n", msg);
399
400 if (err & (ERR_FATAL | ERR_ABORT)) {
401 ret = 0;
402 goto end;
403 }
404 }
405
406 if (l->state < LI_PAUSED) {
407 ret = 0;
408 goto end;
409 }
410
411 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
412 l->rx.proto->rx_resume(&l->rx) <= 0)
413 ret = 0;
414 end:
415 return ret;
416}
417
418
Willy Tarreaube58c382011-07-24 18:28:10 +0200419/* This function tries to temporarily disable a listener, depending on the OS
420 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
421 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
422 * closes upon SHUT_WR and refuses to rebind. So a common validation path
423 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
424 * is disabled. It normally returns non-zero, unless an error is reported.
425 */
426int pause_listener(struct listener *l)
427{
Willy Tarreau58651b42020-09-24 16:03:29 +0200428 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200429 int ret = 1;
430
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100431 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200432
Willy Tarreau02e19752020-09-23 17:17:22 +0200433 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
434 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
435 goto end;
436
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200437 if (l->state <= LI_PAUSED)
438 goto end;
439
Willy Tarreaue03204c2020-10-09 17:02:21 +0200440 if (l->rx.proto->suspend)
441 ret = l->rx.proto->suspend(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200442
Willy Tarreau2b718102021-04-21 07:32:39 +0200443 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200444
Willy Tarreaua37b2442020-09-24 07:23:45 +0200445 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200446
447 if (px && !px->li_ready) {
448 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
449 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
450 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200451 end:
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100452 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200453 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200454}
455
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200456/* This function tries to resume a temporarily disabled listener. Paused, full,
457 * limited and disabled listeners are handled, which means that this function
458 * may replace enable_listener(). The resulting state will either be LI_READY
459 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200460 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200461 * foreground mode, and are ignored. If the listener was only in the assigned
462 * state, it's totally rebound. This can happen if a pause() has completely
463 * stopped it. If the resume fails, 0 is returned and an error might be
464 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200465 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100466int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200467{
Willy Tarreau58651b42020-09-24 16:03:29 +0200468 struct proxy *px = l->bind_conf->frontend;
469 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200470 int ret = 1;
471
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100472 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200473
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200474 /* check that another thread didn't to the job in parallel (e.g. at the
475 * end of listen_accept() while we'd come from dequeue_all_listeners().
476 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200477 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200478 goto end;
479
William Lallemand095ba4c2017-06-01 17:38:50 +0200480 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200481 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200482 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100483
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200484 if (l->state == LI_READY)
485 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200486
Willy Tarreaue03204c2020-10-09 17:02:21 +0200487 if (l->rx.proto->resume)
488 ret = l->rx.proto->resume(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200489
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100490 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200491 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200492 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200493 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200494 }
495
Willy Tarreau4b51f422020-09-25 20:32:28 +0200496 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200497 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200498
499 done:
500 if (was_paused && !px->li_paused) {
501 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
502 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
503 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200504 end:
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100505 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200506 return ret;
507}
508
Willy Tarreau87b09662015-04-03 00:22:06 +0200509/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200510 * it upon next close() using resume_listener().
511 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200512static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200513{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100514 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200515 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200516 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100517 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200518 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200519 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100520 }
Willy Tarreau62793712011-07-24 19:23:38 +0200521 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100522 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200523}
524
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200525/* Marks a ready listener as limited so that we only try to re-enable it when
526 * resources are free again. It will be queued into the specified queue.
527 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200528static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200529{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100530 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200531 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200532 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200533 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200534 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200535 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100536 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200537}
538
Willy Tarreau241797a2019-12-10 14:10:52 +0100539/* Dequeues all listeners waiting for a resource the global wait queue */
540void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200541{
Willy Tarreau01abd022019-02-28 10:27:18 +0100542 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200543
Willy Tarreau241797a2019-12-10 14:10:52 +0100544 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200545 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100546 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200547 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100548 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200549 }
550}
551
Willy Tarreau241797a2019-12-10 14:10:52 +0100552/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
553void dequeue_proxy_listeners(struct proxy *px)
554{
555 struct listener *listener;
556
557 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
558 /* This cannot fail because the listeners are by definition in
559 * the LI_LIMITED state.
560 */
561 resume_listener(listener);
562 }
563}
564
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200565
566/* default function used to unbind a listener. This is for use by standard
567 * protocols working on top of accepted sockets. The receiver's rx_unbind()
568 * will automatically be used after the listener is disabled if the socket is
569 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100570 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200571void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100572{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200573 if (listener->state <= LI_ASSIGNED)
574 goto out_close;
575
576 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200577 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200578 goto out_close;
579 }
580
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200581 if (listener->state >= LI_READY) {
582 listener->rx.proto->disable(listener);
583 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200584 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200585 }
586
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200587 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200588 if (listener->rx.flags & RX_F_BOUND)
589 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200590}
591
592/* This function closes the listening socket for the specified listener,
593 * provided that it's already in a listening state. The protocol's unbind()
594 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
595 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
596 * the receiver is unbound. Must be called with the lock held.
597 */
598void do_unbind_listener(struct listener *listener)
599{
Willy Tarreau2b718102021-04-21 07:32:39 +0200600 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200601
602 if (listener->rx.proto->unbind)
603 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200604
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200605 /* we may have to downgrade the listener if the rx was closed */
606 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200607 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100608}
609
Olivier Houchard1fc05162017-04-06 01:05:05 +0200610/* This function closes the listening socket for the specified listener,
611 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200612 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
613 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100614 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200615 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100616void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200617{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100618 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200619 do_unbind_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100620 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200621}
622
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200623/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
624 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200625 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200626 * passed in <proto> must be usable on this family. The protocol's default iocb
627 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200628 * listeners is automatically increased by the number of listeners created. It
629 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200630 */
631int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200632 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200633{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200634 struct listener *l;
635 int port;
636
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200637 for (port = portl; port <= porth; port++) {
638 l = calloc(1, sizeof(*l));
639 if (!l) {
640 memprintf(err, "out of memory");
641 return 0;
642 }
643 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200644 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
645 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200646 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200647 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200648 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200649 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200650 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100651
Willy Tarreau37159062020-08-27 07:48:42 +0200652 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100653 if (proto->fam->set_port)
654 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100655
Olivier Houchard859dc802019-08-08 15:47:21 +0200656 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200657 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200658
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100659 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200660
Willy Tarreau909c23b2020-09-15 13:50:58 +0200661 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200662 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100663
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100664 l->extra_counters = NULL;
665
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100666 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200667 _HA_ATOMIC_INC(&jobs);
668 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200669 }
670 return 1;
671}
672
Willy Tarreau1a64d162007-10-28 22:26:05 +0100673/* Delete a listener from its protocol's list of listeners. The listener's
674 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200675 * number of listeners is updated, as well as the global number of listeners
676 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200677 * is a low-level function expected to be called with the proto_lock and the
678 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100679 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200680void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100681{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100682 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200683 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200684 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200685 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200686 _HA_ATOMIC_DEC(&jobs);
687 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100688 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200689}
690
691/* Delete a listener from its protocol's list of listeners (please check
692 * __delete_listener() above). The proto_lock and the listener's lock will
693 * be grabbed in this order.
694 */
695void delete_listener(struct listener *listener)
696{
697 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100698 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200699 __delete_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100700 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200701 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100702}
703
Willy Tarreaue2711c72019-02-27 15:39:41 +0100704/* Returns a suitable value for a listener's backlog. It uses the listener's,
705 * otherwise the frontend's backlog, otherwise the listener's maxconn,
706 * otherwise the frontend's maxconn, otherwise 1024.
707 */
708int listener_backlog(const struct listener *l)
709{
710 if (l->backlog)
711 return l->backlog;
712
713 if (l->bind_conf->frontend->backlog)
714 return l->bind_conf->frontend->backlog;
715
716 if (l->maxconn)
717 return l->maxconn;
718
719 if (l->bind_conf->frontend->maxconn)
720 return l->bind_conf->frontend->maxconn;
721
722 return 1024;
723}
724
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200725/* This function is called on a read event from a listening socket, corresponding
726 * to an accept. It tries to accept as many connections as possible, and for each
727 * calls the listener's accept handler (generally the frontend's accept handler).
728 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200729void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200730{
Willy Tarreau83efc322020-10-14 17:37:17 +0200731 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100732 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200733 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100734 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100735 int next_feconn = 0;
736 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200737 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200738 int ret;
739
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100740 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200741
742 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
743 * illimited, but it is probably enough.
744 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100745 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200746
Willy Tarreau93e7c002013-10-07 18:51:07 +0200747 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
748 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200749
750 if (unlikely(!max)) {
751 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200752 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100753 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200754 }
755
756 if (max_accept > max)
757 max_accept = max;
758 }
759
760 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200761 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
762
763 if (unlikely(!max)) {
764 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200765 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100766 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200767 }
768
769 if (max_accept > max)
770 max_accept = max;
771 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200772#ifdef USE_OPENSSL
773 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
774 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200775
Willy Tarreaue43d5322013-10-07 20:01:52 +0200776 if (unlikely(!max)) {
777 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200778 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100779 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200780 }
781
782 if (max_accept > max)
783 max_accept = max;
784 }
785#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200786 if (p && p->fe_sps_lim) {
787 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
788
789 if (unlikely(!max)) {
790 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100791 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
792 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200793 }
794
795 if (max_accept > max)
796 max_accept = max;
797 }
798
799 /* Note: if we fail to allocate a connection because of configured
800 * limits, we'll schedule a new attempt worst 1 second later in the
801 * worst case. If we fail due to system limits or temporary resource
802 * shortage, we try again 100ms later in the worst case.
803 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100804 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200805 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200806 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200807 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200808
Willy Tarreau82c97892019-02-27 19:32:32 +0100809 /* pre-increase the number of connections without going too far.
810 * We process the listener, then the proxy, then the process.
811 * We know which ones to unroll based on the next_xxx value.
812 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100813 do {
814 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100815 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100816 /* the listener was marked full or another
817 * thread is going to do it.
818 */
819 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100820 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100821 goto end;
822 }
823 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000824 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100825
Willy Tarreau82c97892019-02-27 19:32:32 +0100826 if (p) {
827 do {
828 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100829 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100830 /* the frontend was marked full or another
831 * thread is going to do it.
832 */
833 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100834 expire = TICK_ETERNITY;
835 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100836 }
837 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100838 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200839 }
840
Willy Tarreau82c97892019-02-27 19:32:32 +0100841 if (!(l->options & LI_O_UNLIMITED)) {
842 do {
843 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100844 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100845 /* the process was marked full or another
846 * thread is going to do it.
847 */
848 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100849 expire = tick_add(now_ms, 1000); /* try again in 1 second */
850 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100851 }
852 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000853 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200854 }
855
Willy Tarreaud276ee52022-02-01 16:37:00 +0100856 /* be careful below, the listener might be shutting down in
857 * another thread on error and we must not dereference its
858 * FD without a bit of protection.
859 */
860 cli_conn = NULL;
861 status = CO_AC_PERMERR;
862
863 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
864 if (l->rx.flags & RX_F_BOUND)
865 cli_conn = l->rx.proto->accept_conn(l, &status);
866 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
867
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200868 if (!cli_conn) {
869 switch (status) {
870 case CO_AC_DONE:
871 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100872
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200873 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200874 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100875 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200876 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100877 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200878 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100879 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200880
881 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100882 max_accept = 0;
883 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100884
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200885 default:
886 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200887 }
888 }
889
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100890 /* The connection was accepted, it must be counted as such */
891 if (l->counters)
892 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
893
Willy Tarreauee3ec402022-05-09 20:41:54 +0200894 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100895 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreauee3ec402022-05-09 20:41:54 +0200896 proxy_inc_fe_conn_ctr(l, p);
897 }
Willy Tarreau82c97892019-02-27 19:32:32 +0100898
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100899 if (!(l->options & LI_O_UNLIMITED)) {
900 count = update_freq_ctr(&global.conn_per_sec, 1);
901 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100902 }
903
Willy Tarreau4781b152021-04-06 13:53:36 +0200904 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +0200905
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200906 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200907 send_log(p, LOG_EMERG,
908 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
909 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200910 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +0200911 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100912 expire = tick_add(now_ms, 1000); /* try again in 1 second */
913 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200914 }
915
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100916 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100917 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
918 * allows the error path not to rollback on nbconn. It's more
919 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100920 */
921 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100922 next_feconn = 0;
923 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200924
Willy Tarreau83efc322020-10-14 17:37:17 +0200925
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100926#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200927 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100928 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100929 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100930 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100931
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100932 /* The principle is that we have two running indexes,
933 * each visiting in turn all threads bound to this
934 * listener. The connection will be assigned to the one
935 * with the least connections, and the other one will
936 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100937 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100938 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100939 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100940
941 /* keep a copy for the final update. thr_idx is composite
942 * and made of (t2<<16) + t1.
943 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100944 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100945 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100946 unsigned long m1, m2;
947 int q1, q2;
948
949 t2 = t1 = t0;
950 t2 >>= 16;
951 t1 &= 0xFFFF;
952
953 /* t1 walks low to high bits ;
954 * t2 walks high to low.
955 */
956 m1 = mask >> t1;
957 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
958
Willy Tarreau85d04242019-04-16 18:09:13 +0200959 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100960 m1 &= ~1UL;
961 if (!m1) {
962 m1 = mask;
963 t1 = 0;
964 }
965 t1 += my_ffsl(m1) - 1;
966 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100967
Willy Tarreau85d04242019-04-16 18:09:13 +0200968 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
969 /* highest bit not set */
970 if (!m2)
971 m2 = mask;
972
973 t2 = my_flsl(m2) - 1;
974 }
975
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100976 /* now we have two distinct thread IDs belonging to the mask */
977 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
978 if (q1 >= ACCEPT_QUEUE_SIZE)
979 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100980
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100981 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
982 if (q2 >= ACCEPT_QUEUE_SIZE)
983 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100984
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100985 /* we have 3 possibilities now :
986 * q1 < q2 : t1 is less loaded than t2, so we pick it
987 * and update t2 (since t1 might still be
988 * lower than another thread)
989 * q1 > q2 : t2 is less loaded than t1, so we pick it
990 * and update t1 (since t2 might still be
991 * lower than another thread)
992 * q1 = q2 : both are equally loaded, thus we pick t1
993 * and update t1 as it will become more loaded
994 * than t2.
995 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100996
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100997 q1 += l->thr_conn[t1];
998 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100999
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001000 if (q1 - q2 < 0) {
1001 t = t1;
1002 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1003 }
1004 else if (q1 - q2 > 0) {
1005 t = t2;
1006 t1++;
1007 if (t1 >= LONGBITS)
1008 t1 = 0;
1009 }
1010 else {
1011 t = t1;
1012 t1++;
1013 if (t1 >= LONGBITS)
1014 t1 = 0;
1015 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001016
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001017 /* new value for thr_idx */
1018 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001019 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001020
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001021 /* We successfully selected the best thread "t" for this
1022 * connection. We use deferred accepts even if it's the
1023 * local thread because tests show that it's the best
1024 * performing model, likely due to better cache locality
1025 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001026 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001027 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001028 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001029 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001030 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001031 continue;
1032 }
1033 /* If the ring is full we do a synchronous accept on
1034 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001035 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001036 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001037 }
1038#endif // USE_THREAD
1039
Willy Tarreau4781b152021-04-06 13:53:36 +02001040 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001041 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001042 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001043 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001044 * we just have to ignore it (ret == 0) or it's a critical
1045 * error due to a resource shortage, and we must stop the
1046 * listener (ret < 0).
1047 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001048 if (ret == 0) /* successful termination */
1049 continue;
1050
Willy Tarreaubb660302014-05-07 19:47:02 +02001051 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001052 }
1053
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001054 /* increase the per-process number of cumulated sessions, this
1055 * may only be done once l->accept() has accepted the connection.
1056 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001057 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001058 count = update_freq_ctr(&global.sess_per_sec, 1);
1059 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001060 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001061#ifdef USE_OPENSSL
1062 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001063 count = update_freq_ctr(&global.ssl_per_sec, 1);
1064 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001065 }
1066#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001067
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001068 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001069 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001070
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001071 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001072 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001073 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001074
Willy Tarreau82c97892019-02-27 19:32:32 +01001075 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001076 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001077
1078 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001079 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001080
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001081 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001082 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001083 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1084 (!tick_isset(global_listener_queue_task->expire) ||
1085 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001086 /* at least one thread has to this when quitting */
1087 resume_listener(l);
1088
Willy Tarreau02757d02021-01-28 18:07:24 +01001089 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001090 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001091
Olivier Houchard859dc802019-08-08 15:47:21 +02001092 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001093 (!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 +01001094 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001095 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001096 return;
1097
1098 transient_error:
1099 /* pause the listener for up to 100 ms */
1100 expire = tick_add(now_ms, 100);
1101
Willy Tarreau258b3512020-10-13 17:46:05 +02001102 /* This may be a shared socket that was paused by another process.
1103 * Let's put it to pause in this case.
1104 */
1105 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
1106 pause_listener(l);
1107 goto end;
1108 }
1109
Willy Tarreau0591bf72019-12-10 12:01:21 +01001110 limit_global:
1111 /* (re-)queue the listener to the global queue and set it to expire no
1112 * later than <expire> ahead. The listener turns to LI_LIMITED.
1113 */
1114 limit_listener(l, &global_listener_queue);
1115 task_schedule(global_listener_queue_task, expire);
1116 goto end;
1117
1118 limit_proxy:
1119 /* (re-)queue the listener to the proxy's queue and set it to expire no
1120 * later than <expire> ahead. The listener turns to LI_LIMITED.
1121 */
1122 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001123 if (p->task && tick_isset(expire))
1124 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001125 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001126}
1127
Willy Tarreau05f50472017-09-15 09:19:58 +02001128/* Notify the listener that a connection initiated from it was released. This
1129 * is used to keep the connection count consistent and to possibly re-open
1130 * listening when it was limited.
1131 */
1132void listener_release(struct listener *l)
1133{
1134 struct proxy *fe = l->bind_conf->frontend;
1135
1136 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001137 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001138 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001139 _HA_ATOMIC_DEC(&fe->feconn);
1140 _HA_ATOMIC_DEC(&l->nbconn);
1141 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001142
1143 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001144 resume_listener(l);
1145
Willy Tarreau02757d02021-01-28 18:07:24 +01001146 /* Dequeues all of the listeners waiting for a resource */
1147 dequeue_all_listeners();
1148
Olivier Houchard859dc802019-08-08 15:47:21 +02001149 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001150 (!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 +01001151 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001152}
1153
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001154/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1155static int listener_queue_init()
1156{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001157 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1158 if (!global_listener_queue_task) {
1159 ha_alert("Out of memory when initializing global listener queue\n");
1160 return ERR_FATAL|ERR_ABORT;
1161 }
1162 /* very simple initialization, users will queue the task if needed */
1163 global_listener_queue_task->context = NULL; /* not even a context! */
1164 global_listener_queue_task->process = manage_global_listener_queue;
1165
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001166 return 0;
1167}
1168
1169static void listener_queue_deinit()
1170{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001171 task_destroy(global_listener_queue_task);
1172 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001173}
1174
1175REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1176REGISTER_POST_DEINIT(listener_queue_deinit);
1177
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001178
1179/* This is the global management task for listeners. It enables listeners waiting
1180 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001181 * a while. It is designed to be called as a task. It's exported so that it's easy
1182 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001183 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001184struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001185{
1186 /* If there are still too many concurrent connections, let's wait for
1187 * some of them to go away. We don't need to re-arm the timer because
1188 * each of them will scan the queue anyway.
1189 */
1190 if (unlikely(actconn >= global.maxconn))
1191 goto out;
1192
1193 /* We should periodically try to enable listeners waiting for a global
1194 * resource here, because it is possible, though very unlikely, that
1195 * they have been blocked by a temporary lack of global resource such
1196 * as a file descriptor or memory and that the temporary condition has
1197 * disappeared.
1198 */
1199 dequeue_all_listeners();
1200
1201 out:
1202 t->expire = TICK_ETERNITY;
1203 task_queue(t);
1204 return t;
1205}
1206
Willy Tarreau26982662012-09-12 23:17:10 +02001207/*
1208 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1209 * parsing sessions.
1210 */
1211void bind_register_keywords(struct bind_kw_list *kwl)
1212{
Willy Tarreau2b718102021-04-21 07:32:39 +02001213 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001214}
1215
1216/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1217 * keyword is found with a NULL ->parse() function, then an attempt is made to
1218 * find one with a valid ->parse() function. This way it is possible to declare
1219 * platform-dependant, known keywords as NULL, then only declare them as valid
1220 * if some options are met. Note that if the requested keyword contains an
1221 * opening parenthesis, everything from this point is ignored.
1222 */
1223struct bind_kw *bind_find_kw(const char *kw)
1224{
1225 int index;
1226 const char *kwend;
1227 struct bind_kw_list *kwl;
1228 struct bind_kw *ret = NULL;
1229
1230 kwend = strchr(kw, '(');
1231 if (!kwend)
1232 kwend = kw + strlen(kw);
1233
1234 list_for_each_entry(kwl, &bind_keywords.list, list) {
1235 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1236 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1237 kwl->kw[index].kw[kwend-kw] == 0) {
1238 if (kwl->kw[index].parse)
1239 return &kwl->kw[index]; /* found it !*/
1240 else
1241 ret = &kwl->kw[index]; /* may be OK */
1242 }
1243 }
1244 }
1245 return ret;
1246}
1247
Willy Tarreau8638f482012-09-18 18:01:17 +02001248/* Dumps all registered "bind" keywords to the <out> string pointer. The
1249 * unsupported keywords are only dumped if their supported form was not
1250 * found.
1251 */
1252void bind_dump_kws(char **out)
1253{
1254 struct bind_kw_list *kwl;
1255 int index;
1256
Christopher Faulet784063e2020-05-18 12:14:18 +02001257 if (!out)
1258 return;
1259
Willy Tarreau8638f482012-09-18 18:01:17 +02001260 *out = NULL;
1261 list_for_each_entry(kwl, &bind_keywords.list, list) {
1262 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1263 if (kwl->kw[index].parse ||
1264 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001265 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1266 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001267 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001268 kwl->kw[index].skip ? " <arg>" : "",
1269 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001270 }
1271 }
1272 }
1273}
1274
Willy Tarreau433b05f2021-03-12 10:14:07 +01001275/* Try to find in srv_keyword the word that looks closest to <word> by counting
1276 * transitions between letters, digits and other characters. Will return the
1277 * best matching word if found, otherwise NULL.
1278 */
1279const char *bind_find_best_kw(const char *word)
1280{
1281 uint8_t word_sig[1024];
1282 uint8_t list_sig[1024];
1283 const struct bind_kw_list *kwl;
1284 const char *best_ptr = NULL;
1285 int dist, best_dist = INT_MAX;
1286 int index;
1287
1288 make_word_fingerprint(word_sig, word);
1289 list_for_each_entry(kwl, &bind_keywords.list, list) {
1290 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1291 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1292 dist = word_fingerprint_distance(word_sig, list_sig);
1293 if (dist < best_dist) {
1294 best_dist = dist;
1295 best_ptr = kwl->kw[index].kw;
1296 }
1297 }
1298 }
1299
1300 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1301 best_ptr = NULL;
1302
1303 return best_ptr;
1304}
1305
Willy Tarreau645513a2010-05-24 20:55:15 +02001306/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001307/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001308/************************************************************************/
1309
Willy Tarreaua5e37562011-12-16 17:06:15 +01001310/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001311static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001312smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001313{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001314 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001315 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001316 return 1;
1317}
1318
Willy Tarreaua5e37562011-12-16 17:06:15 +01001319/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001320static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001321smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001322{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001323 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001324 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001325 return 1;
1326}
Jerome Magnineb421b22020-03-27 22:08:40 +01001327static int
1328smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1329{
1330 smp->data.u.str.area = smp->sess->listener->name;
1331 if (!smp->data.u.str.area)
1332 return 0;
1333
1334 smp->data.type = SMP_T_STR;
1335 smp->flags = SMP_F_CONST;
1336 smp->data.u.str.data = strlen(smp->data.u.str.area);
1337 return 1;
1338}
Willy Tarreau645513a2010-05-24 20:55:15 +02001339
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001340/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001341static 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 +02001342{
1343 struct listener *l;
1344
Willy Tarreau4348fad2012-09-20 16:48:07 +02001345 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001346 l->options |= LI_O_ACC_PROXY;
1347
1348 return 0;
1349}
1350
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001351/* parse the "accept-netscaler-cip" bind keyword */
1352static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1353{
1354 struct listener *l;
1355 uint32_t val;
1356
1357 if (!*args[cur_arg + 1]) {
1358 memprintf(err, "'%s' : missing value", args[cur_arg]);
1359 return ERR_ALERT | ERR_FATAL;
1360 }
1361
1362 val = atol(args[cur_arg + 1]);
1363 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001364 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001365 return ERR_ALERT | ERR_FATAL;
1366 }
1367
1368 list_for_each_entry(l, &conf->listeners, by_bind) {
1369 l->options |= LI_O_ACC_CIP;
1370 conf->ns_cip_magic = val;
1371 }
1372
1373 return 0;
1374}
1375
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001376/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001377static 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 +02001378{
1379 struct listener *l;
1380 int val;
1381
1382 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001383 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001384 return ERR_ALERT | ERR_FATAL;
1385 }
1386
1387 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001388 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001389 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001390 return ERR_ALERT | ERR_FATAL;
1391 }
1392
Willy Tarreau4348fad2012-09-20 16:48:07 +02001393 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001394 l->backlog = val;
1395
1396 return 0;
1397}
1398
1399/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001400static 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 +02001401{
1402 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001403 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001404 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001405
Willy Tarreau4348fad2012-09-20 16:48:07 +02001406 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001407 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001408 return ERR_ALERT | ERR_FATAL;
1409 }
1410
1411 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001412 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001413 return ERR_ALERT | ERR_FATAL;
1414 }
1415
Willy Tarreau4348fad2012-09-20 16:48:07 +02001416 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001417 new->luid = strtol(args[cur_arg + 1], &error, 10);
1418 if (*error != '\0') {
1419 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1420 return ERR_ALERT | ERR_FATAL;
1421 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001422 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001423
Willy Tarreau4348fad2012-09-20 16:48:07 +02001424 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001425 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001426 return ERR_ALERT | ERR_FATAL;
1427 }
1428
Willy Tarreau4348fad2012-09-20 16:48:07 +02001429 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001430 if (node) {
1431 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001432 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1433 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1434 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001435 return ERR_ALERT | ERR_FATAL;
1436 }
1437
Willy Tarreau4348fad2012-09-20 16:48:07 +02001438 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001439 return 0;
1440}
1441
1442/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001443static 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 +02001444{
1445 struct listener *l;
1446 int val;
1447
1448 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001449 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001450 return ERR_ALERT | ERR_FATAL;
1451 }
1452
1453 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001454 if (val < 0) {
1455 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001456 return ERR_ALERT | ERR_FATAL;
1457 }
1458
Willy Tarreau4348fad2012-09-20 16:48:07 +02001459 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001460 l->maxconn = val;
1461
1462 return 0;
1463}
1464
1465/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001466static 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 +02001467{
1468 struct listener *l;
1469
1470 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001471 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001472 return ERR_ALERT | ERR_FATAL;
1473 }
1474
Willy Tarreau4348fad2012-09-20 16:48:07 +02001475 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001476 l->name = strdup(args[cur_arg + 1]);
1477
1478 return 0;
1479}
1480
1481/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001482static 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 +02001483{
1484 struct listener *l;
1485 int val;
1486
1487 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001488 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001489 return ERR_ALERT | ERR_FATAL;
1490 }
1491
1492 val = atol(args[cur_arg + 1]);
1493 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001494 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001495 return ERR_ALERT | ERR_FATAL;
1496 }
1497
Willy Tarreau4348fad2012-09-20 16:48:07 +02001498 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001499 l->nice = val;
1500
1501 return 0;
1502}
1503
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001504/* parse the "process" bind keyword */
1505static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1506{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001507 char *slash;
1508 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001509
Christopher Fauletc644fa92017-11-23 22:44:11 +01001510 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1511 *slash = 0;
1512
Willy Tarreauff9c9142019-02-07 10:39:36 +01001513 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001514 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001515 return ERR_ALERT | ERR_FATAL;
1516 }
1517
Christopher Fauletc644fa92017-11-23 22:44:11 +01001518 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001519 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001520 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1521 return ERR_ALERT | ERR_FATAL;
1522 }
1523 *slash = '/';
1524 }
1525
Willy Tarreaue26993c2020-09-03 07:18:55 +02001526 conf->settings.bind_proc |= proc;
1527 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001528 return 0;
1529}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001530
Christopher Fauleta717b992018-04-10 14:43:00 +02001531/* parse the "proto" bind keyword */
1532static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1533{
1534 struct ist proto;
1535
1536 if (!*args[cur_arg + 1]) {
1537 memprintf(err, "'%s' : missing value", args[cur_arg]);
1538 return ERR_ALERT | ERR_FATAL;
1539 }
1540
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001541 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001542 conf->mux_proto = get_mux_proto(proto);
1543 if (!conf->mux_proto) {
1544 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1545 return ERR_ALERT | ERR_FATAL;
1546 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001547 return 0;
1548}
1549
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001550/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1551static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001552 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001553 char **err)
1554{
1555 if (too_many_args(1, args, err, NULL))
1556 return -1;
1557
1558 if (strcmp(args[1], "on") == 0)
1559 global.tune.options |= GTUNE_LISTENER_MQ;
1560 else if (strcmp(args[1], "off") == 0)
1561 global.tune.options &= ~GTUNE_LISTENER_MQ;
1562 else {
1563 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1564 return -1;
1565 }
1566 return 0;
1567}
1568
Willy Tarreau61612d42012-04-19 18:42:05 +02001569/* Note: must not be declared <const> as its list will be overwritten.
1570 * Please take care of keeping this list alphabetically sorted.
1571 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001572static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001573 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1574 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001575 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001576 { /* END */ },
1577}};
1578
Willy Tarreau0108d902018-11-25 19:14:37 +01001579INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1580
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001581/* Note: must not be declared <const> as its list will be overwritten.
1582 * Please take care of keeping this list alphabetically sorted.
1583 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001584static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001585 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001586}};
1587
Willy Tarreau0108d902018-11-25 19:14:37 +01001588INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1589
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001590/* Note: must not be declared <const> as its list will be overwritten.
1591 * Please take care of keeping this list alphabetically sorted, doing so helps
1592 * all code contributors.
1593 * Optional keywords are also declared with a NULL ->parse() function so that
1594 * the config parser can report an appropriate error when a known keyword was
1595 * not enabled.
1596 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001597static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001598 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001599 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1600 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1601 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1602 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1603 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1604 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001605 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001606 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001607 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001608}};
1609
Willy Tarreau0108d902018-11-25 19:14:37 +01001610INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1611
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001612/* config keyword parsers */
1613static struct cfg_kw_list cfg_kws = {ILH, {
1614 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1615 { 0, NULL, NULL }
1616}};
1617
1618INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1619
Willy Tarreau645513a2010-05-24 20:55:15 +02001620/*
1621 * Local variables:
1622 * c-indent-level: 8
1623 * c-basic-offset: 8
1624 * End:
1625 */