blob: c4ee3c31907999b6f1a21f6775302f9249a7c08b [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:
258 _HA_ATOMIC_ADD(&px->li_paused, 1);
259 break;
260 case LI_LISTEN:
261 _HA_ATOMIC_ADD(&px->li_bound, 1);
262 break;
263 case LI_READY:
264 case LI_FULL:
265 case LI_LIMITED:
266 _HA_ATOMIC_ADD(&px->li_ready, 1);
267 break;
268 }
269 }
Willy Tarreaua37b2442020-09-24 07:23:45 +0200270 l->state = st;
271}
272
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100273/* This function adds the specified listener's file descriptor to the polling
274 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500275 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200276 * also support binding only the relevant processes to their respective
277 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100278 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200279static void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100280{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100281 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100282 if (listener->state == LI_LISTEN) {
William Lallemand095ba4c2017-06-01 17:38:50 +0200283 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200284 !(proc_mask(listener->rx.settings->bind_proc) & pid_bit)) {
Willy Tarreauae302532014-05-07 19:22:24 +0200285 /* we don't want to enable this listener and don't
286 * want any fd event to reach it.
287 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200288 if (!(global.tune.options & GTUNE_SOCKET_TRANSFER))
Christopher Faulet510c0d62018-03-16 10:04:47 +0100289 do_unbind_listener(listener, 1);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200290 else {
Christopher Faulet510c0d62018-03-16 10:04:47 +0100291 do_unbind_listener(listener, 0);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200292 listener_set_state(listener, LI_LISTEN);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200293 }
Willy Tarreauae302532014-05-07 19:22:24 +0200294 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100295 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau38ba6472020-08-27 08:16:52 +0200296 fd_want_recv(listener->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200297 listener_set_state(listener, LI_READY);
Willy Tarreauae302532014-05-07 19:22:24 +0200298 }
299 else {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200300 listener_set_state(listener, LI_FULL);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100301 }
302 }
William Lallemande22f11f2018-09-11 10:06:27 +0200303 /* if this listener is supposed to be only in the master, close it in the workers */
304 if ((global.mode & MODE_MWORKER) &&
305 (listener->options & LI_O_MWORKER) &&
306 master == 0) {
307 do_unbind_listener(listener, 1);
308 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100309 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100310}
311
312/* This function removes the specified listener's file descriptor from the
313 * polling lists if it is in the LI_READY or in the LI_FULL state. The listener
314 * enters LI_LISTEN.
315 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200316static void disable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100317{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100318 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100319 if (listener->state < LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200320 goto end;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100321 if (listener->state == LI_READY)
Willy Tarreau38ba6472020-08-27 08:16:52 +0200322 fd_stop_recv(listener->rx.fd);
Olivier Houchard859dc802019-08-08 15:47:21 +0200323 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200324 listener_set_state(listener, LI_LISTEN);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200325 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100326 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100327}
328
Willy Tarreaube58c382011-07-24 18:28:10 +0200329/* This function tries to temporarily disable a listener, depending on the OS
330 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
331 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
332 * closes upon SHUT_WR and refuses to rebind. So a common validation path
333 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
334 * is disabled. It normally returns non-zero, unless an error is reported.
335 */
336int pause_listener(struct listener *l)
337{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200338 int ret = 1;
339
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100340 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200341
Willy Tarreau02e19752020-09-23 17:17:22 +0200342 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
343 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
344 goto end;
345
Willy Tarreaub7436612020-08-28 19:51:44 +0200346 if (l->rx.proto->pause) {
Willy Tarreau092d8652014-07-07 20:22:12 +0200347 /* Returns < 0 in case of failure, 0 if the listener
348 * was totally stopped, or > 0 if correctly paused.
349 */
Willy Tarreaub7436612020-08-28 19:51:44 +0200350 int ret = l->rx.proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200351
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200352 if (ret < 0) {
353 ret = 0;
354 goto end;
355 }
Willy Tarreau092d8652014-07-07 20:22:12 +0200356 else if (ret == 0)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200357 goto end;
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200358 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200359
Olivier Houchard859dc802019-08-08 15:47:21 +0200360 MT_LIST_DEL(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200361
Willy Tarreau38ba6472020-08-27 08:16:52 +0200362 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200363 listener_set_state(l, LI_PAUSED);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200364 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100365 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200366 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200367}
368
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200369/* This function tries to resume a temporarily disabled listener. Paused, full,
370 * limited and disabled listeners are handled, which means that this function
371 * may replace enable_listener(). The resulting state will either be LI_READY
372 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200373 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200374 * foreground mode, and are ignored. If the listener was only in the assigned
375 * state, it's totally rebound. This can happen if a pause() has completely
376 * stopped it. If the resume fails, 0 is returned and an error might be
377 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200378 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100379int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200380{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200381 int ret = 1;
382
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100383 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200384
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200385 /* check that another thread didn't to the job in parallel (e.g. at the
386 * end of listen_accept() while we'd come from dequeue_all_listeners().
387 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200388 if (MT_LIST_ADDED(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200389 goto end;
390
William Lallemand095ba4c2017-06-01 17:38:50 +0200391 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200392 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200393 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100394
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200395 if (l->state == LI_ASSIGNED) {
396 char msg[100];
397 int err;
398
Willy Tarreaub3580b12020-09-01 10:26:22 +0200399 err = l->rx.proto->listen(l, msg, sizeof(msg));
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200400 if (err & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100401 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200402 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100403 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200404
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200405 if (err & (ERR_FATAL | ERR_ABORT)) {
406 ret = 0;
407 goto end;
408 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200409 }
410
Willy Tarreauc6dac6c2020-09-23 17:34:22 +0200411 if (l->state < LI_PAUSED) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200412 ret = 0;
413 goto end;
414 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200415
Willy Tarreaub7436612020-08-28 19:51:44 +0200416 if (l->rx.proto->sock_prot == IPPROTO_TCP &&
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200417 l->state == LI_PAUSED &&
Willy Tarreau38ba6472020-08-27 08:16:52 +0200418 listen(l->rx.fd, listener_backlog(l)) != 0) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200419 ret = 0;
420 goto end;
421 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200422
423 if (l->state == LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200424 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200425
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100426 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200427 listener_set_state(l, LI_FULL);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200428 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200429 }
430
Willy Tarreau38ba6472020-08-27 08:16:52 +0200431 fd_want_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200432 listener_set_state(l, LI_READY);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200433 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100434 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200435 return ret;
436}
437
Willy Tarreau87b09662015-04-03 00:22:06 +0200438/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200439 * it upon next close() using resume_listener().
440 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200441static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200442{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100443 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200444 if (l->state >= LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200445 MT_LIST_DEL(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100446 if (l->state != LI_FULL) {
Willy Tarreau38ba6472020-08-27 08:16:52 +0200447 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200448 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100449 }
Willy Tarreau62793712011-07-24 19:23:38 +0200450 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100451 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200452}
453
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200454/* Marks a ready listener as limited so that we only try to re-enable it when
455 * resources are free again. It will be queued into the specified queue.
456 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200457static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200458{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100459 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200460 if (l->state == LI_READY) {
Willy Tarreaude4db172020-07-10 08:10:29 +0200461 MT_LIST_TRY_ADDQ(list, &l->wait_queue);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200462 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200463 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200464 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100465 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200466}
467
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100468/* This function adds all of the protocol's listener's file descriptors to the
469 * polling lists when they are in the LI_LISTEN state. It is intended to be
470 * used as a protocol's generic enable_all() primitive, for use after the
471 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
472 * their number of connections. It always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200473 *
474 * Must be called with proto_lock held.
475 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100476 */
477int enable_all_listeners(struct protocol *proto)
478{
479 struct listener *listener;
480
Willy Tarreaub7436612020-08-28 19:51:44 +0200481 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100482 enable_listener(listener);
483 return ERR_NONE;
484}
485
486/* This function removes all of the protocol's listener's file descriptors from
487 * the polling lists when they are in the LI_READY or LI_FULL states. It is
488 * intended to be used as a protocol's generic disable_all() primitive. It puts
489 * the listeners into LI_LISTEN, and always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200490 *
491 * Must be called with proto_lock held.
492 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100493 */
494int disable_all_listeners(struct protocol *proto)
495{
496 struct listener *listener;
497
Willy Tarreaub7436612020-08-28 19:51:44 +0200498 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100499 disable_listener(listener);
500 return ERR_NONE;
501}
502
Willy Tarreau241797a2019-12-10 14:10:52 +0100503/* Dequeues all listeners waiting for a resource the global wait queue */
504void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200505{
Willy Tarreau01abd022019-02-28 10:27:18 +0100506 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200507
Willy Tarreau241797a2019-12-10 14:10:52 +0100508 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200509 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100510 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200511 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100512 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200513 }
514}
515
Willy Tarreau241797a2019-12-10 14:10:52 +0100516/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
517void dequeue_proxy_listeners(struct proxy *px)
518{
519 struct listener *listener;
520
521 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
522 /* This cannot fail because the listeners are by definition in
523 * the LI_LIMITED state.
524 */
525 resume_listener(listener);
526 }
527}
528
Christopher Faulet510c0d62018-03-16 10:04:47 +0100529/* Must be called with the lock held. Depending on <do_close> value, it does
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200530 * what unbind_listener or unbind_listener_no_close should do. It can also
531 * close a zombie listener's FD when called in early states.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100532 */
533void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100534{
Olivier Houcharda5188562019-03-08 15:35:42 +0100535 if (listener->state == LI_READY && fd_updt)
Willy Tarreau38ba6472020-08-27 08:16:52 +0200536 fd_stop_recv(listener->rx.fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100537
Olivier Houchard859dc802019-08-08 15:47:21 +0200538 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200539
Willy Tarreaube58c382011-07-24 18:28:10 +0200540 if (listener->state >= LI_PAUSED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200541 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200542 fd_stop_both(listener->rx.fd);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200543 }
544
545 if (do_close && listener->rx.fd != -1) {
546 fd_delete(listener->rx.fd);
547 listener->rx.flags &= ~RX_F_BOUND;
548 listener->rx.fd = -1;
Willy Tarreaub648d632007-10-28 22:13:50 +0100549 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100550}
551
Olivier Houchard1fc05162017-04-06 01:05:05 +0200552/* This function closes the listening socket for the specified listener,
553 * provided that it's already in a listening state. The listener enters the
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100554 * LI_ASSIGNED state. This function is intended to be used as a generic
555 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200556 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100557void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200558{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100559 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100560 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100561 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200562}
563
564/* This function pretends the listener is dead, but keeps the FD opened, so
565 * that we can provide it, for conf reloading.
566 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100567void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200568{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100569 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100570 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100571 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200572}
573
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200574/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
575 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200576 * allocation). The address family is taken from ss->ss_family, and the protocol
577 * passed in <proto> must be usable on this family. The number of jobs and
578 * listeners is automatically increased by the number of listeners created. It
579 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200580 */
581int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200582 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200583{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200584 struct listener *l;
585 int port;
586
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200587 for (port = portl; port <= porth; port++) {
588 l = calloc(1, sizeof(*l));
589 if (!l) {
590 memprintf(err, "out of memory");
591 return 0;
592 }
593 l->obj_type = OBJ_TYPE_LISTENER;
594 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
595 LIST_ADDQ(&bc->listeners, &l->by_bind);
596 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200597 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200598 l->rx.owner = l;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200599 l->rx.fd = fd;
Willy Tarreau37159062020-08-27 07:48:42 +0200600 memcpy(&l->rx.addr, ss, sizeof(*ss));
Olivier Houchard859dc802019-08-08 15:47:21 +0200601 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200602 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200603
604 proto->add(l, port);
605
Willy Tarreau909c23b2020-09-15 13:50:58 +0200606 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200607 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100608
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100609 HA_SPIN_INIT(&l->lock);
Olivier Houchard64213e92019-03-08 18:52:57 +0100610 _HA_ATOMIC_ADD(&jobs, 1);
611 _HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200612 }
613 return 1;
614}
615
Willy Tarreau1a64d162007-10-28 22:26:05 +0100616/* Delete a listener from its protocol's list of listeners. The listener's
617 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200618 * number of listeners is updated, as well as the global number of listeners
619 * and jobs. Note that the listener must have previously been unbound. This
620 * is the generic function to use to remove a listener.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200621 *
622 * Will grab the proto_lock.
623 *
Willy Tarreau1a64d162007-10-28 22:26:05 +0100624 */
625void delete_listener(struct listener *listener)
626{
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200627 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100628 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100629 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200630 listener_set_state(listener, LI_INIT);
Willy Tarreaub7436612020-08-28 19:51:44 +0200631 LIST_DEL(&listener->rx.proto_list);
632 listener->rx.proto->nb_listeners--;
Olivier Houchard64213e92019-03-08 18:52:57 +0100633 _HA_ATOMIC_SUB(&jobs, 1);
634 _HA_ATOMIC_SUB(&listeners, 1);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100635 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100636 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200637 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100638}
639
Willy Tarreaue2711c72019-02-27 15:39:41 +0100640/* Returns a suitable value for a listener's backlog. It uses the listener's,
641 * otherwise the frontend's backlog, otherwise the listener's maxconn,
642 * otherwise the frontend's maxconn, otherwise 1024.
643 */
644int listener_backlog(const struct listener *l)
645{
646 if (l->backlog)
647 return l->backlog;
648
649 if (l->bind_conf->frontend->backlog)
650 return l->bind_conf->frontend->backlog;
651
652 if (l->maxconn)
653 return l->maxconn;
654
655 if (l->bind_conf->frontend->maxconn)
656 return l->bind_conf->frontend->maxconn;
657
658 return 1024;
659}
660
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200661/* This function is called on a read event from a listening socket, corresponding
662 * to an accept. It tries to accept as many connections as possible, and for each
663 * calls the listener's accept handler (generally the frontend's accept handler).
664 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200665void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200666{
667 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100668 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200669 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100670 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100671 int next_feconn = 0;
672 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200673 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200674 int cfd;
675 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100676#ifdef USE_ACCEPT4
677 static int accept4_broken;
678#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200679
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100680 if (!l)
681 return;
682 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200683
684 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
685 * illimited, but it is probably enough.
686 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100687 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200688
Willy Tarreau93e7c002013-10-07 18:51:07 +0200689 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
690 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200691
692 if (unlikely(!max)) {
693 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200694 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100695 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200696 }
697
698 if (max_accept > max)
699 max_accept = max;
700 }
701
702 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200703 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
704
705 if (unlikely(!max)) {
706 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200707 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100708 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200709 }
710
711 if (max_accept > max)
712 max_accept = max;
713 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200714#ifdef USE_OPENSSL
715 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
716 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200717
Willy Tarreaue43d5322013-10-07 20:01:52 +0200718 if (unlikely(!max)) {
719 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200720 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100721 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200722 }
723
724 if (max_accept > max)
725 max_accept = max;
726 }
727#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200728 if (p && p->fe_sps_lim) {
729 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
730
731 if (unlikely(!max)) {
732 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100733 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
734 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200735 }
736
737 if (max_accept > max)
738 max_accept = max;
739 }
740
741 /* Note: if we fail to allocate a connection because of configured
742 * limits, we'll schedule a new attempt worst 1 second later in the
743 * worst case. If we fail due to system limits or temporary resource
744 * shortage, we try again 100ms later in the worst case.
745 */
Christopher Faulet102854c2019-04-30 12:17:13 +0200746 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200747 struct sockaddr_storage addr;
748 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200749 unsigned int count;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200750 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200751
Willy Tarreau82c97892019-02-27 19:32:32 +0100752 /* pre-increase the number of connections without going too far.
753 * We process the listener, then the proxy, then the process.
754 * We know which ones to unroll based on the next_xxx value.
755 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100756 do {
757 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100758 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100759 /* the listener was marked full or another
760 * thread is going to do it.
761 */
762 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100763 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100764 goto end;
765 }
766 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000767 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100768
Willy Tarreau82c97892019-02-27 19:32:32 +0100769 if (p) {
770 do {
771 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100772 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100773 /* the frontend was marked full or another
774 * thread is going to do it.
775 */
776 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100777 expire = TICK_ETERNITY;
778 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100779 }
780 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100781 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200782 }
783
Willy Tarreau82c97892019-02-27 19:32:32 +0100784 if (!(l->options & LI_O_UNLIMITED)) {
785 do {
786 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100787 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100788 /* the process was marked full or another
789 * thread is going to do it.
790 */
791 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100792 expire = tick_add(now_ms, 1000); /* try again in 1 second */
793 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100794 }
795 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000796 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200797 }
798
William Lallemand2fe7dd02018-09-11 16:51:29 +0200799 /* with sockpair@ we don't want to do an accept */
Willy Tarreau37159062020-08-27 07:48:42 +0200800 if (unlikely(l->rx.addr.ss_family == AF_CUST_SOCKPAIR)) {
William Lallemand2fe7dd02018-09-11 16:51:29 +0200801 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100802 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100803 /* just like with UNIX sockets, only the family is filled */
804 addr.ss_family = AF_UNIX;
805 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200806 } else
807
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200808#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100809 /* only call accept4() if it's known to be safe, otherwise
810 * fallback to the legacy accept() + fcntl().
811 */
812 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100813 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100814 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
815 (accept4_broken = 1))))
816#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200817 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100818 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100819
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200820 if (unlikely(cfd == -1)) {
821 switch (errno) {
822 case EAGAIN:
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100823 if (fdtab[fd].ev & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreaubb660302014-05-07 19:47:02 +0200824 /* the listening socket might have been disabled in a shared
825 * process and we're a collateral victim. We'll just pause for
826 * a while in case it comes back. In the mean time, we need to
827 * clear this sticky flag.
828 */
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100829 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreaubb660302014-05-07 19:47:02 +0200830 goto transient_error;
831 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200832 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200833 case EINVAL:
834 /* might be trying to accept on a shut fd (eg: soft stop) */
835 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100836 case EINTR:
837 case ECONNABORTED:
Olivier Houchard64213e92019-03-08 18:52:57 +0100838 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100839 if (p)
Olivier Houchard64213e92019-03-08 18:52:57 +0100840 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100841 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +0100842 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100843 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200844 case ENFILE:
845 if (p)
846 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100847 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
848 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200849 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200850 case EMFILE:
851 if (p)
852 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100853 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
854 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200855 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200856 case ENOBUFS:
857 case ENOMEM:
858 if (p)
859 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100860 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
861 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200862 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200863 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100864 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau92079932019-12-10 09:30:05 +0100865 max_accept = 0;
866 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200867 }
868 }
869
William Lallemandd9138002018-11-27 12:02:39 +0100870 /* we don't want to leak the FD upon reload if it's in the master */
871 if (unlikely(master == 1))
872 fcntl(cfd, F_SETFD, FD_CLOEXEC);
873
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100874 /* The connection was accepted, it must be counted as such */
875 if (l->counters)
876 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
877
Willy Tarreau82c97892019-02-27 19:32:32 +0100878 if (p)
879 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
880
881 proxy_inc_fe_conn_ctr(l, p);
882
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100883 if (!(l->options & LI_O_UNLIMITED)) {
884 count = update_freq_ctr(&global.conn_per_sec, 1);
885 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100886 }
887
Willy Tarreau64a9c052019-04-12 15:27:17 +0200888 _HA_ATOMIC_ADD(&activity[tid].accepted, 1);
889
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200890 if (unlikely(cfd >= global.maxsock)) {
891 send_log(p, LOG_EMERG,
892 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
893 p->id);
894 close(cfd);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100895 expire = tick_add(now_ms, 1000); /* try again in 1 second */
896 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200897 }
898
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100899 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100900 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
901 * allows the error path not to rollback on nbconn. It's more
902 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100903 */
904 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100905 next_feconn = 0;
906 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200907
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100908#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200909 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100910 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100911 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100912 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100913
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100914 /* The principle is that we have two running indexes,
915 * each visiting in turn all threads bound to this
916 * listener. The connection will be assigned to the one
917 * with the least connections, and the other one will
918 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100919 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100920 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100921 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100922
923 /* keep a copy for the final update. thr_idx is composite
924 * and made of (t2<<16) + t1.
925 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100926 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100927 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100928 unsigned long m1, m2;
929 int q1, q2;
930
931 t2 = t1 = t0;
932 t2 >>= 16;
933 t1 &= 0xFFFF;
934
935 /* t1 walks low to high bits ;
936 * t2 walks high to low.
937 */
938 m1 = mask >> t1;
939 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
940
Willy Tarreau85d04242019-04-16 18:09:13 +0200941 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100942 m1 &= ~1UL;
943 if (!m1) {
944 m1 = mask;
945 t1 = 0;
946 }
947 t1 += my_ffsl(m1) - 1;
948 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100949
Willy Tarreau85d04242019-04-16 18:09:13 +0200950 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
951 /* highest bit not set */
952 if (!m2)
953 m2 = mask;
954
955 t2 = my_flsl(m2) - 1;
956 }
957
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100958 /* now we have two distinct thread IDs belonging to the mask */
959 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
960 if (q1 >= ACCEPT_QUEUE_SIZE)
961 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100962
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100963 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
964 if (q2 >= ACCEPT_QUEUE_SIZE)
965 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100966
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100967 /* we have 3 possibilities now :
968 * q1 < q2 : t1 is less loaded than t2, so we pick it
969 * and update t2 (since t1 might still be
970 * lower than another thread)
971 * q1 > q2 : t2 is less loaded than t1, so we pick it
972 * and update t1 (since t2 might still be
973 * lower than another thread)
974 * q1 = q2 : both are equally loaded, thus we pick t1
975 * and update t1 as it will become more loaded
976 * than t2.
977 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100978
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100979 q1 += l->thr_conn[t1];
980 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100981
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100982 if (q1 - q2 < 0) {
983 t = t1;
984 t2 = t2 ? t2 - 1 : LONGBITS - 1;
985 }
986 else if (q1 - q2 > 0) {
987 t = t2;
988 t1++;
989 if (t1 >= LONGBITS)
990 t1 = 0;
991 }
992 else {
993 t = t1;
994 t1++;
995 if (t1 >= LONGBITS)
996 t1 = 0;
997 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100998
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100999 /* new value for thr_idx */
1000 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001001 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001002
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001003 /* We successfully selected the best thread "t" for this
1004 * connection. We use deferred accepts even if it's the
1005 * local thread because tests show that it's the best
1006 * performing model, likely due to better cache locality
1007 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001008 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001009 ring = &accept_queue_rings[t];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001010 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Olivier Houchard64213e92019-03-08 18:52:57 +01001011 _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001012 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001013 continue;
1014 }
1015 /* If the ring is full we do a synchronous accept on
1016 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001017 */
Olivier Houchard64213e92019-03-08 18:52:57 +01001018 _HA_ATOMIC_ADD(&activity[t].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001019 }
1020#endif // USE_THREAD
1021
Olivier Houchard64213e92019-03-08 18:52:57 +01001022 _HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001023 ret = l->accept(l, cfd, &addr);
1024 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001025 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001026 * we just have to ignore it (ret == 0) or it's a critical
1027 * error due to a resource shortage, and we must stop the
1028 * listener (ret < 0).
1029 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001030 if (ret == 0) /* successful termination */
1031 continue;
1032
Willy Tarreaubb660302014-05-07 19:47:02 +02001033 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001034 }
1035
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001036 /* increase the per-process number of cumulated sessions, this
1037 * may only be done once l->accept() has accepted the connection.
1038 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001039 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001040 count = update_freq_ctr(&global.sess_per_sec, 1);
1041 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001042 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001043#ifdef USE_OPENSSL
1044 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001045 count = update_freq_ctr(&global.ssl_per_sec, 1);
1046 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001047 }
1048#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001049
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001050 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001051 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001052
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001053 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001054 if (next_conn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001055 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001056
Willy Tarreau82c97892019-02-27 19:32:32 +01001057 if (p && next_feconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001058 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001059
1060 if (next_actconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001061 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001062
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001063 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreaucdcba112019-12-11 15:06:30 +01001064 (l->state == LI_LIMITED &&
1065 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1066 (!tick_isset(global_listener_queue_task->expire) ||
1067 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001068 /* at least one thread has to this when quitting */
1069 resume_listener(l);
1070
1071 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001072 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001073
Olivier Houchard859dc802019-08-08 15:47:21 +02001074 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001075 (!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 +01001076 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001077 }
Willy Tarreau4c044e22019-12-05 07:40:32 +01001078
Willy Tarreau92079932019-12-10 09:30:05 +01001079 /* Now it's getting tricky. The listener was supposed to be in LI_READY
1080 * state but in the mean time we might have changed it to LI_FULL or
1081 * LI_LIMITED, and another thread might also have turned it to
1082 * LI_PAUSED, LI_LISTEN or even LI_INI when stopping a proxy. We must
1083 * be certain to keep the FD enabled when in the READY state but we
1084 * must also stop it for other states that we might have switched to
1085 * while others re-enabled polling.
1086 */
1087 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
1088 if (l->state == LI_READY) {
1089 if (max_accept > 0)
1090 fd_cant_recv(fd);
1091 else
1092 fd_done_recv(fd);
1093 } else if (l->state > LI_ASSIGNED) {
Willy Tarreau38ba6472020-08-27 08:16:52 +02001094 fd_stop_recv(l->rx.fd);
Willy Tarreau92079932019-12-10 09:30:05 +01001095 }
1096 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001097 return;
1098
1099 transient_error:
1100 /* pause the listener for up to 100 ms */
1101 expire = tick_add(now_ms, 100);
1102
1103 limit_global:
1104 /* (re-)queue the listener to the global queue and set it to expire no
1105 * later than <expire> ahead. The listener turns to LI_LIMITED.
1106 */
1107 limit_listener(l, &global_listener_queue);
1108 task_schedule(global_listener_queue_task, expire);
1109 goto end;
1110
1111 limit_proxy:
1112 /* (re-)queue the listener to the proxy's queue and set it to expire no
1113 * later than <expire> ahead. The listener turns to LI_LIMITED.
1114 */
1115 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001116 if (p->task && tick_isset(expire))
1117 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001118 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001119}
1120
Willy Tarreau05f50472017-09-15 09:19:58 +02001121/* Notify the listener that a connection initiated from it was released. This
1122 * is used to keep the connection count consistent and to possibly re-open
1123 * listening when it was limited.
1124 */
1125void listener_release(struct listener *l)
1126{
1127 struct proxy *fe = l->bind_conf->frontend;
1128
1129 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +01001130 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001131 if (fe)
Olivier Houchard64213e92019-03-08 18:52:57 +01001132 _HA_ATOMIC_SUB(&fe->feconn, 1);
1133 _HA_ATOMIC_SUB(&l->nbconn, 1);
1134 _HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001135
1136 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001137 resume_listener(l);
1138
1139 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001140 dequeue_all_listeners();
Willy Tarreau05f50472017-09-15 09:19:58 +02001141
Olivier Houchard859dc802019-08-08 15:47:21 +02001142 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001143 (!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 +01001144 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001145}
1146
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001147/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1148static int listener_queue_init()
1149{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001150 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1151 if (!global_listener_queue_task) {
1152 ha_alert("Out of memory when initializing global listener queue\n");
1153 return ERR_FATAL|ERR_ABORT;
1154 }
1155 /* very simple initialization, users will queue the task if needed */
1156 global_listener_queue_task->context = NULL; /* not even a context! */
1157 global_listener_queue_task->process = manage_global_listener_queue;
1158
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001159 return 0;
1160}
1161
1162static void listener_queue_deinit()
1163{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001164 task_destroy(global_listener_queue_task);
1165 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001166}
1167
1168REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1169REGISTER_POST_DEINIT(listener_queue_deinit);
1170
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001171
1172/* This is the global management task for listeners. It enables listeners waiting
1173 * for global resources when there are enough free resource, or at least once in
1174 * a while. It is designed to be called as a task.
1175 */
1176static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
1177{
1178 /* If there are still too many concurrent connections, let's wait for
1179 * some of them to go away. We don't need to re-arm the timer because
1180 * each of them will scan the queue anyway.
1181 */
1182 if (unlikely(actconn >= global.maxconn))
1183 goto out;
1184
1185 /* We should periodically try to enable listeners waiting for a global
1186 * resource here, because it is possible, though very unlikely, that
1187 * they have been blocked by a temporary lack of global resource such
1188 * as a file descriptor or memory and that the temporary condition has
1189 * disappeared.
1190 */
1191 dequeue_all_listeners();
1192
1193 out:
1194 t->expire = TICK_ETERNITY;
1195 task_queue(t);
1196 return t;
1197}
1198
Willy Tarreau26982662012-09-12 23:17:10 +02001199/*
1200 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1201 * parsing sessions.
1202 */
1203void bind_register_keywords(struct bind_kw_list *kwl)
1204{
1205 LIST_ADDQ(&bind_keywords.list, &kwl->list);
1206}
1207
1208/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1209 * keyword is found with a NULL ->parse() function, then an attempt is made to
1210 * find one with a valid ->parse() function. This way it is possible to declare
1211 * platform-dependant, known keywords as NULL, then only declare them as valid
1212 * if some options are met. Note that if the requested keyword contains an
1213 * opening parenthesis, everything from this point is ignored.
1214 */
1215struct bind_kw *bind_find_kw(const char *kw)
1216{
1217 int index;
1218 const char *kwend;
1219 struct bind_kw_list *kwl;
1220 struct bind_kw *ret = NULL;
1221
1222 kwend = strchr(kw, '(');
1223 if (!kwend)
1224 kwend = kw + strlen(kw);
1225
1226 list_for_each_entry(kwl, &bind_keywords.list, list) {
1227 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1228 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1229 kwl->kw[index].kw[kwend-kw] == 0) {
1230 if (kwl->kw[index].parse)
1231 return &kwl->kw[index]; /* found it !*/
1232 else
1233 ret = &kwl->kw[index]; /* may be OK */
1234 }
1235 }
1236 }
1237 return ret;
1238}
1239
Willy Tarreau8638f482012-09-18 18:01:17 +02001240/* Dumps all registered "bind" keywords to the <out> string pointer. The
1241 * unsupported keywords are only dumped if their supported form was not
1242 * found.
1243 */
1244void bind_dump_kws(char **out)
1245{
1246 struct bind_kw_list *kwl;
1247 int index;
1248
Christopher Faulet784063e2020-05-18 12:14:18 +02001249 if (!out)
1250 return;
1251
Willy Tarreau8638f482012-09-18 18:01:17 +02001252 *out = NULL;
1253 list_for_each_entry(kwl, &bind_keywords.list, list) {
1254 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1255 if (kwl->kw[index].parse ||
1256 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001257 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1258 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001259 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001260 kwl->kw[index].skip ? " <arg>" : "",
1261 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001262 }
1263 }
1264 }
1265}
1266
Willy Tarreau645513a2010-05-24 20:55:15 +02001267/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001268/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001269/************************************************************************/
1270
Willy Tarreaua5e37562011-12-16 17:06:15 +01001271/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001272static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001273smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001274{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001275 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001276 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001277 return 1;
1278}
1279
Willy Tarreaua5e37562011-12-16 17:06:15 +01001280/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001281static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001282smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001283{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001284 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001285 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001286 return 1;
1287}
Jerome Magnineb421b22020-03-27 22:08:40 +01001288static int
1289smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1290{
1291 smp->data.u.str.area = smp->sess->listener->name;
1292 if (!smp->data.u.str.area)
1293 return 0;
1294
1295 smp->data.type = SMP_T_STR;
1296 smp->flags = SMP_F_CONST;
1297 smp->data.u.str.data = strlen(smp->data.u.str.area);
1298 return 1;
1299}
Willy Tarreau645513a2010-05-24 20:55:15 +02001300
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001301/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001302static 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 +02001303{
1304 struct listener *l;
1305
Willy Tarreau4348fad2012-09-20 16:48:07 +02001306 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001307 l->options |= LI_O_ACC_PROXY;
1308
1309 return 0;
1310}
1311
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001312/* parse the "accept-netscaler-cip" bind keyword */
1313static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1314{
1315 struct listener *l;
1316 uint32_t val;
1317
1318 if (!*args[cur_arg + 1]) {
1319 memprintf(err, "'%s' : missing value", args[cur_arg]);
1320 return ERR_ALERT | ERR_FATAL;
1321 }
1322
1323 val = atol(args[cur_arg + 1]);
1324 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001325 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001326 return ERR_ALERT | ERR_FATAL;
1327 }
1328
1329 list_for_each_entry(l, &conf->listeners, by_bind) {
1330 l->options |= LI_O_ACC_CIP;
1331 conf->ns_cip_magic = val;
1332 }
1333
1334 return 0;
1335}
1336
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001337/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001338static 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 +02001339{
1340 struct listener *l;
1341 int val;
1342
1343 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001344 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001345 return ERR_ALERT | ERR_FATAL;
1346 }
1347
1348 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001349 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001350 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001351 return ERR_ALERT | ERR_FATAL;
1352 }
1353
Willy Tarreau4348fad2012-09-20 16:48:07 +02001354 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001355 l->backlog = val;
1356
1357 return 0;
1358}
1359
1360/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001361static 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 +02001362{
1363 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001364 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001365 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001366
Willy Tarreau4348fad2012-09-20 16:48:07 +02001367 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001368 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001369 return ERR_ALERT | ERR_FATAL;
1370 }
1371
1372 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001373 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001374 return ERR_ALERT | ERR_FATAL;
1375 }
1376
Willy Tarreau4348fad2012-09-20 16:48:07 +02001377 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001378 new->luid = strtol(args[cur_arg + 1], &error, 10);
1379 if (*error != '\0') {
1380 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1381 return ERR_ALERT | ERR_FATAL;
1382 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001383 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001384
Willy Tarreau4348fad2012-09-20 16:48:07 +02001385 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001386 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001387 return ERR_ALERT | ERR_FATAL;
1388 }
1389
Willy Tarreau4348fad2012-09-20 16:48:07 +02001390 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001391 if (node) {
1392 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001393 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1394 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1395 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001396 return ERR_ALERT | ERR_FATAL;
1397 }
1398
Willy Tarreau4348fad2012-09-20 16:48:07 +02001399 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001400 return 0;
1401}
1402
1403/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001404static 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 +02001405{
1406 struct listener *l;
1407 int val;
1408
1409 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001410 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001411 return ERR_ALERT | ERR_FATAL;
1412 }
1413
1414 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001415 if (val < 0) {
1416 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001417 return ERR_ALERT | ERR_FATAL;
1418 }
1419
Willy Tarreau4348fad2012-09-20 16:48:07 +02001420 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001421 l->maxconn = val;
1422
1423 return 0;
1424}
1425
1426/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001427static 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 +02001428{
1429 struct listener *l;
1430
1431 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001432 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001433 return ERR_ALERT | ERR_FATAL;
1434 }
1435
Willy Tarreau4348fad2012-09-20 16:48:07 +02001436 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001437 l->name = strdup(args[cur_arg + 1]);
1438
1439 return 0;
1440}
1441
1442/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001443static 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 +02001444{
1445 struct listener *l;
1446 int val;
1447
1448 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001449 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001450 return ERR_ALERT | ERR_FATAL;
1451 }
1452
1453 val = atol(args[cur_arg + 1]);
1454 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001455 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001456 return ERR_ALERT | ERR_FATAL;
1457 }
1458
Willy Tarreau4348fad2012-09-20 16:48:07 +02001459 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001460 l->nice = val;
1461
1462 return 0;
1463}
1464
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001465/* parse the "process" bind keyword */
1466static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1467{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001468 char *slash;
1469 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001470
Christopher Fauletc644fa92017-11-23 22:44:11 +01001471 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1472 *slash = 0;
1473
Willy Tarreauff9c9142019-02-07 10:39:36 +01001474 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001475 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001476 return ERR_ALERT | ERR_FATAL;
1477 }
1478
Christopher Fauletc644fa92017-11-23 22:44:11 +01001479 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001480 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001481 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1482 return ERR_ALERT | ERR_FATAL;
1483 }
1484 *slash = '/';
1485 }
1486
Willy Tarreaue26993c2020-09-03 07:18:55 +02001487 conf->settings.bind_proc |= proc;
1488 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001489 return 0;
1490}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001491
Christopher Fauleta717b992018-04-10 14:43:00 +02001492/* parse the "proto" bind keyword */
1493static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1494{
1495 struct ist proto;
1496
1497 if (!*args[cur_arg + 1]) {
1498 memprintf(err, "'%s' : missing value", args[cur_arg]);
1499 return ERR_ALERT | ERR_FATAL;
1500 }
1501
1502 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1503 conf->mux_proto = get_mux_proto(proto);
1504 if (!conf->mux_proto) {
1505 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1506 return ERR_ALERT | ERR_FATAL;
1507 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001508 return 0;
1509}
1510
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001511/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1512static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1513 struct proxy *defpx, const char *file, int line,
1514 char **err)
1515{
1516 if (too_many_args(1, args, err, NULL))
1517 return -1;
1518
1519 if (strcmp(args[1], "on") == 0)
1520 global.tune.options |= GTUNE_LISTENER_MQ;
1521 else if (strcmp(args[1], "off") == 0)
1522 global.tune.options &= ~GTUNE_LISTENER_MQ;
1523 else {
1524 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1525 return -1;
1526 }
1527 return 0;
1528}
1529
Willy Tarreau61612d42012-04-19 18:42:05 +02001530/* Note: must not be declared <const> as its list will be overwritten.
1531 * Please take care of keeping this list alphabetically sorted.
1532 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001533static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001534 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1535 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001536 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001537 { /* END */ },
1538}};
1539
Willy Tarreau0108d902018-11-25 19:14:37 +01001540INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1541
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001542/* Note: must not be declared <const> as its list will be overwritten.
1543 * Please take care of keeping this list alphabetically sorted.
1544 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001545static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001546 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001547}};
1548
Willy Tarreau0108d902018-11-25 19:14:37 +01001549INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1550
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001551/* Note: must not be declared <const> as its list will be overwritten.
1552 * Please take care of keeping this list alphabetically sorted, doing so helps
1553 * all code contributors.
1554 * Optional keywords are also declared with a NULL ->parse() function so that
1555 * the config parser can report an appropriate error when a known keyword was
1556 * not enabled.
1557 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001558static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001559 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001560 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1561 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1562 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1563 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1564 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1565 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001566 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001567 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001568 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001569}};
1570
Willy Tarreau0108d902018-11-25 19:14:37 +01001571INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1572
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001573/* config keyword parsers */
1574static struct cfg_kw_list cfg_kws = {ILH, {
1575 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1576 { 0, NULL, NULL }
1577}};
1578
1579INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1580
Willy Tarreau645513a2010-05-24 20:55:15 +02001581/*
1582 * Local variables:
1583 * c-indent-level: 8
1584 * c-basic-offset: 8
1585 * End:
1586 */