blob: 6370a9f30bc55d3d7f4b60fde89f16f5d9e2ed0f [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 Tarreau9b3a9322020-09-24 14:46:34 +0200346 if (l->state <= LI_PAUSED)
347 goto end;
348
Willy Tarreaub7436612020-08-28 19:51:44 +0200349 if (l->rx.proto->pause) {
Willy Tarreau092d8652014-07-07 20:22:12 +0200350 /* Returns < 0 in case of failure, 0 if the listener
351 * was totally stopped, or > 0 if correctly paused.
352 */
Willy Tarreaub7436612020-08-28 19:51:44 +0200353 int ret = l->rx.proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200354
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200355 if (ret < 0) {
356 ret = 0;
357 goto end;
358 }
Willy Tarreau092d8652014-07-07 20:22:12 +0200359 else if (ret == 0)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200360 goto end;
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200361 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200362
Olivier Houchard859dc802019-08-08 15:47:21 +0200363 MT_LIST_DEL(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200364
Willy Tarreau38ba6472020-08-27 08:16:52 +0200365 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200366 listener_set_state(l, LI_PAUSED);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200367 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100368 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200369 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200370}
371
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200372/* This function tries to resume a temporarily disabled listener. Paused, full,
373 * limited and disabled listeners are handled, which means that this function
374 * may replace enable_listener(). The resulting state will either be LI_READY
375 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200376 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200377 * foreground mode, and are ignored. If the listener was only in the assigned
378 * state, it's totally rebound. This can happen if a pause() has completely
379 * stopped it. If the resume fails, 0 is returned and an error might be
380 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200381 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100382int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200383{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200384 int ret = 1;
385
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100386 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200387
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200388 /* check that another thread didn't to the job in parallel (e.g. at the
389 * end of listen_accept() while we'd come from dequeue_all_listeners().
390 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200391 if (MT_LIST_ADDED(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200392 goto end;
393
William Lallemand095ba4c2017-06-01 17:38:50 +0200394 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200395 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200396 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100397
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200398 if (l->state == LI_ASSIGNED) {
399 char msg[100];
400 int err;
401
Willy Tarreaub3580b12020-09-01 10:26:22 +0200402 err = l->rx.proto->listen(l, msg, sizeof(msg));
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200403 if (err & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100404 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200405 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100406 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200407
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200408 if (err & (ERR_FATAL | ERR_ABORT)) {
409 ret = 0;
410 goto end;
411 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200412 }
413
Willy Tarreauc6dac6c2020-09-23 17:34:22 +0200414 if (l->state < LI_PAUSED) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200415 ret = 0;
416 goto end;
417 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200418
Willy Tarreaub7436612020-08-28 19:51:44 +0200419 if (l->rx.proto->sock_prot == IPPROTO_TCP &&
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200420 l->state == LI_PAUSED &&
Willy Tarreau38ba6472020-08-27 08:16:52 +0200421 listen(l->rx.fd, listener_backlog(l)) != 0) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200422 ret = 0;
423 goto end;
424 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200425
426 if (l->state == LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200427 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200428
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100429 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200430 listener_set_state(l, LI_FULL);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200431 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200432 }
433
Willy Tarreau38ba6472020-08-27 08:16:52 +0200434 fd_want_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200435 listener_set_state(l, LI_READY);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200436 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100437 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200438 return ret;
439}
440
Willy Tarreau87b09662015-04-03 00:22:06 +0200441/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200442 * it upon next close() using resume_listener().
443 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200444static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200445{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100446 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200447 if (l->state >= LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200448 MT_LIST_DEL(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100449 if (l->state != LI_FULL) {
Willy Tarreau38ba6472020-08-27 08:16:52 +0200450 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200451 listener_set_state(l, LI_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100452 }
Willy Tarreau62793712011-07-24 19:23:38 +0200453 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100454 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200455}
456
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200457/* Marks a ready listener as limited so that we only try to re-enable it when
458 * resources are free again. It will be queued into the specified queue.
459 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200460static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200461{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100462 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200463 if (l->state == LI_READY) {
Willy Tarreaude4db172020-07-10 08:10:29 +0200464 MT_LIST_TRY_ADDQ(list, &l->wait_queue);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200465 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200466 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200467 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100468 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200469}
470
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100471/* This function adds all of the protocol's listener's file descriptors to the
472 * polling lists when they are in the LI_LISTEN state. It is intended to be
473 * used as a protocol's generic enable_all() primitive, for use after the
474 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
475 * their number of connections. It always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200476 *
477 * Must be called with proto_lock held.
478 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100479 */
480int enable_all_listeners(struct protocol *proto)
481{
482 struct listener *listener;
483
Willy Tarreaub7436612020-08-28 19:51:44 +0200484 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100485 enable_listener(listener);
486 return ERR_NONE;
487}
488
489/* This function removes all of the protocol's listener's file descriptors from
490 * the polling lists when they are in the LI_READY or LI_FULL states. It is
491 * intended to be used as a protocol's generic disable_all() primitive. It puts
492 * the listeners into LI_LISTEN, and always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200493 *
494 * Must be called with proto_lock held.
495 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100496 */
497int disable_all_listeners(struct protocol *proto)
498{
499 struct listener *listener;
500
Willy Tarreaub7436612020-08-28 19:51:44 +0200501 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100502 disable_listener(listener);
503 return ERR_NONE;
504}
505
Willy Tarreau241797a2019-12-10 14:10:52 +0100506/* Dequeues all listeners waiting for a resource the global wait queue */
507void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200508{
Willy Tarreau01abd022019-02-28 10:27:18 +0100509 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200510
Willy Tarreau241797a2019-12-10 14:10:52 +0100511 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200512 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100513 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200514 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100515 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200516 }
517}
518
Willy Tarreau241797a2019-12-10 14:10:52 +0100519/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
520void dequeue_proxy_listeners(struct proxy *px)
521{
522 struct listener *listener;
523
524 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
525 /* This cannot fail because the listeners are by definition in
526 * the LI_LIMITED state.
527 */
528 resume_listener(listener);
529 }
530}
531
Christopher Faulet510c0d62018-03-16 10:04:47 +0100532/* Must be called with the lock held. Depending on <do_close> value, it does
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200533 * what unbind_listener or unbind_listener_no_close should do. It can also
534 * close a zombie listener's FD when called in early states.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100535 */
536void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100537{
Olivier Houcharda5188562019-03-08 15:35:42 +0100538 if (listener->state == LI_READY && fd_updt)
Willy Tarreau38ba6472020-08-27 08:16:52 +0200539 fd_stop_recv(listener->rx.fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100540
Olivier Houchard859dc802019-08-08 15:47:21 +0200541 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200542
Willy Tarreaube58c382011-07-24 18:28:10 +0200543 if (listener->state >= LI_PAUSED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200544 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200545 fd_stop_both(listener->rx.fd);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200546 }
547
548 if (do_close && listener->rx.fd != -1) {
549 fd_delete(listener->rx.fd);
550 listener->rx.flags &= ~RX_F_BOUND;
551 listener->rx.fd = -1;
Willy Tarreaub648d632007-10-28 22:13:50 +0100552 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100553}
554
Olivier Houchard1fc05162017-04-06 01:05:05 +0200555/* This function closes the listening socket for the specified listener,
556 * provided that it's already in a listening state. The listener enters the
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100557 * LI_ASSIGNED state. This function is intended to be used as a generic
558 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200559 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100560void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200561{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100562 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100563 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100564 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200565}
566
567/* This function pretends the listener is dead, but keeps the FD opened, so
568 * that we can provide it, for conf reloading.
569 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100570void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200571{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100572 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100573 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100574 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200575}
576
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200577/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
578 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200579 * allocation). The address family is taken from ss->ss_family, and the protocol
580 * passed in <proto> must be usable on this family. The number of jobs and
581 * listeners is automatically increased by the number of listeners created. It
582 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200583 */
584int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200585 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200586{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200587 struct listener *l;
588 int port;
589
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200590 for (port = portl; port <= porth; port++) {
591 l = calloc(1, sizeof(*l));
592 if (!l) {
593 memprintf(err, "out of memory");
594 return 0;
595 }
596 l->obj_type = OBJ_TYPE_LISTENER;
597 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
598 LIST_ADDQ(&bc->listeners, &l->by_bind);
599 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200600 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200601 l->rx.owner = l;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200602 l->rx.fd = fd;
Willy Tarreau37159062020-08-27 07:48:42 +0200603 memcpy(&l->rx.addr, ss, sizeof(*ss));
Olivier Houchard859dc802019-08-08 15:47:21 +0200604 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200605 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200606
607 proto->add(l, port);
608
Willy Tarreau909c23b2020-09-15 13:50:58 +0200609 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200610 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100611
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100612 HA_SPIN_INIT(&l->lock);
Olivier Houchard64213e92019-03-08 18:52:57 +0100613 _HA_ATOMIC_ADD(&jobs, 1);
614 _HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200615 }
616 return 1;
617}
618
Willy Tarreau1a64d162007-10-28 22:26:05 +0100619/* Delete a listener from its protocol's list of listeners. The listener's
620 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200621 * number of listeners is updated, as well as the global number of listeners
622 * and jobs. Note that the listener must have previously been unbound. This
623 * is the generic function to use to remove a listener.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200624 *
625 * Will grab the proto_lock.
626 *
Willy Tarreau1a64d162007-10-28 22:26:05 +0100627 */
628void delete_listener(struct listener *listener)
629{
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200630 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100631 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100632 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200633 listener_set_state(listener, LI_INIT);
Willy Tarreaub7436612020-08-28 19:51:44 +0200634 LIST_DEL(&listener->rx.proto_list);
635 listener->rx.proto->nb_listeners--;
Olivier Houchard64213e92019-03-08 18:52:57 +0100636 _HA_ATOMIC_SUB(&jobs, 1);
637 _HA_ATOMIC_SUB(&listeners, 1);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100638 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100639 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200640 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100641}
642
Willy Tarreaue2711c72019-02-27 15:39:41 +0100643/* Returns a suitable value for a listener's backlog. It uses the listener's,
644 * otherwise the frontend's backlog, otherwise the listener's maxconn,
645 * otherwise the frontend's maxconn, otherwise 1024.
646 */
647int listener_backlog(const struct listener *l)
648{
649 if (l->backlog)
650 return l->backlog;
651
652 if (l->bind_conf->frontend->backlog)
653 return l->bind_conf->frontend->backlog;
654
655 if (l->maxconn)
656 return l->maxconn;
657
658 if (l->bind_conf->frontend->maxconn)
659 return l->bind_conf->frontend->maxconn;
660
661 return 1024;
662}
663
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200664/* This function is called on a read event from a listening socket, corresponding
665 * to an accept. It tries to accept as many connections as possible, and for each
666 * calls the listener's accept handler (generally the frontend's accept handler).
667 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200668void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200669{
670 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100671 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200672 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100673 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100674 int next_feconn = 0;
675 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200676 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200677 int cfd;
678 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100679#ifdef USE_ACCEPT4
680 static int accept4_broken;
681#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200682
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100683 if (!l)
684 return;
685 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200686
687 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
688 * illimited, but it is probably enough.
689 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100690 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200691
Willy Tarreau93e7c002013-10-07 18:51:07 +0200692 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
693 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200694
695 if (unlikely(!max)) {
696 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200697 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100698 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200699 }
700
701 if (max_accept > max)
702 max_accept = max;
703 }
704
705 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200706 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
707
708 if (unlikely(!max)) {
709 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200710 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100711 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200712 }
713
714 if (max_accept > max)
715 max_accept = max;
716 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200717#ifdef USE_OPENSSL
718 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
719 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200720
Willy Tarreaue43d5322013-10-07 20:01:52 +0200721 if (unlikely(!max)) {
722 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200723 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100724 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200725 }
726
727 if (max_accept > max)
728 max_accept = max;
729 }
730#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200731 if (p && p->fe_sps_lim) {
732 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
733
734 if (unlikely(!max)) {
735 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100736 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
737 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200738 }
739
740 if (max_accept > max)
741 max_accept = max;
742 }
743
744 /* Note: if we fail to allocate a connection because of configured
745 * limits, we'll schedule a new attempt worst 1 second later in the
746 * worst case. If we fail due to system limits or temporary resource
747 * shortage, we try again 100ms later in the worst case.
748 */
Christopher Faulet102854c2019-04-30 12:17:13 +0200749 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200750 struct sockaddr_storage addr;
751 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200752 unsigned int count;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200753 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200754
Willy Tarreau82c97892019-02-27 19:32:32 +0100755 /* pre-increase the number of connections without going too far.
756 * We process the listener, then the proxy, then the process.
757 * We know which ones to unroll based on the next_xxx value.
758 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100759 do {
760 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100761 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100762 /* the listener was marked full or another
763 * thread is going to do it.
764 */
765 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100766 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100767 goto end;
768 }
769 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000770 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100771
Willy Tarreau82c97892019-02-27 19:32:32 +0100772 if (p) {
773 do {
774 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100775 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100776 /* the frontend was marked full or another
777 * thread is going to do it.
778 */
779 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100780 expire = TICK_ETERNITY;
781 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100782 }
783 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100784 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200785 }
786
Willy Tarreau82c97892019-02-27 19:32:32 +0100787 if (!(l->options & LI_O_UNLIMITED)) {
788 do {
789 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100790 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100791 /* the process was marked full or another
792 * thread is going to do it.
793 */
794 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100795 expire = tick_add(now_ms, 1000); /* try again in 1 second */
796 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100797 }
798 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000799 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200800 }
801
William Lallemand2fe7dd02018-09-11 16:51:29 +0200802 /* with sockpair@ we don't want to do an accept */
Willy Tarreau37159062020-08-27 07:48:42 +0200803 if (unlikely(l->rx.addr.ss_family == AF_CUST_SOCKPAIR)) {
William Lallemand2fe7dd02018-09-11 16:51:29 +0200804 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100805 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100806 /* just like with UNIX sockets, only the family is filled */
807 addr.ss_family = AF_UNIX;
808 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200809 } else
810
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200811#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100812 /* only call accept4() if it's known to be safe, otherwise
813 * fallback to the legacy accept() + fcntl().
814 */
815 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100816 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100817 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
818 (accept4_broken = 1))))
819#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200820 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100821 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100822
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200823 if (unlikely(cfd == -1)) {
824 switch (errno) {
825 case EAGAIN:
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100826 if (fdtab[fd].ev & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreaubb660302014-05-07 19:47:02 +0200827 /* the listening socket might have been disabled in a shared
828 * process and we're a collateral victim. We'll just pause for
829 * a while in case it comes back. In the mean time, we need to
830 * clear this sticky flag.
831 */
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100832 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreaubb660302014-05-07 19:47:02 +0200833 goto transient_error;
834 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200835 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200836 case EINVAL:
837 /* might be trying to accept on a shut fd (eg: soft stop) */
838 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100839 case EINTR:
840 case ECONNABORTED:
Olivier Houchard64213e92019-03-08 18:52:57 +0100841 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100842 if (p)
Olivier Houchard64213e92019-03-08 18:52:57 +0100843 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100844 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +0100845 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100846 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200847 case ENFILE:
848 if (p)
849 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100850 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
851 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200852 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200853 case EMFILE:
854 if (p)
855 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100856 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
857 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200858 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200859 case ENOBUFS:
860 case ENOMEM:
861 if (p)
862 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100863 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
864 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200865 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200866 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100867 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau92079932019-12-10 09:30:05 +0100868 max_accept = 0;
869 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200870 }
871 }
872
William Lallemandd9138002018-11-27 12:02:39 +0100873 /* we don't want to leak the FD upon reload if it's in the master */
874 if (unlikely(master == 1))
875 fcntl(cfd, F_SETFD, FD_CLOEXEC);
876
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100877 /* The connection was accepted, it must be counted as such */
878 if (l->counters)
879 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
880
Willy Tarreau82c97892019-02-27 19:32:32 +0100881 if (p)
882 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
883
884 proxy_inc_fe_conn_ctr(l, p);
885
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100886 if (!(l->options & LI_O_UNLIMITED)) {
887 count = update_freq_ctr(&global.conn_per_sec, 1);
888 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100889 }
890
Willy Tarreau64a9c052019-04-12 15:27:17 +0200891 _HA_ATOMIC_ADD(&activity[tid].accepted, 1);
892
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200893 if (unlikely(cfd >= global.maxsock)) {
894 send_log(p, LOG_EMERG,
895 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
896 p->id);
897 close(cfd);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100898 expire = tick_add(now_ms, 1000); /* try again in 1 second */
899 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200900 }
901
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100902 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100903 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
904 * allows the error path not to rollback on nbconn. It's more
905 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100906 */
907 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100908 next_feconn = 0;
909 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200910
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100911#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200912 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100913 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100914 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100915 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100916
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100917 /* The principle is that we have two running indexes,
918 * each visiting in turn all threads bound to this
919 * listener. The connection will be assigned to the one
920 * with the least connections, and the other one will
921 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100922 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100923 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100924 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100925
926 /* keep a copy for the final update. thr_idx is composite
927 * and made of (t2<<16) + t1.
928 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100929 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100930 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100931 unsigned long m1, m2;
932 int q1, q2;
933
934 t2 = t1 = t0;
935 t2 >>= 16;
936 t1 &= 0xFFFF;
937
938 /* t1 walks low to high bits ;
939 * t2 walks high to low.
940 */
941 m1 = mask >> t1;
942 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
943
Willy Tarreau85d04242019-04-16 18:09:13 +0200944 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100945 m1 &= ~1UL;
946 if (!m1) {
947 m1 = mask;
948 t1 = 0;
949 }
950 t1 += my_ffsl(m1) - 1;
951 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100952
Willy Tarreau85d04242019-04-16 18:09:13 +0200953 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
954 /* highest bit not set */
955 if (!m2)
956 m2 = mask;
957
958 t2 = my_flsl(m2) - 1;
959 }
960
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100961 /* now we have two distinct thread IDs belonging to the mask */
962 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
963 if (q1 >= ACCEPT_QUEUE_SIZE)
964 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100965
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100966 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
967 if (q2 >= ACCEPT_QUEUE_SIZE)
968 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100969
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100970 /* we have 3 possibilities now :
971 * q1 < q2 : t1 is less loaded than t2, so we pick it
972 * and update t2 (since t1 might still be
973 * lower than another thread)
974 * q1 > q2 : t2 is less loaded than t1, so we pick it
975 * and update t1 (since t2 might still be
976 * lower than another thread)
977 * q1 = q2 : both are equally loaded, thus we pick t1
978 * and update t1 as it will become more loaded
979 * than t2.
980 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100981
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100982 q1 += l->thr_conn[t1];
983 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100984
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100985 if (q1 - q2 < 0) {
986 t = t1;
987 t2 = t2 ? t2 - 1 : LONGBITS - 1;
988 }
989 else if (q1 - q2 > 0) {
990 t = t2;
991 t1++;
992 if (t1 >= LONGBITS)
993 t1 = 0;
994 }
995 else {
996 t = t1;
997 t1++;
998 if (t1 >= LONGBITS)
999 t1 = 0;
1000 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001001
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001002 /* new value for thr_idx */
1003 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001004 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001005
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001006 /* We successfully selected the best thread "t" for this
1007 * connection. We use deferred accepts even if it's the
1008 * local thread because tests show that it's the best
1009 * performing model, likely due to better cache locality
1010 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001011 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001012 ring = &accept_queue_rings[t];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001013 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Olivier Houchard64213e92019-03-08 18:52:57 +01001014 _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001015 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001016 continue;
1017 }
1018 /* If the ring is full we do a synchronous accept on
1019 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001020 */
Olivier Houchard64213e92019-03-08 18:52:57 +01001021 _HA_ATOMIC_ADD(&activity[t].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001022 }
1023#endif // USE_THREAD
1024
Olivier Houchard64213e92019-03-08 18:52:57 +01001025 _HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001026 ret = l->accept(l, cfd, &addr);
1027 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001028 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001029 * we just have to ignore it (ret == 0) or it's a critical
1030 * error due to a resource shortage, and we must stop the
1031 * listener (ret < 0).
1032 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001033 if (ret == 0) /* successful termination */
1034 continue;
1035
Willy Tarreaubb660302014-05-07 19:47:02 +02001036 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001037 }
1038
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001039 /* increase the per-process number of cumulated sessions, this
1040 * may only be done once l->accept() has accepted the connection.
1041 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001042 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001043 count = update_freq_ctr(&global.sess_per_sec, 1);
1044 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001045 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001046#ifdef USE_OPENSSL
1047 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001048 count = update_freq_ctr(&global.ssl_per_sec, 1);
1049 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001050 }
1051#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001052
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001053 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001054 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001055
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001056 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001057 if (next_conn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001058 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001059
Willy Tarreau82c97892019-02-27 19:32:32 +01001060 if (p && next_feconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001061 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001062
1063 if (next_actconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001064 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001065
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001066 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreaucdcba112019-12-11 15:06:30 +01001067 (l->state == LI_LIMITED &&
1068 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1069 (!tick_isset(global_listener_queue_task->expire) ||
1070 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001071 /* at least one thread has to this when quitting */
1072 resume_listener(l);
1073
1074 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001075 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001076
Olivier Houchard859dc802019-08-08 15:47:21 +02001077 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001078 (!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 +01001079 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001080 }
Willy Tarreau4c044e22019-12-05 07:40:32 +01001081
Willy Tarreau92079932019-12-10 09:30:05 +01001082 /* Now it's getting tricky. The listener was supposed to be in LI_READY
1083 * state but in the mean time we might have changed it to LI_FULL or
1084 * LI_LIMITED, and another thread might also have turned it to
1085 * LI_PAUSED, LI_LISTEN or even LI_INI when stopping a proxy. We must
1086 * be certain to keep the FD enabled when in the READY state but we
1087 * must also stop it for other states that we might have switched to
1088 * while others re-enabled polling.
1089 */
1090 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
1091 if (l->state == LI_READY) {
1092 if (max_accept > 0)
1093 fd_cant_recv(fd);
1094 else
1095 fd_done_recv(fd);
1096 } else if (l->state > LI_ASSIGNED) {
Willy Tarreau38ba6472020-08-27 08:16:52 +02001097 fd_stop_recv(l->rx.fd);
Willy Tarreau92079932019-12-10 09:30:05 +01001098 }
1099 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001100 return;
1101
1102 transient_error:
1103 /* pause the listener for up to 100 ms */
1104 expire = tick_add(now_ms, 100);
1105
1106 limit_global:
1107 /* (re-)queue the listener to the global queue and set it to expire no
1108 * later than <expire> ahead. The listener turns to LI_LIMITED.
1109 */
1110 limit_listener(l, &global_listener_queue);
1111 task_schedule(global_listener_queue_task, expire);
1112 goto end;
1113
1114 limit_proxy:
1115 /* (re-)queue the listener to the proxy's queue and set it to expire no
1116 * later than <expire> ahead. The listener turns to LI_LIMITED.
1117 */
1118 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001119 if (p->task && tick_isset(expire))
1120 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001121 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001122}
1123
Willy Tarreau05f50472017-09-15 09:19:58 +02001124/* Notify the listener that a connection initiated from it was released. This
1125 * is used to keep the connection count consistent and to possibly re-open
1126 * listening when it was limited.
1127 */
1128void listener_release(struct listener *l)
1129{
1130 struct proxy *fe = l->bind_conf->frontend;
1131
1132 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +01001133 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001134 if (fe)
Olivier Houchard64213e92019-03-08 18:52:57 +01001135 _HA_ATOMIC_SUB(&fe->feconn, 1);
1136 _HA_ATOMIC_SUB(&l->nbconn, 1);
1137 _HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001138
1139 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001140 resume_listener(l);
1141
1142 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001143 dequeue_all_listeners();
Willy Tarreau05f50472017-09-15 09:19:58 +02001144
Olivier Houchard859dc802019-08-08 15:47:21 +02001145 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001146 (!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 +01001147 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001148}
1149
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001150/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1151static int listener_queue_init()
1152{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001153 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1154 if (!global_listener_queue_task) {
1155 ha_alert("Out of memory when initializing global listener queue\n");
1156 return ERR_FATAL|ERR_ABORT;
1157 }
1158 /* very simple initialization, users will queue the task if needed */
1159 global_listener_queue_task->context = NULL; /* not even a context! */
1160 global_listener_queue_task->process = manage_global_listener_queue;
1161
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001162 return 0;
1163}
1164
1165static void listener_queue_deinit()
1166{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001167 task_destroy(global_listener_queue_task);
1168 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001169}
1170
1171REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1172REGISTER_POST_DEINIT(listener_queue_deinit);
1173
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001174
1175/* This is the global management task for listeners. It enables listeners waiting
1176 * for global resources when there are enough free resource, or at least once in
1177 * a while. It is designed to be called as a task.
1178 */
1179static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
1180{
1181 /* If there are still too many concurrent connections, let's wait for
1182 * some of them to go away. We don't need to re-arm the timer because
1183 * each of them will scan the queue anyway.
1184 */
1185 if (unlikely(actconn >= global.maxconn))
1186 goto out;
1187
1188 /* We should periodically try to enable listeners waiting for a global
1189 * resource here, because it is possible, though very unlikely, that
1190 * they have been blocked by a temporary lack of global resource such
1191 * as a file descriptor or memory and that the temporary condition has
1192 * disappeared.
1193 */
1194 dequeue_all_listeners();
1195
1196 out:
1197 t->expire = TICK_ETERNITY;
1198 task_queue(t);
1199 return t;
1200}
1201
Willy Tarreau26982662012-09-12 23:17:10 +02001202/*
1203 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1204 * parsing sessions.
1205 */
1206void bind_register_keywords(struct bind_kw_list *kwl)
1207{
1208 LIST_ADDQ(&bind_keywords.list, &kwl->list);
1209}
1210
1211/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1212 * keyword is found with a NULL ->parse() function, then an attempt is made to
1213 * find one with a valid ->parse() function. This way it is possible to declare
1214 * platform-dependant, known keywords as NULL, then only declare them as valid
1215 * if some options are met. Note that if the requested keyword contains an
1216 * opening parenthesis, everything from this point is ignored.
1217 */
1218struct bind_kw *bind_find_kw(const char *kw)
1219{
1220 int index;
1221 const char *kwend;
1222 struct bind_kw_list *kwl;
1223 struct bind_kw *ret = NULL;
1224
1225 kwend = strchr(kw, '(');
1226 if (!kwend)
1227 kwend = kw + strlen(kw);
1228
1229 list_for_each_entry(kwl, &bind_keywords.list, list) {
1230 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1231 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1232 kwl->kw[index].kw[kwend-kw] == 0) {
1233 if (kwl->kw[index].parse)
1234 return &kwl->kw[index]; /* found it !*/
1235 else
1236 ret = &kwl->kw[index]; /* may be OK */
1237 }
1238 }
1239 }
1240 return ret;
1241}
1242
Willy Tarreau8638f482012-09-18 18:01:17 +02001243/* Dumps all registered "bind" keywords to the <out> string pointer. The
1244 * unsupported keywords are only dumped if their supported form was not
1245 * found.
1246 */
1247void bind_dump_kws(char **out)
1248{
1249 struct bind_kw_list *kwl;
1250 int index;
1251
Christopher Faulet784063e2020-05-18 12:14:18 +02001252 if (!out)
1253 return;
1254
Willy Tarreau8638f482012-09-18 18:01:17 +02001255 *out = NULL;
1256 list_for_each_entry(kwl, &bind_keywords.list, list) {
1257 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1258 if (kwl->kw[index].parse ||
1259 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001260 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1261 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001262 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001263 kwl->kw[index].skip ? " <arg>" : "",
1264 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001265 }
1266 }
1267 }
1268}
1269
Willy Tarreau645513a2010-05-24 20:55:15 +02001270/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001271/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001272/************************************************************************/
1273
Willy Tarreaua5e37562011-12-16 17:06:15 +01001274/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001275static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001276smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001277{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001278 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001279 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001280 return 1;
1281}
1282
Willy Tarreaua5e37562011-12-16 17:06:15 +01001283/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001284static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001285smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001286{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001287 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001288 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001289 return 1;
1290}
Jerome Magnineb421b22020-03-27 22:08:40 +01001291static int
1292smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1293{
1294 smp->data.u.str.area = smp->sess->listener->name;
1295 if (!smp->data.u.str.area)
1296 return 0;
1297
1298 smp->data.type = SMP_T_STR;
1299 smp->flags = SMP_F_CONST;
1300 smp->data.u.str.data = strlen(smp->data.u.str.area);
1301 return 1;
1302}
Willy Tarreau645513a2010-05-24 20:55:15 +02001303
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001304/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001305static 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 +02001306{
1307 struct listener *l;
1308
Willy Tarreau4348fad2012-09-20 16:48:07 +02001309 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001310 l->options |= LI_O_ACC_PROXY;
1311
1312 return 0;
1313}
1314
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001315/* parse the "accept-netscaler-cip" bind keyword */
1316static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1317{
1318 struct listener *l;
1319 uint32_t val;
1320
1321 if (!*args[cur_arg + 1]) {
1322 memprintf(err, "'%s' : missing value", args[cur_arg]);
1323 return ERR_ALERT | ERR_FATAL;
1324 }
1325
1326 val = atol(args[cur_arg + 1]);
1327 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001328 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001329 return ERR_ALERT | ERR_FATAL;
1330 }
1331
1332 list_for_each_entry(l, &conf->listeners, by_bind) {
1333 l->options |= LI_O_ACC_CIP;
1334 conf->ns_cip_magic = val;
1335 }
1336
1337 return 0;
1338}
1339
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001340/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001341static 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 +02001342{
1343 struct listener *l;
1344 int val;
1345
1346 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001347 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001348 return ERR_ALERT | ERR_FATAL;
1349 }
1350
1351 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001352 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001353 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001354 return ERR_ALERT | ERR_FATAL;
1355 }
1356
Willy Tarreau4348fad2012-09-20 16:48:07 +02001357 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001358 l->backlog = val;
1359
1360 return 0;
1361}
1362
1363/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001364static 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 +02001365{
1366 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001367 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001368 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001369
Willy Tarreau4348fad2012-09-20 16:48:07 +02001370 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001371 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001372 return ERR_ALERT | ERR_FATAL;
1373 }
1374
1375 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001376 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001377 return ERR_ALERT | ERR_FATAL;
1378 }
1379
Willy Tarreau4348fad2012-09-20 16:48:07 +02001380 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001381 new->luid = strtol(args[cur_arg + 1], &error, 10);
1382 if (*error != '\0') {
1383 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1384 return ERR_ALERT | ERR_FATAL;
1385 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001386 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001387
Willy Tarreau4348fad2012-09-20 16:48:07 +02001388 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001389 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001390 return ERR_ALERT | ERR_FATAL;
1391 }
1392
Willy Tarreau4348fad2012-09-20 16:48:07 +02001393 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001394 if (node) {
1395 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001396 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1397 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1398 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001399 return ERR_ALERT | ERR_FATAL;
1400 }
1401
Willy Tarreau4348fad2012-09-20 16:48:07 +02001402 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001403 return 0;
1404}
1405
1406/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001407static 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 +02001408{
1409 struct listener *l;
1410 int val;
1411
1412 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001413 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001414 return ERR_ALERT | ERR_FATAL;
1415 }
1416
1417 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001418 if (val < 0) {
1419 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001420 return ERR_ALERT | ERR_FATAL;
1421 }
1422
Willy Tarreau4348fad2012-09-20 16:48:07 +02001423 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001424 l->maxconn = val;
1425
1426 return 0;
1427}
1428
1429/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001430static 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 +02001431{
1432 struct listener *l;
1433
1434 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001435 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001436 return ERR_ALERT | ERR_FATAL;
1437 }
1438
Willy Tarreau4348fad2012-09-20 16:48:07 +02001439 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001440 l->name = strdup(args[cur_arg + 1]);
1441
1442 return 0;
1443}
1444
1445/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001446static 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 +02001447{
1448 struct listener *l;
1449 int val;
1450
1451 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001452 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001453 return ERR_ALERT | ERR_FATAL;
1454 }
1455
1456 val = atol(args[cur_arg + 1]);
1457 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001458 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001459 return ERR_ALERT | ERR_FATAL;
1460 }
1461
Willy Tarreau4348fad2012-09-20 16:48:07 +02001462 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001463 l->nice = val;
1464
1465 return 0;
1466}
1467
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001468/* parse the "process" bind keyword */
1469static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1470{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001471 char *slash;
1472 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001473
Christopher Fauletc644fa92017-11-23 22:44:11 +01001474 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1475 *slash = 0;
1476
Willy Tarreauff9c9142019-02-07 10:39:36 +01001477 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001478 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001479 return ERR_ALERT | ERR_FATAL;
1480 }
1481
Christopher Fauletc644fa92017-11-23 22:44:11 +01001482 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001483 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001484 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1485 return ERR_ALERT | ERR_FATAL;
1486 }
1487 *slash = '/';
1488 }
1489
Willy Tarreaue26993c2020-09-03 07:18:55 +02001490 conf->settings.bind_proc |= proc;
1491 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001492 return 0;
1493}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001494
Christopher Fauleta717b992018-04-10 14:43:00 +02001495/* parse the "proto" bind keyword */
1496static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1497{
1498 struct ist proto;
1499
1500 if (!*args[cur_arg + 1]) {
1501 memprintf(err, "'%s' : missing value", args[cur_arg]);
1502 return ERR_ALERT | ERR_FATAL;
1503 }
1504
1505 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1506 conf->mux_proto = get_mux_proto(proto);
1507 if (!conf->mux_proto) {
1508 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1509 return ERR_ALERT | ERR_FATAL;
1510 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001511 return 0;
1512}
1513
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001514/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1515static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1516 struct proxy *defpx, const char *file, int line,
1517 char **err)
1518{
1519 if (too_many_args(1, args, err, NULL))
1520 return -1;
1521
1522 if (strcmp(args[1], "on") == 0)
1523 global.tune.options |= GTUNE_LISTENER_MQ;
1524 else if (strcmp(args[1], "off") == 0)
1525 global.tune.options &= ~GTUNE_LISTENER_MQ;
1526 else {
1527 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1528 return -1;
1529 }
1530 return 0;
1531}
1532
Willy Tarreau61612d42012-04-19 18:42:05 +02001533/* Note: must not be declared <const> as its list will be overwritten.
1534 * Please take care of keeping this list alphabetically sorted.
1535 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001536static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001537 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1538 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001539 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001540 { /* END */ },
1541}};
1542
Willy Tarreau0108d902018-11-25 19:14:37 +01001543INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1544
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001545/* Note: must not be declared <const> as its list will be overwritten.
1546 * Please take care of keeping this list alphabetically sorted.
1547 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001548static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001549 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001550}};
1551
Willy Tarreau0108d902018-11-25 19:14:37 +01001552INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1553
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001554/* Note: must not be declared <const> as its list will be overwritten.
1555 * Please take care of keeping this list alphabetically sorted, doing so helps
1556 * all code contributors.
1557 * Optional keywords are also declared with a NULL ->parse() function so that
1558 * the config parser can report an appropriate error when a known keyword was
1559 * not enabled.
1560 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001561static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001562 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001563 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1564 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1565 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1566 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1567 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1568 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001569 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001570 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001571 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001572}};
1573
Willy Tarreau0108d902018-11-25 19:14:37 +01001574INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1575
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001576/* config keyword parsers */
1577static struct cfg_kw_list cfg_kws = {ILH, {
1578 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1579 { 0, NULL, NULL }
1580}};
1581
1582INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1583
Willy Tarreau645513a2010-05-24 20:55:15 +02001584/*
1585 * Local variables:
1586 * c-indent-level: 8
1587 * c-basic-offset: 8
1588 * End:
1589 */