blob: 01feee58f2544893a6e7ff8a29dd892ed4cd311e [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
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +010021#include <common/cfgparse.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020022#include <common/config.h>
Willy Tarreaudabf2e22007-10-28 21:59:24 +010023#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010024#include <common/initcall.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020025#include <common/mini-clist.h>
26#include <common/standard.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020027#include <common/time.h>
28
29#include <types/global.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020030#include <types/protocol.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020031
Willy Tarreau645513a2010-05-24 20:55:15 +020032#include <proto/acl.h>
Christopher Fauleta717b992018-04-10 14:43:00 +020033#include <proto/connection.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010034#include <proto/fd.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020035#include <proto/freq_ctr.h>
36#include <proto/log.h>
Willy Tarreau7a798e52016-04-14 11:13:20 +020037#include <proto/listener.h>
Willy Tarreau0de59fd2017-09-15 08:10:44 +020038#include <proto/protocol.h>
William Lallemand2fe7dd02018-09-11 16:51:29 +020039#include <proto/proto_sockpair.h>
Willy Tarreau0ccb7442013-01-07 22:54:17 +010040#include <proto/sample.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020041#include <proto/stream.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020042#include <proto/task.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010043
Willy Tarreau26982662012-09-12 23:17:10 +020044/* List head of all known bind keywords */
45static struct bind_kw_list bind_keywords = {
46 .list = LIST_HEAD_INIT(bind_keywords.list)
47};
48
Olivier Houchardf73629d2017-04-05 22:33:04 +020049struct xfer_sock_list *xfer_sock_list = NULL;
50
Willy Tarreauf2cb1692019-07-11 10:08:31 +020051/* there is one listener queue per thread so that a thread unblocking the
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +050052 * global queue can wake up listeners bound only to foreign threads by
Willy Tarreau2bd65a72019-09-24 06:55:18 +020053 * moving them to the remote queues and waking up the associated tasklet.
Willy Tarreauf2cb1692019-07-11 10:08:31 +020054 */
55static struct work_list *local_listener_queue;
56
Willy Tarreaua1d97f82019-12-10 11:18:41 +010057/* list of the temporarily limited listeners because of lack of resource */
58static struct mt_list global_listener_queue = MT_LIST_HEAD_INIT(global_listener_queue);
59static struct task *global_listener_queue_task;
60static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state);
61
62
Willy Tarreau1efafce2019-01-27 15:37:19 +010063#if defined(USE_THREAD)
64
65struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
66
67/* dequeue and process a pending connection from the local accept queue (single
68 * consumer). Returns the accepted fd or -1 if none was found. The listener is
69 * placed into *li. The address is copied into *addr for no more than *addr_len
70 * bytes, and the address length is returned into *addr_len.
71 */
72int accept_queue_pop_sc(struct accept_queue_ring *ring, struct listener **li, void *addr, int *addr_len)
73{
74 struct accept_queue_entry *e;
75 unsigned int pos, next;
76 struct listener *ptr;
77 int len;
78 int fd;
79
80 pos = ring->head;
81
82 if (pos == ring->tail)
83 return -1;
84
85 next = pos + 1;
86 if (next >= ACCEPT_QUEUE_SIZE)
87 next = 0;
88
89 e = &ring->entry[pos];
90
91 /* wait for the producer to update the listener's pointer */
92 while (1) {
93 ptr = e->listener;
94 __ha_barrier_load();
95 if (ptr)
96 break;
97 pl_cpu_relax();
98 }
99
100 fd = e->fd;
101 len = e->addr_len;
102 if (len > *addr_len)
103 len = *addr_len;
104
105 if (likely(len > 0))
106 memcpy(addr, &e->addr, len);
107
108 /* release the entry */
109 e->listener = NULL;
110
111 __ha_barrier_store();
112 ring->head = next;
113
114 *addr_len = len;
115 *li = ptr;
116
117 return fd;
118}
119
120
121/* tries to push a new accepted connection <fd> into ring <ring> for listener
122 * <li>, from address <addr> whose length is <addr_len>. Returns non-zero if it
123 * succeeds, or zero if the ring is full. Supports multiple producers.
124 */
125int accept_queue_push_mp(struct accept_queue_ring *ring, int fd,
126 struct listener *li, const void *addr, int addr_len)
127{
128 struct accept_queue_entry *e;
129 unsigned int pos, next;
130
131 pos = ring->tail;
132 do {
133 next = pos + 1;
134 if (next >= ACCEPT_QUEUE_SIZE)
135 next = 0;
136 if (next == ring->head)
137 return 0; // ring full
Olivier Houchard64213e92019-03-08 18:52:57 +0100138 } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next)));
Willy Tarreau1efafce2019-01-27 15:37:19 +0100139
140
141 e = &ring->entry[pos];
142
143 if (addr_len > sizeof(e->addr))
144 addr_len = sizeof(e->addr);
145
146 if (addr_len)
147 memcpy(&e->addr, addr, addr_len);
148
149 e->addr_len = addr_len;
150 e->fd = fd;
151
152 __ha_barrier_store();
153 /* now commit the change */
154
155 e->listener = li;
156 return 1;
157}
158
159/* proceed with accepting new connections */
160static struct task *accept_queue_process(struct task *t, void *context, unsigned short state)
161{
162 struct accept_queue_ring *ring = context;
163 struct listener *li;
164 struct sockaddr_storage addr;
Christopher Faulet102854c2019-04-30 12:17:13 +0200165 unsigned int max_accept;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100166 int addr_len;
167 int ret;
168 int fd;
169
Christopher Faulet102854c2019-04-30 12:17:13 +0200170 /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It
171 * is not really illimited, but it is probably enough.
172 */
173 max_accept = global.tune.maxaccept ? global.tune.maxaccept : 64;
174 for (; max_accept; max_accept--) {
Willy Tarreau1efafce2019-01-27 15:37:19 +0100175 addr_len = sizeof(addr);
176 fd = accept_queue_pop_sc(ring, &li, &addr, &addr_len);
177 if (fd < 0)
178 break;
179
Olivier Houchard64213e92019-03-08 18:52:57 +0100180 _HA_ATOMIC_ADD(&li->thr_conn[tid], 1);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100181 ret = li->accept(li, fd, &addr);
182 if (ret <= 0) {
183 /* connection was terminated by the application */
184 continue;
185 }
186
187 /* increase the per-process number of cumulated sessions, this
188 * may only be done once l->accept() has accepted the connection.
189 */
190 if (!(li->options & LI_O_UNLIMITED)) {
191 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
192 update_freq_ctr(&global.sess_per_sec, 1));
193 if (li->bind_conf && li->bind_conf->is_ssl) {
194 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
195 update_freq_ctr(&global.ssl_per_sec, 1));
196 }
197 }
198 }
199
200 /* ran out of budget ? Let's come here ASAP */
Christopher Faulet102854c2019-04-30 12:17:13 +0200201 if (!max_accept)
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200202 tasklet_wakeup(ring->tasklet);
Willy Tarreau1efafce2019-01-27 15:37:19 +0100203
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200204 return NULL;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100205}
206
207/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
208static int accept_queue_init()
209{
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200210 struct tasklet *t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100211 int i;
212
213 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200214 t = tasklet_new();
Willy Tarreau1efafce2019-01-27 15:37:19 +0100215 if (!t) {
216 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
217 return ERR_FATAL|ERR_ABORT;
218 }
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200219 t->tid = i;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100220 t->process = accept_queue_process;
221 t->context = &accept_queue_rings[i];
Willy Tarreau2bd65a72019-09-24 06:55:18 +0200222 accept_queue_rings[i].tasklet = t;
Willy Tarreau1efafce2019-01-27 15:37:19 +0100223 }
224 return 0;
225}
226
227REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
228
229#endif // USE_THREAD
230
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100231/* This function adds the specified listener's file descriptor to the polling
232 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500233 * LI_FULL state depending on its number of connections. In daemon mode, we
Willy Tarreauae302532014-05-07 19:22:24 +0200234 * also support binding only the relevant processes to their respective
235 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100236 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200237static void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100238{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100239 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100240 if (listener->state == LI_LISTEN) {
William Lallemand095ba4c2017-06-01 17:38:50 +0200241 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau6daac192019-02-02 17:39:53 +0100242 !(proc_mask(listener->bind_conf->bind_proc) & pid_bit)) {
Willy Tarreauae302532014-05-07 19:22:24 +0200243 /* we don't want to enable this listener and don't
244 * want any fd event to reach it.
245 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200246 if (!(global.tune.options & GTUNE_SOCKET_TRANSFER))
Christopher Faulet510c0d62018-03-16 10:04:47 +0100247 do_unbind_listener(listener, 1);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200248 else {
Christopher Faulet510c0d62018-03-16 10:04:47 +0100249 do_unbind_listener(listener, 0);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200250 listener->state = LI_LISTEN;
251 }
Willy Tarreauae302532014-05-07 19:22:24 +0200252 }
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100253 else if (!listener->maxconn || listener->nbconn < listener->maxconn) {
Willy Tarreau49b046d2012-08-09 12:11:58 +0200254 fd_want_recv(listener->fd);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100255 listener->state = LI_READY;
Willy Tarreauae302532014-05-07 19:22:24 +0200256 }
257 else {
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100258 listener->state = LI_FULL;
259 }
260 }
William Lallemande22f11f2018-09-11 10:06:27 +0200261 /* if this listener is supposed to be only in the master, close it in the workers */
262 if ((global.mode & MODE_MWORKER) &&
263 (listener->options & LI_O_MWORKER) &&
264 master == 0) {
265 do_unbind_listener(listener, 1);
266 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100267 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100268}
269
270/* This function removes the specified listener's file descriptor from the
271 * polling lists if it is in the LI_READY or in the LI_FULL state. The listener
272 * enters LI_LISTEN.
273 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200274static void disable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100275{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100276 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100277 if (listener->state < LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200278 goto end;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100279 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200280 fd_stop_recv(listener->fd);
Olivier Houchard859dc802019-08-08 15:47:21 +0200281 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100282 listener->state = LI_LISTEN;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200283 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100285}
286
Willy Tarreaube58c382011-07-24 18:28:10 +0200287/* This function tries to temporarily disable a listener, depending on the OS
288 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
289 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
290 * closes upon SHUT_WR and refuses to rebind. So a common validation path
291 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
292 * is disabled. It normally returns non-zero, unless an error is reported.
293 */
294int pause_listener(struct listener *l)
295{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200296 int ret = 1;
297
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100298 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200299
Olivier Houchard1fc05162017-04-06 01:05:05 +0200300 if (l->state <= LI_ZOMBIE)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200301 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200302
Willy Tarreau092d8652014-07-07 20:22:12 +0200303 if (l->proto->pause) {
304 /* Returns < 0 in case of failure, 0 if the listener
305 * was totally stopped, or > 0 if correctly paused.
306 */
307 int ret = l->proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200308
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200309 if (ret < 0) {
310 ret = 0;
311 goto end;
312 }
Willy Tarreau092d8652014-07-07 20:22:12 +0200313 else if (ret == 0)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200314 goto end;
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200315 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200316
Olivier Houchard859dc802019-08-08 15:47:21 +0200317 MT_LIST_DEL(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200318
Willy Tarreau49b046d2012-08-09 12:11:58 +0200319 fd_stop_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200320 l->state = LI_PAUSED;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200321 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100322 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200323 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200324}
325
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200326/* This function tries to resume a temporarily disabled listener. Paused, full,
327 * limited and disabled listeners are handled, which means that this function
328 * may replace enable_listener(). The resulting state will either be LI_READY
329 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200330 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200331 * foreground mode, and are ignored. If the listener was only in the assigned
332 * state, it's totally rebound. This can happen if a pause() has completely
333 * stopped it. If the resume fails, 0 is returned and an error might be
334 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200335 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100336int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200337{
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 Tarreauf2cb1692019-07-11 10:08:31 +0200342 /* check that another thread didn't to the job in parallel (e.g. at the
343 * end of listen_accept() while we'd come from dequeue_all_listeners().
344 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200345 if (MT_LIST_ADDED(&l->wait_queue))
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200346 goto end;
347
William Lallemand095ba4c2017-06-01 17:38:50 +0200348 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau6daac192019-02-02 17:39:53 +0100349 !(proc_mask(l->bind_conf->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200350 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100351
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200352 if (l->state == LI_ASSIGNED) {
353 char msg[100];
354 int err;
355
356 err = l->proto->bind(l, msg, sizeof(msg));
357 if (err & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100358 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200359 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100360 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200361
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200362 if (err & (ERR_FATAL | ERR_ABORT)) {
363 ret = 0;
364 goto end;
365 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200366 }
367
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200368 if (l->state < LI_PAUSED || l->state == LI_ZOMBIE) {
369 ret = 0;
370 goto end;
371 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200372
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200373 if (l->proto->sock_prot == IPPROTO_TCP &&
374 l->state == LI_PAUSED &&
Willy Tarreaue2711c72019-02-27 15:39:41 +0100375 listen(l->fd, listener_backlog(l)) != 0) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200376 ret = 0;
377 goto end;
378 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200379
380 if (l->state == LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200381 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200382
Olivier Houchard859dc802019-08-08 15:47:21 +0200383 MT_LIST_DEL(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200384
Willy Tarreaua8cf66b2019-02-27 16:49:00 +0100385 if (l->maxconn && l->nbconn >= l->maxconn) {
Willy Tarreaube58c382011-07-24 18:28:10 +0200386 l->state = LI_FULL;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200387 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200388 }
389
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200390 if (!(thread_mask(l->bind_conf->bind_thread) & tid_bit)) {
391 /* we're not allowed to touch this listener's FD, let's requeue
392 * the listener into one of its owning thread's queue instead.
393 */
Willy Tarreau50b65942020-02-12 10:01:29 +0100394 int first_thread = my_flsl(thread_mask(l->bind_conf->bind_thread) & all_threads_mask) - 1;
Willy Tarreauf2cb1692019-07-11 10:08:31 +0200395 work_list_add(&local_listener_queue[first_thread], &l->wait_queue);
396 goto end;
397 }
398
Willy Tarreau49b046d2012-08-09 12:11:58 +0200399 fd_want_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200400 l->state = LI_READY;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200401 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100402 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200403 return ret;
404}
405
Willy Tarreau87b09662015-04-03 00:22:06 +0200406/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200407 * it upon next close() using resume_listener().
408 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200409static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200410{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100411 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200412 if (l->state >= LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200413 MT_LIST_DEL(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100414 if (l->state != LI_FULL) {
415 fd_stop_recv(l->fd);
416 l->state = LI_FULL;
417 }
Willy Tarreau62793712011-07-24 19:23:38 +0200418 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100419 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200420}
421
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200422/* Marks a ready listener as limited so that we only try to re-enable it when
423 * resources are free again. It will be queued into the specified queue.
424 */
Olivier Houchard859dc802019-08-08 15:47:21 +0200425static void limit_listener(struct listener *l, struct mt_list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200426{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100427 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200428 if (l->state == LI_READY) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200429 MT_LIST_ADDQ(list, &l->wait_queue);
Willy Tarreau49b046d2012-08-09 12:11:58 +0200430 fd_stop_recv(l->fd);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200431 l->state = LI_LIMITED;
432 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100433 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200434}
435
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100436/* This function adds all of the protocol's listener's file descriptors to the
437 * polling lists when they are in the LI_LISTEN state. It is intended to be
438 * used as a protocol's generic enable_all() primitive, for use after the
439 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
440 * their number of connections. It always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200441 *
442 * Must be called with proto_lock held.
443 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100444 */
445int enable_all_listeners(struct protocol *proto)
446{
447 struct listener *listener;
448
449 list_for_each_entry(listener, &proto->listeners, proto_list)
450 enable_listener(listener);
451 return ERR_NONE;
452}
453
454/* This function removes all of the protocol's listener's file descriptors from
455 * the polling lists when they are in the LI_READY or LI_FULL states. It is
456 * intended to be used as a protocol's generic disable_all() primitive. It puts
457 * the listeners into LI_LISTEN, and always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200458 *
459 * Must be called with proto_lock held.
460 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100461 */
462int disable_all_listeners(struct protocol *proto)
463{
464 struct listener *listener;
465
466 list_for_each_entry(listener, &proto->listeners, proto_list)
467 disable_listener(listener);
468 return ERR_NONE;
469}
470
Willy Tarreau241797a2019-12-10 14:10:52 +0100471/* Dequeues all listeners waiting for a resource the global wait queue */
472void dequeue_all_listeners()
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200473{
Willy Tarreau01abd022019-02-28 10:27:18 +0100474 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200475
Willy Tarreau241797a2019-12-10 14:10:52 +0100476 while ((listener = MT_LIST_POP(&global_listener_queue, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200477 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100478 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200479 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100480 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200481 }
482}
483
Willy Tarreau241797a2019-12-10 14:10:52 +0100484/* Dequeues all listeners waiting for a resource in proxy <px>'s queue */
485void dequeue_proxy_listeners(struct proxy *px)
486{
487 struct listener *listener;
488
489 while ((listener = MT_LIST_POP(&px->listener_queue, struct listener *, wait_queue))) {
490 /* This cannot fail because the listeners are by definition in
491 * the LI_LIMITED state.
492 */
493 resume_listener(listener);
494 }
495}
496
Christopher Faulet510c0d62018-03-16 10:04:47 +0100497/* Must be called with the lock held. Depending on <do_close> value, it does
498 * what unbind_listener or unbind_listener_no_close should do.
499 */
500void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100501{
Olivier Houcharda5188562019-03-08 15:35:42 +0100502 if (listener->state == LI_READY && fd_updt)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200503 fd_stop_recv(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100504
Olivier Houchard859dc802019-08-08 15:47:21 +0200505 MT_LIST_DEL(&listener->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200506
Willy Tarreaube58c382011-07-24 18:28:10 +0200507 if (listener->state >= LI_PAUSED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +0200508 if (do_close) {
509 fd_delete(listener->fd);
510 listener->fd = -1;
511 }
512 else
513 fd_remove(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100514 listener->state = LI_ASSIGNED;
515 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100516}
517
Olivier Houchard1fc05162017-04-06 01:05:05 +0200518/* This function closes the listening socket for the specified listener,
519 * provided that it's already in a listening state. The listener enters the
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100520 * LI_ASSIGNED state. This function is intended to be used as a generic
521 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200522 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100523void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200524{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100525 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100526 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100527 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200528}
529
530/* This function pretends the listener is dead, but keeps the FD opened, so
531 * that we can provide it, for conf reloading.
532 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100533void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200534{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100535 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100536 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100537 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200538}
539
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100540/* This function closes all listening sockets bound to the protocol <proto>,
541 * and the listeners end in LI_ASSIGNED state if they were higher. It does not
542 * detach them from the protocol. It always returns ERR_NONE.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200543 *
544 * Must be called with proto_lock held.
545 *
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100546 */
547int unbind_all_listeners(struct protocol *proto)
548{
549 struct listener *listener;
550
551 list_for_each_entry(listener, &proto->listeners, proto_list)
552 unbind_listener(listener);
553 return ERR_NONE;
554}
555
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200556/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
557 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
558 * allocation). The address family is taken from ss->ss_family. The number of
559 * jobs and listeners is automatically increased by the number of listeners
William Lallemand75ea0a02017-11-15 19:02:58 +0100560 * created. If the <inherited> argument is set to 1, it specifies that the FD
561 * was obtained from a parent process.
562 * It returns non-zero on success, zero on error with the error message
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200563 * set in <err>.
564 */
565int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
William Lallemand75ea0a02017-11-15 19:02:58 +0100566 int portl, int porth, int fd, int inherited, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200567{
568 struct protocol *proto = protocol_by_family(ss->ss_family);
569 struct listener *l;
570 int port;
571
572 if (!proto) {
573 memprintf(err, "unsupported protocol family %d", ss->ss_family);
574 return 0;
575 }
576
577 for (port = portl; port <= porth; port++) {
578 l = calloc(1, sizeof(*l));
579 if (!l) {
580 memprintf(err, "out of memory");
581 return 0;
582 }
583 l->obj_type = OBJ_TYPE_LISTENER;
584 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
585 LIST_ADDQ(&bc->listeners, &l->by_bind);
586 l->bind_conf = bc;
587
588 l->fd = fd;
589 memcpy(&l->addr, ss, sizeof(*ss));
Olivier Houchard859dc802019-08-08 15:47:21 +0200590 MT_LIST_INIT(&l->wait_queue);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200591 l->state = LI_INIT;
592
593 proto->add(l, port);
594
William Lallemand75ea0a02017-11-15 19:02:58 +0100595 if (inherited)
596 l->options |= LI_O_INHERITED;
597
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100598 HA_SPIN_INIT(&l->lock);
Olivier Houchard64213e92019-03-08 18:52:57 +0100599 _HA_ATOMIC_ADD(&jobs, 1);
600 _HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200601 }
602 return 1;
603}
604
Willy Tarreau1a64d162007-10-28 22:26:05 +0100605/* Delete a listener from its protocol's list of listeners. The listener's
606 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200607 * number of listeners is updated, as well as the global number of listeners
608 * and jobs. Note that the listener must have previously been unbound. This
609 * is the generic function to use to remove a listener.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200610 *
611 * Will grab the proto_lock.
612 *
Willy Tarreau1a64d162007-10-28 22:26:05 +0100613 */
614void delete_listener(struct listener *listener)
615{
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200616 HA_SPIN_LOCK(PROTO_LOCK, &proto_lock);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100617 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100618 if (listener->state == LI_ASSIGNED) {
619 listener->state = LI_INIT;
620 LIST_DEL(&listener->proto_list);
621 listener->proto->nb_listeners--;
Olivier Houchard64213e92019-03-08 18:52:57 +0100622 _HA_ATOMIC_SUB(&jobs, 1);
623 _HA_ATOMIC_SUB(&listeners, 1);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100624 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100625 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau6ee9f8d2019-08-26 10:55:52 +0200626 HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100627}
628
Willy Tarreaue2711c72019-02-27 15:39:41 +0100629/* Returns a suitable value for a listener's backlog. It uses the listener's,
630 * otherwise the frontend's backlog, otherwise the listener's maxconn,
631 * otherwise the frontend's maxconn, otherwise 1024.
632 */
633int listener_backlog(const struct listener *l)
634{
635 if (l->backlog)
636 return l->backlog;
637
638 if (l->bind_conf->frontend->backlog)
639 return l->bind_conf->frontend->backlog;
640
641 if (l->maxconn)
642 return l->maxconn;
643
644 if (l->bind_conf->frontend->maxconn)
645 return l->bind_conf->frontend->maxconn;
646
647 return 1024;
648}
649
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200650/* This function is called on a read event from a listening socket, corresponding
651 * to an accept. It tries to accept as many connections as possible, and for each
652 * calls the listener's accept handler (generally the frontend's accept handler).
653 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200654void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200655{
656 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100657 struct proxy *p;
Christopher Faulet102854c2019-04-30 12:17:13 +0200658 unsigned int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100659 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100660 int next_feconn = 0;
661 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200662 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200663 int cfd;
664 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100665#ifdef USE_ACCEPT4
666 static int accept4_broken;
667#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200668
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100669 if (!l)
670 return;
671 p = l->bind_conf->frontend;
Christopher Faulet102854c2019-04-30 12:17:13 +0200672
673 /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really
674 * illimited, but it is probably enough.
675 */
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100676 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200677
Willy Tarreau93e7c002013-10-07 18:51:07 +0200678 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
679 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200680
681 if (unlikely(!max)) {
682 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200683 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100684 goto limit_global;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200685 }
686
687 if (max_accept > max)
688 max_accept = max;
689 }
690
691 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200692 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
693
694 if (unlikely(!max)) {
695 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200696 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100697 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200698 }
699
700 if (max_accept > max)
701 max_accept = max;
702 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200703#ifdef USE_OPENSSL
704 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
705 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200706
Willy Tarreaue43d5322013-10-07 20:01:52 +0200707 if (unlikely(!max)) {
708 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200709 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreau0591bf72019-12-10 12:01:21 +0100710 goto limit_global;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200711 }
712
713 if (max_accept > max)
714 max_accept = max;
715 }
716#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200717 if (p && p->fe_sps_lim) {
718 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
719
720 if (unlikely(!max)) {
721 /* frontend accept rate limit was reached */
Willy Tarreau0591bf72019-12-10 12:01:21 +0100722 expire = tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0));
723 goto limit_proxy;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200724 }
725
726 if (max_accept > max)
727 max_accept = max;
728 }
729
730 /* Note: if we fail to allocate a connection because of configured
731 * limits, we'll schedule a new attempt worst 1 second later in the
732 * worst case. If we fail due to system limits or temporary resource
733 * shortage, we try again 100ms later in the worst case.
734 */
Christopher Faulet102854c2019-04-30 12:17:13 +0200735 for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200736 struct sockaddr_storage addr;
737 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200738 unsigned int count;
Willy Tarreau57cb5062019-03-15 17:16:34 +0100739 __decl_hathreads(unsigned long mask);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200740
Willy Tarreau82c97892019-02-27 19:32:32 +0100741 /* pre-increase the number of connections without going too far.
742 * We process the listener, then the proxy, then the process.
743 * We know which ones to unroll based on the next_xxx value.
744 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100745 do {
746 count = l->nbconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100747 if (unlikely(l->maxconn && count >= l->maxconn)) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100748 /* the listener was marked full or another
749 * thread is going to do it.
750 */
751 next_conn = 0;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100752 listener_full(l);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100753 goto end;
754 }
755 next_conn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000756 } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn));
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100757
Willy Tarreau82c97892019-02-27 19:32:32 +0100758 if (p) {
759 do {
760 count = p->feconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100761 if (unlikely(count >= p->maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100762 /* the frontend was marked full or another
763 * thread is going to do it.
764 */
765 next_feconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100766 expire = TICK_ETERNITY;
767 goto limit_proxy;
Willy Tarreau82c97892019-02-27 19:32:32 +0100768 }
769 next_feconn = count + 1;
Olivier Houchard64213e92019-03-08 18:52:57 +0100770 } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200771 }
772
Willy Tarreau82c97892019-02-27 19:32:32 +0100773 if (!(l->options & LI_O_UNLIMITED)) {
774 do {
775 count = actconn;
Willy Tarreau93604ed2019-11-15 10:20:07 +0100776 if (unlikely(count >= global.maxconn)) {
Willy Tarreau82c97892019-02-27 19:32:32 +0100777 /* the process was marked full or another
778 * thread is going to do it.
779 */
780 next_actconn = 0;
Willy Tarreau0591bf72019-12-10 12:01:21 +0100781 expire = tick_add(now_ms, 1000); /* try again in 1 second */
782 goto limit_global;
Willy Tarreau82c97892019-02-27 19:32:32 +0100783 }
784 next_actconn = count + 1;
David Carlier56716622019-03-27 16:08:42 +0000785 } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn));
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200786 }
787
William Lallemand2fe7dd02018-09-11 16:51:29 +0200788 /* with sockpair@ we don't want to do an accept */
789 if (unlikely(l->addr.ss_family == AF_CUST_SOCKPAIR)) {
790 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100791 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100792 /* just like with UNIX sockets, only the family is filled */
793 addr.ss_family = AF_UNIX;
794 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200795 } else
796
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200797#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100798 /* only call accept4() if it's known to be safe, otherwise
799 * fallback to the legacy accept() + fcntl().
800 */
801 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100802 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100803 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
804 (accept4_broken = 1))))
805#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200806 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100807 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100808
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200809 if (unlikely(cfd == -1)) {
810 switch (errno) {
811 case EAGAIN:
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100812 if (fdtab[fd].ev & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreaubb660302014-05-07 19:47:02 +0200813 /* the listening socket might have been disabled in a shared
814 * process and we're a collateral victim. We'll just pause for
815 * a while in case it comes back. In the mean time, we need to
816 * clear this sticky flag.
817 */
Willy Tarreau20aeb1c2019-12-10 08:42:21 +0100818 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreaubb660302014-05-07 19:47:02 +0200819 goto transient_error;
820 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200821 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200822 case EINVAL:
823 /* might be trying to accept on a shut fd (eg: soft stop) */
824 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100825 case EINTR:
826 case ECONNABORTED:
Olivier Houchard64213e92019-03-08 18:52:57 +0100827 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100828 if (p)
Olivier Houchard64213e92019-03-08 18:52:57 +0100829 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100830 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +0100831 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100832 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200833 case ENFILE:
834 if (p)
835 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100836 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
837 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200838 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200839 case EMFILE:
840 if (p)
841 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100842 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
843 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200844 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200845 case ENOBUFS:
846 case ENOMEM:
847 if (p)
848 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100849 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
850 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200851 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200852 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100853 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau92079932019-12-10 09:30:05 +0100854 max_accept = 0;
855 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200856 }
857 }
858
William Lallemandd9138002018-11-27 12:02:39 +0100859 /* we don't want to leak the FD upon reload if it's in the master */
860 if (unlikely(master == 1))
861 fcntl(cfd, F_SETFD, FD_CLOEXEC);
862
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100863 /* The connection was accepted, it must be counted as such */
864 if (l->counters)
865 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
866
Willy Tarreau82c97892019-02-27 19:32:32 +0100867 if (p)
868 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
869
870 proxy_inc_fe_conn_ctr(l, p);
871
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100872 if (!(l->options & LI_O_UNLIMITED)) {
873 count = update_freq_ctr(&global.conn_per_sec, 1);
874 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100875 }
876
Willy Tarreau64a9c052019-04-12 15:27:17 +0200877 _HA_ATOMIC_ADD(&activity[tid].accepted, 1);
878
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200879 if (unlikely(cfd >= global.maxsock)) {
880 send_log(p, LOG_EMERG,
881 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
882 p->id);
883 close(cfd);
Willy Tarreau0591bf72019-12-10 12:01:21 +0100884 expire = tick_add(now_ms, 1000); /* try again in 1 second */
885 goto limit_global;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200886 }
887
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100888 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100889 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
890 * allows the error path not to rollback on nbconn. It's more
891 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100892 */
893 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100894 next_feconn = 0;
895 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200896
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100897#if defined(USE_THREAD)
Willy Tarreau897e2c52019-03-13 15:03:53 +0100898 mask = thread_mask(l->bind_conf->bind_thread) & all_threads_mask;
Willy Tarreaua7da5e82020-03-12 17:33:29 +0100899 if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ) && !stopping) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100900 struct accept_queue_ring *ring;
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100901 unsigned int t, t0, t1, t2;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100902
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100903 /* The principle is that we have two running indexes,
904 * each visiting in turn all threads bound to this
905 * listener. The connection will be assigned to the one
906 * with the least connections, and the other one will
907 * be updated. This provides a good fairness on short
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100908 * connections (round robin) and on long ones (conn
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100909 * count), without ever missing any idle thread.
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100910 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100911
912 /* keep a copy for the final update. thr_idx is composite
913 * and made of (t2<<16) + t1.
914 */
Willy Tarreau0cf33172019-03-06 15:26:33 +0100915 t0 = l->thr_idx;
Willy Tarreaufc630bd2019-03-04 19:57:34 +0100916 do {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100917 unsigned long m1, m2;
918 int q1, q2;
919
920 t2 = t1 = t0;
921 t2 >>= 16;
922 t1 &= 0xFFFF;
923
924 /* t1 walks low to high bits ;
925 * t2 walks high to low.
926 */
927 m1 = mask >> t1;
928 m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL);
929
Willy Tarreau85d04242019-04-16 18:09:13 +0200930 if (unlikely(!(m1 & 1))) {
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100931 m1 &= ~1UL;
932 if (!m1) {
933 m1 = mask;
934 t1 = 0;
935 }
936 t1 += my_ffsl(m1) - 1;
937 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100938
Willy Tarreau85d04242019-04-16 18:09:13 +0200939 if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) {
940 /* highest bit not set */
941 if (!m2)
942 m2 = mask;
943
944 t2 = my_flsl(m2) - 1;
945 }
946
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100947 /* now we have two distinct thread IDs belonging to the mask */
948 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
949 if (q1 >= ACCEPT_QUEUE_SIZE)
950 q1 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100951
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100952 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
953 if (q2 >= ACCEPT_QUEUE_SIZE)
954 q2 -= ACCEPT_QUEUE_SIZE;
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100955
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100956 /* we have 3 possibilities now :
957 * q1 < q2 : t1 is less loaded than t2, so we pick it
958 * and update t2 (since t1 might still be
959 * lower than another thread)
960 * q1 > q2 : t2 is less loaded than t1, so we pick it
961 * and update t1 (since t2 might still be
962 * lower than another thread)
963 * q1 = q2 : both are equally loaded, thus we pick t1
964 * and update t1 as it will become more loaded
965 * than t2.
966 */
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100967
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100968 q1 += l->thr_conn[t1];
969 q2 += l->thr_conn[t2];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100970
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100971 if (q1 - q2 < 0) {
972 t = t1;
973 t2 = t2 ? t2 - 1 : LONGBITS - 1;
974 }
975 else if (q1 - q2 > 0) {
976 t = t2;
977 t1++;
978 if (t1 >= LONGBITS)
979 t1 = 0;
980 }
981 else {
982 t = t1;
983 t1++;
984 if (t1 >= LONGBITS)
985 t1 = 0;
986 }
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100987
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100988 /* new value for thr_idx */
989 t1 += (t2 << 16);
Olivier Houchard64213e92019-03-08 18:52:57 +0100990 } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1)));
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100991
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100992 /* We successfully selected the best thread "t" for this
993 * connection. We use deferred accepts even if it's the
994 * local thread because tests show that it's the best
995 * performing model, likely due to better cache locality
996 * when processing this loop.
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100997 */
Willy Tarreau0fe703b2019-03-05 08:46:28 +0100998 ring = &accept_queue_rings[t];
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100999 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Olivier Houchard64213e92019-03-08 18:52:57 +01001000 _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1);
Willy Tarreau2bd65a72019-09-24 06:55:18 +02001001 tasklet_wakeup(ring->tasklet);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001002 continue;
1003 }
1004 /* If the ring is full we do a synchronous accept on
1005 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001006 */
Olivier Houchard64213e92019-03-08 18:52:57 +01001007 _HA_ATOMIC_ADD(&activity[t].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +01001008 }
1009#endif // USE_THREAD
1010
Olivier Houchard64213e92019-03-08 18:52:57 +01001011 _HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001012 ret = l->accept(l, cfd, &addr);
1013 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001014 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001015 * we just have to ignore it (ret == 0) or it's a critical
1016 * error due to a resource shortage, and we must stop the
1017 * listener (ret < 0).
1018 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001019 if (ret == 0) /* successful termination */
1020 continue;
1021
Willy Tarreaubb660302014-05-07 19:47:02 +02001022 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001023 }
1024
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001025 /* increase the per-process number of cumulated sessions, this
1026 * may only be done once l->accept() has accepted the connection.
1027 */
Willy Tarreau93e7c002013-10-07 18:51:07 +02001028 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001029 count = update_freq_ctr(&global.sess_per_sec, 1);
1030 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +02001031 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001032#ifdef USE_OPENSSL
1033 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001034 count = update_freq_ctr(&global.ssl_per_sec, 1);
1035 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +02001036 }
1037#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +02001038
Willy Tarreau8d2c98b2020-05-01 09:51:11 +02001039 ti->flags &= ~TI_FL_STUCK; // this thread is still running
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001040 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001041
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001042 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001043 if (next_conn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001044 _HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +01001045
Willy Tarreau82c97892019-02-27 19:32:32 +01001046 if (p && next_feconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001047 _HA_ATOMIC_SUB(&p->feconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001048
1049 if (next_actconn)
Olivier Houchard64213e92019-03-08 18:52:57 +01001050 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001051
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001052 if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) ||
Willy Tarreaucdcba112019-12-11 15:06:30 +01001053 (l->state == LI_LIMITED &&
1054 ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn) &&
1055 (!tick_isset(global_listener_queue_task->expire) ||
1056 tick_is_expired(global_listener_queue_task->expire, now_ms))))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001057 /* at least one thread has to this when quitting */
1058 resume_listener(l);
1059
1060 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001061 dequeue_all_listeners();
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001062
Olivier Houchard859dc802019-08-08 15:47:21 +02001063 if (p && !MT_LIST_ISEMPTY(&p->listener_queue) &&
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001064 (!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 +01001065 dequeue_proxy_listeners(p);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +01001066 }
Willy Tarreau4c044e22019-12-05 07:40:32 +01001067
Willy Tarreau92079932019-12-10 09:30:05 +01001068 /* Now it's getting tricky. The listener was supposed to be in LI_READY
1069 * state but in the mean time we might have changed it to LI_FULL or
1070 * LI_LIMITED, and another thread might also have turned it to
1071 * LI_PAUSED, LI_LISTEN or even LI_INI when stopping a proxy. We must
1072 * be certain to keep the FD enabled when in the READY state but we
1073 * must also stop it for other states that we might have switched to
1074 * while others re-enabled polling.
1075 */
1076 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
1077 if (l->state == LI_READY) {
1078 if (max_accept > 0)
1079 fd_cant_recv(fd);
1080 else
1081 fd_done_recv(fd);
1082 } else if (l->state > LI_ASSIGNED) {
Willy Tarreau4c044e22019-12-05 07:40:32 +01001083 fd_stop_recv(l->fd);
Willy Tarreau92079932019-12-10 09:30:05 +01001084 }
1085 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001086 return;
1087
1088 transient_error:
1089 /* pause the listener for up to 100 ms */
1090 expire = tick_add(now_ms, 100);
1091
1092 limit_global:
1093 /* (re-)queue the listener to the global queue and set it to expire no
1094 * later than <expire> ahead. The listener turns to LI_LIMITED.
1095 */
1096 limit_listener(l, &global_listener_queue);
1097 task_schedule(global_listener_queue_task, expire);
1098 goto end;
1099
1100 limit_proxy:
1101 /* (re-)queue the listener to the proxy's queue and set it to expire no
1102 * later than <expire> ahead. The listener turns to LI_LIMITED.
1103 */
1104 limit_listener(l, &p->listener_queue);
Willy Tarreaueeea8082020-01-08 19:15:07 +01001105 if (p->task && tick_isset(expire))
1106 task_schedule(p->task, expire);
Willy Tarreau0591bf72019-12-10 12:01:21 +01001107 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +02001108}
1109
Willy Tarreau05f50472017-09-15 09:19:58 +02001110/* Notify the listener that a connection initiated from it was released. This
1111 * is used to keep the connection count consistent and to possibly re-open
1112 * listening when it was limited.
1113 */
1114void listener_release(struct listener *l)
1115{
1116 struct proxy *fe = l->bind_conf->frontend;
1117
1118 if (!(l->options & LI_O_UNLIMITED))
Olivier Houchard64213e92019-03-08 18:52:57 +01001119 _HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001120 if (fe)
Olivier Houchard64213e92019-03-08 18:52:57 +01001121 _HA_ATOMIC_SUB(&fe->feconn, 1);
1122 _HA_ATOMIC_SUB(&l->nbconn, 1);
1123 _HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +01001124
1125 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +02001126 resume_listener(l);
1127
1128 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001129 dequeue_all_listeners();
Willy Tarreau05f50472017-09-15 09:19:58 +02001130
Olivier Houchard859dc802019-08-08 15:47:21 +02001131 if (!MT_LIST_ISEMPTY(&fe->listener_queue) &&
Willy Tarreau05f50472017-09-15 09:19:58 +02001132 (!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 +01001133 dequeue_proxy_listeners(fe);
Willy Tarreau05f50472017-09-15 09:19:58 +02001134}
1135
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001136/* resume listeners waiting in the local listener queue. They are still in LI_LIMITED state */
1137static struct task *listener_queue_process(struct task *t, void *context, unsigned short state)
1138{
1139 struct work_list *wl = context;
1140 struct listener *l;
1141
Olivier Houchard859dc802019-08-08 15:47:21 +02001142 while ((l = MT_LIST_POP(&wl->head, struct listener *, wait_queue))) {
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001143 /* The listeners are still in the LI_LIMITED state */
1144 resume_listener(l);
1145 }
1146 return t;
1147}
1148
1149/* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */
1150static int listener_queue_init()
1151{
1152 local_listener_queue = work_list_create(global.nbthread, listener_queue_process, NULL);
1153 if (!local_listener_queue) {
1154 ha_alert("Out of memory while initializing listener queues.\n");
1155 return ERR_FATAL|ERR_ABORT;
1156 }
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001157
1158 global_listener_queue_task = task_new(MAX_THREADS_MASK);
1159 if (!global_listener_queue_task) {
1160 ha_alert("Out of memory when initializing global listener queue\n");
1161 return ERR_FATAL|ERR_ABORT;
1162 }
1163 /* very simple initialization, users will queue the task if needed */
1164 global_listener_queue_task->context = NULL; /* not even a context! */
1165 global_listener_queue_task->process = manage_global_listener_queue;
1166
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001167 return 0;
1168}
1169
1170static void listener_queue_deinit()
1171{
1172 work_list_destroy(local_listener_queue, global.nbthread);
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001173 task_destroy(global_listener_queue_task);
1174 global_listener_queue_task = NULL;
Willy Tarreauf2cb1692019-07-11 10:08:31 +02001175}
1176
1177REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init);
1178REGISTER_POST_DEINIT(listener_queue_deinit);
1179
Willy Tarreaua1d97f82019-12-10 11:18:41 +01001180
1181/* This is the global management task for listeners. It enables listeners waiting
1182 * for global resources when there are enough free resource, or at least once in
1183 * a while. It is designed to be called as a task.
1184 */
1185static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
1186{
1187 /* If there are still too many concurrent connections, let's wait for
1188 * some of them to go away. We don't need to re-arm the timer because
1189 * each of them will scan the queue anyway.
1190 */
1191 if (unlikely(actconn >= global.maxconn))
1192 goto out;
1193
1194 /* We should periodically try to enable listeners waiting for a global
1195 * resource here, because it is possible, though very unlikely, that
1196 * they have been blocked by a temporary lack of global resource such
1197 * as a file descriptor or memory and that the temporary condition has
1198 * disappeared.
1199 */
1200 dequeue_all_listeners();
1201
1202 out:
1203 t->expire = TICK_ETERNITY;
1204 task_queue(t);
1205 return t;
1206}
1207
Willy Tarreau26982662012-09-12 23:17:10 +02001208/*
1209 * Registers the bind keyword list <kwl> as a list of valid keywords for next
1210 * parsing sessions.
1211 */
1212void bind_register_keywords(struct bind_kw_list *kwl)
1213{
1214 LIST_ADDQ(&bind_keywords.list, &kwl->list);
1215}
1216
1217/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
1218 * keyword is found with a NULL ->parse() function, then an attempt is made to
1219 * find one with a valid ->parse() function. This way it is possible to declare
1220 * platform-dependant, known keywords as NULL, then only declare them as valid
1221 * if some options are met. Note that if the requested keyword contains an
1222 * opening parenthesis, everything from this point is ignored.
1223 */
1224struct bind_kw *bind_find_kw(const char *kw)
1225{
1226 int index;
1227 const char *kwend;
1228 struct bind_kw_list *kwl;
1229 struct bind_kw *ret = NULL;
1230
1231 kwend = strchr(kw, '(');
1232 if (!kwend)
1233 kwend = kw + strlen(kw);
1234
1235 list_for_each_entry(kwl, &bind_keywords.list, list) {
1236 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1237 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1238 kwl->kw[index].kw[kwend-kw] == 0) {
1239 if (kwl->kw[index].parse)
1240 return &kwl->kw[index]; /* found it !*/
1241 else
1242 ret = &kwl->kw[index]; /* may be OK */
1243 }
1244 }
1245 }
1246 return ret;
1247}
1248
Willy Tarreau8638f482012-09-18 18:01:17 +02001249/* Dumps all registered "bind" keywords to the <out> string pointer. The
1250 * unsupported keywords are only dumped if their supported form was not
1251 * found.
1252 */
1253void bind_dump_kws(char **out)
1254{
1255 struct bind_kw_list *kwl;
1256 int index;
1257
Christopher Faulet784063e2020-05-18 12:14:18 +02001258 if (!out)
1259 return;
1260
Willy Tarreau8638f482012-09-18 18:01:17 +02001261 *out = NULL;
1262 list_for_each_entry(kwl, &bind_keywords.list, list) {
1263 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1264 if (kwl->kw[index].parse ||
1265 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001266 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1267 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001268 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001269 kwl->kw[index].skip ? " <arg>" : "",
1270 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001271 }
1272 }
1273 }
1274}
1275
Willy Tarreau645513a2010-05-24 20:55:15 +02001276/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001277/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001278/************************************************************************/
1279
Willy Tarreaua5e37562011-12-16 17:06:15 +01001280/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001281static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001282smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001283{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001284 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001285 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001286 return 1;
1287}
1288
Willy Tarreaua5e37562011-12-16 17:06:15 +01001289/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001290static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001291smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001292{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001293 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001294 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001295 return 1;
1296}
Jerome Magnineb421b22020-03-27 22:08:40 +01001297static int
1298smp_fetch_so_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1299{
1300 smp->data.u.str.area = smp->sess->listener->name;
1301 if (!smp->data.u.str.area)
1302 return 0;
1303
1304 smp->data.type = SMP_T_STR;
1305 smp->flags = SMP_F_CONST;
1306 smp->data.u.str.data = strlen(smp->data.u.str.area);
1307 return 1;
1308}
Willy Tarreau645513a2010-05-24 20:55:15 +02001309
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001310/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001311static 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 +02001312{
1313 struct listener *l;
1314
Willy Tarreau4348fad2012-09-20 16:48:07 +02001315 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001316 l->options |= LI_O_ACC_PROXY;
1317
1318 return 0;
1319}
1320
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001321/* parse the "accept-netscaler-cip" bind keyword */
1322static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1323{
1324 struct listener *l;
1325 uint32_t val;
1326
1327 if (!*args[cur_arg + 1]) {
1328 memprintf(err, "'%s' : missing value", args[cur_arg]);
1329 return ERR_ALERT | ERR_FATAL;
1330 }
1331
1332 val = atol(args[cur_arg + 1]);
1333 if (val <= 0) {
Willy Tarreaue2711c72019-02-27 15:39:41 +01001334 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001335 return ERR_ALERT | ERR_FATAL;
1336 }
1337
1338 list_for_each_entry(l, &conf->listeners, by_bind) {
1339 l->options |= LI_O_ACC_CIP;
1340 conf->ns_cip_magic = val;
1341 }
1342
1343 return 0;
1344}
1345
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001346/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001347static 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 +02001348{
1349 struct listener *l;
1350 int val;
1351
1352 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001353 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001354 return ERR_ALERT | ERR_FATAL;
1355 }
1356
1357 val = atol(args[cur_arg + 1]);
Willy Tarreaue2711c72019-02-27 15:39:41 +01001358 if (val < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001359 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001360 return ERR_ALERT | ERR_FATAL;
1361 }
1362
Willy Tarreau4348fad2012-09-20 16:48:07 +02001363 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001364 l->backlog = val;
1365
1366 return 0;
1367}
1368
1369/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001370static 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 +02001371{
1372 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001373 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001374 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001375
Willy Tarreau4348fad2012-09-20 16:48:07 +02001376 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001377 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001378 return ERR_ALERT | ERR_FATAL;
1379 }
1380
1381 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001382 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001383 return ERR_ALERT | ERR_FATAL;
1384 }
1385
Willy Tarreau4348fad2012-09-20 16:48:07 +02001386 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001387 new->luid = strtol(args[cur_arg + 1], &error, 10);
1388 if (*error != '\0') {
1389 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1390 return ERR_ALERT | ERR_FATAL;
1391 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001392 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001393
Willy Tarreau4348fad2012-09-20 16:48:07 +02001394 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001395 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001396 return ERR_ALERT | ERR_FATAL;
1397 }
1398
Willy Tarreau4348fad2012-09-20 16:48:07 +02001399 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001400 if (node) {
1401 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001402 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1403 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1404 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001405 return ERR_ALERT | ERR_FATAL;
1406 }
1407
Willy Tarreau4348fad2012-09-20 16:48:07 +02001408 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001409 return 0;
1410}
1411
1412/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001413static 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 +02001414{
1415 struct listener *l;
1416 int val;
1417
1418 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001419 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001420 return ERR_ALERT | ERR_FATAL;
1421 }
1422
1423 val = atol(args[cur_arg + 1]);
Willy Tarreaua8cf66b2019-02-27 16:49:00 +01001424 if (val < 0) {
1425 memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001426 return ERR_ALERT | ERR_FATAL;
1427 }
1428
Willy Tarreau4348fad2012-09-20 16:48:07 +02001429 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001430 l->maxconn = val;
1431
1432 return 0;
1433}
1434
1435/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001436static 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 +02001437{
1438 struct listener *l;
1439
1440 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001441 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001442 return ERR_ALERT | ERR_FATAL;
1443 }
1444
Willy Tarreau4348fad2012-09-20 16:48:07 +02001445 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001446 l->name = strdup(args[cur_arg + 1]);
1447
1448 return 0;
1449}
1450
1451/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001452static 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 +02001453{
1454 struct listener *l;
1455 int val;
1456
1457 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001458 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001459 return ERR_ALERT | ERR_FATAL;
1460 }
1461
1462 val = atol(args[cur_arg + 1]);
1463 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001464 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001465 return ERR_ALERT | ERR_FATAL;
1466 }
1467
Willy Tarreau4348fad2012-09-20 16:48:07 +02001468 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001469 l->nice = val;
1470
1471 return 0;
1472}
1473
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001474/* parse the "process" bind keyword */
1475static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1476{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001477 char *slash;
1478 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001479
Christopher Fauletc644fa92017-11-23 22:44:11 +01001480 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1481 *slash = 0;
1482
Willy Tarreauff9c9142019-02-07 10:39:36 +01001483 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001484 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001485 return ERR_ALERT | ERR_FATAL;
1486 }
1487
Christopher Fauletc644fa92017-11-23 22:44:11 +01001488 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001489 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001490 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1491 return ERR_ALERT | ERR_FATAL;
1492 }
1493 *slash = '/';
1494 }
1495
1496 conf->bind_proc |= proc;
Willy Tarreaua36b3242019-02-02 13:14:34 +01001497 conf->bind_thread |= thread;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001498 return 0;
1499}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001500
Christopher Fauleta717b992018-04-10 14:43:00 +02001501/* parse the "proto" bind keyword */
1502static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1503{
1504 struct ist proto;
1505
1506 if (!*args[cur_arg + 1]) {
1507 memprintf(err, "'%s' : missing value", args[cur_arg]);
1508 return ERR_ALERT | ERR_FATAL;
1509 }
1510
1511 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1512 conf->mux_proto = get_mux_proto(proto);
1513 if (!conf->mux_proto) {
1514 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1515 return ERR_ALERT | ERR_FATAL;
1516 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001517 return 0;
1518}
1519
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001520/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1521static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1522 struct proxy *defpx, const char *file, int line,
1523 char **err)
1524{
1525 if (too_many_args(1, args, err, NULL))
1526 return -1;
1527
1528 if (strcmp(args[1], "on") == 0)
1529 global.tune.options |= GTUNE_LISTENER_MQ;
1530 else if (strcmp(args[1], "off") == 0)
1531 global.tune.options &= ~GTUNE_LISTENER_MQ;
1532 else {
1533 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1534 return -1;
1535 }
1536 return 0;
1537}
1538
Willy Tarreau61612d42012-04-19 18:42:05 +02001539/* Note: must not be declared <const> as its list will be overwritten.
1540 * Please take care of keeping this list alphabetically sorted.
1541 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001542static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001543 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1544 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Jerome Magnineb421b22020-03-27 22:08:40 +01001545 { "so_name", smp_fetch_so_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001546 { /* END */ },
1547}};
1548
Willy Tarreau0108d902018-11-25 19:14:37 +01001549INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1550
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001551/* Note: must not be declared <const> as its list will be overwritten.
1552 * Please take care of keeping this list alphabetically sorted.
1553 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001554static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001555 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001556}};
1557
Willy Tarreau0108d902018-11-25 19:14:37 +01001558INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1559
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001560/* Note: must not be declared <const> as its list will be overwritten.
1561 * Please take care of keeping this list alphabetically sorted, doing so helps
1562 * all code contributors.
1563 * Optional keywords are also declared with a NULL ->parse() function so that
1564 * the config parser can report an appropriate error when a known keyword was
1565 * not enabled.
1566 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001567static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001568 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001569 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1570 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1571 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1572 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1573 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1574 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001575 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001576 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001577 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001578}};
1579
Willy Tarreau0108d902018-11-25 19:14:37 +01001580INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1581
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001582/* config keyword parsers */
1583static struct cfg_kw_list cfg_kws = {ILH, {
1584 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1585 { 0, NULL, NULL }
1586}};
1587
1588INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1589
Willy Tarreau645513a2010-05-24 20:55:15 +02001590/*
1591 * Local variables:
1592 * c-indent-level: 8
1593 * c-basic-offset: 8
1594 * End:
1595 */