blob: 1acf85f60c977d386ff6f53c2cadbcbf9c34da5d [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 Tarreau44489252014-01-14 17:52:01 +010013#define _GNU_SOURCE
Willy Tarreau6ae1ba62014-05-07 19:01:58 +020014#include <ctype.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020015#include <errno.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020016#include <stdio.h>
17#include <string.h>
Willy Tarreau95ccdde2014-02-01 09:28:36 +010018#include <unistd.h>
19#include <fcntl.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020020
Willy Tarreaudcc048a2020-06-04 19:11:43 +020021#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020022#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020023#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020024#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020025#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/fd.h>
27#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020028#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020029#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020030#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020031#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#include <haproxy/proto_sockpair.h>
33#include <haproxy/protocol-t.h>
34#include <haproxy/protocol.h>
35#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 Tarreau92b4f132020-06-01 11:05:15 +020038#include <haproxy/time.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 */
43static struct bind_kw_list bind_keywords = {
44 .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;
50static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state);
51
52
Willy Tarreau1efafce2019-01-27 15:37:19 +010053#if defined(USE_THREAD)
54
55struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
56
57/* dequeue and process a pending connection from the local accept queue (single
58 * consumer). Returns the accepted fd or -1 if none was found. The listener is
59 * placed into *li. The address is copied into *addr for no more than *addr_len
60 * bytes, and the address length is returned into *addr_len.
61 */
62int accept_queue_pop_sc(struct accept_queue_ring *ring, struct listener **li, void *addr, int *addr_len)
63{
64 struct accept_queue_entry *e;
65 unsigned int pos, next;
66 struct listener *ptr;
67 int len;
68 int fd;
69
70 pos = ring->head;
71
72 if (pos == ring->tail)
73 return -1;
74
75 next = pos + 1;
76 if (next >= ACCEPT_QUEUE_SIZE)
77 next = 0;
78
79 e = &ring->entry[pos];
80
81 /* wait for the producer to update the listener's pointer */
82 while (1) {
83 ptr = e->listener;
84 __ha_barrier_load();
85 if (ptr)
86 break;
87 pl_cpu_relax();
88 }
89
90 fd = e->fd;
91 len = e->addr_len;
92 if (len > *addr_len)
93 len = *addr_len;
94
95 if (likely(len > 0))
96 memcpy(addr, &e->addr, len);
97
98 /* release the entry */
99 e->listener = NULL;
100
101 __ha_barrier_store();
102 ring->head = next;
103
104 *addr_len = len;
105 *li = ptr;
106
107 return fd;
108}
109
110
111/* tries to push a new accepted connection <fd> into ring <ring> for listener
112 * <li>, from address <addr> whose length is <addr_len>. Returns non-zero if it
113 * succeeds, or zero if the ring is full. Supports multiple producers.
114 */
115int accept_queue_push_mp(struct accept_queue_ring *ring, int fd,
116 struct listener *li, const void *addr, int addr_len)
117{
118 struct accept_queue_entry *e;
119 unsigned int pos, next;
120
121 pos = ring->tail;
122 do {
123 next = pos + 1;
124 if (next >= ACCEPT_QUEUE_SIZE)
125 next = 0;
126 if (next == ring->head)
127 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100128 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100129
130
131 e = &ring->entry[pos];
132
133 if (addr_len > sizeof(e->addr))
134 addr_len = sizeof(e->addr);
135
136 if (addr_len)
137 memcpy(&e->addr, addr, addr_len);
138
139 e->addr_len = addr_len;
140 e->fd = fd;
141
142 __ha_barrier_store();
143 /* now commit the change */
144
145 e->listener = li;
146 return 1;
147}
148
149/* proceed with accepting new connections */
150static struct task *accept_queue_process(struct task *t, void *context, unsigned short state)
151{
152 struct accept_queue_ring *ring = context;
153 struct listener *li;
154 struct sockaddr_storage addr;
Christopher Faulet102854c2019-04-30 12:17:13 +0200155 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100156 int addr_len;
157 int ret;
158 int fd;
159
Christopher Faulet102854c2019-04-30 12:17:13 +0200160 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
161 * is not really illimited, but it is probably enough.
162 */
163 max_accept = global.tune.maxaccept ? global.tune.maxaccept : 64;
164 for (; max_accept; max_accept--) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100165 addr_len = sizeof(addr);
166 fd = accept_queue_pop_sc(ring, &li, &addr, &addr_len);
167 if (fd < 0)
168 break;
169
Olivier Houchard64213e92019-03-08 18:52:57 +0100170 _HA_ATOMIC_ADD(&li->thr_conn[tid], 1);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100171 ret = li->accept(li, fd, &addr);
172 if (ret <= 0) {
173 /* connection was terminated by the application */
174 continue;
175 }
176
177 /* increase the per-process number of cumulated sessions, this
178 * may only be done once l->accept() has accepted the connection.
179 */
180 if (!(li->options & LI_O_UNLIMITED)) {
181 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
182 update_freq_ctr(&global.sess_per_sec, 1));
183 if (li->bind_conf && li->bind_conf->is_ssl) {
184 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
185 update_freq_ctr(&global.ssl_per_sec, 1));
186 }
187 }
188 }
189
190 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200191 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200192 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100193
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200194 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100195}
196
197/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
198static int accept_queue_init()
199{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200200 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100201 int i;
202
203 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200204 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100205 if (!t) {
206 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
207 return ERR_FATAL|ERR_ABORT;
208 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200209 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100210 t->process = accept_queue_process;
211 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200212 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100213 }
214 return 0;
215}
216
217REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
218
219#endif // USE_THREAD
220
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200221/* adjust the listener's state and its proxy's listener counters if needed.
222 * It must be called under the listener's lock, but uses atomic ops to change
223 * the proxy's counters so that the proxy lock is not needed.
224 */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200225void listener_set_state(struct listener *l, enum li_state st)
226{
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200227 struct proxy *px = l->bind_conf->frontend;
228
229 if (px) {
230 /* from state */
231 switch (l->state) {
232 case LI_NEW: /* first call */
233 _HA_ATOMIC_ADD(&px->li_all, 1);
234 break;
235 case LI_INIT:
236 case LI_ASSIGNED:
237 break;
238 case LI_PAUSED:
239 _HA_ATOMIC_SUB(&px->li_paused, 1);
240 break;
241 case LI_LISTEN:
242 _HA_ATOMIC_SUB(&px->li_bound, 1);
243 break;
244 case LI_READY:
245 case LI_FULL:
246 case LI_LIMITED:
247 _HA_ATOMIC_SUB(&px->li_ready, 1);
248 break;
249 }
250
251 /* to state */
252 switch (st) {
253 case LI_NEW:
254 case LI_INIT:
255 case LI_ASSIGNED:
256 break;
257 case LI_PAUSED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200258 BUG_ON(l->rx.fd == -1);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200259 _HA_ATOMIC_ADD(&px->li_paused, 1);
260 break;
261 case LI_LISTEN:
Willy Tarreau95a34602020-10-08 15:32:21 +0200262 BUG_ON(l->rx.fd == -1);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200263 _HA_ATOMIC_ADD(&px->li_bound, 1);
264 break;
265 case LI_READY:
266 case LI_FULL:
267 case LI_LIMITED:
Willy Tarreau95a34602020-10-08 15:32:21 +0200268 BUG_ON(l->rx.fd == -1);
Willy Tarreauefc0eec2020-09-24 07:27:06 +0200269 _HA_ATOMIC_ADD(&px->li_ready, 1);
270 break;
271 }
272 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200273 l->state = st;
274}
275
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100276/* This function adds the specified listener's file descriptor to the polling
277 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500278 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200279 * also support binding only the relevant processes to their respective
280 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100281 */
Willy Tarreau7834a3f2020-09-25 16:40:18 +0200282void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100283{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200285
286 /* If this listener is supposed to be only in the master, close it in
287 * the workers. Conversely, if it's supposed to be only in the workers
288 * close it in the master.
289 */
Willy Tarreau18c20d22020-10-09 16:11:46 +0200290 if (!!master != !!(listener->rx.flags & RX_F_MWORKER))
Willy Tarreau75c98d12020-10-09 15:55:23 +0200291 do_unbind_listener(listener);
Willy Tarreaud6afb532020-10-09 10:35:40 +0200292
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100293 if (listener->state == LI_LISTEN) {
Willy Tarreau95a34602020-10-08 15:32:21 +0200294 BUG_ON(listener->rx.fd == -1);
William Lallemand095ba4c2017-06-01 17:38:50 +0200295 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200296 !(proc_mask(listener->rx.settings->bind_proc) & pid_bit)) {
Willy Tarreauae302532014-05-07 19:22:24 +0200297 /* we don't want to enable this listener and don't
298 * want any fd event to reach it.
299 */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200300 do_unbind_listener(listener);
Willy Tarreauae302532014-05-07 19:22:24 +0200301 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100302 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200303 listener->rx.proto->enable(listener);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200304 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200305 }
306 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200307 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100308 }
309 }
Willy Tarreaud6afb532020-10-09 10:35:40 +0200310
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100311 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100312}
313
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200314/*
315 * This function completely stops a listener. It will need to operate under the
316 * proxy's lock, the protocol's lock, and the listener's lock. The caller is
317 * responsible for indicating in lpx, lpr, lli whether the respective locks are
318 * already held (non-zero) or not (zero) so that the function picks the missing
319 * ones, in this order. The proxy's listeners count is updated and the proxy is
320 * disabled and woken up after the last one is gone.
321 */
322void stop_listener(struct listener *l, int lpx, int lpr, int lli)
323{
324 struct proxy *px = l->bind_conf->frontend;
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200325
326 if (l->options & LI_O_NOSTOP) {
327 /* master-worker sockpairs are never closed but don't count as a
328 * job.
329 */
330 return;
331 }
332
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200333 if (!lpx)
334 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
335
336 if (!lpr)
337 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
338
339 if (!lli)
340 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
341
342 if (l->state > LI_INIT) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200343 do_unbind_listener(l);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200344
345 if (l->state >= LI_ASSIGNED)
346 __delete_listener(l);
347
Willy Tarreauacde1522020-10-07 16:31:39 +0200348 proxy_cond_disable(px);
Willy Tarreaucaa7df12020-10-07 15:58:50 +0200349 }
350
351 if (!lli)
352 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
353
354 if (!lpr)
355 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
356
357 if (!lpx)
358 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
359}
360
Willy Tarreaue03204c2020-10-09 17:02:21 +0200361/* default function called to suspend a listener: it simply passes the call to
362 * the underlying receiver. This is find for most socket-based protocols. This
363 * must be called under the listener's lock. It will return non-zero on success,
364 * 0 on failure. If no receiver-level suspend is provided, the operation is
365 * assumed to succeed.
366 */
367int default_suspend_listener(struct listener *l)
368{
369 int ret = 1;
370
371 if (!l->rx.proto->rx_suspend)
372 return 1;
373
374 ret = l->rx.proto->rx_suspend(&l->rx);
375 return ret > 0 ? ret : 0;
376}
377
378
379/* Tries to resume a suspended listener, and returns non-zero on success or
380 * zero on failure. On certain errors, an alert or a warning might be displayed.
381 * It must be called with the listener's lock held. Depending on the listener's
382 * state and protocol, a listen() call might be used to resume operations, or a
383 * call to the receiver's resume() function might be used as well. This is
384 * suitable as a default function for TCP and UDP. This must be called with the
385 * listener's lock held.
386 */
387int default_resume_listener(struct listener *l)
388{
389 int ret = 1;
390
391 if (l->state == LI_ASSIGNED) {
392 char msg[100];
393 int err;
394
395 err = l->rx.proto->listen(l, msg, sizeof(msg));
396 if (err & ERR_ALERT)
397 ha_alert("Resuming listener: %s\n", msg);
398 else if (err & ERR_WARN)
399 ha_warning("Resuming listener: %s\n", msg);
400
401 if (err & (ERR_FATAL | ERR_ABORT)) {
402 ret = 0;
403 goto end;
404 }
405 }
406
407 if (l->state < LI_PAUSED) {
408 ret = 0;
409 goto end;
410 }
411
412 if (l->state == LI_PAUSED && l->rx.proto->rx_resume &&
413 l->rx.proto->rx_resume(&l->rx) <= 0)
414 ret = 0;
415 end:
416 return ret;
417}
418
419
Willy Tarreaube58c382011-07-24 18:28:10 +0200420/* This function tries to temporarily disable a listener, depending on the OS
421 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
422 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
423 * closes upon SHUT_WR and refuses to rebind. So a common validation path
424 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
425 * is disabled. It normally returns non-zero, unless an error is reported.
426 */
427int pause_listener(struct listener *l)
428{
Willy Tarreau58651b42020-09-24 16:03:29 +0200429 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200430 int ret = 1;
431
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100432 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200433
Willy Tarreau02e19752020-09-23 17:17:22 +0200434 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
435 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
436 goto end;
437
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200438 if (l->state <= LI_PAUSED)
439 goto end;
440
Willy Tarreaue03204c2020-10-09 17:02:21 +0200441 if (l->rx.proto->suspend)
442 ret = l->rx.proto->suspend(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200443
Olivier Houchard859dc802019-08-08 15:47:21 +0200444 MT_LIST_DEL(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200445
Willy Tarreaua37b2442020-09-24 07:23:45 +0200446 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200447
448 if (px && !px->li_ready) {
449 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
450 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
451 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200452 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100453 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200454 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200455}
456
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200457/* This function tries to resume a temporarily disabled listener. Paused, full,
458 * limited and disabled listeners are handled, which means that this function
459 * may replace enable_listener(). The resulting state will either be LI_READY
460 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200461 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200462 * foreground mode, and are ignored. If the listener was only in the assigned
463 * state, it's totally rebound. This can happen if a pause() has completely
464 * stopped it. If the resume fails, 0 is returned and an error might be
465 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200466 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100467int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200468{
Willy Tarreau58651b42020-09-24 16:03:29 +0200469 struct proxy *px = l->bind_conf->frontend;
470 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200471 int ret = 1;
472
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100473 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200474
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200475 /* check that another thread didn't to the job in parallel (e.g. at the
476 * end of listen_accept() while we'd come from dequeue_all_listeners().
477 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200478 if (MT_LIST_ADDED(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200479 goto end;
480
William Lallemand095ba4c2017-06-01 17:38:50 +0200481 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200482 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200483 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100484
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200485 if (l->state == LI_READY)
486 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200487
Willy Tarreaue03204c2020-10-09 17:02:21 +0200488 if (l->rx.proto->resume)
489 ret = l->rx.proto->resume(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200490
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100491 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200492 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200493 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200494 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200495 }
496
Willy Tarreau4b51f422020-09-25 20:32:28 +0200497 l->rx.proto->enable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200498 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200499
500 done:
501 if (was_paused && !px->li_paused) {
502 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
503 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
504 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200505 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100506 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200507 return ret;
508}
509
Willy Tarreau87b09662015-04-03 00:22:06 +0200510/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200511 * it upon next close() using resume_listener().
512 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200513static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200514{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100515 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200516 if (l->state >= LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200517 MT_LIST_DEL(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100518 if (l->state != LI_FULL) {
Willy Tarreau4b51f422020-09-25 20:32:28 +0200519 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200520 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100521 }
Willy Tarreau62793712011-07-24 19:23:38 +0200522 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100523 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200524}
525
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200526/* Marks a ready listener as limited so that we only try to re-enable it when
527 * resources are free again. It will be queued into the specified queue.
528 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200529static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200530{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100531 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200532 if (l->state == LI_READY) {
Willy Tarreaude4db172020-07-10 08:10:29 +0200533 MT_LIST_TRY_ADDQ(list, &l->wait_queue);
Willy Tarreau4b51f422020-09-25 20:32:28 +0200534 l->rx.proto->disable(l);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200535 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200536 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100537 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200538}
539
Willy Tarreau241797a2019-12-10 14:10:52 +0100540/* Dequeues all listeners waiting for a resource the global wait queue */
541void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200542{
Willy Tarreau01abd022019-02-28 10:27:18 +0100543 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200544
Willy Tarreau241797a2019-12-10 14:10:52 +0100545 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200546 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100547 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200548 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100549 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200550 }
551}
552
Willy Tarreau241797a2019-12-10 14:10:52 +0100553/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
554void dequeue_proxy_listeners(struct proxy *px)
555{
556 struct listener *listener;
557
558 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
559 /* This cannot fail because the listeners are by definition in
560 * the LI_LIMITED state.
561 */
562 resume_listener(listener);
563 }
564}
565
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200566
567/* default function used to unbind a listener. This is for use by standard
568 * protocols working on top of accepted sockets. The receiver's rx_unbind()
569 * will automatically be used after the listener is disabled if the socket is
570 * still bound. This must be used under the listener's lock.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100571 */
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200572void default_unbind_listener(struct listener *listener)
Willy Tarreaub648d632007-10-28 22:13:50 +0100573{
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200574 if (listener->state <= LI_ASSIGNED)
575 goto out_close;
576
577 if (listener->rx.fd == -1) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200578 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200579 goto out_close;
580 }
581
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200582 if (listener->state >= LI_READY) {
583 listener->rx.proto->disable(listener);
584 if (listener->rx.flags & RX_F_BOUND)
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200585 listener_set_state(listener, LI_LISTEN);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200586 }
587
Willy Tarreau87acd4e2020-10-08 15:36:46 +0200588 out_close:
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200589 if (listener->rx.flags & RX_F_BOUND)
590 listener->rx.proto->rx_unbind(&listener->rx);
Willy Tarreau7b2febd2020-10-09 17:18:29 +0200591}
592
593/* This function closes the listening socket for the specified listener,
594 * provided that it's already in a listening state. The protocol's unbind()
595 * is called to put the listener into LI_ASSIGNED or LI_LISTEN and handle
596 * the unbinding tasks. The listener enters then the LI_ASSIGNED state if
597 * the receiver is unbound. Must be called with the lock held.
598 */
599void do_unbind_listener(struct listener *listener)
600{
601 MT_LIST_DEL(&listener->wait_queue);
602
603 if (listener->rx.proto->unbind)
604 listener->rx.proto->unbind(listener);
Willy Tarreau374e9af2020-10-09 15:47:17 +0200605
Willy Tarreauf58b8db2020-10-09 16:32:08 +0200606 /* we may have to downgrade the listener if the rx was closed */
607 if (!(listener->rx.flags & RX_F_BOUND) && listener->state > LI_ASSIGNED)
Willy Tarreau374e9af2020-10-09 15:47:17 +0200608 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100609}
610
Olivier Houchard1fc05162017-04-06 01:05:05 +0200611/* This function closes the listening socket for the specified listener,
612 * provided that it's already in a listening state. The listener enters the
Willy Tarreau75c98d12020-10-09 15:55:23 +0200613 * LI_ASSIGNED state, except if the FD is not closed, in which case it may
614 * remain in LI_LISTEN. This function is intended to be used as a generic
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100615 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200616 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100617void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200618{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100619 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau75c98d12020-10-09 15:55:23 +0200620 do_unbind_listener(listener);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100621 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200622}
623
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200624/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
625 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200626 * allocation). The address family is taken from ss->ss_family, and the protocol
627 * passed in <proto> must be usable on this family. The number of jobs and
628 * listeners is automatically increased by the number of listeners created. It
629 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200630 */
631int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200632 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200633{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200634 struct listener *l;
635 int port;
636
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200637 for (port = portl; port <= porth; port++) {
638 l = calloc(1, sizeof(*l));
639 if (!l) {
640 memprintf(err, "out of memory");
641 return 0;
642 }
643 l->obj_type = OBJ_TYPE_LISTENER;
644 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
645 LIST_ADDQ(&bc->listeners, &l->by_bind);
646 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200647 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200648 l->rx.owner = l;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200649 l->rx.fd = fd;
Willy Tarreau37159062020-08-27 07:48:42 +0200650 memcpy(&l->rx.addr, ss, sizeof(*ss));
Olivier Houchard859dc802019-08-08 15:47:21 +0200651 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200652 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200653
654 proto->add(l, port);
655
Willy Tarreau909c23b2020-09-15 13:50:58 +0200656 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200657 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100658
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100659 HA_SPIN_INIT(&l->lock);
Olivier Houchard64213e92019-03-08 18:52:57 +0100660 _HA_ATOMIC_ADD(&jobs, 1);
661 _HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200662 }
663 return 1;
664}
665
Willy Tarreau1a64d162007-10-28 22:26:05 +0100666/* Delete a listener from its protocol's list of listeners. The listener's
667 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200668 * number of listeners is updated, as well as the global number of listeners
669 * and jobs. Note that the listener must have previously been unbound. This
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200670 * is a low-level function expected to be called with the proto_lock and the
671 * listener's lock held.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100672 */
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200673void __delete_listener(struct listener *listener)
Willy Tarreau1a64d162007-10-28 22:26:05 +0100674{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100675 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200676 listener_set_state(listener, LI_INIT);
Willy Tarreaub7436612020-08-28 19:51:44 +0200677 LIST_DEL(&listener->rx.proto_list);
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200678 listener->rx.proto->nb_receivers--;
Olivier Houchard64213e92019-03-08 18:52:57 +0100679 _HA_ATOMIC_SUB(&jobs, 1);
680 _HA_ATOMIC_SUB(&listeners, 1);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100681 }
Willy Tarreaub4c083f2020-10-07 15:36:16 +0200682}
683
684/* Delete a listener from its protocol's list of listeners (please check
685 * __delete_listener() above). The proto_lock and the listener's lock will
686 * be grabbed in this order.
687 */
688void delete_listener(struct listener *listener)
689{
690 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
691 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
692 __delete_listener(listener);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100693 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200694 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100695}
696
Willy Tarreaue2711c72019-02-27 15:39:41 +0100697/* Returns a suitable value for a listener's backlog. It uses the listener's,
698 * otherwise the frontend's backlog, otherwise the listener's maxconn,
699 * otherwise the frontend's maxconn, otherwise 1024.
700 */
701int listener_backlog(const struct listener *l)
702{
703 if (l->backlog)
704 return l->backlog;
705
706 if (l->bind_conf->frontend->backlog)
707 return l->bind_conf->frontend->backlog;
708
709 if (l->maxconn)
710 return l->maxconn;
711
712 if (l->bind_conf->frontend->maxconn)
713 return l->bind_conf->frontend->maxconn;
714
715 return 1024;
716}
717
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200718/* This function is called on a read event from a listening socket, corresponding
719 * to an accept. It tries to accept as many connections as possible, and for each
720 * calls the listener's accept handler (generally the frontend's accept handler).
721 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200722void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200723{
724 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100725 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200726 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100727 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100728 int next_feconn = 0;
729 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200730 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200731 int cfd;
732 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100733#ifdef USE_ACCEPT4
734 static int accept4_broken;
735#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200736
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100737 if (!l)
738 return;
739 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200740
741 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
742 * illimited, but it is probably enough.
743 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100744 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200745
Willy Tarreau93e7c002013-10-07 18:51:07 +0200746 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
747 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200748
749 if (unlikely(!max)) {
750 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200751 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100752 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200753 }
754
755 if (max_accept > max)
756 max_accept = max;
757 }
758
759 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200760 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
761
762 if (unlikely(!max)) {
763 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200764 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100765 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200766 }
767
768 if (max_accept > max)
769 max_accept = max;
770 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200771#ifdef USE_OPENSSL
772 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
773 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200774
Willy Tarreaue43d5322013-10-07 20:01:52 +0200775 if (unlikely(!max)) {
776 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200777 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100778 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200779 }
780
781 if (max_accept > max)
782 max_accept = max;
783 }
784#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200785 if (p && p->fe_sps_lim) {
786 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
787
788 if (unlikely(!max)) {
789 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100790 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
791 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200792 }
793
794 if (max_accept > max)
795 max_accept = max;
796 }
797
798 /* Note: if we fail to allocate a connection because of configured
799 * limits, we'll schedule a new attempt worst 1 second later in the
800 * worst case. If we fail due to system limits or temporary resource
801 * shortage, we try again 100ms later in the worst case.
802 */
Christopher Faulet102854c2019-04-30 12:17:13 +0200803 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200804 struct sockaddr_storage addr;
805 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200806 unsigned int count;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200807 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200808
Willy Tarreau82c97892019-02-27 19:32:32 +0100809 /* pre-increase the number of connections without going too far.
810 * We process the listener, then the proxy, then the process.
811 * We know which ones to unroll based on the next_xxx value.
812 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100813 do {
814 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100815 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100816 /* the listener was marked full or another
817 * thread is going to do it.
818 */
819 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100820 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100821 goto end;
822 }
823 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000824 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100825
Willy Tarreau82c97892019-02-27 19:32:32 +0100826 if (p) {
827 do {
828 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100829 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100830 /* the frontend was marked full or another
831 * thread is going to do it.
832 */
833 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100834 expire = TICK_ETERNITY;
835 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100836 }
837 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100838 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200839 }
840
Willy Tarreau82c97892019-02-27 19:32:32 +0100841 if (!(l->options & LI_O_UNLIMITED)) {
842 do {
843 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100844 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100845 /* the process was marked full or another
846 * thread is going to do it.
847 */
848 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100849 expire = tick_add(now_ms, 1000); /* try again in 1 second */
850 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100851 }
852 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000853 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200854 }
855
William Lallemand2fe7dd02018-09-11 16:51:29 +0200856 /* with sockpair@ we don't want to do an accept */
Willy Tarreau37159062020-08-27 07:48:42 +0200857 if (unlikely(l->rx.addr.ss_family == AF_CUST_SOCKPAIR)) {
William Lallemand2fe7dd02018-09-11 16:51:29 +0200858 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100859 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100860 /* just like with UNIX sockets, only the family is filled */
861 addr.ss_family = AF_UNIX;
862 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200863 } else
864
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200865#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100866 /* only call accept4() if it's known to be safe, otherwise
867 * fallback to the legacy accept() + fcntl().
868 */
869 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100870 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100871 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
872 (accept4_broken = 1))))
873#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200874 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100875 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100876
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200877 if (unlikely(cfd == -1)) {
878 switch (errno) {
879 case EAGAIN:
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100880 if (fdtab[fd].ev & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreaubb660302014-05-07 19:47:02 +0200881 /* the listening socket might have been disabled in a shared
882 * process and we're a collateral victim. We'll just pause for
883 * a while in case it comes back. In the mean time, we need to
884 * clear this sticky flag.
885 */
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100886 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreaubb660302014-05-07 19:47:02 +0200887 goto transient_error;
888 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200889 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200890 case EINVAL:
891 /* might be trying to accept on a shut fd (eg: soft stop) */
892 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100893 case EINTR:
894 case ECONNABORTED:
Olivier Houchard64213e92019-03-08 18:52:57 +0100895 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100896 if (p)
Olivier Houchard64213e92019-03-08 18:52:57 +0100897 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100898 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +0100899 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100900 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200901 case ENFILE:
902 if (p)
903 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100904 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
905 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200906 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200907 case EMFILE:
908 if (p)
909 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100910 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
911 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200912 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200913 case ENOBUFS:
914 case ENOMEM:
915 if (p)
916 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100917 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
918 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200919 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200920 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100921 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau92079932019-12-10 09:30:05 +0100922 max_accept = 0;
923 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200924 }
925 }
926
William Lallemandd9138002018-11-27 12:02:39 +0100927 /* we don't want to leak the FD upon reload if it's in the master */
928 if (unlikely(master == 1))
929 fcntl(cfd, F_SETFD, FD_CLOEXEC);
930
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100931 /* The connection was accepted, it must be counted as such */
932 if (l->counters)
933 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
934
Willy Tarreau82c97892019-02-27 19:32:32 +0100935 if (p)
936 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
937
938 proxy_inc_fe_conn_ctr(l, p);
939
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100940 if (!(l->options & LI_O_UNLIMITED)) {
941 count = update_freq_ctr(&global.conn_per_sec, 1);
942 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100943 }
944
Willy Tarreau64a9c052019-04-12 15:27:17 +0200945 _HA_ATOMIC_ADD(&activity[tid].accepted, 1);
946
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200947 if (unlikely(cfd >= global.maxsock)) {
948 send_log(p, LOG_EMERG,
949 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
950 p->id);
951 close(cfd);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100952 expire = tick_add(now_ms, 1000); /* try again in 1 second */
953 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200954 }
955
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100956 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100957 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
958 * allows the error path not to rollback on nbconn. It's more
959 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100960 */
961 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100962 next_feconn = 0;
963 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200964
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100965#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200966 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100967 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100968 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100969 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100970
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100971 /* The principle is that we have two running indexes,
972 * each visiting in turn all threads bound to this
973 * listener. The connection will be assigned to the one
974 * with the least connections, and the other one will
975 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100976 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100977 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100978 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100979
980 /* keep a copy for the final update. thr_idx is composite
981 * and made of (t2<<16) + t1.
982 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100983 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100984 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100985 unsigned long m1, m2;
986 int q1, q2;
987
988 t2 = t1 = t0;
989 t2 >>= 16;
990 t1 &= 0xFFFF;
991
992 /* t1 walks low to high bits ;
993 * t2 walks high to low.
994 */
995 m1 = mask >> t1;
996 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
997
Willy Tarreau85d04242019-04-16 18:09:13 +0200998 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100999 m1 &= ~1UL;
1000 if (!m1) {
1001 m1 = mask;
1002 t1 = 0;
1003 }
1004 t1 += my_ffsl(m1) - 1;
1005 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001006
Willy Tarreau85d04242019-04-16 18:09:13 +02001007 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
1008 /* highest bit not set */
1009 if (!m2)
1010 m2 = mask;
1011
1012 t2 = my_flsl(m2) - 1;
1013 }
1014
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001015 /* now we have two distinct thread IDs belonging to the mask */
1016 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
1017 if (q1 >= ACCEPT_QUEUE_SIZE)
1018 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001019
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001020 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
1021 if (q2 >= ACCEPT_QUEUE_SIZE)
1022 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001023
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001024 /* we have 3 possibilities now :
1025 * q1 < q2 : t1 is less loaded than t2, so we pick it
1026 * and update t2 (since t1 might still be
1027 * lower than another thread)
1028 * q1 > q2 : t2 is less loaded than t1, so we pick it
1029 * and update t1 (since t2 might still be
1030 * lower than another thread)
1031 * q1 = q2 : both are equally loaded, thus we pick t1
1032 * and update t1 as it will become more loaded
1033 * than t2.
1034 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001035
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001036 q1 += l->thr_conn[t1];
1037 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001038
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001039 if (q1 - q2 < 0) {
1040 t = t1;
1041 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1042 }
1043 else if (q1 - q2 > 0) {
1044 t = t2;
1045 t1++;
1046 if (t1 >= LONGBITS)
1047 t1 = 0;
1048 }
1049 else {
1050 t = t1;
1051 t1++;
1052 if (t1 >= LONGBITS)
1053 t1 = 0;
1054 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001055
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001056 /* new value for thr_idx */
1057 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001058 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001059
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001060 /* We successfully selected the best thread "t" for this
1061 * connection. We use deferred accepts even if it's the
1062 * local thread because tests show that it's the best
1063 * performing model, likely due to better cache locality
1064 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001065 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001066 ring = &accept_queue_rings[t];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001067 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Olivier Houchard64213e92019-03-08 18:52:57 +01001068 _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001069 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001070 continue;
1071 }
1072 /* If the ring is full we do a synchronous accept on
1073 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001074 */
Olivier Houchard64213e92019-03-08 18:52:57 +01001075 _HA_ATOMIC_ADD(&activity[t].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001076 }
1077#endif // USE_THREAD
1078
Olivier Houchard64213e92019-03-08 18:52:57 +01001079 _HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001080 ret = l->accept(l, cfd, &addr);
1081 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001082 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001083 * we just have to ignore it (ret == 0) or it's a critical
1084 * error due to a resource shortage, and we must stop the
1085 * listener (ret < 0).
1086 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001087 if (ret == 0) /* successful termination */
1088 continue;
1089
Willy Tarreaubb660302014-05-07 19:47:02 +02001090 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001091 }
1092
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001093 /* increase the per-process number of cumulated sessions, this
1094 * may only be done once l->accept() has accepted the connection.
1095 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001096 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001097 count = update_freq_ctr(&global.sess_per_sec, 1);
1098 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001099 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001100#ifdef USE_OPENSSL
1101 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001102 count = update_freq_ctr(&global.ssl_per_sec, 1);
1103 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001104 }
1105#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001106
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001107 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001108 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001109
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001110 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001111 if (next_conn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001112 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001113
Willy Tarreau82c97892019-02-27 19:32:32 +01001114 if (p && next_feconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001115 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001116
1117 if (next_actconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001118 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001119
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001120 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreaucdcba112019-12-11 15:06:30 +01001121 (l->state == LI_LIMITED &&
1122 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1123 (!tick_isset(global_listener_queue_task->expire) ||
1124 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001125 /* at least one thread has to this when quitting */
1126 resume_listener(l);
1127
1128 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001129 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001130
Olivier Houchard859dc802019-08-08 15:47:21 +02001131 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001132 (!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 +01001133 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001134 }
Willy Tarreau4c044e22019-12-05 07:40:32 +01001135
Willy Tarreau92079932019-12-10 09:30:05 +01001136 /* Now it's getting tricky. The listener was supposed to be in LI_READY
1137 * state but in the mean time we might have changed it to LI_FULL or
1138 * LI_LIMITED, and another thread might also have turned it to
1139 * LI_PAUSED, LI_LISTEN or even LI_INI when stopping a proxy. We must
1140 * be certain to keep the FD enabled when in the READY state but we
1141 * must also stop it for other states that we might have switched to
1142 * while others re-enabled polling.
1143 */
1144 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
1145 if (l->state == LI_READY) {
1146 if (max_accept > 0)
1147 fd_cant_recv(fd);
1148 else
1149 fd_done_recv(fd);
1150 } else if (l->state > LI_ASSIGNED) {
Willy Tarreau38ba6472020-08-27 08:16:52 +02001151 fd_stop_recv(l->rx.fd);
Willy Tarreau92079932019-12-10 09:30:05 +01001152 }
1153 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001154 return;
1155
1156 transient_error:
1157 /* pause the listener for up to 100 ms */
1158 expire = tick_add(now_ms, 100);
1159
1160 limit_global:
1161 /* (re-)queue the listener to the global queue and set it to expire no
1162 * later than <expire> ahead. The listener turns to LI_LIMITED.
1163 */
1164 limit_listener(l, &global_listener_queue);
1165 task_schedule(global_listener_queue_task, expire);
1166 goto end;
1167
1168 limit_proxy:
1169 /* (re-)queue the listener to the proxy's queue and set it to expire no
1170 * later than <expire> ahead. The listener turns to LI_LIMITED.
1171 */
1172 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001173 if (p->task && tick_isset(expire))
1174 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001175 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001176}
1177
Willy Tarreau05f50472017-09-15 09:19:58 +02001178/* Notify the listener that a connection initiated from it was released. This
1179 * is used to keep the connection count consistent and to possibly re-open
1180 * listening when it was limited.
1181 */
1182void listener_release(struct listener *l)
1183{
1184 struct proxy *fe = l->bind_conf->frontend;
1185
1186 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +01001187 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001188 if (fe)
Olivier Houchard64213e92019-03-08 18:52:57 +01001189 _HA_ATOMIC_SUB(&fe->feconn, 1);
1190 _HA_ATOMIC_SUB(&l->nbconn, 1);
1191 _HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001192
1193 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001194 resume_listener(l);
1195
1196 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001197 dequeue_all_listeners();
Willy Tarreau05f50472017-09-15 09:19:58 +02001198
Olivier Houchard859dc802019-08-08 15:47:21 +02001199 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001200 (!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 +01001201 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001202}
1203
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001204/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1205static int listener_queue_init()
1206{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001207 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1208 if (!global_listener_queue_task) {
1209 ha_alert("Out of memory when initializing global listener queue\n");
1210 return ERR_FATAL|ERR_ABORT;
1211 }
1212 /* very simple initialization, users will queue the task if needed */
1213 global_listener_queue_task->context = NULL; /* not even a context! */
1214 global_listener_queue_task->process = manage_global_listener_queue;
1215
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001216 return 0;
1217}
1218
1219static void listener_queue_deinit()
1220{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001221 task_destroy(global_listener_queue_task);
1222 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001223}
1224
1225REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1226REGISTER_POST_DEINIT(listener_queue_deinit);
1227
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001228
1229/* This is the global management task for listeners. It enables listeners waiting
1230 * for global resources when there are enough free resource, or at least once in
1231 * a while. It is designed to be called as a task.
1232 */
1233static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
1234{
1235 /* If there are still too many concurrent connections, let's wait for
1236 * some of them to go away. We don't need to re-arm the timer because
1237 * each of them will scan the queue anyway.
1238 */
1239 if (unlikely(actconn >= global.maxconn))
1240 goto out;
1241
1242 /* We should periodically try to enable listeners waiting for a global
1243 * resource here, because it is possible, though very unlikely, that
1244 * they have been blocked by a temporary lack of global resource such
1245 * as a file descriptor or memory and that the temporary condition has
1246 * disappeared.
1247 */
1248 dequeue_all_listeners();
1249
1250 out:
1251 t->expire = TICK_ETERNITY;
1252 task_queue(t);
1253 return t;
1254}
1255
Willy Tarreau26982662012-09-12 23:17:10 +02001256/*
1257 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1258 * parsing sessions.
1259 */
1260void bind_register_keywords(struct bind_kw_list *kwl)
1261{
1262 LIST_ADDQ(&bind_keywords.list, &kwl->list);
1263}
1264
1265/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1266 * keyword is found with a NULL ->parse() function, then an attempt is made to
1267 * find one with a valid ->parse() function. This way it is possible to declare
1268 * platform-dependant, known keywords as NULL, then only declare them as valid
1269 * if some options are met. Note that if the requested keyword contains an
1270 * opening parenthesis, everything from this point is ignored.
1271 */
1272struct bind_kw *bind_find_kw(const char *kw)
1273{
1274 int index;
1275 const char *kwend;
1276 struct bind_kw_list *kwl;
1277 struct bind_kw *ret = NULL;
1278
1279 kwend = strchr(kw, '(');
1280 if (!kwend)
1281 kwend = kw + strlen(kw);
1282
1283 list_for_each_entry(kwl, &bind_keywords.list, list) {
1284 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1285 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1286 kwl->kw[index].kw[kwend-kw] == 0) {
1287 if (kwl->kw[index].parse)
1288 return &kwl->kw[index]; /* found it !*/
1289 else
1290 ret = &kwl->kw[index]; /* may be OK */
1291 }
1292 }
1293 }
1294 return ret;
1295}
1296
Willy Tarreau8638f482012-09-18 18:01:17 +02001297/* Dumps all registered "bind" keywords to the <out> string pointer. The
1298 * unsupported keywords are only dumped if their supported form was not
1299 * found.
1300 */
1301void bind_dump_kws(char **out)
1302{
1303 struct bind_kw_list *kwl;
1304 int index;
1305
Christopher Faulet784063e2020-05-18 12:14:18 +02001306 if (!out)
1307 return;
1308
Willy Tarreau8638f482012-09-18 18:01:17 +02001309 *out = NULL;
1310 list_for_each_entry(kwl, &bind_keywords.list, list) {
1311 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1312 if (kwl->kw[index].parse ||
1313 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001314 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1315 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001316 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001317 kwl->kw[index].skip ? " <arg>" : "",
1318 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001319 }
1320 }
1321 }
1322}
1323
Willy Tarreau645513a2010-05-24 20:55:15 +02001324/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001325/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001326/************************************************************************/
1327
Willy Tarreaua5e37562011-12-16 17:06:15 +01001328/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001329static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001330smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001331{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001332 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001333 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001334 return 1;
1335}
1336
Willy Tarreaua5e37562011-12-16 17:06:15 +01001337/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001338static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001339smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001340{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001341 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001342 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001343 return 1;
1344}
Jerome Magnineb421b22020-03-27 22:08:40 +01001345static int
1346smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1347{
1348 smp->data.u.str.area = smp->sess->listener->name;
1349 if (!smp->data.u.str.area)
1350 return 0;
1351
1352 smp->data.type = SMP_T_STR;
1353 smp->flags = SMP_F_CONST;
1354 smp->data.u.str.data = strlen(smp->data.u.str.area);
1355 return 1;
1356}
Willy Tarreau645513a2010-05-24 20:55:15 +02001357
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001358/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001359static 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 +02001360{
1361 struct listener *l;
1362
Willy Tarreau4348fad2012-09-20 16:48:07 +02001363 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001364 l->options |= LI_O_ACC_PROXY;
1365
1366 return 0;
1367}
1368
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001369/* parse the "accept-netscaler-cip" bind keyword */
1370static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1371{
1372 struct listener *l;
1373 uint32_t val;
1374
1375 if (!*args[cur_arg + 1]) {
1376 memprintf(err, "'%s' : missing value", args[cur_arg]);
1377 return ERR_ALERT | ERR_FATAL;
1378 }
1379
1380 val = atol(args[cur_arg + 1]);
1381 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001382 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001383 return ERR_ALERT | ERR_FATAL;
1384 }
1385
1386 list_for_each_entry(l, &conf->listeners, by_bind) {
1387 l->options |= LI_O_ACC_CIP;
1388 conf->ns_cip_magic = val;
1389 }
1390
1391 return 0;
1392}
1393
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001394/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001395static 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 +02001396{
1397 struct listener *l;
1398 int val;
1399
1400 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001401 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001402 return ERR_ALERT | ERR_FATAL;
1403 }
1404
1405 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001406 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001407 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001408 return ERR_ALERT | ERR_FATAL;
1409 }
1410
Willy Tarreau4348fad2012-09-20 16:48:07 +02001411 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001412 l->backlog = val;
1413
1414 return 0;
1415}
1416
1417/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001418static 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 +02001419{
1420 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001421 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001422 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001423
Willy Tarreau4348fad2012-09-20 16:48:07 +02001424 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001425 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001426 return ERR_ALERT | ERR_FATAL;
1427 }
1428
1429 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001430 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001431 return ERR_ALERT | ERR_FATAL;
1432 }
1433
Willy Tarreau4348fad2012-09-20 16:48:07 +02001434 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001435 new->luid = strtol(args[cur_arg + 1], &error, 10);
1436 if (*error != '\0') {
1437 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1438 return ERR_ALERT | ERR_FATAL;
1439 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001440 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001441
Willy Tarreau4348fad2012-09-20 16:48:07 +02001442 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001443 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001444 return ERR_ALERT | ERR_FATAL;
1445 }
1446
Willy Tarreau4348fad2012-09-20 16:48:07 +02001447 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001448 if (node) {
1449 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001450 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1451 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1452 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001453 return ERR_ALERT | ERR_FATAL;
1454 }
1455
Willy Tarreau4348fad2012-09-20 16:48:07 +02001456 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001457 return 0;
1458}
1459
1460/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001461static 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 +02001462{
1463 struct listener *l;
1464 int val;
1465
1466 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001467 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001468 return ERR_ALERT | ERR_FATAL;
1469 }
1470
1471 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001472 if (val < 0) {
1473 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001474 return ERR_ALERT | ERR_FATAL;
1475 }
1476
Willy Tarreau4348fad2012-09-20 16:48:07 +02001477 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001478 l->maxconn = val;
1479
1480 return 0;
1481}
1482
1483/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001484static 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 +02001485{
1486 struct listener *l;
1487
1488 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001489 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001490 return ERR_ALERT | ERR_FATAL;
1491 }
1492
Willy Tarreau4348fad2012-09-20 16:48:07 +02001493 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001494 l->name = strdup(args[cur_arg + 1]);
1495
1496 return 0;
1497}
1498
1499/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001500static 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 +02001501{
1502 struct listener *l;
1503 int val;
1504
1505 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001506 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001507 return ERR_ALERT | ERR_FATAL;
1508 }
1509
1510 val = atol(args[cur_arg + 1]);
1511 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001512 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001513 return ERR_ALERT | ERR_FATAL;
1514 }
1515
Willy Tarreau4348fad2012-09-20 16:48:07 +02001516 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001517 l->nice = val;
1518
1519 return 0;
1520}
1521
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001522/* parse the "process" bind keyword */
1523static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1524{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001525 char *slash;
1526 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001527
Christopher Fauletc644fa92017-11-23 22:44:11 +01001528 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1529 *slash = 0;
1530
Willy Tarreauff9c9142019-02-07 10:39:36 +01001531 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001532 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001533 return ERR_ALERT | ERR_FATAL;
1534 }
1535
Christopher Fauletc644fa92017-11-23 22:44:11 +01001536 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001537 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001538 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1539 return ERR_ALERT | ERR_FATAL;
1540 }
1541 *slash = '/';
1542 }
1543
Willy Tarreaue26993c2020-09-03 07:18:55 +02001544 conf->settings.bind_proc |= proc;
1545 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001546 return 0;
1547}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001548
Christopher Fauleta717b992018-04-10 14:43:00 +02001549/* parse the "proto" bind keyword */
1550static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1551{
1552 struct ist proto;
1553
1554 if (!*args[cur_arg + 1]) {
1555 memprintf(err, "'%s' : missing value", args[cur_arg]);
1556 return ERR_ALERT | ERR_FATAL;
1557 }
1558
1559 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1560 conf->mux_proto = get_mux_proto(proto);
1561 if (!conf->mux_proto) {
1562 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1563 return ERR_ALERT | ERR_FATAL;
1564 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001565 return 0;
1566}
1567
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001568/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1569static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1570 struct proxy *defpx, const char *file, int line,
1571 char **err)
1572{
1573 if (too_many_args(1, args, err, NULL))
1574 return -1;
1575
1576 if (strcmp(args[1], "on") == 0)
1577 global.tune.options |= GTUNE_LISTENER_MQ;
1578 else if (strcmp(args[1], "off") == 0)
1579 global.tune.options &= ~GTUNE_LISTENER_MQ;
1580 else {
1581 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1582 return -1;
1583 }
1584 return 0;
1585}
1586
Willy Tarreau61612d42012-04-19 18:42:05 +02001587/* Note: must not be declared <const> as its list will be overwritten.
1588 * Please take care of keeping this list alphabetically sorted.
1589 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001590static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001591 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1592 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001593 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001594 { /* END */ },
1595}};
1596
Willy Tarreau0108d902018-11-25 19:14:37 +01001597INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1598
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001599/* Note: must not be declared <const> as its list will be overwritten.
1600 * Please take care of keeping this list alphabetically sorted.
1601 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001602static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001603 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001604}};
1605
Willy Tarreau0108d902018-11-25 19:14:37 +01001606INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1607
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001608/* Note: must not be declared <const> as its list will be overwritten.
1609 * Please take care of keeping this list alphabetically sorted, doing so helps
1610 * all code contributors.
1611 * Optional keywords are also declared with a NULL ->parse() function so that
1612 * the config parser can report an appropriate error when a known keyword was
1613 * not enabled.
1614 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001615static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001616 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001617 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1618 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1619 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1620 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1621 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1622 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001623 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001624 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001625 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001626}};
1627
Willy Tarreau0108d902018-11-25 19:14:37 +01001628INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1629
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001630/* config keyword parsers */
1631static struct cfg_kw_list cfg_kws = {ILH, {
1632 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1633 { 0, NULL, NULL }
1634}};
1635
1636INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1637
Willy Tarreau645513a2010-05-24 20:55:15 +02001638/*
1639 * Local variables:
1640 * c-indent-level: 8
1641 * c-basic-offset: 8
1642 * End:
1643 */