blob: 63349747fed02412822f729b91c70e1495c24ff8 [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
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200300 * It will need to operate under the proxy's lock and the protocol's lock.
301 * The caller is responsible for indicating in lpx, lpr whether the
302 * respective locks are already held (non-zero) or not (zero) so that the
303 * function picks the missing ones, in this order.
304 * The proxy's listeners count is updated and the proxy is
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200305 * disabled and woken up after the last one is gone.
306 */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200307void stop_listener(struct listener *l, int lpx, int lpr)
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200308{
309 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200310
311 if (l->options & LI_O_NOSTOP) {
312 /* master-worker sockpairs are never closed but don't count as a
313 * job.
314 */
315 return;
316 }
317
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200318 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200319 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200320
321 if (!lpr)
322 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
323
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200324 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
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200335 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200336
337 if (!lpr)
338 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
339
340 if (!lpx)
Willy Tarreauac66d6b2020-10-20 17:24:27 +0200341 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200342}
343
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100344/* This function adds the specified <listener> to the protocol <proto>. It
345 * does nothing if the protocol was already added. The listener's state is
346 * automatically updated from LI_INIT to LI_ASSIGNED. The number of listeners
347 * for the protocol is updated. This must be called with the proto lock held.
348 */
349void default_add_listener(struct protocol *proto, struct listener *listener)
350{
351 if (listener->state != LI_INIT)
352 return;
353 listener_set_state(listener, LI_ASSIGNED);
354 listener->rx.proto = proto;
Willy Tarreau2b718102021-04-21 07:32:39 +0200355 LIST_APPEND(&proto->receivers, &listener->rx.proto_list);
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100356 proto->nb_receivers++;
357}
358
Willy Tarreaue03204c2020-10-09 17:02:21 +0200359/* default function called to suspend a listener: it simply passes the call to
360 * the underlying receiver. This is find for most socket-based protocols. This
361 * must be called under the listener's lock. It will return non-zero on success,
362 * 0 on failure. If no receiver-level suspend is provided, the operation is
363 * assumed to succeed.
364 */
365int default_suspend_listener(struct listener *l)
366{
367 int ret = 1;
368
369 if (!l->rx.proto->rx_suspend)
370 return 1;
371
372 ret = l->rx.proto->rx_suspend(&l->rx);
373 return ret > 0 ? ret : 0;
374}
375
376
377/* Tries to resume a suspended listener, and returns non-zero on success or
378 * zero on failure. On certain errors, an alert or a warning might be displayed.
379 * It must be called with the listener's lock held. Depending on the listener's
380 * state and protocol, a listen() call might be used to resume operations, or a
381 * call to the receiver's resume() function might be used as well. This is
382 * suitable as a default function for TCP and UDP. This must be called with the
383 * listener's lock held.
384 */
385int default_resume_listener(struct listener *l)
386{
387 int ret = 1;
388
389 if (l->state == LI_ASSIGNED) {
390 char msg[100];
391 int err;
392
393 err = l->rx.proto->listen(l, msg, sizeof(msg));
394 if (err & ERR_ALERT)
395 ha_alert("Resuming listener: %s\n", msg);
396 else if (err & ERR_WARN)
397 ha_warning("Resuming listener: %s\n", msg);
398
399 if (err & (ERR_FATAL | ERR_ABORT)) {
400 ret = 0;
401 goto end;
402 }
403 }
404
405 if (l->state < LI_PAUSED) {
406 ret = 0;
407 goto end;
408 }
409
410 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
411 l->rx.proto->rx_resume(&l->rx) <= 0)
412 ret = 0;
413 end:
414 return ret;
415}
416
417
Willy Tarreaube58c382011-07-24 18:28:10 +0200418/* This function tries to temporarily disable a listener, depending on the OS
419 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
420 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
421 * closes upon SHUT_WR and refuses to rebind. So a common validation path
422 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
423 * is disabled. It normally returns non-zero, unless an error is reported.
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200424 * It will need to operate under the proxy's lock. The caller is
425 * responsible for indicating in lpx whether the proxy locks is
426 * already held (non-zero) or not (zero) so that the function picks it.
Willy Tarreaube58c382011-07-24 18:28:10 +0200427 */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200428int pause_listener(struct listener *l, int lpx)
Willy Tarreaube58c382011-07-24 18:28:10 +0200429{
Willy Tarreau58651b42020-09-24 16:03:29 +0200430 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200431 int ret = 1;
432
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200433 if (!lpx)
434 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
435
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100436 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200437
Willy Tarreau02e19752020-09-23 17:17:22 +0200438 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
439 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
440 goto end;
441
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200442 if (l->state <= LI_PAUSED)
443 goto end;
444
Willy Tarreaue03204c2020-10-09 17:02:21 +0200445 if (l->rx.proto->suspend)
446 ret = l->rx.proto->suspend(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200447
Willy Tarreau2b718102021-04-21 07:32:39 +0200448 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200449
Willy Tarreaua37b2442020-09-24 07:23:45 +0200450 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200451
452 if (px && !px->li_ready) {
453 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
454 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
455 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200456 end:
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100457 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200458
459 if (!lpx)
460 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
461
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200462 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200463}
464
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200465/* This function tries to resume a temporarily disabled listener. Paused, full,
466 * limited and disabled listeners are handled, which means that this function
467 * may replace enable_listener(). The resulting state will either be LI_READY
468 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200469 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200470 * foreground mode, and are ignored. If the listener was only in the assigned
471 * state, it's totally rebound. This can happen if a pause() has completely
472 * stopped it. If the resume fails, 0 is returned and an error might be
473 * displayed.
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200474 * It will need to operate under the proxy's lock. The caller is
475 * responsible for indicating in lpx whether the proxy locks is
476 * already held (non-zero) or not (zero) so that the function picks it.
Willy Tarreaube58c382011-07-24 18:28:10 +0200477 */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200478int resume_listener(struct listener *l, int lpx)
Willy Tarreaube58c382011-07-24 18:28:10 +0200479{
Willy Tarreau58651b42020-09-24 16:03:29 +0200480 struct proxy *px = l->bind_conf->frontend;
481 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200482 int ret = 1;
483
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200484 if (!lpx)
485 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
486
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100487 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200488
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200489 /* check that another thread didn't to the job in parallel (e.g. at the
490 * end of listen_accept() while we'd come from dequeue_all_listeners().
491 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200492 if (MT_LIST_INLIST(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200493 goto end;
494
William Lallemand095ba4c2017-06-01 17:38:50 +0200495 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200496 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200497 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100498
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 Tarreauae3f22f2022-02-01 16:23:00 +0100520 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200521
522 if (!lpx)
523 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
524
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200525 return ret;
526}
527
Willy Tarreau87b09662015-04-03 00:22:06 +0200528/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200529 * it upon next close() using resume_listener().
530 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200531static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200532{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100533 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200534 if (l->state >= LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200535 MT_LIST_DELETE(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100536 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200537 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200538 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100539 }
Willy Tarreau62793712011-07-24 19:23:38 +0200540 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100541 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200542}
543
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200544/* Marks a ready listener as limited so that we only try to re-enable it when
545 * resources are free again. It will be queued into the specified queue.
546 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200547static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200548{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100549 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200550 if (l->state == LI_READY) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200551 MT_LIST_TRY_APPEND(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200552 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200553 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200554 }
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100555 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200556}
557
Willy Tarreau241797a2019-12-10 14:10:52 +0100558/* Dequeues all listeners waiting for a resource the global wait queue */
559void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200560{
Willy Tarreau01abd022019-02-28 10:27:18 +0100561 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200562
Willy Tarreau241797a2019-12-10 14:10:52 +0100563 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200564 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100565 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200566 */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200567 resume_listener(listener, 0);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200568 }
569}
570
Willy Tarreau241797a2019-12-10 14:10:52 +0100571/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
572void dequeue_proxy_listeners(struct proxy *px)
573{
574 struct listener *listener;
575
576 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
577 /* This cannot fail because the listeners are by definition in
578 * the LI_LIMITED state.
579 */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +0200580 resume_listener(listener, 0);
Willy Tarreau241797a2019-12-10 14:10:52 +0100581 }
582}
583
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200584
585/* default function used to unbind a listener. This is for use by standard
586 * protocols working on top of accepted sockets. The receiver's rx_unbind()
587 * will automatically be used after the listener is disabled if the socket is
588 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100589 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200590void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100591{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200592 if (listener->state <= LI_ASSIGNED)
593 goto out_close;
594
595 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200596 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200597 goto out_close;
598 }
599
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200600 if (listener->state >= LI_READY) {
601 listener->rx.proto->disable(listener);
602 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200603 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200604 }
605
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200606 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200607 if (listener->rx.flags & RX_F_BOUND)
608 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200609}
610
611/* This function closes the listening socket for the specified listener,
612 * provided that it's already in a listening state. The protocol's unbind()
613 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
614 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
615 * the receiver is unbound. Must be called with the lock held.
616 */
617void do_unbind_listener(struct listener *listener)
618{
Willy Tarreau2b718102021-04-21 07:32:39 +0200619 MT_LIST_DELETE(&listener->wait_queue);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200620
621 if (listener->rx.proto->unbind)
622 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200623
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200624 /* we may have to downgrade the listener if the rx was closed */
625 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200626 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100627}
628
Olivier Houchard1fc05162017-04-06 01:05:05 +0200629/* This function closes the listening socket for the specified listener,
630 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200631 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
632 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100633 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200634 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100635void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200636{
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100637 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200638 do_unbind_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100639 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200640}
641
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200642/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
643 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200644 * allocation). The address family is taken from ss->ss_family, and the protocol
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200645 * passed in <proto> must be usable on this family. The protocol's default iocb
646 * is automatically preset as the receivers' iocb. The number of jobs and
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200647 * listeners is automatically increased by the number of listeners created. It
648 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200649 */
650int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200651 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200652{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200653 struct listener *l;
654 int port;
655
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200656 for (port = portl; port <= porth; port++) {
657 l = calloc(1, sizeof(*l));
658 if (!l) {
659 memprintf(err, "out of memory");
660 return 0;
661 }
662 l->obj_type = OBJ_TYPE_LISTENER;
Willy Tarreau2b718102021-04-21 07:32:39 +0200663 LIST_APPEND(&bc->frontend->conf.listeners, &l->by_fe);
664 LIST_APPEND(&bc->listeners, &l->by_bind);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200665 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200666 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200667 l->rx.owner = l;
Willy Tarreaud2fb99f2020-10-15 21:22:29 +0200668 l->rx.iocb = proto->default_iocb;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200669 l->rx.fd = fd;
Willy Tarreau07400c52020-12-04 14:49:11 +0100670
Willy Tarreau37159062020-08-27 07:48:42 +0200671 memcpy(&l->rx.addr, ss, sizeof(*ss));
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100672 if (proto->fam->set_port)
673 proto->fam->set_port(&l->rx.addr, port);
Willy Tarreau07400c52020-12-04 14:49:11 +0100674
Olivier Houchard859dc802019-08-08 15:47:21 +0200675 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200676 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200677
Willy Tarreaud1f250f2020-12-04 15:03:36 +0100678 proto->add(proto, l);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200679
Willy Tarreau909c23b2020-09-15 13:50:58 +0200680 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200681 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100682
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100683 l->extra_counters = NULL;
684
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100685 HA_RWLOCK_INIT(&l->lock);
Willy Tarreau4781b152021-04-06 13:53:36 +0200686 _HA_ATOMIC_INC(&jobs);
687 _HA_ATOMIC_INC(&listeners);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200688 }
689 return 1;
690}
691
Willy Tarreau1a64d162007-10-28 22:26:05 +0100692/* Delete a listener from its protocol's list of listeners. The listener's
693 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200694 * number of listeners is updated, as well as the global number of listeners
695 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200696 * is a low-level function expected to be called with the proto_lock and the
697 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100698 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200699void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100700{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100701 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200702 listener_set_state(listener, LI_INIT);
Willy Tarreau2b718102021-04-21 07:32:39 +0200703 LIST_DELETE(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200704 listener->rx.proto->nb_receivers--;
Willy Tarreau4781b152021-04-06 13:53:36 +0200705 _HA_ATOMIC_DEC(&jobs);
706 _HA_ATOMIC_DEC(&listeners);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100707 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200708}
709
710/* Delete a listener from its protocol's list of listeners (please check
711 * __delete_listener() above). The proto_lock and the listener's lock will
712 * be grabbed in this order.
713 */
714void delete_listener(struct listener *listener)
715{
716 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100717 HA_RWLOCK_WRLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200718 __delete_listener(listener);
Willy Tarreauae3f22f2022-02-01 16:23:00 +0100719 HA_RWLOCK_WRUNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200720 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100721}
722
Willy Tarreaue2711c72019-02-27 15:39:41 +0100723/* Returns a suitable value for a listener's backlog. It uses the listener's,
724 * otherwise the frontend's backlog, otherwise the listener's maxconn,
725 * otherwise the frontend's maxconn, otherwise 1024.
726 */
727int listener_backlog(const struct listener *l)
728{
729 if (l->backlog)
730 return l->backlog;
731
732 if (l->bind_conf->frontend->backlog)
733 return l->bind_conf->frontend->backlog;
734
735 if (l->maxconn)
736 return l->maxconn;
737
738 if (l->bind_conf->frontend->maxconn)
739 return l->bind_conf->frontend->maxconn;
740
741 return 1024;
742}
743
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200744/* This function is called on a read event from a listening socket, corresponding
745 * to an accept. It tries to accept as many connections as possible, and for each
746 * calls the listener's accept handler (generally the frontend's accept handler).
747 */
Willy Tarreaua74cb382020-10-15 21:29:49 +0200748void listener_accept(struct listener *l)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200749{
Willy Tarreau83efc322020-10-14 17:37:17 +0200750 struct connection *cli_conn;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100751 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200752 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100753 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100754 int next_feconn = 0;
755 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200756 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200757 int ret;
758
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100759 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200760
761 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
762 * illimited, but it is probably enough.
763 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100764 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200765
Willy Tarreau93e7c002013-10-07 18:51:07 +0200766 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
767 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200768
769 if (unlikely(!max)) {
770 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200771 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100772 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200773 }
774
775 if (max_accept > max)
776 max_accept = max;
777 }
778
779 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200780 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
781
782 if (unlikely(!max)) {
783 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200784 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100785 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200786 }
787
788 if (max_accept > max)
789 max_accept = max;
790 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200791#ifdef USE_OPENSSL
792 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
793 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200794
Willy Tarreaue43d5322013-10-07 20:01:52 +0200795 if (unlikely(!max)) {
796 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200797 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100798 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200799 }
800
801 if (max_accept > max)
802 max_accept = max;
803 }
804#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200805 if (p && p->fe_sps_lim) {
806 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
807
808 if (unlikely(!max)) {
809 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100810 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
811 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200812 }
813
814 if (max_accept > max)
815 max_accept = max;
816 }
817
818 /* Note: if we fail to allocate a connection because of configured
819 * limits, we'll schedule a new attempt worst 1 second later in the
820 * worst case. If we fail due to system limits or temporary resource
821 * shortage, we try again 100ms later in the worst case.
822 */
Willy Tarreau02757d02021-01-28 18:07:24 +0100823 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200824 unsigned int count;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200825 int status;
Willy Tarreau0aa5a5b2020-10-16 17:43:04 +0200826 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200827
Willy Tarreau82c97892019-02-27 19:32:32 +0100828 /* pre-increase the number of connections without going too far.
829 * We process the listener, then the proxy, then the process.
830 * We know which ones to unroll based on the next_xxx value.
831 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100832 do {
833 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100834 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100835 /* the listener was marked full or another
836 * thread is going to do it.
837 */
838 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100839 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100840 goto end;
841 }
842 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000843 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100844
Willy Tarreau82c97892019-02-27 19:32:32 +0100845 if (p) {
846 do {
847 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100848 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100849 /* the frontend was marked full or another
850 * thread is going to do it.
851 */
852 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100853 expire = TICK_ETERNITY;
854 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100855 }
856 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100857 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200858 }
859
Willy Tarreau82c97892019-02-27 19:32:32 +0100860 if (!(l->options & LI_O_UNLIMITED)) {
861 do {
862 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100863 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100864 /* the process was marked full or another
865 * thread is going to do it.
866 */
867 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100868 expire = tick_add(now_ms, 1000); /* try again in 1 second */
869 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100870 }
871 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000872 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200873 }
874
Willy Tarreaud276ee52022-02-01 16:37:00 +0100875 /* be careful below, the listener might be shutting down in
876 * another thread on error and we must not dereference its
877 * FD without a bit of protection.
878 */
879 cli_conn = NULL;
880 status = CO_AC_PERMERR;
881
882 HA_RWLOCK_RDLOCK(LISTENER_LOCK, &l->lock);
883 if (l->rx.flags & RX_F_BOUND)
884 cli_conn = l->rx.proto->accept_conn(l, &status);
885 HA_RWLOCK_RDUNLOCK(LISTENER_LOCK, &l->lock);
886
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200887 if (!cli_conn) {
888 switch (status) {
889 case CO_AC_DONE:
890 goto end;
Willy Tarreau818dca52014-01-31 19:40:19 +0100891
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200892 case CO_AC_RETRY: /* likely a signal */
Willy Tarreau4781b152021-04-06 13:53:36 +0200893 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100894 if (p)
Willy Tarreau4781b152021-04-06 13:53:36 +0200895 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +0100896 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +0200897 _HA_ATOMIC_DEC(&actconn);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100898 continue;
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200899
900 case CO_AC_YIELD:
Willy Tarreau92079932019-12-10 09:30:05 +0100901 max_accept = 0;
902 goto end;
William Lallemandd9138002018-11-27 12:02:39 +0100903
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200904 default:
905 goto transient_error;
Willy Tarreau83efc322020-10-14 17:37:17 +0200906 }
907 }
908
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100909 /* The connection was accepted, it must be counted as such */
910 if (l->counters)
911 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
912
Willy Tarreauee3ec402022-05-09 20:41:54 +0200913 if (p) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100914 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
Willy Tarreauee3ec402022-05-09 20:41:54 +0200915 proxy_inc_fe_conn_ctr(l, p);
916 }
Willy Tarreau82c97892019-02-27 19:32:32 +0100917
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100918 if (!(l->options & LI_O_UNLIMITED)) {
919 count = update_freq_ctr(&global.conn_per_sec, 1);
920 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100921 }
922
Willy Tarreau4781b152021-04-06 13:53:36 +0200923 _HA_ATOMIC_INC(&activity[tid].accepted);
Willy Tarreau64a9c052019-04-12 15:27:17 +0200924
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200925 if (unlikely(cli_conn->handle.fd >= global.maxsock)) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200926 send_log(p, LOG_EMERG,
927 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
928 p->id);
Willy Tarreau9378bbe2020-10-15 10:09:31 +0200929 close(cli_conn->handle.fd);
William Dauchy835712a2020-10-18 18:37:43 +0200930 conn_free(cli_conn);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100931 expire = tick_add(now_ms, 1000); /* try again in 1 second */
932 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200933 }
934
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100935 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100936 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
937 * allows the error path not to rollback on nbconn. It's more
938 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100939 */
940 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100941 next_feconn = 0;
942 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200943
Willy Tarreau83efc322020-10-14 17:37:17 +0200944
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100945#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200946 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100947 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100948 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100949 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100950
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100951 /* The principle is that we have two running indexes,
952 * each visiting in turn all threads bound to this
953 * listener. The connection will be assigned to the one
954 * with the least connections, and the other one will
955 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100956 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100957 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100958 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100959
960 /* keep a copy for the final update. thr_idx is composite
961 * and made of (t2<<16) + t1.
962 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100963 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100964 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100965 unsigned long m1, m2;
966 int q1, q2;
967
968 t2 = t1 = t0;
969 t2 >>= 16;
970 t1 &= 0xFFFF;
971
972 /* t1 walks low to high bits ;
973 * t2 walks high to low.
974 */
975 m1 = mask >> t1;
976 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
977
Willy Tarreau85d04242019-04-16 18:09:13 +0200978 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100979 m1 &= ~1UL;
980 if (!m1) {
981 m1 = mask;
982 t1 = 0;
983 }
984 t1 += my_ffsl(m1) - 1;
985 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100986
Willy Tarreau85d04242019-04-16 18:09:13 +0200987 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
988 /* highest bit not set */
989 if (!m2)
990 m2 = mask;
991
992 t2 = my_flsl(m2) - 1;
993 }
994
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100995 /* now we have two distinct thread IDs belonging to the mask */
996 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
997 if (q1 >= ACCEPT_QUEUE_SIZE)
998 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100999
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001000 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1001 if (q2 >= ACCEPT_QUEUE_SIZE)
1002 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001003
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001004 /* we have 3 possibilities now :
1005 * q1 < q2 : t1 is less loaded than t2, so we pick it
1006 * and update t2 (since t1 might still be
1007 * lower than another thread)
1008 * q1 > q2 : t2 is less loaded than t1, so we pick it
1009 * and update t1 (since t2 might still be
1010 * lower than another thread)
1011 * q1 = q2 : both are equally loaded, thus we pick t1
1012 * and update t1 as it will become more loaded
1013 * than t2.
1014 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001015
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001016 q1 += l->thr_conn[t1];
1017 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001018
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001019 if (q1 - q2 < 0) {
1020 t = t1;
1021 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1022 }
1023 else if (q1 - q2 > 0) {
1024 t = t2;
1025 t1++;
1026 if (t1 >= LONGBITS)
1027 t1 = 0;
1028 }
1029 else {
1030 t = t1;
1031 t1++;
1032 if (t1 >= LONGBITS)
1033 t1 = 0;
1034 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001035
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001036 /* new value for thr_idx */
1037 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001038 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001039
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001040 /* We successfully selected the best thread "t" for this
1041 * connection. We use deferred accepts even if it's the
1042 * local thread because tests show that it's the best
1043 * performing model, likely due to better cache locality
1044 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001045 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001046 ring = &accept_queue_rings[t];
Willy Tarreau83efc322020-10-14 17:37:17 +02001047 if (accept_queue_push_mp(ring, cli_conn)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001048 _HA_ATOMIC_INC(&activity[t].accq_pushed);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001049 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001050 continue;
1051 }
1052 /* If the ring is full we do a synchronous accept on
1053 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001054 */
Willy Tarreau4781b152021-04-06 13:53:36 +02001055 _HA_ATOMIC_INC(&activity[t].accq_full);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001056 }
1057#endif // USE_THREAD
1058
Willy Tarreau4781b152021-04-06 13:53:36 +02001059 _HA_ATOMIC_INC(&l->thr_conn[tid]);
Willy Tarreau83efc322020-10-14 17:37:17 +02001060 ret = l->accept(cli_conn);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001061 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001062 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001063 * we just have to ignore it (ret == 0) or it's a critical
1064 * error due to a resource shortage, and we must stop the
1065 * listener (ret < 0).
1066 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001067 if (ret == 0) /* successful termination */
1068 continue;
1069
Willy Tarreaubb660302014-05-07 19:47:02 +02001070 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001071 }
1072
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001073 /* increase the per-process number of cumulated sessions, this
1074 * may only be done once l->accept() has accepted the connection.
1075 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001076 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001077 count = update_freq_ctr(&global.sess_per_sec, 1);
1078 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001079 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001080#ifdef USE_OPENSSL
1081 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001082 count = update_freq_ctr(&global.ssl_per_sec, 1);
1083 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001084 }
1085#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001086
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001087 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001088 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001089
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001090 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001091 if (next_conn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001092 _HA_ATOMIC_DEC(&l->nbconn);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001093
Willy Tarreau82c97892019-02-27 19:32:32 +01001094 if (p && next_feconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001095 _HA_ATOMIC_DEC(&p->feconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001096
1097 if (next_actconn)
Willy Tarreau4781b152021-04-06 13:53:36 +02001098 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001099
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001100 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreau02757d02021-01-28 18:07:24 +01001101 (l->state == LI_LIMITED &&
Willy Tarreaucdcba112019-12-11 15:06:30 +01001102 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1103 (!tick_isset(global_listener_queue_task->expire) ||
1104 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001105 /* at least one thread has to this when quitting */
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +02001106 resume_listener(l, 0);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001107
Willy Tarreau02757d02021-01-28 18:07:24 +01001108 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001109 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001110
Olivier Houchard859dc802019-08-08 15:47:21 +02001111 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001112 (!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 +01001113 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001114 }
Willy Tarreau0591bf72019-12-10 12:01:21 +01001115 return;
1116
1117 transient_error:
1118 /* pause the listener for up to 100 ms */
1119 expire = tick_add(now_ms, 100);
1120
Willy Tarreau258b3512020-10-13 17:46:05 +02001121 /* This may be a shared socket that was paused by another process.
1122 * Let's put it to pause in this case.
1123 */
1124 if (l->rx.proto && l->rx.proto->rx_listening(&l->rx) == 0) {
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +02001125 pause_listener(l, 0);
Willy Tarreau258b3512020-10-13 17:46:05 +02001126 goto end;
1127 }
1128
Willy Tarreau0591bf72019-12-10 12:01:21 +01001129 limit_global:
1130 /* (re-)queue the listener to the global queue and set it to expire no
1131 * later than <expire> ahead. The listener turns to LI_LIMITED.
1132 */
1133 limit_listener(l, &global_listener_queue);
1134 task_schedule(global_listener_queue_task, expire);
1135 goto end;
1136
1137 limit_proxy:
1138 /* (re-)queue the listener to the proxy's queue and set it to expire no
1139 * later than <expire> ahead. The listener turns to LI_LIMITED.
1140 */
1141 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001142 if (p->task && tick_isset(expire))
1143 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001144 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001145}
1146
Willy Tarreau05f50472017-09-15 09:19:58 +02001147/* Notify the listener that a connection initiated from it was released. This
1148 * is used to keep the connection count consistent and to possibly re-open
1149 * listening when it was limited.
1150 */
1151void listener_release(struct listener *l)
1152{
1153 struct proxy *fe = l->bind_conf->frontend;
1154
1155 if (!(l->options & LI_O_UNLIMITED))
Willy Tarreau4781b152021-04-06 13:53:36 +02001156 _HA_ATOMIC_DEC(&actconn);
Willy Tarreau82c97892019-02-27 19:32:32 +01001157 if (fe)
Willy Tarreau4781b152021-04-06 13:53:36 +02001158 _HA_ATOMIC_DEC(&fe->feconn);
1159 _HA_ATOMIC_DEC(&l->nbconn);
1160 _HA_ATOMIC_DEC(&l->thr_conn[tid]);
Willy Tarreau82c97892019-02-27 19:32:32 +01001161
1162 if (l->state == LI_FULL || l->state == LI_LIMITED)
Aurelien DARRAGONa225fe82022-09-09 15:32:57 +02001163 resume_listener(l, 0);
Willy Tarreau05f50472017-09-15 09:19:58 +02001164
Willy Tarreau02757d02021-01-28 18:07:24 +01001165 /* Dequeues all of the listeners waiting for a resource */
1166 dequeue_all_listeners();
1167
Olivier Houchard859dc802019-08-08 15:47:21 +02001168 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001169 (!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 +01001170 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001171}
1172
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001173/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1174static int listener_queue_init()
1175{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001176 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1177 if (!global_listener_queue_task) {
1178 ha_alert("Out of memory when initializing global listener queue\n");
1179 return ERR_FATAL|ERR_ABORT;
1180 }
1181 /* very simple initialization, users will queue the task if needed */
1182 global_listener_queue_task->context = NULL; /* not even a context! */
1183 global_listener_queue_task->process = manage_global_listener_queue;
1184
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001185 return 0;
1186}
1187
1188static void listener_queue_deinit()
1189{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001190 task_destroy(global_listener_queue_task);
1191 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001192}
1193
1194REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1195REGISTER_POST_DEINIT(listener_queue_deinit);
1196
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001197
1198/* This is the global management task for listeners. It enables listeners waiting
1199 * for global resources when there are enough free resource, or at least once in
Willy Tarreaud597ec22021-01-29 14:29:06 +01001200 * a while. It is designed to be called as a task. It's exported so that it's easy
1201 * to spot in "show tasks" or "show profiling".
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001202 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001203struct task *manage_global_listener_queue(struct task *t, void *context, unsigned int state)
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001204{
1205 /* If there are still too many concurrent connections, let's wait for
1206 * some of them to go away. We don't need to re-arm the timer because
1207 * each of them will scan the queue anyway.
1208 */
1209 if (unlikely(actconn >= global.maxconn))
1210 goto out;
1211
1212 /* We should periodically try to enable listeners waiting for a global
1213 * resource here, because it is possible, though very unlikely, that
1214 * they have been blocked by a temporary lack of global resource such
1215 * as a file descriptor or memory and that the temporary condition has
1216 * disappeared.
1217 */
1218 dequeue_all_listeners();
1219
1220 out:
1221 t->expire = TICK_ETERNITY;
1222 task_queue(t);
1223 return t;
1224}
1225
Willy Tarreau26982662012-09-12 23:17:10 +02001226/*
1227 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1228 * parsing sessions.
1229 */
1230void bind_register_keywords(struct bind_kw_list *kwl)
1231{
Willy Tarreau2b718102021-04-21 07:32:39 +02001232 LIST_APPEND(&bind_keywords.list, &kwl->list);
Willy Tarreau26982662012-09-12 23:17:10 +02001233}
1234
1235/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1236 * keyword is found with a NULL ->parse() function, then an attempt is made to
1237 * find one with a valid ->parse() function. This way it is possible to declare
1238 * platform-dependant, known keywords as NULL, then only declare them as valid
1239 * if some options are met. Note that if the requested keyword contains an
1240 * opening parenthesis, everything from this point is ignored.
1241 */
1242struct bind_kw *bind_find_kw(const char *kw)
1243{
1244 int index;
1245 const char *kwend;
1246 struct bind_kw_list *kwl;
1247 struct bind_kw *ret = NULL;
1248
1249 kwend = strchr(kw, '(');
1250 if (!kwend)
1251 kwend = kw + strlen(kw);
1252
1253 list_for_each_entry(kwl, &bind_keywords.list, list) {
1254 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1255 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1256 kwl->kw[index].kw[kwend-kw] == 0) {
1257 if (kwl->kw[index].parse)
1258 return &kwl->kw[index]; /* found it !*/
1259 else
1260 ret = &kwl->kw[index]; /* may be OK */
1261 }
1262 }
1263 }
1264 return ret;
1265}
1266
Willy Tarreau8638f482012-09-18 18:01:17 +02001267/* Dumps all registered "bind" keywords to the <out> string pointer. The
1268 * unsupported keywords are only dumped if their supported form was not
1269 * found.
1270 */
1271void bind_dump_kws(char **out)
1272{
1273 struct bind_kw_list *kwl;
1274 int index;
1275
Christopher Faulet784063e2020-05-18 12:14:18 +02001276 if (!out)
1277 return;
1278
Willy Tarreau8638f482012-09-18 18:01:17 +02001279 *out = NULL;
1280 list_for_each_entry(kwl, &bind_keywords.list, list) {
1281 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1282 if (kwl->kw[index].parse ||
1283 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001284 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1285 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001286 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001287 kwl->kw[index].skip ? " <arg>" : "",
1288 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001289 }
1290 }
1291 }
1292}
1293
Willy Tarreau433b05f2021-03-12 10:14:07 +01001294/* Try to find in srv_keyword the word that looks closest to <word> by counting
1295 * transitions between letters, digits and other characters. Will return the
1296 * best matching word if found, otherwise NULL.
1297 */
1298const char *bind_find_best_kw(const char *word)
1299{
1300 uint8_t word_sig[1024];
1301 uint8_t list_sig[1024];
1302 const struct bind_kw_list *kwl;
1303 const char *best_ptr = NULL;
1304 int dist, best_dist = INT_MAX;
1305 int index;
1306
1307 make_word_fingerprint(word_sig, word);
1308 list_for_each_entry(kwl, &bind_keywords.list, list) {
1309 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1310 make_word_fingerprint(list_sig, kwl->kw[index].kw);
1311 dist = word_fingerprint_distance(word_sig, list_sig);
1312 if (dist < best_dist) {
1313 best_dist = dist;
1314 best_ptr = kwl->kw[index].kw;
1315 }
1316 }
1317 }
1318
1319 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
1320 best_ptr = NULL;
1321
1322 return best_ptr;
1323}
1324
Willy Tarreau645513a2010-05-24 20:55:15 +02001325/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001326/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001327/************************************************************************/
1328
Willy Tarreaua5e37562011-12-16 17:06:15 +01001329/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001330static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001331smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001332{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001333 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001334 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001335 return 1;
1336}
1337
Willy Tarreaua5e37562011-12-16 17:06:15 +01001338/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001339static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001340smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001341{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001342 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001343 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001344 return 1;
1345}
Jerome Magnineb421b22020-03-27 22:08:40 +01001346static int
1347smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1348{
1349 smp->data.u.str.area = smp->sess->listener->name;
1350 if (!smp->data.u.str.area)
1351 return 0;
1352
1353 smp->data.type = SMP_T_STR;
1354 smp->flags = SMP_F_CONST;
1355 smp->data.u.str.data = strlen(smp->data.u.str.area);
1356 return 1;
1357}
Willy Tarreau645513a2010-05-24 20:55:15 +02001358
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001359/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001360static 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 +02001361{
1362 struct listener *l;
1363
Willy Tarreau4348fad2012-09-20 16:48:07 +02001364 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001365 l->options |= LI_O_ACC_PROXY;
1366
1367 return 0;
1368}
1369
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001370/* parse the "accept-netscaler-cip" bind keyword */
1371static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1372{
1373 struct listener *l;
1374 uint32_t val;
1375
1376 if (!*args[cur_arg + 1]) {
1377 memprintf(err, "'%s' : missing value", args[cur_arg]);
1378 return ERR_ALERT | ERR_FATAL;
1379 }
1380
1381 val = atol(args[cur_arg + 1]);
1382 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001383 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001384 return ERR_ALERT | ERR_FATAL;
1385 }
1386
1387 list_for_each_entry(l, &conf->listeners, by_bind) {
1388 l->options |= LI_O_ACC_CIP;
1389 conf->ns_cip_magic = val;
1390 }
1391
1392 return 0;
1393}
1394
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001395/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001396static 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 +02001397{
1398 struct listener *l;
1399 int val;
1400
1401 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001402 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001403 return ERR_ALERT | ERR_FATAL;
1404 }
1405
1406 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001407 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001408 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001409 return ERR_ALERT | ERR_FATAL;
1410 }
1411
Willy Tarreau4348fad2012-09-20 16:48:07 +02001412 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001413 l->backlog = val;
1414
1415 return 0;
1416}
1417
1418/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001419static 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 +02001420{
1421 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001422 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001423 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001424
Willy Tarreau4348fad2012-09-20 16:48:07 +02001425 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001426 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001427 return ERR_ALERT | ERR_FATAL;
1428 }
1429
1430 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001431 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001432 return ERR_ALERT | ERR_FATAL;
1433 }
1434
Willy Tarreau4348fad2012-09-20 16:48:07 +02001435 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001436 new->luid = strtol(args[cur_arg + 1], &error, 10);
1437 if (*error != '\0') {
1438 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1439 return ERR_ALERT | ERR_FATAL;
1440 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001441 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001442
Willy Tarreau4348fad2012-09-20 16:48:07 +02001443 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001444 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001445 return ERR_ALERT | ERR_FATAL;
1446 }
1447
Willy Tarreau4348fad2012-09-20 16:48:07 +02001448 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001449 if (node) {
1450 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001451 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1452 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1453 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001454 return ERR_ALERT | ERR_FATAL;
1455 }
1456
Willy Tarreau4348fad2012-09-20 16:48:07 +02001457 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001458 return 0;
1459}
1460
1461/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001462static 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 +02001463{
1464 struct listener *l;
1465 int val;
1466
1467 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001468 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001469 return ERR_ALERT | ERR_FATAL;
1470 }
1471
1472 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001473 if (val < 0) {
1474 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001475 return ERR_ALERT | ERR_FATAL;
1476 }
1477
Willy Tarreau4348fad2012-09-20 16:48:07 +02001478 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001479 l->maxconn = val;
1480
1481 return 0;
1482}
1483
1484/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001485static 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 +02001486{
1487 struct listener *l;
1488
1489 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001490 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001491 return ERR_ALERT | ERR_FATAL;
1492 }
1493
Willy Tarreau4348fad2012-09-20 16:48:07 +02001494 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001495 l->name = strdup(args[cur_arg + 1]);
1496
1497 return 0;
1498}
1499
1500/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001501static 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 +02001502{
1503 struct listener *l;
1504 int val;
1505
1506 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001507 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001508 return ERR_ALERT | ERR_FATAL;
1509 }
1510
1511 val = atol(args[cur_arg + 1]);
1512 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001513 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001514 return ERR_ALERT | ERR_FATAL;
1515 }
1516
Willy Tarreau4348fad2012-09-20 16:48:07 +02001517 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001518 l->nice = val;
1519
1520 return 0;
1521}
1522
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001523/* parse the "process" bind keyword */
1524static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1525{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001526 char *slash;
1527 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001528
Christopher Fauletc644fa92017-11-23 22:44:11 +01001529 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1530 *slash = 0;
1531
Willy Tarreauff9c9142019-02-07 10:39:36 +01001532 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001533 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001534 return ERR_ALERT | ERR_FATAL;
1535 }
1536
Christopher Fauletc644fa92017-11-23 22:44:11 +01001537 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001538 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001539 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1540 return ERR_ALERT | ERR_FATAL;
1541 }
1542 *slash = '/';
1543 }
1544
Willy Tarreaue26993c2020-09-03 07:18:55 +02001545 conf->settings.bind_proc |= proc;
1546 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001547 return 0;
1548}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001549
Christopher Fauleta717b992018-04-10 14:43:00 +02001550/* parse the "proto" bind keyword */
1551static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1552{
1553 struct ist proto;
1554
1555 if (!*args[cur_arg + 1]) {
1556 memprintf(err, "'%s' : missing value", args[cur_arg]);
1557 return ERR_ALERT | ERR_FATAL;
1558 }
1559
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01001560 proto = ist(args[cur_arg + 1]);
Christopher Fauleta717b992018-04-10 14:43:00 +02001561 conf->mux_proto = get_mux_proto(proto);
1562 if (!conf->mux_proto) {
1563 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1564 return ERR_ALERT | ERR_FATAL;
1565 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001566 return 0;
1567}
1568
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001569/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1570static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001571 const struct proxy *defpx, const char *file, int line,
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001572 char **err)
1573{
1574 if (too_many_args(1, args, err, NULL))
1575 return -1;
1576
1577 if (strcmp(args[1], "on") == 0)
1578 global.tune.options |= GTUNE_LISTENER_MQ;
1579 else if (strcmp(args[1], "off") == 0)
1580 global.tune.options &= ~GTUNE_LISTENER_MQ;
1581 else {
1582 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1583 return -1;
1584 }
1585 return 0;
1586}
1587
Willy Tarreau61612d42012-04-19 18:42:05 +02001588/* Note: must not be declared <const> as its list will be overwritten.
1589 * Please take care of keeping this list alphabetically sorted.
1590 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001591static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001592 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1593 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001594 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001595 { /* END */ },
1596}};
1597
Willy Tarreau0108d902018-11-25 19:14:37 +01001598INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1599
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001600/* Note: must not be declared <const> as its list will be overwritten.
1601 * Please take care of keeping this list alphabetically sorted.
1602 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001603static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001604 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001605}};
1606
Willy Tarreau0108d902018-11-25 19:14:37 +01001607INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1608
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001609/* Note: must not be declared <const> as its list will be overwritten.
1610 * Please take care of keeping this list alphabetically sorted, doing so helps
1611 * all code contributors.
1612 * Optional keywords are also declared with a NULL ->parse() function so that
1613 * the config parser can report an appropriate error when a known keyword was
1614 * not enabled.
1615 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001616static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001617 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001618 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1619 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1620 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1621 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1622 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1623 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001624 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001625 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001626 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001627}};
1628
Willy Tarreau0108d902018-11-25 19:14:37 +01001629INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1630
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001631/* config keyword parsers */
1632static struct cfg_kw_list cfg_kws = {ILH, {
1633 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1634 { 0, NULL, NULL }
1635}};
1636
1637INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1638
Willy Tarreau645513a2010-05-24 20:55:15 +02001639/*
1640 * Local variables:
1641 * c-indent-level: 8
1642 * c-basic-offset: 8
1643 * End:
1644 */