blob: 39f5b340f6e35e69b993fa7df813cc5e0e6d1dd2 [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{
Willy Tarreau58651b42020-09-24 16:03:29 +0200338 struct proxy *px = l->bind_conf->frontend;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200339 int ret = 1;
340
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100341 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200342
Willy Tarreau02e19752020-09-23 17:17:22 +0200343 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
344 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
345 goto end;
346
Willy Tarreau9b3a9322020-09-24 14:46:34 +0200347 if (l->state <= LI_PAUSED)
348 goto end;
349
Willy Tarreaub7436612020-08-28 19:51:44 +0200350 if (l->rx.proto->pause) {
Willy Tarreau092d8652014-07-07 20:22:12 +0200351 /* Returns < 0 in case of failure, 0 if the listener
352 * was totally stopped, or > 0 if correctly paused.
353 */
Willy Tarreaufb76bd52020-09-24 18:07:48 +0200354 ret = l->rx.proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200355
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200356 if (ret < 0) {
357 ret = 0;
358 goto end;
359 }
Willy Tarreaufb76bd52020-09-24 18:07:48 +0200360 ret = 1;
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 Tarreaua37b2442020-09-24 07:23:45 +0200365 listener_set_state(l, LI_PAUSED);
Willy Tarreau58651b42020-09-24 16:03:29 +0200366
367 if (px && !px->li_ready) {
368 ha_warning("Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
369 send_log(px, LOG_WARNING, "Paused %s %s.\n", proxy_cap_str(px->cap), px->id);
370 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200371 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100372 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200373 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200374}
375
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200376/* This function tries to resume a temporarily disabled listener. Paused, full,
377 * limited and disabled listeners are handled, which means that this function
378 * may replace enable_listener(). The resulting state will either be LI_READY
379 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200380 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200381 * foreground mode, and are ignored. If the listener was only in the assigned
382 * state, it's totally rebound. This can happen if a pause() has completely
383 * stopped it. If the resume fails, 0 is returned and an error might be
384 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200385 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100386int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200387{
Willy Tarreau58651b42020-09-24 16:03:29 +0200388 struct proxy *px = l->bind_conf->frontend;
389 int was_paused = px && px->li_paused;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200390 int ret = 1;
391
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100392 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200393
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200394 /* check that another thread didn't to the job in parallel (e.g. at the
395 * end of listen_accept() while we'd come from dequeue_all_listeners().
396 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200397 if (MT_LIST_ADDED(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200398 goto end;
399
William Lallemand095ba4c2017-06-01 17:38:50 +0200400 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau818a92e2020-09-03 07:50:19 +0200401 !(proc_mask(l->rx.settings->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200402 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100403
Willy Tarreau5d7f9ce2020-09-24 18:54:11 +0200404 if (l->state == LI_READY)
405 goto end;
406
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200407 if (l->state == LI_ASSIGNED) {
408 char msg[100];
409 int err;
410
Willy Tarreaub3580b12020-09-01 10:26:22 +0200411 err = l->rx.proto->listen(l, msg, sizeof(msg));
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200412 if (err & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100413 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200414 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100415 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200416
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200417 if (err & (ERR_FATAL | ERR_ABORT)) {
418 ret = 0;
419 goto end;
420 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200421 }
422
Willy Tarreauc6dac6c2020-09-23 17:34:22 +0200423 if (l->state < LI_PAUSED) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200424 ret = 0;
425 goto end;
426 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200427
Willy Tarreaub7436612020-08-28 19:51:44 +0200428 if (l->rx.proto->sock_prot == IPPROTO_TCP &&
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200429 l->state == LI_PAUSED &&
Willy Tarreau38ba6472020-08-27 08:16:52 +0200430 listen(l->rx.fd, listener_backlog(l)) != 0) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200431 ret = 0;
432 goto end;
433 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200434
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100435 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200436 listener_set_state(l, LI_FULL);
Willy Tarreau58651b42020-09-24 16:03:29 +0200437 goto done;
Willy Tarreaube58c382011-07-24 18:28:10 +0200438 }
439
Willy Tarreau38ba6472020-08-27 08:16:52 +0200440 fd_want_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200441 listener_set_state(l, LI_READY);
Willy Tarreau58651b42020-09-24 16:03:29 +0200442
443 done:
444 if (was_paused && !px->li_paused) {
445 ha_warning("Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
446 send_log(px, LOG_WARNING, "Resumed %s %s.\n", proxy_cap_str(px->cap), px->id);
447 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200448 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100449 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200450 return ret;
451}
452
Willy Tarreau87b09662015-04-03 00:22:06 +0200453/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200454 * it upon next close() using resume_listener().
455 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200456static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200457{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100458 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200459 if (l->state >= LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200460 MT_LIST_DEL(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100461 if (l->state != LI_FULL) {
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_FULL);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100464 }
Willy Tarreau62793712011-07-24 19:23:38 +0200465 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100466 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200467}
468
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200469/* Marks a ready listener as limited so that we only try to re-enable it when
470 * resources are free again. It will be queued into the specified queue.
471 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200472static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200473{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100474 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200475 if (l->state == LI_READY) {
Willy Tarreaude4db172020-07-10 08:10:29 +0200476 MT_LIST_TRY_ADDQ(list, &l->wait_queue);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200477 fd_stop_recv(l->rx.fd);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200478 listener_set_state(l, LI_LIMITED);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200479 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100480 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200481}
482
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100483/* This function adds all of the protocol's listener's file descriptors to the
484 * polling lists when they are in the LI_LISTEN state. It is intended to be
485 * used as a protocol's generic enable_all() primitive, for use after the
486 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
487 * their number of connections. It always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200488 *
489 * Must be called with proto_lock held.
490 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100491 */
492int enable_all_listeners(struct protocol *proto)
493{
494 struct listener *listener;
495
Willy Tarreaub7436612020-08-28 19:51:44 +0200496 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100497 enable_listener(listener);
498 return ERR_NONE;
499}
500
501/* This function removes all of the protocol's listener's file descriptors from
502 * the polling lists when they are in the LI_READY or LI_FULL states. It is
503 * intended to be used as a protocol's generic disable_all() primitive. It puts
504 * the listeners into LI_LISTEN, and always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200505 *
506 * Must be called with proto_lock held.
507 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100508 */
509int disable_all_listeners(struct protocol *proto)
510{
511 struct listener *listener;
512
Willy Tarreaub7436612020-08-28 19:51:44 +0200513 list_for_each_entry(listener, &proto->listeners, rx.proto_list)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100514 disable_listener(listener);
515 return ERR_NONE;
516}
517
Willy Tarreau241797a2019-12-10 14:10:52 +0100518/* Dequeues all listeners waiting for a resource the global wait queue */
519void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200520{
Willy Tarreau01abd022019-02-28 10:27:18 +0100521 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200522
Willy Tarreau241797a2019-12-10 14:10:52 +0100523 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200524 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100525 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200526 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100527 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200528 }
529}
530
Willy Tarreau241797a2019-12-10 14:10:52 +0100531/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
532void dequeue_proxy_listeners(struct proxy *px)
533{
534 struct listener *listener;
535
536 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
537 /* This cannot fail because the listeners are by definition in
538 * the LI_LIMITED state.
539 */
540 resume_listener(listener);
541 }
542}
543
Christopher Faulet510c0d62018-03-16 10:04:47 +0100544/* Must be called with the lock held. Depending on <do_close> value, it does
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200545 * what unbind_listener or unbind_listener_no_close should do. It can also
546 * close a zombie listener's FD when called in early states.
Christopher Faulet510c0d62018-03-16 10:04:47 +0100547 */
548void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100549{
Olivier Houcharda5188562019-03-08 15:35:42 +0100550 if (listener->state == LI_READY && fd_updt)
Willy Tarreau38ba6472020-08-27 08:16:52 +0200551 fd_stop_recv(listener->rx.fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100552
Olivier Houchard859dc802019-08-08 15:47:21 +0200553 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200554
Willy Tarreaube58c382011-07-24 18:28:10 +0200555 if (listener->state >= LI_PAUSED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200556 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreau38ba6472020-08-27 08:16:52 +0200557 fd_stop_both(listener->rx.fd);
Willy Tarreaub6607bf2020-09-23 16:24:23 +0200558 }
559
560 if (do_close && listener->rx.fd != -1) {
561 fd_delete(listener->rx.fd);
562 listener->rx.flags &= ~RX_F_BOUND;
563 listener->rx.fd = -1;
Willy Tarreaub648d632007-10-28 22:13:50 +0100564 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100565}
566
Olivier Houchard1fc05162017-04-06 01:05:05 +0200567/* This function closes the listening socket for the specified listener,
568 * provided that it's already in a listening state. The listener enters the
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100569 * LI_ASSIGNED state. This function is intended to be used as a generic
570 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200571 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100572void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200573{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100574 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100575 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100576 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200577}
578
579/* This function pretends the listener is dead, but keeps the FD opened, so
580 * that we can provide it, for conf reloading.
581 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100582void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200583{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100584 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100585 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100586 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200587}
588
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200589/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
590 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200591 * allocation). The address family is taken from ss->ss_family, and the protocol
592 * passed in <proto> must be usable on this family. The number of jobs and
593 * listeners is automatically increased by the number of listeners created. It
594 * returns non-zero on success, zero on error with the error message set in <err>.
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200595 */
596int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200597 int portl, int porth, int fd, struct protocol *proto, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200598{
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200599 struct listener *l;
600 int port;
601
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200602 for (port = portl; port <= porth; port++) {
603 l = calloc(1, sizeof(*l));
604 if (!l) {
605 memprintf(err, "out of memory");
606 return 0;
607 }
608 l->obj_type = OBJ_TYPE_LISTENER;
609 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
610 LIST_ADDQ(&bc->listeners, &l->by_bind);
611 l->bind_conf = bc;
Willy Tarreau0fce6bc2020-09-03 07:46:06 +0200612 l->rx.settings = &bc->settings;
Willy Tarreaueef45422020-09-03 10:05:03 +0200613 l->rx.owner = l;
Willy Tarreau38ba6472020-08-27 08:16:52 +0200614 l->rx.fd = fd;
Willy Tarreau37159062020-08-27 07:48:42 +0200615 memcpy(&l->rx.addr, ss, sizeof(*ss));
Olivier Houchard859dc802019-08-08 15:47:21 +0200616 MT_LIST_INIT(&l->wait_queue);
Willy Tarreaua37b2442020-09-24 07:23:45 +0200617 listener_set_state(l, LI_INIT);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200618
619 proto->add(l, port);
620
Willy Tarreau909c23b2020-09-15 13:50:58 +0200621 if (fd != -1)
Willy Tarreau43046fa2020-09-01 15:41:59 +0200622 l->rx.flags |= RX_F_INHERITED;
William Lallemand75ea0a02017-11-15 19:02:58 +0100623
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100624 HA_SPIN_INIT(&l->lock);
Olivier Houchard64213e92019-03-08 18:52:57 +0100625 _HA_ATOMIC_ADD(&jobs, 1);
626 _HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200627 }
628 return 1;
629}
630
Willy Tarreau1a64d162007-10-28 22:26:05 +0100631/* Delete a listener from its protocol's list of listeners. The listener's
632 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200633 * number of listeners is updated, as well as the global number of listeners
634 * and jobs. Note that the listener must have previously been unbound. This
635 * is the generic function to use to remove a listener.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200636 *
637 * Will grab the proto_lock.
638 *
Willy Tarreau1a64d162007-10-28 22:26:05 +0100639 */
640void delete_listener(struct listener *listener)
641{
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200642 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100643 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100644 if (listener->state == LI_ASSIGNED) {
Willy Tarreaua37b2442020-09-24 07:23:45 +0200645 listener_set_state(listener, LI_INIT);
Willy Tarreaub7436612020-08-28 19:51:44 +0200646 LIST_DEL(&listener->rx.proto_list);
647 listener->rx.proto->nb_listeners--;
Olivier Houchard64213e92019-03-08 18:52:57 +0100648 _HA_ATOMIC_SUB(&jobs, 1);
649 _HA_ATOMIC_SUB(&listeners, 1);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100650 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100651 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200652 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100653}
654
Willy Tarreaue2711c72019-02-27 15:39:41 +0100655/* Returns a suitable value for a listener's backlog. It uses the listener's,
656 * otherwise the frontend's backlog, otherwise the listener's maxconn,
657 * otherwise the frontend's maxconn, otherwise 1024.
658 */
659int listener_backlog(const struct listener *l)
660{
661 if (l->backlog)
662 return l->backlog;
663
664 if (l->bind_conf->frontend->backlog)
665 return l->bind_conf->frontend->backlog;
666
667 if (l->maxconn)
668 return l->maxconn;
669
670 if (l->bind_conf->frontend->maxconn)
671 return l->bind_conf->frontend->maxconn;
672
673 return 1024;
674}
675
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200676/* This function is called on a read event from a listening socket, corresponding
677 * to an accept. It tries to accept as many connections as possible, and for each
678 * calls the listener's accept handler (generally the frontend's accept handler).
679 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200680void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200681{
682 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100683 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200684 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100685 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100686 int next_feconn = 0;
687 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200688 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200689 int cfd;
690 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100691#ifdef USE_ACCEPT4
692 static int accept4_broken;
693#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200694
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100695 if (!l)
696 return;
697 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200698
699 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
700 * illimited, but it is probably enough.
701 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100702 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200703
Willy Tarreau93e7c002013-10-07 18:51:07 +0200704 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
705 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200706
707 if (unlikely(!max)) {
708 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200709 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100710 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200711 }
712
713 if (max_accept > max)
714 max_accept = max;
715 }
716
717 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200718 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
719
720 if (unlikely(!max)) {
721 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200722 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100723 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200724 }
725
726 if (max_accept > max)
727 max_accept = max;
728 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200729#ifdef USE_OPENSSL
730 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
731 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200732
Willy Tarreaue43d5322013-10-07 20:01:52 +0200733 if (unlikely(!max)) {
734 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200735 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100736 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200737 }
738
739 if (max_accept > max)
740 max_accept = max;
741 }
742#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200743 if (p && p->fe_sps_lim) {
744 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
745
746 if (unlikely(!max)) {
747 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100748 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
749 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200750 }
751
752 if (max_accept > max)
753 max_accept = max;
754 }
755
756 /* Note: if we fail to allocate a connection because of configured
757 * limits, we'll schedule a new attempt worst 1 second later in the
758 * worst case. If we fail due to system limits or temporary resource
759 * shortage, we try again 100ms later in the worst case.
760 */
Christopher Faulet102854c2019-04-30 12:17:13 +0200761 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200762 struct sockaddr_storage addr;
763 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200764 unsigned int count;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200765 __decl_thread(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200766
Willy Tarreau82c97892019-02-27 19:32:32 +0100767 /* pre-increase the number of connections without going too far.
768 * We process the listener, then the proxy, then the process.
769 * We know which ones to unroll based on the next_xxx value.
770 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100771 do {
772 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100773 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100774 /* the listener was marked full or another
775 * thread is going to do it.
776 */
777 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100778 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100779 goto end;
780 }
781 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000782 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100783
Willy Tarreau82c97892019-02-27 19:32:32 +0100784 if (p) {
785 do {
786 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100787 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100788 /* the frontend was marked full or another
789 * thread is going to do it.
790 */
791 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100792 expire = TICK_ETERNITY;
793 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100794 }
795 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100796 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200797 }
798
Willy Tarreau82c97892019-02-27 19:32:32 +0100799 if (!(l->options & LI_O_UNLIMITED)) {
800 do {
801 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100802 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100803 /* the process was marked full or another
804 * thread is going to do it.
805 */
806 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100807 expire = tick_add(now_ms, 1000); /* try again in 1 second */
808 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100809 }
810 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000811 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200812 }
813
William Lallemand2fe7dd02018-09-11 16:51:29 +0200814 /* with sockpair@ we don't want to do an accept */
Willy Tarreau37159062020-08-27 07:48:42 +0200815 if (unlikely(l->rx.addr.ss_family == AF_CUST_SOCKPAIR)) {
William Lallemand2fe7dd02018-09-11 16:51:29 +0200816 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100817 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100818 /* just like with UNIX sockets, only the family is filled */
819 addr.ss_family = AF_UNIX;
820 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200821 } else
822
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200823#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100824 /* only call accept4() if it's known to be safe, otherwise
825 * fallback to the legacy accept() + fcntl().
826 */
827 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100828 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100829 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
830 (accept4_broken = 1))))
831#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200832 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100833 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100834
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200835 if (unlikely(cfd == -1)) {
836 switch (errno) {
837 case EAGAIN:
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100838 if (fdtab[fd].ev & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreaubb660302014-05-07 19:47:02 +0200839 /* the listening socket might have been disabled in a shared
840 * process and we're a collateral victim. We'll just pause for
841 * a while in case it comes back. In the mean time, we need to
842 * clear this sticky flag.
843 */
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100844 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreaubb660302014-05-07 19:47:02 +0200845 goto transient_error;
846 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200847 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200848 case EINVAL:
849 /* might be trying to accept on a shut fd (eg: soft stop) */
850 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100851 case EINTR:
852 case ECONNABORTED:
Olivier Houchard64213e92019-03-08 18:52:57 +0100853 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100854 if (p)
Olivier Houchard64213e92019-03-08 18:52:57 +0100855 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100856 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +0100857 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100858 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200859 case ENFILE:
860 if (p)
861 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100862 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
863 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200864 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200865 case EMFILE:
866 if (p)
867 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100868 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
869 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200870 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200871 case ENOBUFS:
872 case ENOMEM:
873 if (p)
874 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100875 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
876 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200877 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200878 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100879 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau92079932019-12-10 09:30:05 +0100880 max_accept = 0;
881 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200882 }
883 }
884
William Lallemandd9138002018-11-27 12:02:39 +0100885 /* we don't want to leak the FD upon reload if it's in the master */
886 if (unlikely(master == 1))
887 fcntl(cfd, F_SETFD, FD_CLOEXEC);
888
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100889 /* The connection was accepted, it must be counted as such */
890 if (l->counters)
891 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
892
Willy Tarreau82c97892019-02-27 19:32:32 +0100893 if (p)
894 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
895
896 proxy_inc_fe_conn_ctr(l, p);
897
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100898 if (!(l->options & LI_O_UNLIMITED)) {
899 count = update_freq_ctr(&global.conn_per_sec, 1);
900 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100901 }
902
Willy Tarreau64a9c052019-04-12 15:27:17 +0200903 _HA_ATOMIC_ADD(&activity[tid].accepted, 1);
904
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200905 if (unlikely(cfd >= global.maxsock)) {
906 send_log(p, LOG_EMERG,
907 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
908 p->id);
909 close(cfd);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100910 expire = tick_add(now_ms, 1000); /* try again in 1 second */
911 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200912 }
913
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100914 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100915 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
916 * allows the error path not to rollback on nbconn. It's more
917 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100918 */
919 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100920 next_feconn = 0;
921 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200922
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100923#if defined(USE_THREAD)
Willy Tarreau818a92e2020-09-03 07:50:19 +0200924 mask = thread_mask(l->rx.settings->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100925 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100926 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100927 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100928
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100929 /* The principle is that we have two running indexes,
930 * each visiting in turn all threads bound to this
931 * listener. The connection will be assigned to the one
932 * with the least connections, and the other one will
933 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100934 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100935 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100936 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100937
938 /* keep a copy for the final update. thr_idx is composite
939 * and made of (t2<<16) + t1.
940 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100941 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100942 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100943 unsigned long m1, m2;
944 int q1, q2;
945
946 t2 = t1 = t0;
947 t2 >>= 16;
948 t1 &= 0xFFFF;
949
950 /* t1 walks low to high bits ;
951 * t2 walks high to low.
952 */
953 m1 = mask >> t1;
954 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
955
Willy Tarreau85d04242019-04-16 18:09:13 +0200956 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100957 m1 &= ~1UL;
958 if (!m1) {
959 m1 = mask;
960 t1 = 0;
961 }
962 t1 += my_ffsl(m1) - 1;
963 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100964
Willy Tarreau85d04242019-04-16 18:09:13 +0200965 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
966 /* highest bit not set */
967 if (!m2)
968 m2 = mask;
969
970 t2 = my_flsl(m2) - 1;
971 }
972
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100973 /* now we have two distinct thread IDs belonging to the mask */
974 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
975 if (q1 >= ACCEPT_QUEUE_SIZE)
976 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100977
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100978 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
979 if (q2 >= ACCEPT_QUEUE_SIZE)
980 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100981
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100982 /* we have 3 possibilities now :
983 * q1 < q2 : t1 is less loaded than t2, so we pick it
984 * and update t2 (since t1 might still be
985 * lower than another thread)
986 * q1 > q2 : t2 is less loaded than t1, so we pick it
987 * and update t1 (since t2 might still be
988 * lower than another thread)
989 * q1 = q2 : both are equally loaded, thus we pick t1
990 * and update t1 as it will become more loaded
991 * than t2.
992 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100993
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100994 q1 += l->thr_conn[t1];
995 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100996
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100997 if (q1 - q2 < 0) {
998 t = t1;
999 t2 = t2 ? t2 - 1 : LONGBITS - 1;
1000 }
1001 else if (q1 - q2 > 0) {
1002 t = t2;
1003 t1++;
1004 if (t1 >= LONGBITS)
1005 t1 = 0;
1006 }
1007 else {
1008 t = t1;
1009 t1++;
1010 if (t1 >= LONGBITS)
1011 t1 = 0;
1012 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001013
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001014 /* new value for thr_idx */
1015 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +01001016 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001017
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001018 /* We successfully selected the best thread "t" for this
1019 * connection. We use deferred accepts even if it's the
1020 * local thread because tests show that it's the best
1021 * performing model, likely due to better cache locality
1022 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001023 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +01001024 ring = &accept_queue_rings[t];
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001025 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Olivier Houchard64213e92019-03-08 18:52:57 +01001026 _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001027 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001028 continue;
1029 }
1030 /* If the ring is full we do a synchronous accept on
1031 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001032 */
Olivier Houchard64213e92019-03-08 18:52:57 +01001033 _HA_ATOMIC_ADD(&activity[t].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001034 }
1035#endif // USE_THREAD
1036
Olivier Houchard64213e92019-03-08 18:52:57 +01001037 _HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001038 ret = l->accept(l, cfd, &addr);
1039 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001040 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001041 * we just have to ignore it (ret == 0) or it's a critical
1042 * error due to a resource shortage, and we must stop the
1043 * listener (ret < 0).
1044 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001045 if (ret == 0) /* successful termination */
1046 continue;
1047
Willy Tarreaubb660302014-05-07 19:47:02 +02001048 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001049 }
1050
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001051 /* increase the per-process number of cumulated sessions, this
1052 * may only be done once l->accept() has accepted the connection.
1053 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001054 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001055 count = update_freq_ctr(&global.sess_per_sec, 1);
1056 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001057 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001058#ifdef USE_OPENSSL
1059 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001060 count = update_freq_ctr(&global.ssl_per_sec, 1);
1061 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001062 }
1063#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001064
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001065 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001066 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001067
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001068 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001069 if (next_conn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001070 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001071
Willy Tarreau82c97892019-02-27 19:32:32 +01001072 if (p && next_feconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001073 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001074
1075 if (next_actconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001076 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001077
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001078 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreaucdcba112019-12-11 15:06:30 +01001079 (l->state == LI_LIMITED &&
1080 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1081 (!tick_isset(global_listener_queue_task->expire) ||
1082 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001083 /* at least one thread has to this when quitting */
1084 resume_listener(l);
1085
1086 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001087 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001088
Olivier Houchard859dc802019-08-08 15:47:21 +02001089 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001090 (!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 +01001091 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001092 }
Willy Tarreau4c044e22019-12-05 07:40:32 +01001093
Willy Tarreau92079932019-12-10 09:30:05 +01001094 /* Now it's getting tricky. The listener was supposed to be in LI_READY
1095 * state but in the mean time we might have changed it to LI_FULL or
1096 * LI_LIMITED, and another thread might also have turned it to
1097 * LI_PAUSED, LI_LISTEN or even LI_INI when stopping a proxy. We must
1098 * be certain to keep the FD enabled when in the READY state but we
1099 * must also stop it for other states that we might have switched to
1100 * while others re-enabled polling.
1101 */
1102 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
1103 if (l->state == LI_READY) {
1104 if (max_accept > 0)
1105 fd_cant_recv(fd);
1106 else
1107 fd_done_recv(fd);
1108 } else if (l->state > LI_ASSIGNED) {
Willy Tarreau38ba6472020-08-27 08:16:52 +02001109 fd_stop_recv(l->rx.fd);
Willy Tarreau92079932019-12-10 09:30:05 +01001110 }
1111 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001112 return;
1113
1114 transient_error:
1115 /* pause the listener for up to 100 ms */
1116 expire = tick_add(now_ms, 100);
1117
1118 limit_global:
1119 /* (re-)queue the listener to the global queue and set it to expire no
1120 * later than <expire> ahead. The listener turns to LI_LIMITED.
1121 */
1122 limit_listener(l, &global_listener_queue);
1123 task_schedule(global_listener_queue_task, expire);
1124 goto end;
1125
1126 limit_proxy:
1127 /* (re-)queue the listener to the proxy's queue and set it to expire no
1128 * later than <expire> ahead. The listener turns to LI_LIMITED.
1129 */
1130 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001131 if (p->task && tick_isset(expire))
1132 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001133 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001134}
1135
Willy Tarreau05f50472017-09-15 09:19:58 +02001136/* Notify the listener that a connection initiated from it was released. This
1137 * is used to keep the connection count consistent and to possibly re-open
1138 * listening when it was limited.
1139 */
1140void listener_release(struct listener *l)
1141{
1142 struct proxy *fe = l->bind_conf->frontend;
1143
1144 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +01001145 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001146 if (fe)
Olivier Houchard64213e92019-03-08 18:52:57 +01001147 _HA_ATOMIC_SUB(&fe->feconn, 1);
1148 _HA_ATOMIC_SUB(&l->nbconn, 1);
1149 _HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001150
1151 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001152 resume_listener(l);
1153
1154 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001155 dequeue_all_listeners();
Willy Tarreau05f50472017-09-15 09:19:58 +02001156
Olivier Houchard859dc802019-08-08 15:47:21 +02001157 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001158 (!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 +01001159 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001160}
1161
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001162/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1163static int listener_queue_init()
1164{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001165 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1166 if (!global_listener_queue_task) {
1167 ha_alert("Out of memory when initializing global listener queue\n");
1168 return ERR_FATAL|ERR_ABORT;
1169 }
1170 /* very simple initialization, users will queue the task if needed */
1171 global_listener_queue_task->context = NULL; /* not even a context! */
1172 global_listener_queue_task->process = manage_global_listener_queue;
1173
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001174 return 0;
1175}
1176
1177static void listener_queue_deinit()
1178{
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001179 task_destroy(global_listener_queue_task);
1180 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001181}
1182
1183REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1184REGISTER_POST_DEINIT(listener_queue_deinit);
1185
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001186
1187/* This is the global management task for listeners. It enables listeners waiting
1188 * for global resources when there are enough free resource, or at least once in
1189 * a while. It is designed to be called as a task.
1190 */
1191static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
1192{
1193 /* If there are still too many concurrent connections, let's wait for
1194 * some of them to go away. We don't need to re-arm the timer because
1195 * each of them will scan the queue anyway.
1196 */
1197 if (unlikely(actconn >= global.maxconn))
1198 goto out;
1199
1200 /* We should periodically try to enable listeners waiting for a global
1201 * resource here, because it is possible, though very unlikely, that
1202 * they have been blocked by a temporary lack of global resource such
1203 * as a file descriptor or memory and that the temporary condition has
1204 * disappeared.
1205 */
1206 dequeue_all_listeners();
1207
1208 out:
1209 t->expire = TICK_ETERNITY;
1210 task_queue(t);
1211 return t;
1212}
1213
Willy Tarreau26982662012-09-12 23:17:10 +02001214/*
1215 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1216 * parsing sessions.
1217 */
1218void bind_register_keywords(struct bind_kw_list *kwl)
1219{
1220 LIST_ADDQ(&bind_keywords.list, &kwl->list);
1221}
1222
1223/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1224 * keyword is found with a NULL ->parse() function, then an attempt is made to
1225 * find one with a valid ->parse() function. This way it is possible to declare
1226 * platform-dependant, known keywords as NULL, then only declare them as valid
1227 * if some options are met. Note that if the requested keyword contains an
1228 * opening parenthesis, everything from this point is ignored.
1229 */
1230struct bind_kw *bind_find_kw(const char *kw)
1231{
1232 int index;
1233 const char *kwend;
1234 struct bind_kw_list *kwl;
1235 struct bind_kw *ret = NULL;
1236
1237 kwend = strchr(kw, '(');
1238 if (!kwend)
1239 kwend = kw + strlen(kw);
1240
1241 list_for_each_entry(kwl, &bind_keywords.list, list) {
1242 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1243 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1244 kwl->kw[index].kw[kwend-kw] == 0) {
1245 if (kwl->kw[index].parse)
1246 return &kwl->kw[index]; /* found it !*/
1247 else
1248 ret = &kwl->kw[index]; /* may be OK */
1249 }
1250 }
1251 }
1252 return ret;
1253}
1254
Willy Tarreau8638f482012-09-18 18:01:17 +02001255/* Dumps all registered "bind" keywords to the <out> string pointer. The
1256 * unsupported keywords are only dumped if their supported form was not
1257 * found.
1258 */
1259void bind_dump_kws(char **out)
1260{
1261 struct bind_kw_list *kwl;
1262 int index;
1263
Christopher Faulet784063e2020-05-18 12:14:18 +02001264 if (!out)
1265 return;
1266
Willy Tarreau8638f482012-09-18 18:01:17 +02001267 *out = NULL;
1268 list_for_each_entry(kwl, &bind_keywords.list, list) {
1269 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1270 if (kwl->kw[index].parse ||
1271 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001272 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1273 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001274 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001275 kwl->kw[index].skip ? " <arg>" : "",
1276 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001277 }
1278 }
1279 }
1280}
1281
Willy Tarreau645513a2010-05-24 20:55:15 +02001282/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001283/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001284/************************************************************************/
1285
Willy Tarreaua5e37562011-12-16 17:06:15 +01001286/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001287static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001288smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001289{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001290 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001291 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001292 return 1;
1293}
1294
Willy Tarreaua5e37562011-12-16 17:06:15 +01001295/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001296static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001297smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001298{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001299 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001300 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001301 return 1;
1302}
Jerome Magnineb421b22020-03-27 22:08:40 +01001303static int
1304smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1305{
1306 smp->data.u.str.area = smp->sess->listener->name;
1307 if (!smp->data.u.str.area)
1308 return 0;
1309
1310 smp->data.type = SMP_T_STR;
1311 smp->flags = SMP_F_CONST;
1312 smp->data.u.str.data = strlen(smp->data.u.str.area);
1313 return 1;
1314}
Willy Tarreau645513a2010-05-24 20:55:15 +02001315
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001316/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001317static 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 +02001318{
1319 struct listener *l;
1320
Willy Tarreau4348fad2012-09-20 16:48:07 +02001321 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001322 l->options |= LI_O_ACC_PROXY;
1323
1324 return 0;
1325}
1326
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001327/* parse the "accept-netscaler-cip" bind keyword */
1328static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1329{
1330 struct listener *l;
1331 uint32_t val;
1332
1333 if (!*args[cur_arg + 1]) {
1334 memprintf(err, "'%s' : missing value", args[cur_arg]);
1335 return ERR_ALERT | ERR_FATAL;
1336 }
1337
1338 val = atol(args[cur_arg + 1]);
1339 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001340 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001341 return ERR_ALERT | ERR_FATAL;
1342 }
1343
1344 list_for_each_entry(l, &conf->listeners, by_bind) {
1345 l->options |= LI_O_ACC_CIP;
1346 conf->ns_cip_magic = val;
1347 }
1348
1349 return 0;
1350}
1351
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001352/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001353static 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 +02001354{
1355 struct listener *l;
1356 int val;
1357
1358 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001359 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001360 return ERR_ALERT | ERR_FATAL;
1361 }
1362
1363 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001364 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001365 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001366 return ERR_ALERT | ERR_FATAL;
1367 }
1368
Willy Tarreau4348fad2012-09-20 16:48:07 +02001369 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001370 l->backlog = val;
1371
1372 return 0;
1373}
1374
1375/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001376static 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 +02001377{
1378 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001379 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001380 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001381
Willy Tarreau4348fad2012-09-20 16:48:07 +02001382 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001383 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001384 return ERR_ALERT | ERR_FATAL;
1385 }
1386
1387 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001388 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001389 return ERR_ALERT | ERR_FATAL;
1390 }
1391
Willy Tarreau4348fad2012-09-20 16:48:07 +02001392 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001393 new->luid = strtol(args[cur_arg + 1], &error, 10);
1394 if (*error != '\0') {
1395 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1396 return ERR_ALERT | ERR_FATAL;
1397 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001398 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001399
Willy Tarreau4348fad2012-09-20 16:48:07 +02001400 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001401 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001402 return ERR_ALERT | ERR_FATAL;
1403 }
1404
Willy Tarreau4348fad2012-09-20 16:48:07 +02001405 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001406 if (node) {
1407 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001408 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1409 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1410 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001411 return ERR_ALERT | ERR_FATAL;
1412 }
1413
Willy Tarreau4348fad2012-09-20 16:48:07 +02001414 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001415 return 0;
1416}
1417
1418/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001419static 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 +02001420{
1421 struct listener *l;
1422 int val;
1423
1424 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001425 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001426 return ERR_ALERT | ERR_FATAL;
1427 }
1428
1429 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001430 if (val < 0) {
1431 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001432 return ERR_ALERT | ERR_FATAL;
1433 }
1434
Willy Tarreau4348fad2012-09-20 16:48:07 +02001435 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001436 l->maxconn = val;
1437
1438 return 0;
1439}
1440
1441/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001442static 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 +02001443{
1444 struct listener *l;
1445
1446 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001447 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001448 return ERR_ALERT | ERR_FATAL;
1449 }
1450
Willy Tarreau4348fad2012-09-20 16:48:07 +02001451 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001452 l->name = strdup(args[cur_arg + 1]);
1453
1454 return 0;
1455}
1456
1457/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001458static 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 +02001459{
1460 struct listener *l;
1461 int val;
1462
1463 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001464 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001465 return ERR_ALERT | ERR_FATAL;
1466 }
1467
1468 val = atol(args[cur_arg + 1]);
1469 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001470 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001471 return ERR_ALERT | ERR_FATAL;
1472 }
1473
Willy Tarreau4348fad2012-09-20 16:48:07 +02001474 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001475 l->nice = val;
1476
1477 return 0;
1478}
1479
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001480/* parse the "process" bind keyword */
1481static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1482{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001483 char *slash;
1484 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001485
Christopher Fauletc644fa92017-11-23 22:44:11 +01001486 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1487 *slash = 0;
1488
Willy Tarreauff9c9142019-02-07 10:39:36 +01001489 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001490 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001491 return ERR_ALERT | ERR_FATAL;
1492 }
1493
Christopher Fauletc644fa92017-11-23 22:44:11 +01001494 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001495 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001496 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1497 return ERR_ALERT | ERR_FATAL;
1498 }
1499 *slash = '/';
1500 }
1501
Willy Tarreaue26993c2020-09-03 07:18:55 +02001502 conf->settings.bind_proc |= proc;
1503 conf->settings.bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001504 return 0;
1505}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001506
Christopher Fauleta717b992018-04-10 14:43:00 +02001507/* parse the "proto" bind keyword */
1508static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1509{
1510 struct ist proto;
1511
1512 if (!*args[cur_arg + 1]) {
1513 memprintf(err, "'%s' : missing value", args[cur_arg]);
1514 return ERR_ALERT | ERR_FATAL;
1515 }
1516
1517 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1518 conf->mux_proto = get_mux_proto(proto);
1519 if (!conf->mux_proto) {
1520 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1521 return ERR_ALERT | ERR_FATAL;
1522 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001523 return 0;
1524}
1525
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001526/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1527static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1528 struct proxy *defpx, const char *file, int line,
1529 char **err)
1530{
1531 if (too_many_args(1, args, err, NULL))
1532 return -1;
1533
1534 if (strcmp(args[1], "on") == 0)
1535 global.tune.options |= GTUNE_LISTENER_MQ;
1536 else if (strcmp(args[1], "off") == 0)
1537 global.tune.options &= ~GTUNE_LISTENER_MQ;
1538 else {
1539 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1540 return -1;
1541 }
1542 return 0;
1543}
1544
Willy Tarreau61612d42012-04-19 18:42:05 +02001545/* 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 sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001549 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1550 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001551 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001552 { /* END */ },
1553}};
1554
Willy Tarreau0108d902018-11-25 19:14:37 +01001555INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1556
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001557/* Note: must not be declared <const> as its list will be overwritten.
1558 * Please take care of keeping this list alphabetically sorted.
1559 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001560static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001561 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001562}};
1563
Willy Tarreau0108d902018-11-25 19:14:37 +01001564INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1565
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001566/* Note: must not be declared <const> as its list will be overwritten.
1567 * Please take care of keeping this list alphabetically sorted, doing so helps
1568 * all code contributors.
1569 * Optional keywords are also declared with a NULL ->parse() function so that
1570 * the config parser can report an appropriate error when a known keyword was
1571 * not enabled.
1572 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001573static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001574 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001575 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1576 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1577 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1578 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1579 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1580 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001581 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001582 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001583 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001584}};
1585
Willy Tarreau0108d902018-11-25 19:14:37 +01001586INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1587
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001588/* config keyword parsers */
1589static struct cfg_kw_list cfg_kws = {ILH, {
1590 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1591 { 0, NULL, NULL }
1592}};
1593
1594INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1595
Willy Tarreau645513a2010-05-24 20:55:15 +02001596/*
1597 * Local variables:
1598 * c-indent-level: 8
1599 * c-basic-offset: 8
1600 * End:
1601 */