blob: 1e1a83284077caddc04ae609d965691f1ae5f6e3 [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 Tarreau5d9ddc52021-10-06 19:54:09 +020022#include <haproxy/activity.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020023#include <haproxy/cfgparse.h>
Willy Tarreaudbf78022021-10-06 09:05:08 +020024#include <haproxy/cli-t.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020025#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020026#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/fd.h>
28#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020029#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020030#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020031#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020032#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/protocol.h>
Willy Tarreau5958c432021-05-08 20:30:37 +020034#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/sample.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020036#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020037#include <haproxy/task.h>
Willy Tarreau9310f482021-10-06 16:18:40 +020038#include <haproxy/ticks.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/tools.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020040
Willy Tarreaub648d632007-10-28 22:13:50 +010041
Willy Tarreau26982662012-09-12 23:17:10 +020042/* List head of all known bind keywords */
Willy Tarreauca1acd62022-03-29 15:02:44 +020043struct bind_kw_list bind_keywords = {
Willy Tarreau26982662012-09-12 23:17:10 +020044 .list = LIST_HEAD_INIT(bind_keywords.list)
45};
46
Willy Tarreaua1d97f82019-12-10 11:18:41 +010047/* list of the temporarily limited listeners because of lack of resource */
48static struct mt_list global_listener_queue = MT_LIST_HEAD_INIT(global_listener_queue);
49static struct task *global_listener_queue_task;
Willy Tarreaua1d97f82019-12-10 11:18:41 +010050
William Dauchy3679d0c2021-02-14 23:22:55 +010051/* listener status for stats */
52const char* li_status_st[LI_STATE_COUNT] = {
53 [LI_STATUS_WAITING] = "WAITING",
54 [LI_STATUS_OPEN] = "OPEN",
55 [LI_STATUS_FULL] = "FULL",
56};
Willy Tarreaua1d97f82019-12-10 11:18:41 +010057
Willy Tarreau1efafce2019-01-27 15:37:19 +010058#if defined(USE_THREAD)
59
60struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
61
62/* dequeue and process a pending connection from the local accept queue (single
Willy Tarreau83efc322020-10-14 17:37:17 +020063 * consumer). Returns the accepted connection or NULL if none was found.
Willy Tarreau1efafce2019-01-27 15:37:19 +010064 */
Willy Tarreau83efc322020-10-14 17:37:17 +020065struct connection *accept_queue_pop_sc(struct accept_queue_ring *ring)
Willy Tarreau1efafce2019-01-27 15:37:19 +010066{
Willy Tarreau1efafce2019-01-27 15:37:19 +010067 unsigned int pos, next;
Willy Tarreau83efc322020-10-14 17:37:17 +020068 struct connection *ptr;
69 struct connection **e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010070
71 pos = ring->head;
72
73 if (pos == ring->tail)
Willy Tarreau83efc322020-10-14 17:37:17 +020074 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010075
76 next = pos + 1;
77 if (next >= ACCEPT_QUEUE_SIZE)
78 next = 0;
79
80 e = &ring->entry[pos];
81
82 /* wait for the producer to update the listener's pointer */
83 while (1) {
Willy Tarreau83efc322020-10-14 17:37:17 +020084 ptr = *e;
Willy Tarreau1efafce2019-01-27 15:37:19 +010085 __ha_barrier_load();
86 if (ptr)
87 break;
88 pl_cpu_relax();
89 }
90
Willy Tarreau1efafce2019-01-27 15:37:19 +010091 /* release the entry */
Willy Tarreau83efc322020-10-14 17:37:17 +020092 *e = NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +010093
94 __ha_barrier_store();
95 ring->head = next;
Willy Tarreau83efc322020-10-14 17:37:17 +020096 return ptr;
Willy Tarreau1efafce2019-01-27 15:37:19 +010097}
98
99
Willy Tarreau83efc322020-10-14 17:37:17 +0200100/* tries to push a new accepted connection <conn> into ring <ring>. Returns
101 * non-zero if it succeeds, or zero if the ring is full. Supports multiple
102 * producers.
Willy Tarreau1efafce2019-01-27 15:37:19 +0100103 */
Willy Tarreau83efc322020-10-14 17:37:17 +0200104int accept_queue_push_mp(struct accept_queue_ring *ring, struct connection *conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100105{
Willy Tarreau1efafce2019-01-27 15:37:19 +0100106 unsigned int pos, next;
107
108 pos = ring->tail;
109 do {
110 next = pos + 1;
111 if (next >= ACCEPT_QUEUE_SIZE)
112 next = 0;
113 if (next == ring->head)
114 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100115 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100116
Willy Tarreau83efc322020-10-14 17:37:17 +0200117 ring->entry[pos] = conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100118 __ha_barrier_store();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100119 return 1;
120}
121
Willy Tarreaufb5401f2021-01-29 12:25:23 +0100122/* proceed with accepting new connections. Don't mark it static so that it appears
123 * in task dumps.
124 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100125struct task *accept_queue_process(struct task *t, void *context, unsigned int state)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100126{
127 struct accept_queue_ring *ring = context;
Willy Tarreau83efc322020-10-14 17:37:17 +0200128 struct connection *conn;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100129 struct listener *li;
Christopher Faulet102854c2019-04-30 12:17:13 +0200130 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100131 int ret;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100132
Christopher Faulet102854c2019-04-30 12:17:13 +0200133 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
134 * is not really illimited, but it is probably enough.
135 */
Willy Tarreau66161322021-02-19 15:50:27 +0100136 max_accept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Christopher Faulet102854c2019-04-30 12:17:13 +0200137 for (; max_accept; max_accept--) {
Willy Tarreau83efc322020-10-14 17:37:17 +0200138 conn = accept_queue_pop_sc(ring);
139 if (!conn)
Willy Tarreau1efafce2019-01-27 15:37:19 +0100140 break;
141
Willy Tarreau83efc322020-10-14 17:37:17 +0200142 li = __objt_listener(conn->target);
Willy Tarreau4781b152021-04-06 13:53:36 +0200143 _HA_ATOMIC_INC(&li->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +0200144 ret = li->accept(conn);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100145 if (ret <= 0) {
146 /* connection was terminated by the application */
147 continue;
148 }
149
150 /* increase the per-process number of cumulated sessions, this
151 * may only be done once l->accept() has accepted the connection.
152 */
153 if (!(li->options & LI_O_UNLIMITED)) {
154 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
155 update_freq_ctr(&global.sess_per_sec, 1));
156 if (li->bind_conf && li->bind_conf->is_ssl) {
157 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
158 update_freq_ctr(&global.ssl_per_sec, 1));
159 }
160 }
161 }
162
163 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200164 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200165 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100166
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200167 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100168}
169
170/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
171static int accept_queue_init()
172{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200173 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100174 int i;
175
176 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200177 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100178 if (!t) {
179 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
180 return ERR_FATAL|ERR_ABORT;
181 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200182 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100183 t->process = accept_queue_process;
184 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200185 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100186 }
187 return 0;
188}
189
190REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
191
192#endif // USE_THREAD
193
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100194/* Memory allocation and initialization of the per_thr field.
195 * Returns 0 if the field has been successfully initialized, -1 on failure.
196 */
197int li_init_per_thr(struct listener *li)
198{
199 int i;
200
201 /* allocate per-thread elements for listener */
202 li->per_thr = calloc(global.nbthread, sizeof(*li->per_thr));
203 if (!li->per_thr)
204 return -1;
205
206 for (i = 0; i < global.nbthread; ++i) {
207 MT_LIST_INIT(&li->per_thr[i].quic_accept.list);
208 MT_LIST_INIT(&li->per_thr[i].quic_accept.conns);
209
210 li->per_thr[i].li = li;
211 }
212
213 return 0;
214}
215
William Dauchy3679d0c2021-02-14 23:22:55 +0100216/* helper to get listener status for stats */
217enum li_status get_li_status(struct listener *l)
218{
219 if (!l->maxconn || l->nbconn < l->maxconn) {
220 if (l->state == LI_LIMITED)
221 return LI_STATUS_WAITING;
222 else
223 return LI_STATUS_OPEN;
224 }
225 return LI_STATUS_FULL;
226}
227
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200228/* adjust the listener's state and its proxy's listener counters if needed.
229 * It must be called under the listener's lock, but uses atomic ops to change
230 * the proxy's counters so that the proxy lock is not needed.
231 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200232void listener_set_state(struct listener *l, enum li_state st)
233{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200234 struct proxy *px = l->bind_conf->frontend;
235
236 if (px) {
237 /* from state */
238 switch (l->state) {
239 case LI_NEW: /* first call */
Willy Tarreau4781b152021-04-06 13:53:36 +0200240 _HA_ATOMIC_INC(&px->li_all);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200241 break;
242 case LI_INIT:
243 case LI_ASSIGNED:
244 break;
245 case LI_PAUSED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200246 _HA_ATOMIC_DEC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200247 break;
248 case LI_LISTEN:
Willy Tarreau4781b152021-04-06 13:53:36 +0200249 _HA_ATOMIC_DEC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200250 break;
251 case LI_READY:
252 case LI_FULL:
253 case LI_LIMITED:
Willy Tarreau4781b152021-04-06 13:53:36 +0200254 _HA_ATOMIC_DEC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200255 break;
256 }
257
258 /* to state */
259 switch (st) {
260 case LI_NEW:
261 case LI_INIT:
262 case LI_ASSIGNED:
263 break;
264 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200265 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200266 _HA_ATOMIC_INC(&px->li_paused);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200267 break;
268 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200269 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200270 _HA_ATOMIC_INC(&px->li_bound);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200271 break;
272 case LI_READY:
273 case LI_FULL:
274 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200275 BUG_ON(l->rx.fd == -1);
Willy Tarreau4781b152021-04-06 13:53:36 +0200276 _HA_ATOMIC_INC(&px->li_ready);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200277 break;
278 }
279 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200280 l->state = st;
281}
282
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100283/* This function adds the specified listener's file descriptor to the polling
284 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500285 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200286 * also support binding only the relevant processes to their respective
287 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100288 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200289void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100290{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100291 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200292
293 /* If this listener is supposed to be only in the master, close it in
294 * the workers. Conversely, if it's supposed to be only in the workers
295 * close it in the master.
296 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200297 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200298 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200299
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100300 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200301 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200302 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau72faef32021-06-15 08:36:30 +0200303 (!!master != !!(listener->rx.flags & RX_F_MWORKER))) {
Willy Tarreauae302532014-05-07 19:22:24 +0200304 /* we don't want to enable this listener and don't
305 * want any fd event to reach it.
306 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200307 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200308 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100309 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200310 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200311 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200312 }
313 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200314 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100315 }
316 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200317
Willy Tarreau08b6f962022-02-01 16:23:00 +0100318 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100319}
320
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200321/*
322 * This function completely stops a listener. It will need to operate under the
323 * proxy's lock, the protocol's lock, and the listener's lock. The caller is
324 * responsible for indicating in lpx, lpr, lli whether the respective locks are
325 * already held (non-zero) or not (zero) so that the function picks the missing
326 * ones, in this order. The proxy's listeners count is updated and the proxy is
327 * disabled and woken up after the last one is gone.
328 */
329void stop_listener(struct listener *l, int lpx, int lpr, int lli)
330{
331 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200332
333 if (l->options & LI_O_NOSTOP) {
334 /* master-worker sockpairs are never closed but don't count as a
335 * job.
336 */
337 return;
338 }
339
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200340 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200341 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200342
343 if (!lpr)
344 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
345
346 if (!lli)
Willy Tarreau08b6f962022-02-01 16:23:00 +0100347 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200348
349 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200350 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200351
352 if (l->state >= LI_ASSIGNED)
353 __delete_listener(l);
354
Willy Tarreauacde1522020-10-07 16:31:39 +0200355 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200356 }
357
358 if (!lli)
Willy Tarreau08b6f962022-02-01 16:23:00 +0100359 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200360
361 if (!lpr)
362 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
363
364 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200365 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200366}
367
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100368/* This function adds the specified <listener> to the protocol <proto>. It
369 * does nothing if the protocol was already added. The listener's state is
370 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
371 * for the protocol is updated. This must be called with the proto lock held.
372 */
373void default_add_listener(struct protocol *proto, struct listener *listener)
374{
375 if (listener->state != LI_INIT)
376 return;
377 listener_set_state(listener, LI_ASSIGNED);
378 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200379 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100380 proto->nb_receivers++;
381}
382
Willy Tarreaue03204c2020-10-09 17:02:21 +0200383/* default function called to suspend a listener: it simply passes the call to
384 * the underlying receiver. This is find for most socket-based protocols. This
385 * must be called under the listener's lock. It will return non-zero on success,
386 * 0 on failure. If no receiver-level suspend is provided, the operation is
387 * assumed to succeed.
388 */
389int default_suspend_listener(struct listener *l)
390{
391 int ret = 1;
392
393 if (!l->rx.proto->rx_suspend)
394 return 1;
395
396 ret = l->rx.proto->rx_suspend(&l->rx);
397 return ret > 0 ? ret : 0;
398}
399
400
401/* Tries to resume a suspended listener, and returns non-zero on success or
402 * zero on failure. On certain errors, an alert or a warning might be displayed.
403 * It must be called with the listener's lock held. Depending on the listener's
404 * state and protocol, a listen() call might be used to resume operations, or a
405 * call to the receiver's resume() function might be used as well. This is
406 * suitable as a default function for TCP and UDP. This must be called with the
407 * listener's lock held.
408 */
409int default_resume_listener(struct listener *l)
410{
411 int ret = 1;
412
413 if (l->state == LI_ASSIGNED) {
414 char msg[100];
415 int err;
416
417 err = l->rx.proto->listen(l, msg, sizeof(msg));
418 if (err & ERR_ALERT)
419 ha_alert("Resuming listener: %s\n", msg);
420 else if (err & ERR_WARN)
421 ha_warning("Resuming listener: %s\n", msg);
422
423 if (err & (ERR_FATAL | ERR_ABORT)) {
424 ret = 0;
425 goto end;
426 }
427 }
428
429 if (l->state < LI_PAUSED) {
430 ret = 0;
431 goto end;
432 }
433
434 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
435 l->rx.proto->rx_resume(&l->rx) <= 0)
436 ret = 0;
437 end:
438 return ret;
439}
440
441
Willy Tarreaube58c382011-07-24 18:28:10 +0200442/* This function tries to temporarily disable a listener, depending on the OS
443 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
444 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
445 * closes upon SHUT_WR and refuses to rebind. So a common validation path
446 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
447 * is disabled. It normally returns non-zero, unless an error is reported.
448 */
449int pause_listener(struct listener *l)
450{
Willy Tarreau58651b42020-09-24 16:03:29 +0200451 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200452 int ret = 1;
453
Willy Tarreau08b6f962022-02-01 16:23:00 +0100454 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200455
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200456 if (l->state <= LI_PAUSED)
457 goto end;
458
Willy Tarreaue03204c2020-10-09 17:02:21 +0200459 if (l->rx.proto->suspend)
460 ret = l->rx.proto->suspend(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200461
Willy Tarreau2b718102021-04-21 07:32:39 +0200462 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200463
Willy Tarreaua37b2442020-09-24 07:23:45 +0200464 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200465
466 if (px && !px->li_ready) {
467 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
468 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
469 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200470 end:
Willy Tarreau08b6f962022-02-01 16:23:00 +0100471 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200472 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200473}
474
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200475/* This function tries to resume a temporarily disabled listener. Paused, full,
476 * limited and disabled listeners are handled, which means that this function
477 * may replace enable_listener(). The resulting state will either be LI_READY
478 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200479 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200480 * foreground mode, and are ignored. If the listener was only in the assigned
481 * state, it's totally rebound. This can happen if a pause() has completely
482 * stopped it. If the resume fails, 0 is returned and an error might be
483 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200484 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100485int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200486{
Willy Tarreau58651b42020-09-24 16:03:29 +0200487 struct proxy *px = l->bind_conf->frontend;
488 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200489 int ret = 1;
490
Willy Tarreau08b6f962022-02-01 16:23:00 +0100491 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200492
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200493 /* check that another thread didn't to the job in parallel (e.g. at the
494 * end of listen_accept() while we'd come from dequeue_all_listeners().
495 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200496 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200497 goto end;
498
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200499 if (l->state == LI_READY)
500 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200501
Willy Tarreaue03204c2020-10-09 17:02:21 +0200502 if (l->rx.proto->resume)
503 ret = l->rx.proto->resume(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200504
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100505 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200506 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200507 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200508 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200509 }
510
Willy Tarreau4b51f422020-09-25 20:32:28 +0200511 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200512 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200513
514 done:
515 if (was_paused && !px->li_paused) {
516 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
517 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
518 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200519 end:
Willy Tarreau08b6f962022-02-01 16:23:00 +0100520 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200521 return ret;
522}
523
Willy Tarreau87b09662015-04-03 00:22:06 +0200524/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200525 * it upon next close() using resume_listener().
526 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200527static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200528{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100529 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200530 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200531 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100532 if (l->state != LI_FULL) {
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_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100535 }
Willy Tarreau62793712011-07-24 19:23:38 +0200536 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100537 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200538}
539
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200540/* Marks a ready listener as limited so that we only try to re-enable it when
541 * resources are free again. It will be queued into the specified queue.
542 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200543static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200544{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100545 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200546 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200547 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200548 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200549 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200550 }
Willy Tarreau08b6f962022-02-01 16:23:00 +0100551 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200552}
553
Willy Tarreau241797a2019-12-10 14:10:52 +0100554/* Dequeues all listeners waiting for a resource the global wait queue */
555void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200556{
Willy Tarreau01abd022019-02-28 10:27:18 +0100557 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200558
Willy Tarreau241797a2019-12-10 14:10:52 +0100559 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200560 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100561 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200562 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100563 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200564 }
565}
566
Willy Tarreau241797a2019-12-10 14:10:52 +0100567/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
568void dequeue_proxy_listeners(struct proxy *px)
569{
570 struct listener *listener;
571
572 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
573 /* This cannot fail because the listeners are by definition in
574 * the LI_LIMITED state.
575 */
576 resume_listener(listener);
577 }
578}
579
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200580
581/* default function used to unbind a listener. This is for use by standard
582 * protocols working on top of accepted sockets. The receiver's rx_unbind()
583 * will automatically be used after the listener is disabled if the socket is
584 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100585 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200586void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100587{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200588 if (listener->state <= LI_ASSIGNED)
589 goto out_close;
590
591 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200592 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200593 goto out_close;
594 }
595
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200596 if (listener->state >= LI_READY) {
597 listener->rx.proto->disable(listener);
598 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200599 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200600 }
601
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200602 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200603 if (listener->rx.flags & RX_F_BOUND)
604 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200605}
606
607/* This function closes the listening socket for the specified listener,
608 * provided that it's already in a listening state. The protocol's unbind()
609 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
610 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
611 * the receiver is unbound. Must be called with the lock held.
612 */
613void do_unbind_listener(struct listener *listener)
614{
Willy Tarreau2b718102021-04-21 07:32:39 +0200615 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200616
617 if (listener->rx.proto->unbind)
618 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200619
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200620 /* we may have to downgrade the listener if the rx was closed */
621 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200622 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100623}
624
Olivier Houchard1fc05162017-04-06 01:05:05 +0200625/* This function closes the listening socket for the specified listener,
626 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200627 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
628 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100629 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200630 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100631void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200632{
Willy Tarreau08b6f962022-02-01 16:23:00 +0100633 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200634 do_unbind_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100635 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200636}
637
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200638/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
639 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200640 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200641 * passed in <proto> must be usable on this family. The protocol's default iocb
642 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200643 * listeners is automatically increased by the number of listeners created. It
644 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200645 */
646int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200647 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200648{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200649 struct listener *l;
650 int port;
651
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200652 for (port = portl; port <= porth; port++) {
653 l = calloc(1, sizeof(*l));
654 if (!l) {
655 memprintf(err, "out of memory");
656 return 0;
657 }
658 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200659 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
660 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200661 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200662 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200663 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200664 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200665 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100666
Willy Tarreau37159062020-08-27 07:48:42 +0200667 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100668 if (proto->fam->set_port)
669 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100670
Olivier Houchard859dc802019-08-08 15:47:21 +0200671 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200672 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200673
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100674 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200675
Willy Tarreau909c23b2020-09-15 13:50:58 +0200676 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200677 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100678
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100679 l->extra_counters = NULL;
680
Willy Tarreau08b6f962022-02-01 16:23:00 +0100681 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200682 _HA_ATOMIC_INC(&jobs);
683 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200684 }
685 return 1;
686}
687
Willy Tarreau59a877d2021-10-12 09:36:10 +0200688/* clones listener <src> and returns the new one. All dynamically allocated
689 * fields are reallocated (name for now). The new listener is inserted before
690 * the original one in the bind_conf and frontend lists. This allows it to be
691 * duplicated while iterating over the current list. The original listener must
692 * only be in the INIT or ASSIGNED states, and the new listener will only be
693 * placed into the INIT state. The counters are always set to NULL. Maxsock is
694 * updated. Returns NULL on allocation error.
695 */
696struct listener *clone_listener(struct listener *src)
697{
698 struct listener *l;
699
700 l = calloc(1, sizeof(*l));
701 if (!l)
702 goto oom1;
703 memcpy(l, src, sizeof(*l));
704
705 if (l->name) {
706 l->name = strdup(l->name);
707 if (!l->name)
708 goto oom2;
709 }
710
711 l->rx.owner = l;
712 l->state = LI_INIT;
713 l->counters = NULL;
714 l->extra_counters = NULL;
715
716 LIST_APPEND(&src->by_fe, &l->by_fe);
717 LIST_APPEND(&src->by_bind, &l->by_bind);
718
719 MT_LIST_INIT(&l->wait_queue);
720
721 l->rx.proto->add(l->rx.proto, l);
722
Willy Tarreau08b6f962022-02-01 16:23:00 +0100723 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau59a877d2021-10-12 09:36:10 +0200724 _HA_ATOMIC_INC(&jobs);
725 _HA_ATOMIC_INC(&listeners);
726 global.maxsock++;
727 return l;
728
Willy Tarreau59a877d2021-10-12 09:36:10 +0200729 oom2:
730 free(l);
731 oom1:
Willy Tarreaua1462892021-10-16 14:45:29 +0200732 return NULL;
Willy Tarreau59a877d2021-10-12 09:36:10 +0200733}
734
Willy Tarreau1a64d162007-10-28 22:26:05 +0100735/* Delete a listener from its protocol's list of listeners. The listener's
736 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200737 * number of listeners is updated, as well as the global number of listeners
738 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200739 * is a low-level function expected to be called with the proto_lock and the
740 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100741 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200742void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100743{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100744 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200745 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200746 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200747 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200748 _HA_ATOMIC_DEC(&jobs);
749 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100750 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200751}
752
753/* Delete a listener from its protocol's list of listeners (please check
754 * __delete_listener() above). The proto_lock and the listener's lock will
755 * be grabbed in this order.
756 */
757void delete_listener(struct listener *listener)
758{
759 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100760 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200761 __delete_listener(listener);
Willy Tarreau08b6f962022-02-01 16:23:00 +0100762 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200763 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100764}
765
Willy Tarreaue2711c72019-02-27 15:39:41 +0100766/* Returns a suitable value for a listener's backlog. It uses the listener's,
767 * otherwise the frontend's backlog, otherwise the listener's maxconn,
768 * otherwise the frontend's maxconn, otherwise 1024.
769 */
770int listener_backlog(const struct listener *l)
771{
772 if (l->backlog)
773 return l->backlog;
774
775 if (l->bind_conf->frontend->backlog)
776 return l->bind_conf->frontend->backlog;
777
778 if (l->maxconn)
779 return l->maxconn;
780
781 if (l->bind_conf->frontend->maxconn)
782 return l->bind_conf->frontend->maxconn;
783
784 return 1024;
785}
786
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200787/* This function is called on a read event from a listening socket, corresponding
788 * to an accept. It tries to accept as many connections as possible, and for each
789 * calls the listener's accept handler (generally the frontend's accept handler).
790 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200791void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200792{
Willy Tarreau83efc322020-10-14 17:37:17 +0200793 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100794 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200795 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100796 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100797 int next_feconn = 0;
798 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200799 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200800 int ret;
801
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100802 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200803
804 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
805 * illimited, but it is probably enough.
806 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100807 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200808
Willy Tarreau93e7c002013-10-07 18:51:07 +0200809 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
810 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200811
812 if (unlikely(!max)) {
813 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200814 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100815 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200816 }
817
818 if (max_accept > max)
819 max_accept = max;
820 }
821
822 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200823 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
824
825 if (unlikely(!max)) {
826 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200827 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100828 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200829 }
830
831 if (max_accept > max)
832 max_accept = max;
833 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200834#ifdef USE_OPENSSL
835 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
836 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200837
Willy Tarreaue43d5322013-10-07 20:01:52 +0200838 if (unlikely(!max)) {
839 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200840 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100841 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200842 }
843
844 if (max_accept > max)
845 max_accept = max;
846 }
847#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200848 if (p && p->fe_sps_lim) {
849 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
850
851 if (unlikely(!max)) {
852 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100853 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
854 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200855 }
856
857 if (max_accept > max)
858 max_accept = max;
859 }
860
861 /* Note: if we fail to allocate a connection because of configured
862 * limits, we'll schedule a new attempt worst 1 second later in the
863 * worst case. If we fail due to system limits or temporary resource
864 * shortage, we try again 100ms later in the worst case.
865 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100866 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200867 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200868 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200869 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200870
Willy Tarreau82c97892019-02-27 19:32:32 +0100871 /* pre-increase the number of connections without going too far.
872 * We process the listener, then the proxy, then the process.
873 * We know which ones to unroll based on the next_xxx value.
874 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100875 do {
876 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100877 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100878 /* the listener was marked full or another
879 * thread is going to do it.
880 */
881 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100882 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100883 goto end;
884 }
885 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000886 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100887
Willy Tarreau82c97892019-02-27 19:32:32 +0100888 if (p) {
889 do {
890 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100891 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100892 /* the frontend was marked full or another
893 * thread is going to do it.
894 */
895 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100896 expire = TICK_ETERNITY;
897 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100898 }
899 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100900 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200901 }
902
Willy Tarreau82c97892019-02-27 19:32:32 +0100903 if (!(l->options & LI_O_UNLIMITED)) {
904 do {
905 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100906 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100907 /* the process was marked full or another
908 * thread is going to do it.
909 */
910 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100911 expire = tick_add(now_ms, 1000); /* try again in 1 second */
912 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100913 }
914 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000915 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200916 }
917
Willy Tarreaufed93d32022-02-01 16:37:00 +0100918 /* be careful below, the listener might be shutting down in
919 * another thread on error and we must not dereference its
920 * FD without a bit of protection.
921 */
922 cli_conn = NULL;
923 status = CO_AC_PERMERR;
924
925 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
926 if (l->rx.flags & RX_F_BOUND)
927 cli_conn = l->rx.proto->accept_conn(l, &status);
928 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
929
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200930 if (!cli_conn) {
931 switch (status) {
932 case CO_AC_DONE:
933 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100934
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200935 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200936 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100937 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200938 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100939 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200940 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100941 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200942
943 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100944 max_accept = 0;
945 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100946
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200947 default:
948 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200949 }
950 }
951
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100952 /* The connection was accepted, it must be counted as such */
953 if (l->counters)
954 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
955
Willy Tarreau82c97892019-02-27 19:32:32 +0100956 if (p)
957 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
958
959 proxy_inc_fe_conn_ctr(l, p);
960
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100961 if (!(l->options & LI_O_UNLIMITED)) {
962 count = update_freq_ctr(&global.conn_per_sec, 1);
963 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100964 }
965
Willy Tarreau4781b152021-04-06 13:53:36 +0200966 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +0200967
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200968 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200969 send_log(p, LOG_EMERG,
970 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
971 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200972 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +0200973 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100974 expire = tick_add(now_ms, 1000); /* try again in 1 second */
975 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200976 }
977
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100978 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100979 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
980 * allows the error path not to rollback on nbconn. It's more
981 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100982 */
983 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100984 next_feconn = 0;
985 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200986
Willy Tarreau83efc322020-10-14 17:37:17 +0200987
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100988#if defined(USE_THREAD)
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +0100989 if (l->rx.flags & RX_F_LOCAL_ACCEPT)
990 goto local_accept;
991
Willy Tarreau01cac3f2021-10-12 08:47:54 +0200992 mask = thread_mask(l->rx.bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100993 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100994 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100995 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100996
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100997 /* The principle is that we have two running indexes,
998 * each visiting in turn all threads bound to this
999 * listener. The connection will be assigned to the one
1000 * with the least connections, and the other one will
1001 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001002 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001003 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001004 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001005
1006 /* keep a copy for the final update. thr_idx is composite
1007 * and made of (t2<<16) + t1.
1008 */
Willy Tarreau0cf33172019-03-06 15:26:33 +01001009 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +01001010 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001011 unsigned long m1, m2;
1012 int q1, q2;
1013
1014 t2 = t1 = t0;
1015 t2 >>= 16;
1016 t1 &= 0xFFFF;
1017
1018 /* t1 walks low to high bits ;
1019 * t2 walks high to low.
1020 */
1021 m1 = mask >> t1;
1022 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
1023
Willy Tarreau85d04242019-04-16 18:09:13 +02001024 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001025 m1 &= ~1UL;
1026 if (!m1) {
1027 m1 = mask;
1028 t1 = 0;
1029 }
1030 t1 += my_ffsl(m1) - 1;
1031 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001032
Willy Tarreau85d04242019-04-16 18:09:13 +02001033 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1034 /* highest bit not set */
1035 if (!m2)
1036 m2 = mask;
1037
1038 t2 = my_flsl(m2) - 1;
1039 }
1040
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001041 /* now we have two distinct thread IDs belonging to the mask */
1042 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
1043 if (q1 >= ACCEPT_QUEUE_SIZE)
1044 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001045
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001046 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1047 if (q2 >= ACCEPT_QUEUE_SIZE)
1048 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001049
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001050 /* we have 3 possibilities now :
1051 * q1 < q2 : t1 is less loaded than t2, so we pick it
1052 * and update t2 (since t1 might still be
1053 * lower than another thread)
1054 * q1 > q2 : t2 is less loaded than t1, so we pick it
1055 * and update t1 (since t2 might still be
1056 * lower than another thread)
1057 * q1 = q2 : both are equally loaded, thus we pick t1
1058 * and update t1 as it will become more loaded
1059 * than t2.
1060 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001061
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001062 q1 += l->thr_conn[t1];
1063 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001064
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001065 if (q1 - q2 < 0) {
1066 t = t1;
1067 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1068 }
1069 else if (q1 - q2 > 0) {
1070 t = t2;
1071 t1++;
1072 if (t1 >= LONGBITS)
1073 t1 = 0;
1074 }
1075 else {
1076 t = t1;
1077 t1++;
1078 if (t1 >= LONGBITS)
1079 t1 = 0;
1080 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001081
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001082 /* new value for thr_idx */
1083 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001084 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001085
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001086 /* We successfully selected the best thread "t" for this
1087 * connection. We use deferred accepts even if it's the
1088 * local thread because tests show that it's the best
1089 * performing model, likely due to better cache locality
1090 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001091 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001092 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001093 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001094 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001095 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001096 continue;
1097 }
1098 /* If the ring is full we do a synchronous accept on
1099 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001100 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001101 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001102 }
1103#endif // USE_THREAD
1104
Amaury Denoyelle7f7713d2022-01-19 11:37:50 +01001105 local_accept:
Willy Tarreau4781b152021-04-06 13:53:36 +02001106 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001107 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001108 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001109 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001110 * we just have to ignore it (ret == 0) or it's a critical
1111 * error due to a resource shortage, and we must stop the
1112 * listener (ret < 0).
1113 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001114 if (ret == 0) /* successful termination */
1115 continue;
1116
Willy Tarreaubb660302014-05-07 19:47:02 +02001117 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001118 }
1119
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001120 /* increase the per-process number of cumulated sessions, this
1121 * may only be done once l->accept() has accepted the connection.
1122 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001123 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001124 count = update_freq_ctr(&global.sess_per_sec, 1);
1125 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001126 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001127#ifdef USE_OPENSSL
1128 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001129 count = update_freq_ctr(&global.ssl_per_sec, 1);
1130 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001131 }
1132#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001133
Willy Tarreaua0b99532021-09-30 18:48:37 +02001134 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001135 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001136
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001137 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001138 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001139 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001140
Willy Tarreau82c97892019-02-27 19:32:32 +01001141 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001142 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001143
1144 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001145 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001146
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001147 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001148 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001149 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1150 (!tick_isset(global_listener_queue_task->expire) ||
1151 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001152 /* at least one thread has to this when quitting */
1153 resume_listener(l);
1154
Willy Tarreau02757d02021-01-28 18:07:24 +01001155 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001156 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001157
Olivier Houchard859dc802019-08-08 15:47:21 +02001158 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001159 (!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 +01001160 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001161 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001162 return;
1163
1164 transient_error:
1165 /* pause the listener for up to 100 ms */
1166 expire = tick_add(now_ms, 100);
1167
Willy Tarreau258b3512020-10-13 17:46:05 +02001168 /* This may be a shared socket that was paused by another process.
1169 * Let's put it to pause in this case.
1170 */
1171 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
1172 pause_listener(l);
1173 goto end;
1174 }
1175
Willy Tarreau0591bf72019-12-10 12:01:21 +01001176 limit_global:
1177 /* (re-)queue the listener to the global queue and set it to expire no
1178 * later than <expire> ahead. The listener turns to LI_LIMITED.
1179 */
1180 limit_listener(l, &global_listener_queue);
1181 task_schedule(global_listener_queue_task, expire);
1182 goto end;
1183
1184 limit_proxy:
1185 /* (re-)queue the listener to the proxy's queue and set it to expire no
1186 * later than <expire> ahead. The listener turns to LI_LIMITED.
1187 */
1188 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001189 if (p->task && tick_isset(expire))
1190 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001191 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001192}
1193
Willy Tarreau05f50472017-09-15 09:19:58 +02001194/* Notify the listener that a connection initiated from it was released. This
1195 * is used to keep the connection count consistent and to possibly re-open
1196 * listening when it was limited.
1197 */
1198void listener_release(struct listener *l)
1199{
1200 struct proxy *fe = l->bind_conf->frontend;
1201
1202 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001203 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001204 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001205 _HA_ATOMIC_DEC(&fe->feconn);
1206 _HA_ATOMIC_DEC(&l->nbconn);
1207 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001208
1209 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001210 resume_listener(l);
1211
Willy Tarreau02757d02021-01-28 18:07:24 +01001212 /* Dequeues all of the listeners waiting for a resource */
1213 dequeue_all_listeners();
1214
Olivier Houchard859dc802019-08-08 15:47:21 +02001215 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001216 (!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 +01001217 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001218}
1219
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001220/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1221static int listener_queue_init()
1222{
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001223 global_listener_queue_task = task_new_anywhere();
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001224 if (!global_listener_queue_task) {
1225 ha_alert("Out of memory when initializing global listener queue\n");
1226 return ERR_FATAL|ERR_ABORT;
1227 }
1228 /* very simple initialization, users will queue the task if needed */
1229 global_listener_queue_task->context = NULL; /* not even a context! */
1230 global_listener_queue_task->process = manage_global_listener_queue;
1231
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001232 return 0;
1233}
1234
1235static void listener_queue_deinit()
1236{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001237 task_destroy(global_listener_queue_task);
1238 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001239}
1240
1241REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1242REGISTER_POST_DEINIT(listener_queue_deinit);
1243
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001244
1245/* This is the global management task for listeners. It enables listeners waiting
1246 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001247 * a while. It is designed to be called as a task. It's exported so that it's easy
1248 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001249 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001250struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001251{
1252 /* If there are still too many concurrent connections, let's wait for
1253 * some of them to go away. We don't need to re-arm the timer because
1254 * each of them will scan the queue anyway.
1255 */
1256 if (unlikely(actconn >= global.maxconn))
1257 goto out;
1258
1259 /* We should periodically try to enable listeners waiting for a global
1260 * resource here, because it is possible, though very unlikely, that
1261 * they have been blocked by a temporary lack of global resource such
1262 * as a file descriptor or memory and that the temporary condition has
1263 * disappeared.
1264 */
1265 dequeue_all_listeners();
1266
1267 out:
1268 t->expire = TICK_ETERNITY;
1269 task_queue(t);
1270 return t;
1271}
1272
Willy Tarreau26982662012-09-12 23:17:10 +02001273/*
1274 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1275 * parsing sessions.
1276 */
1277void bind_register_keywords(struct bind_kw_list *kwl)
1278{
Willy Tarreau2b718102021-04-21 07:32:39 +02001279 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001280}
1281
1282/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1283 * keyword is found with a NULL ->parse() function, then an attempt is made to
1284 * find one with a valid ->parse() function. This way it is possible to declare
1285 * platform-dependant, known keywords as NULL, then only declare them as valid
1286 * if some options are met. Note that if the requested keyword contains an
1287 * opening parenthesis, everything from this point is ignored.
1288 */
1289struct bind_kw *bind_find_kw(const char *kw)
1290{
1291 int index;
1292 const char *kwend;
1293 struct bind_kw_list *kwl;
1294 struct bind_kw *ret = NULL;
1295
1296 kwend = strchr(kw, '(');
1297 if (!kwend)
1298 kwend = kw + strlen(kw);
1299
1300 list_for_each_entry(kwl, &bind_keywords.list, list) {
1301 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1302 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1303 kwl->kw[index].kw[kwend-kw] == 0) {
1304 if (kwl->kw[index].parse)
1305 return &kwl->kw[index]; /* found it !*/
1306 else
1307 ret = &kwl->kw[index]; /* may be OK */
1308 }
1309 }
1310 }
1311 return ret;
1312}
1313
Willy Tarreau8638f482012-09-18 18:01:17 +02001314/* Dumps all registered "bind" keywords to the <out> string pointer. The
1315 * unsupported keywords are only dumped if their supported form was not
1316 * found.
1317 */
1318void bind_dump_kws(char **out)
1319{
1320 struct bind_kw_list *kwl;
1321 int index;
1322
Christopher Faulet784063e2020-05-18 12:14:18 +02001323 if (!out)
1324 return;
1325
Willy Tarreau8638f482012-09-18 18:01:17 +02001326 *out = NULL;
1327 list_for_each_entry(kwl, &bind_keywords.list, list) {
1328 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1329 if (kwl->kw[index].parse ||
1330 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001331 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1332 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001333 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001334 kwl->kw[index].skip ? " <arg>" : "",
1335 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001336 }
1337 }
1338 }
1339}
1340
Willy Tarreau433b05f2021-03-12 10:14:07 +01001341/* Try to find in srv_keyword the word that looks closest to <word> by counting
1342 * transitions between letters, digits and other characters. Will return the
1343 * best matching word if found, otherwise NULL.
1344 */
1345const char *bind_find_best_kw(const char *word)
1346{
1347 uint8_t word_sig[1024];
1348 uint8_t list_sig[1024];
1349 const struct bind_kw_list *kwl;
1350 const char *best_ptr = NULL;
1351 int dist, best_dist = INT_MAX;
1352 int index;
1353
1354 make_word_fingerprint(word_sig, word);
1355 list_for_each_entry(kwl, &bind_keywords.list, list) {
1356 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1357 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1358 dist = word_fingerprint_distance(word_sig, list_sig);
1359 if (dist < best_dist) {
1360 best_dist = dist;
1361 best_ptr = kwl->kw[index].kw;
1362 }
1363 }
1364 }
1365
1366 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1367 best_ptr = NULL;
1368
1369 return best_ptr;
1370}
1371
Willy Tarreaudbf78022021-10-06 09:05:08 +02001372/* allocate an bind_conf struct for a bind line, and chain it to the frontend <fe>.
1373 * If <arg> is not NULL, it is duplicated into ->arg to store useful config
1374 * information for error reporting. NULL is returned on error.
1375 */
1376struct bind_conf *bind_conf_alloc(struct proxy *fe, const char *file,
1377 int line, const char *arg, struct xprt_ops *xprt)
1378{
1379 struct bind_conf *bind_conf = calloc(1, sizeof(*bind_conf));
1380
1381 if (!bind_conf)
1382 goto err;
1383
1384 bind_conf->file = strdup(file);
1385 if (!bind_conf->file)
1386 goto err;
1387 bind_conf->line = line;
1388 if (arg) {
1389 bind_conf->arg = strdup(arg);
1390 if (!bind_conf->arg)
1391 goto err;
1392 }
1393
1394 LIST_APPEND(&fe->conf.bind, &bind_conf->by_fe);
1395 bind_conf->settings.ux.uid = -1;
1396 bind_conf->settings.ux.gid = -1;
1397 bind_conf->settings.ux.mode = 0;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001398 bind_conf->settings.shards = 1;
Willy Tarreaudbf78022021-10-06 09:05:08 +02001399 bind_conf->xprt = xprt;
1400 bind_conf->frontend = fe;
1401 bind_conf->severity_output = CLI_SEVERITY_NONE;
1402#ifdef USE_OPENSSL
1403 HA_RWLOCK_INIT(&bind_conf->sni_lock);
1404 bind_conf->sni_ctx = EB_ROOT;
1405 bind_conf->sni_w_ctx = EB_ROOT;
1406#endif
1407 LIST_INIT(&bind_conf->listeners);
1408 return bind_conf;
1409
1410 err:
1411 if (bind_conf) {
1412 ha_free(&bind_conf->file);
1413 ha_free(&bind_conf->arg);
1414 }
1415 ha_free(&bind_conf);
1416 return NULL;
1417}
1418
1419const char *listener_state_str(const struct listener *l)
1420{
1421 static const char *states[8] = {
1422 "NEW", "INI", "ASS", "PAU", "LIS", "RDY", "FUL", "LIM",
1423 };
1424 unsigned int st = l->state;
1425
1426 if (st >= sizeof(states) / sizeof(*states))
1427 return "INVALID";
1428 return states[st];
1429}
1430
Willy Tarreau645513a2010-05-24 20:55:15 +02001431/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001432/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001433/************************************************************************/
1434
Willy Tarreaua5e37562011-12-16 17:06:15 +01001435/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001436static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001437smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001438{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001439 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001440 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001441 return 1;
1442}
1443
Willy Tarreaua5e37562011-12-16 17:06:15 +01001444/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001445static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001446smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001447{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001448 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001449 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001450 return 1;
1451}
Jerome Magnineb421b22020-03-27 22:08:40 +01001452static int
1453smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1454{
1455 smp->data.u.str.area = smp->sess->listener->name;
1456 if (!smp->data.u.str.area)
1457 return 0;
1458
1459 smp->data.type = SMP_T_STR;
1460 smp->flags = SMP_F_CONST;
1461 smp->data.u.str.data = strlen(smp->data.u.str.area);
1462 return 1;
1463}
Willy Tarreau645513a2010-05-24 20:55:15 +02001464
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001465/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001466static 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 +02001467{
1468 struct listener *l;
1469
Willy Tarreau4348fad2012-09-20 16:48:07 +02001470 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001471 l->options |= LI_O_ACC_PROXY;
1472
1473 return 0;
1474}
1475
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001476/* parse the "accept-netscaler-cip" bind keyword */
1477static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1478{
1479 struct listener *l;
1480 uint32_t val;
1481
1482 if (!*args[cur_arg + 1]) {
1483 memprintf(err, "'%s' : missing value", args[cur_arg]);
1484 return ERR_ALERT | ERR_FATAL;
1485 }
1486
1487 val = atol(args[cur_arg + 1]);
1488 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001489 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001490 return ERR_ALERT | ERR_FATAL;
1491 }
1492
1493 list_for_each_entry(l, &conf->listeners, by_bind) {
1494 l->options |= LI_O_ACC_CIP;
1495 conf->ns_cip_magic = val;
1496 }
1497
1498 return 0;
1499}
1500
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001501/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001502static 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 +02001503{
1504 struct listener *l;
1505 int val;
1506
1507 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001508 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001509 return ERR_ALERT | ERR_FATAL;
1510 }
1511
1512 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001513 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001514 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001515 return ERR_ALERT | ERR_FATAL;
1516 }
1517
Willy Tarreau4348fad2012-09-20 16:48:07 +02001518 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001519 l->backlog = val;
1520
1521 return 0;
1522}
1523
1524/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001525static 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 +02001526{
1527 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001528 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001529 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001530
Willy Tarreau4348fad2012-09-20 16:48:07 +02001531 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001532 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001533 return ERR_ALERT | ERR_FATAL;
1534 }
1535
1536 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001537 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001538 return ERR_ALERT | ERR_FATAL;
1539 }
1540
Willy Tarreau4348fad2012-09-20 16:48:07 +02001541 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001542 new->luid = strtol(args[cur_arg + 1], &error, 10);
1543 if (*error != '\0') {
1544 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1545 return ERR_ALERT | ERR_FATAL;
1546 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001547 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001548
Willy Tarreau4348fad2012-09-20 16:48:07 +02001549 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001550 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001551 return ERR_ALERT | ERR_FATAL;
1552 }
1553
Willy Tarreau4348fad2012-09-20 16:48:07 +02001554 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001555 if (node) {
1556 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001557 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1558 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1559 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001560 return ERR_ALERT | ERR_FATAL;
1561 }
1562
Willy Tarreau4348fad2012-09-20 16:48:07 +02001563 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001564 return 0;
1565}
1566
1567/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001568static 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 +02001569{
1570 struct listener *l;
1571 int val;
1572
1573 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001574 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001575 return ERR_ALERT | ERR_FATAL;
1576 }
1577
1578 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001579 if (val < 0) {
1580 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001581 return ERR_ALERT | ERR_FATAL;
1582 }
1583
Willy Tarreau4348fad2012-09-20 16:48:07 +02001584 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001585 l->maxconn = val;
1586
1587 return 0;
1588}
1589
1590/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001591static 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 +02001592{
1593 struct listener *l;
1594
1595 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001596 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001597 return ERR_ALERT | ERR_FATAL;
1598 }
1599
Willy Tarreau4348fad2012-09-20 16:48:07 +02001600 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001601 l->name = strdup(args[cur_arg + 1]);
1602
1603 return 0;
1604}
1605
1606/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001607static 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 +02001608{
1609 struct listener *l;
1610 int val;
1611
1612 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001613 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001614 return ERR_ALERT | ERR_FATAL;
1615 }
1616
1617 val = atol(args[cur_arg + 1]);
1618 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001619 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001620 return ERR_ALERT | ERR_FATAL;
1621 }
1622
Willy Tarreau4348fad2012-09-20 16:48:07 +02001623 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001624 l->nice = val;
1625
1626 return 0;
1627}
1628
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001629/* parse the "process" bind keyword */
1630static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1631{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001632 char *slash;
1633 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001634
Christopher Fauletc644fa92017-11-23 22:44:11 +01001635 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1636 *slash = 0;
1637
Willy Tarreau72faef32021-06-15 08:36:30 +02001638 if (parse_process_number(args[cur_arg + 1], &proc, 1, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001639 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001640 return ERR_ALERT | ERR_FATAL;
1641 }
1642
Christopher Fauletc644fa92017-11-23 22:44:11 +01001643 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001644 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001645 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1646 return ERR_ALERT | ERR_FATAL;
1647 }
1648 *slash = '/';
1649 }
1650
Willy Tarreau01cac3f2021-10-12 08:47:54 +02001651 conf->bind_thread |= thread;
Willy Tarreauc8cac042021-09-21 14:31:29 +02001652
1653 memprintf(err, "'process %s' on 'bind' lines is deprecated and will be removed in 2.7.", args[cur_arg+1]);
1654 if (slash)
1655 memprintf(err, "%s Please use 'thread %s' instead.", *err, slash + 1);
1656 return ERR_WARN;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001657}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001658
Christopher Fauleta717b992018-04-10 14:43:00 +02001659/* parse the "proto" bind keyword */
1660static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1661{
1662 struct ist proto;
1663
1664 if (!*args[cur_arg + 1]) {
1665 memprintf(err, "'%s' : missing value", args[cur_arg]);
1666 return ERR_ALERT | ERR_FATAL;
1667 }
1668
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001669 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001670 conf->mux_proto = get_mux_proto(proto);
1671 if (!conf->mux_proto) {
1672 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1673 return ERR_ALERT | ERR_FATAL;
1674 }
Willy Tarreauc8cac042021-09-21 14:31:29 +02001675 return 0;
1676}
1677
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001678/* parse the "shards" bind keyword. Takes an integer or "by-thread" */
1679static int bind_parse_shards(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1680{
1681 int val;
1682
1683 if (!*args[cur_arg + 1]) {
1684 memprintf(err, "'%s' : missing value", args[cur_arg]);
1685 return ERR_ALERT | ERR_FATAL;
1686 }
1687
1688 if (strcmp(args[cur_arg + 1], "by-thread") == 0) {
1689 val = MAX_THREADS; /* will be trimmed later anyway */
1690 } else {
1691 val = atol(args[cur_arg + 1]);
1692 if (val < 1 || val > MAX_THREADS) {
1693 memprintf(err, "'%s' : invalid value %d, allowed range is %d..%d or 'by-thread'", args[cur_arg], val, 1, MAX_THREADS);
1694 return ERR_ALERT | ERR_FATAL;
1695 }
1696 }
1697
1698 conf->settings.shards = val;
1699 return 0;
1700}
1701
Willy Tarreauc8cac042021-09-21 14:31:29 +02001702/* parse the "thread" bind keyword */
1703static int bind_parse_thread(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1704{
Willy Tarreaud57b9ff2021-09-29 18:50:31 +02001705 char *sep = NULL;
1706 ulong thread = 0;
1707 long tgroup = 0;
Willy Tarreauc8cac042021-09-21 14:31:29 +02001708
Willy Tarreaud57b9ff2021-09-29 18:50:31 +02001709 tgroup = strtol(args[cur_arg + 1], &sep, 10);
1710 if (*sep == '/') {
1711 /* a thread group was present */
1712 if (tgroup < 1 || tgroup > MAX_TGROUPS) {
1713 memprintf(err, "'%s' thread-group number must be between 1 and %d (was %ld)", args[cur_arg + 1], MAX_TGROUPS, tgroup);
1714 return ERR_ALERT | ERR_FATAL;
1715 }
1716 sep++;
1717 }
1718 else {
1719 /* no thread group */
1720 tgroup = 0;
1721 sep = args[cur_arg + 1];
1722 }
Willy Tarreauc8cac042021-09-21 14:31:29 +02001723
Willy Tarreau01cac3f2021-10-12 08:47:54 +02001724 if ((conf->bind_tgroup || conf->bind_thread) &&
1725 conf->bind_tgroup != tgroup) {
Willy Tarreaud57b9ff2021-09-29 18:50:31 +02001726 memprintf(err, "'%s' multiple thread-groups are not supported", args[cur_arg + 1]);
Willy Tarreauc8cac042021-09-21 14:31:29 +02001727 return ERR_ALERT | ERR_FATAL;
1728 }
Willy Tarreaud57b9ff2021-09-29 18:50:31 +02001729
1730 if (parse_process_number(sep, &thread, MAX_THREADS, NULL, err)) {
1731 memprintf(err, "'%s' : %s", sep, *err);
Willy Tarreauc8cac042021-09-21 14:31:29 +02001732 return ERR_ALERT | ERR_FATAL;
1733 }
1734
Willy Tarreau01cac3f2021-10-12 08:47:54 +02001735 conf->bind_thread |= thread;
1736 conf->bind_tgroup = tgroup;
Christopher Fauleta717b992018-04-10 14:43:00 +02001737 return 0;
1738}
1739
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001740/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1741static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001742 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001743 char **err)
1744{
1745 if (too_many_args(1, args, err, NULL))
1746 return -1;
1747
1748 if (strcmp(args[1], "on") == 0)
1749 global.tune.options |= GTUNE_LISTENER_MQ;
1750 else if (strcmp(args[1], "off") == 0)
1751 global.tune.options &= ~GTUNE_LISTENER_MQ;
1752 else {
1753 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1754 return -1;
1755 }
1756 return 0;
1757}
1758
Willy Tarreau61612d42012-04-19 18:42:05 +02001759/* Note: must not be declared <const> as its list will be overwritten.
1760 * Please take care of keeping this list alphabetically sorted.
1761 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001762static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001763 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1764 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001765 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001766 { /* END */ },
1767}};
1768
Willy Tarreau0108d902018-11-25 19:14:37 +01001769INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1770
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001771/* Note: must not be declared <const> as its list will be overwritten.
1772 * Please take care of keeping this list alphabetically sorted.
1773 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001774static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001775 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001776}};
1777
Willy Tarreau0108d902018-11-25 19:14:37 +01001778INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1779
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001780/* Note: must not be declared <const> as its list will be overwritten.
1781 * Please take care of keeping this list alphabetically sorted, doing so helps
1782 * all code contributors.
1783 * Optional keywords are also declared with a NULL ->parse() function so that
1784 * the config parser can report an appropriate error when a known keyword was
1785 * not enabled.
1786 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001787static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001788 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001789 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1790 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1791 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1792 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1793 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1794 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001795 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001796 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau6dfbef42021-10-12 15:23:03 +02001797 { "shards", bind_parse_shards, 1 }, /* set number of shards */
Willy Tarreauc8cac042021-09-21 14:31:29 +02001798 { "thread", bind_parse_thread, 1 }, /* set list of allowed threads for this socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001799 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001800}};
1801
Willy Tarreau0108d902018-11-25 19:14:37 +01001802INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1803
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001804/* config keyword parsers */
1805static struct cfg_kw_list cfg_kws = {ILH, {
1806 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1807 { 0, NULL, NULL }
1808}};
1809
1810INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1811
Willy Tarreau645513a2010-05-24 20:55:15 +02001812/*
1813 * Local variables:
1814 * c-indent-level: 8
1815 * c-basic-offset: 8
1816 * End:
1817 */