blob: 3ae20e2479b3760cafc522b4db1e3c0d4f39e033 [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 Tarreau1bc4aab2012-10-08 20:11:03 +020021#include <common/accept4.h>
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +010022#include <common/cfgparse.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020023#include <common/config.h>
Willy Tarreaudabf2e22007-10-28 21:59:24 +010024#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010025#include <common/initcall.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020026#include <common/mini-clist.h>
27#include <common/standard.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020028#include <common/time.h>
29
30#include <types/global.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020031#include <types/protocol.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020032
Willy Tarreau645513a2010-05-24 20:55:15 +020033#include <proto/acl.h>
Christopher Fauleta717b992018-04-10 14:43:00 +020034#include <proto/connection.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010035#include <proto/fd.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020036#include <proto/freq_ctr.h>
37#include <proto/log.h>
Willy Tarreau7a798e52016-04-14 11:13:20 +020038#include <proto/listener.h>
Willy Tarreau0de59fd2017-09-15 08:10:44 +020039#include <proto/protocol.h>
William Lallemand2fe7dd02018-09-11 16:51:29 +020040#include <proto/proto_sockpair.h>
Willy Tarreau0ccb7442013-01-07 22:54:17 +010041#include <proto/sample.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020042#include <proto/stream.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020043#include <proto/task.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010044
Willy Tarreau26982662012-09-12 23:17:10 +020045/* List head of all known bind keywords */
46static struct bind_kw_list bind_keywords = {
47 .list = LIST_HEAD_INIT(bind_keywords.list)
48};
49
Olivier Houchardf73629d2017-04-05 22:33:04 +020050struct xfer_sock_list *xfer_sock_list = NULL;
51
Willy Tarreau1efafce2019-01-27 15:37:19 +010052#if defined(USE_THREAD)
53
54struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { };
55
56/* dequeue and process a pending connection from the local accept queue (single
57 * consumer). Returns the accepted fd or -1 if none was found. The listener is
58 * placed into *li. The address is copied into *addr for no more than *addr_len
59 * bytes, and the address length is returned into *addr_len.
60 */
61int accept_queue_pop_sc(struct accept_queue_ring *ring, struct listener **li, void *addr, int *addr_len)
62{
63 struct accept_queue_entry *e;
64 unsigned int pos, next;
65 struct listener *ptr;
66 int len;
67 int fd;
68
69 pos = ring->head;
70
71 if (pos == ring->tail)
72 return -1;
73
74 next = pos + 1;
75 if (next >= ACCEPT_QUEUE_SIZE)
76 next = 0;
77
78 e = &ring->entry[pos];
79
80 /* wait for the producer to update the listener's pointer */
81 while (1) {
82 ptr = e->listener;
83 __ha_barrier_load();
84 if (ptr)
85 break;
86 pl_cpu_relax();
87 }
88
89 fd = e->fd;
90 len = e->addr_len;
91 if (len > *addr_len)
92 len = *addr_len;
93
94 if (likely(len > 0))
95 memcpy(addr, &e->addr, len);
96
97 /* release the entry */
98 e->listener = NULL;
99
100 __ha_barrier_store();
101 ring->head = next;
102
103 *addr_len = len;
104 *li = ptr;
105
106 return fd;
107}
108
109
110/* tries to push a new accepted connection <fd> into ring <ring> for listener
111 * <li>, from address <addr> whose length is <addr_len>. Returns non-zero if it
112 * succeeds, or zero if the ring is full. Supports multiple producers.
113 */
114int accept_queue_push_mp(struct accept_queue_ring *ring, int fd,
115 struct listener *li, const void *addr, int addr_len)
116{
117 struct accept_queue_entry *e;
118 unsigned int pos, next;
119
120 pos = ring->tail;
121 do {
122 next = pos + 1;
123 if (next >= ACCEPT_QUEUE_SIZE)
124 next = 0;
125 if (next == ring->head)
126 return 0; // ring full
127 } while (unlikely(!HA_ATOMIC_CAS(&ring->tail, &pos, next)));
128
129
130 e = &ring->entry[pos];
131
132 if (addr_len > sizeof(e->addr))
133 addr_len = sizeof(e->addr);
134
135 if (addr_len)
136 memcpy(&e->addr, addr, addr_len);
137
138 e->addr_len = addr_len;
139 e->fd = fd;
140
141 __ha_barrier_store();
142 /* now commit the change */
143
144 e->listener = li;
145 return 1;
146}
147
148/* proceed with accepting new connections */
149static struct task *accept_queue_process(struct task *t, void *context, unsigned short state)
150{
151 struct accept_queue_ring *ring = context;
152 struct listener *li;
153 struct sockaddr_storage addr;
154 int max_accept = global.tune.maxaccept ? global.tune.maxaccept : 64;
155 int addr_len;
156 int ret;
157 int fd;
158
159 while (max_accept--) {
160 addr_len = sizeof(addr);
161 fd = accept_queue_pop_sc(ring, &li, &addr, &addr_len);
162 if (fd < 0)
163 break;
164
165 HA_ATOMIC_ADD(&li->thr_conn[tid], 1);
166 ret = li->accept(li, fd, &addr);
167 if (ret <= 0) {
168 /* connection was terminated by the application */
169 continue;
170 }
171
172 /* increase the per-process number of cumulated sessions, this
173 * may only be done once l->accept() has accepted the connection.
174 */
175 if (!(li->options & LI_O_UNLIMITED)) {
176 HA_ATOMIC_UPDATE_MAX(&global.sps_max,
177 update_freq_ctr(&global.sess_per_sec, 1));
178 if (li->bind_conf && li->bind_conf->is_ssl) {
179 HA_ATOMIC_UPDATE_MAX(&global.ssl_max,
180 update_freq_ctr(&global.ssl_per_sec, 1));
181 }
182 }
183 }
184
185 /* ran out of budget ? Let's come here ASAP */
186 if (max_accept < 0)
187 task_wakeup(t, TASK_WOKEN_IO);
188
189 return t;
190}
191
192/* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */
193static int accept_queue_init()
194{
195 struct task *t;
196 int i;
197
198 for (i = 0; i < global.nbthread; i++) {
199 t = task_new(1UL << i);
200 if (!t) {
201 ha_alert("Out of memory while initializing accept queue for thread %d\n", i);
202 return ERR_FATAL|ERR_ABORT;
203 }
204 t->process = accept_queue_process;
205 t->context = &accept_queue_rings[i];
206 accept_queue_rings[i].task = t;
207 }
208 return 0;
209}
210
211REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init);
212
213#endif // USE_THREAD
214
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100215/* This function adds the specified listener's file descriptor to the polling
216 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Willy Tarreauae302532014-05-07 19:22:24 +0200217 * LI_FULL state depending on its number of connections. In deamon mode, we
218 * also support binding only the relevant processes to their respective
219 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100220 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200221static void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100222{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100223 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100224 if (listener->state == LI_LISTEN) {
William Lallemand095ba4c2017-06-01 17:38:50 +0200225 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau6daac192019-02-02 17:39:53 +0100226 !(proc_mask(listener->bind_conf->bind_proc) & pid_bit)) {
Willy Tarreauae302532014-05-07 19:22:24 +0200227 /* we don't want to enable this listener and don't
228 * want any fd event to reach it.
229 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200230 if (!(global.tune.options & GTUNE_SOCKET_TRANSFER))
Christopher Faulet510c0d62018-03-16 10:04:47 +0100231 do_unbind_listener(listener, 1);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200232 else {
Christopher Faulet510c0d62018-03-16 10:04:47 +0100233 do_unbind_listener(listener, 0);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200234 listener->state = LI_LISTEN;
235 }
Willy Tarreauae302532014-05-07 19:22:24 +0200236 }
237 else if (listener->nbconn < listener->maxconn) {
Willy Tarreau49b046d2012-08-09 12:11:58 +0200238 fd_want_recv(listener->fd);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100239 listener->state = LI_READY;
Willy Tarreauae302532014-05-07 19:22:24 +0200240 }
241 else {
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100242 listener->state = LI_FULL;
243 }
244 }
William Lallemande22f11f2018-09-11 10:06:27 +0200245 /* if this listener is supposed to be only in the master, close it in the workers */
246 if ((global.mode & MODE_MWORKER) &&
247 (listener->options & LI_O_MWORKER) &&
248 master == 0) {
249 do_unbind_listener(listener, 1);
250 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100251 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100252}
253
254/* This function removes the specified listener's file descriptor from the
255 * polling lists if it is in the LI_READY or in the LI_FULL state. The listener
256 * enters LI_LISTEN.
257 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +0200258static void disable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100259{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100260 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100261 if (listener->state < LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200262 goto end;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100263 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200264 fd_stop_recv(listener->fd);
Willy Tarreau01abd022019-02-28 10:27:18 +0100265 LIST_DEL_LOCKED(&listener->wait_queue);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100266 listener->state = LI_LISTEN;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200267 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100268 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100269}
270
Willy Tarreaube58c382011-07-24 18:28:10 +0200271/* This function tries to temporarily disable a listener, depending on the OS
272 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
273 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
274 * closes upon SHUT_WR and refuses to rebind. So a common validation path
275 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
276 * is disabled. It normally returns non-zero, unless an error is reported.
277 */
278int pause_listener(struct listener *l)
279{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200280 int ret = 1;
281
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100282 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200283
Olivier Houchard1fc05162017-04-06 01:05:05 +0200284 if (l->state <= LI_ZOMBIE)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200285 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200286
Willy Tarreau092d8652014-07-07 20:22:12 +0200287 if (l->proto->pause) {
288 /* Returns < 0 in case of failure, 0 if the listener
289 * was totally stopped, or > 0 if correctly paused.
290 */
291 int ret = l->proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200292
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200293 if (ret < 0) {
294 ret = 0;
295 goto end;
296 }
Willy Tarreau092d8652014-07-07 20:22:12 +0200297 else if (ret == 0)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200298 goto end;
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200299 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200300
Willy Tarreau01abd022019-02-28 10:27:18 +0100301 LIST_DEL_LOCKED(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200302
Willy Tarreau49b046d2012-08-09 12:11:58 +0200303 fd_stop_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200304 l->state = LI_PAUSED;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200305 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100306 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200307 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200308}
309
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200310/* This function tries to resume a temporarily disabled listener. Paused, full,
311 * limited and disabled listeners are handled, which means that this function
312 * may replace enable_listener(). The resulting state will either be LI_READY
313 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200314 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200315 * foreground mode, and are ignored. If the listener was only in the assigned
316 * state, it's totally rebound. This can happen if a pause() has completely
317 * stopped it. If the resume fails, 0 is returned and an error might be
318 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200319 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100320int resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200321{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200322 int ret = 1;
323
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100324 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200325
William Lallemand095ba4c2017-06-01 17:38:50 +0200326 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau6daac192019-02-02 17:39:53 +0100327 !(proc_mask(l->bind_conf->bind_proc) & pid_bit))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200328 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100329
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200330 if (l->state == LI_ASSIGNED) {
331 char msg[100];
332 int err;
333
334 err = l->proto->bind(l, msg, sizeof(msg));
335 if (err & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100336 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200337 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100338 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200339
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200340 if (err & (ERR_FATAL | ERR_ABORT)) {
341 ret = 0;
342 goto end;
343 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200344 }
345
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200346 if (l->state < LI_PAUSED || l->state == LI_ZOMBIE) {
347 ret = 0;
348 goto end;
349 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200350
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200351 if (l->proto->sock_prot == IPPROTO_TCP &&
352 l->state == LI_PAUSED &&
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200353 listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0) {
354 ret = 0;
355 goto end;
356 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200357
358 if (l->state == LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200359 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200360
Willy Tarreau01abd022019-02-28 10:27:18 +0100361 LIST_DEL_LOCKED(&l->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200362
Willy Tarreaube58c382011-07-24 18:28:10 +0200363 if (l->nbconn >= l->maxconn) {
364 l->state = LI_FULL;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200365 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200366 }
367
Willy Tarreau49b046d2012-08-09 12:11:58 +0200368 fd_want_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200369 l->state = LI_READY;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200370 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100371 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200372 return ret;
373}
374
Willy Tarreau87b09662015-04-03 00:22:06 +0200375/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200376 * it upon next close() using resume_listener().
377 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200378static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200379{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100380 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200381 if (l->state >= LI_READY) {
Willy Tarreau01abd022019-02-28 10:27:18 +0100382 LIST_DEL_LOCKED(&l->wait_queue);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100383 if (l->state != LI_FULL) {
384 fd_stop_recv(l->fd);
385 l->state = LI_FULL;
386 }
Willy Tarreau62793712011-07-24 19:23:38 +0200387 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100388 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreau62793712011-07-24 19:23:38 +0200389}
390
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200391/* Marks a ready listener as limited so that we only try to re-enable it when
392 * resources are free again. It will be queued into the specified queue.
393 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200394static void limit_listener(struct listener *l, struct list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200395{
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100396 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200397 if (l->state == LI_READY) {
Willy Tarreau01abd022019-02-28 10:27:18 +0100398 LIST_ADDQ_LOCKED(list, &l->wait_queue);
Willy Tarreau49b046d2012-08-09 12:11:58 +0200399 fd_stop_recv(l->fd);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200400 l->state = LI_LIMITED;
401 }
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100402 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200403}
404
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100405/* This function adds all of the protocol's listener's file descriptors to the
406 * polling lists when they are in the LI_LISTEN state. It is intended to be
407 * used as a protocol's generic enable_all() primitive, for use after the
408 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
409 * their number of connections. It always returns ERR_NONE.
410 */
411int enable_all_listeners(struct protocol *proto)
412{
413 struct listener *listener;
414
415 list_for_each_entry(listener, &proto->listeners, proto_list)
416 enable_listener(listener);
417 return ERR_NONE;
418}
419
420/* This function removes all of the protocol's listener's file descriptors from
421 * the polling lists when they are in the LI_READY or LI_FULL states. It is
422 * intended to be used as a protocol's generic disable_all() primitive. It puts
423 * the listeners into LI_LISTEN, and always returns ERR_NONE.
424 */
425int disable_all_listeners(struct protocol *proto)
426{
427 struct listener *listener;
428
429 list_for_each_entry(listener, &proto->listeners, proto_list)
430 disable_listener(listener);
431 return ERR_NONE;
432}
433
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200434/* Dequeues all of the listeners waiting for a resource in wait queue <queue>. */
435void dequeue_all_listeners(struct list *list)
436{
Willy Tarreau01abd022019-02-28 10:27:18 +0100437 struct listener *listener;
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200438
Willy Tarreau01abd022019-02-28 10:27:18 +0100439 while ((listener = LIST_POP_LOCKED(list, struct listener *, wait_queue))) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200440 /* This cannot fail because the listeners are by definition in
Willy Tarreau01abd022019-02-28 10:27:18 +0100441 * the LI_LIMITED state.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200442 */
Willy Tarreau01abd022019-02-28 10:27:18 +0100443 resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200444 }
445}
446
Christopher Faulet510c0d62018-03-16 10:04:47 +0100447/* Must be called with the lock held. Depending on <do_close> value, it does
448 * what unbind_listener or unbind_listener_no_close should do.
449 */
450void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100451{
452 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200453 fd_stop_recv(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100454
Willy Tarreau01abd022019-02-28 10:27:18 +0100455 LIST_DEL_LOCKED(&listener->wait_queue);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200456
Willy Tarreaube58c382011-07-24 18:28:10 +0200457 if (listener->state >= LI_PAUSED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +0200458 if (do_close) {
459 fd_delete(listener->fd);
460 listener->fd = -1;
461 }
462 else
463 fd_remove(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100464 listener->state = LI_ASSIGNED;
465 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100466}
467
Olivier Houchard1fc05162017-04-06 01:05:05 +0200468/* This function closes the listening socket for the specified listener,
469 * provided that it's already in a listening state. The listener enters the
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100470 * LI_ASSIGNED state. This function is intended to be used as a generic
471 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200472 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100473void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200474{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100475 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100476 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100477 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200478}
479
480/* This function pretends the listener is dead, but keeps the FD opened, so
481 * that we can provide it, for conf reloading.
482 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100483void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200484{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100485 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100486 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100487 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200488}
489
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100490/* This function closes all listening sockets bound to the protocol <proto>,
491 * and the listeners end in LI_ASSIGNED state if they were higher. It does not
492 * detach them from the protocol. It always returns ERR_NONE.
493 */
494int unbind_all_listeners(struct protocol *proto)
495{
496 struct listener *listener;
497
498 list_for_each_entry(listener, &proto->listeners, proto_list)
499 unbind_listener(listener);
500 return ERR_NONE;
501}
502
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200503/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
504 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
505 * allocation). The address family is taken from ss->ss_family. The number of
506 * jobs and listeners is automatically increased by the number of listeners
William Lallemand75ea0a02017-11-15 19:02:58 +0100507 * created. If the <inherited> argument is set to 1, it specifies that the FD
508 * was obtained from a parent process.
509 * It returns non-zero on success, zero on error with the error message
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200510 * set in <err>.
511 */
512int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
William Lallemand75ea0a02017-11-15 19:02:58 +0100513 int portl, int porth, int fd, int inherited, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200514{
515 struct protocol *proto = protocol_by_family(ss->ss_family);
516 struct listener *l;
517 int port;
518
519 if (!proto) {
520 memprintf(err, "unsupported protocol family %d", ss->ss_family);
521 return 0;
522 }
523
524 for (port = portl; port <= porth; port++) {
525 l = calloc(1, sizeof(*l));
526 if (!l) {
527 memprintf(err, "out of memory");
528 return 0;
529 }
530 l->obj_type = OBJ_TYPE_LISTENER;
531 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
532 LIST_ADDQ(&bc->listeners, &l->by_bind);
533 l->bind_conf = bc;
534
535 l->fd = fd;
536 memcpy(&l->addr, ss, sizeof(*ss));
Willy Tarreau01abd022019-02-28 10:27:18 +0100537 LIST_INIT(&l->wait_queue);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200538 l->state = LI_INIT;
539
540 proto->add(l, port);
541
William Lallemand75ea0a02017-11-15 19:02:58 +0100542 if (inherited)
543 l->options |= LI_O_INHERITED;
544
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100545 HA_SPIN_INIT(&l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200546 HA_ATOMIC_ADD(&jobs, 1);
547 HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200548 }
549 return 1;
550}
551
Willy Tarreau1a64d162007-10-28 22:26:05 +0100552/* Delete a listener from its protocol's list of listeners. The listener's
553 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200554 * number of listeners is updated, as well as the global number of listeners
555 * and jobs. Note that the listener must have previously been unbound. This
556 * is the generic function to use to remove a listener.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100557 */
558void delete_listener(struct listener *listener)
559{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100560 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100561 if (listener->state == LI_ASSIGNED) {
562 listener->state = LI_INIT;
563 LIST_DEL(&listener->proto_list);
564 listener->proto->nb_listeners--;
565 HA_ATOMIC_SUB(&jobs, 1);
566 HA_ATOMIC_SUB(&listeners, 1);
567 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100568 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100569}
570
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200571/* This function is called on a read event from a listening socket, corresponding
572 * to an accept. It tries to accept as many connections as possible, and for each
573 * calls the listener's accept handler (generally the frontend's accept handler).
574 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200575void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200576{
577 struct listener *l = fdtab[fd].owner;
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100578 struct proxy *p;
579 int max_accept;
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100580 int next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100581 int next_feconn = 0;
582 int next_actconn = 0;
Willy Tarreaubb660302014-05-07 19:47:02 +0200583 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200584 int cfd;
585 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100586#ifdef USE_ACCEPT4
587 static int accept4_broken;
588#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200589
Olivier Houchardd16a9df2019-02-25 16:18:16 +0100590 if (!l)
591 return;
592 p = l->bind_conf->frontend;
593 max_accept = l->maxaccept ? l->maxaccept : 1;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200594
Willy Tarreau93e7c002013-10-07 18:51:07 +0200595 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
596 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200597
598 if (unlikely(!max)) {
599 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200600 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200601 goto wait_expire;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200602 }
603
604 if (max_accept > max)
605 max_accept = max;
606 }
607
608 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200609 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
610
611 if (unlikely(!max)) {
612 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200613 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200614 goto wait_expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200615 }
616
617 if (max_accept > max)
618 max_accept = max;
619 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200620#ifdef USE_OPENSSL
621 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
622 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200623
Willy Tarreaue43d5322013-10-07 20:01:52 +0200624 if (unlikely(!max)) {
625 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200626 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200627 goto wait_expire;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200628 }
629
630 if (max_accept > max)
631 max_accept = max;
632 }
633#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200634 if (p && p->fe_sps_lim) {
635 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
636
637 if (unlikely(!max)) {
638 /* frontend accept rate limit was reached */
639 limit_listener(l, &p->listener_queue);
640 task_schedule(p->task, tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0)));
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200641 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200642 }
643
644 if (max_accept > max)
645 max_accept = max;
646 }
647
648 /* Note: if we fail to allocate a connection because of configured
649 * limits, we'll schedule a new attempt worst 1 second later in the
650 * worst case. If we fail due to system limits or temporary resource
651 * shortage, we try again 100ms later in the worst case.
652 */
Willy Tarreau82c97892019-02-27 19:32:32 +0100653 for (; max_accept-- > 0; next_conn = next_feconn = next_actconn = 0) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200654 struct sockaddr_storage addr;
655 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200656 unsigned int count;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200657
Willy Tarreau82c97892019-02-27 19:32:32 +0100658 /* pre-increase the number of connections without going too far.
659 * We process the listener, then the proxy, then the process.
660 * We know which ones to unroll based on the next_xxx value.
661 */
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100662 do {
663 count = l->nbconn;
664 if (count >= l->maxconn) {
665 /* the listener was marked full or another
666 * thread is going to do it.
667 */
668 next_conn = 0;
669 goto end;
670 }
671 next_conn = count + 1;
672 } while (!HA_ATOMIC_CAS(&l->nbconn, &count, next_conn));
673
674 if (next_conn == l->maxconn) {
675 /* we filled it, mark it full */
676 listener_full(l);
677 }
678
Willy Tarreau82c97892019-02-27 19:32:32 +0100679 if (p) {
680 do {
681 count = p->feconn;
682 if (count >= p->maxconn) {
683 /* the frontend was marked full or another
684 * thread is going to do it.
685 */
686 next_feconn = 0;
687 goto end;
688 }
689 next_feconn = count + 1;
690 } while (!HA_ATOMIC_CAS(&p->feconn, &count, next_feconn));
691
692 if (unlikely(next_feconn == p->maxconn)) {
693 /* we just filled it */
694 limit_listener(l, &p->listener_queue);
695 }
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200696 }
697
Willy Tarreau82c97892019-02-27 19:32:32 +0100698 if (!(l->options & LI_O_UNLIMITED)) {
699 do {
700 count = actconn;
701 if (count >= global.maxconn) {
702 /* the process was marked full or another
703 * thread is going to do it.
704 */
705 next_actconn = 0;
706 goto end;
707 }
708 next_actconn = count + 1;
709 } while (!HA_ATOMIC_CAS(&actconn, &count, next_actconn));
710
711 if (unlikely(next_actconn == global.maxconn)) {
712 limit_listener(l, &global_listener_queue);
713 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
714 }
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200715 }
716
William Lallemand2fe7dd02018-09-11 16:51:29 +0200717 /* with sockpair@ we don't want to do an accept */
718 if (unlikely(l->addr.ss_family == AF_CUST_SOCKPAIR)) {
719 if ((cfd = recv_fd_uxst(fd)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100720 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau888d5672019-01-27 18:34:12 +0100721 /* just like with UNIX sockets, only the family is filled */
722 addr.ss_family = AF_UNIX;
723 laddr = sizeof(addr.ss_family);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200724 } else
725
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200726#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100727 /* only call accept4() if it's known to be safe, otherwise
728 * fallback to the legacy accept() + fcntl().
729 */
730 if (unlikely(accept4_broken ||
William Lallemandd9138002018-11-27 12:02:39 +0100731 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
Willy Tarreau818dca52014-01-31 19:40:19 +0100732 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
733 (accept4_broken = 1))))
734#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200735 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
William Lallemandd9138002018-11-27 12:02:39 +0100736 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100737
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200738 if (unlikely(cfd == -1)) {
739 switch (errno) {
740 case EAGAIN:
Willy Tarreaubb660302014-05-07 19:47:02 +0200741 if (fdtab[fd].ev & FD_POLL_HUP) {
742 /* the listening socket might have been disabled in a shared
743 * process and we're a collateral victim. We'll just pause for
744 * a while in case it comes back. In the mean time, we need to
745 * clear this sticky flag.
746 */
747 fdtab[fd].ev &= ~FD_POLL_HUP;
748 goto transient_error;
749 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100750 fd_cant_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200751 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200752 case EINVAL:
753 /* might be trying to accept on a shut fd (eg: soft stop) */
754 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100755 case EINTR:
756 case ECONNABORTED:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100757 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100758 if (p)
759 HA_ATOMIC_SUB(&p->feconn, 1);
760 if (!(l->options & LI_O_UNLIMITED))
761 HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreaua593ec52014-01-20 21:21:30 +0100762 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200763 case ENFILE:
764 if (p)
765 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100766 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
767 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200768 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200769 case EMFILE:
770 if (p)
771 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100772 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
773 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200774 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200775 case ENOBUFS:
776 case ENOMEM:
777 if (p)
778 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100779 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
780 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200781 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200782 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100783 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100784 goto stop;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200785 }
786 }
787
William Lallemandd9138002018-11-27 12:02:39 +0100788 /* we don't want to leak the FD upon reload if it's in the master */
789 if (unlikely(master == 1))
790 fcntl(cfd, F_SETFD, FD_CLOEXEC);
791
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100792 /* The connection was accepted, it must be counted as such */
793 if (l->counters)
794 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn);
795
Willy Tarreau82c97892019-02-27 19:32:32 +0100796 if (p)
797 HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn);
798
799 proxy_inc_fe_conn_ctr(l, p);
800
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100801 if (!(l->options & LI_O_UNLIMITED)) {
802 count = update_freq_ctr(&global.conn_per_sec, 1);
803 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100804 }
805
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200806 if (unlikely(cfd >= global.maxsock)) {
807 send_log(p, LOG_EMERG,
808 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
809 p->id);
810 close(cfd);
811 limit_listener(l, &global_listener_queue);
812 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200813 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200814 }
815
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100816 /* past this point, l->accept() will automatically decrement
Willy Tarreau82c97892019-02-27 19:32:32 +0100817 * l->nbconn, feconn and actconn once done. Setting next_*conn=0
818 * allows the error path not to rollback on nbconn. It's more
819 * convenient than duplicating all exit labels.
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100820 */
821 next_conn = 0;
Willy Tarreau82c97892019-02-27 19:32:32 +0100822 next_feconn = 0;
823 next_actconn = 0;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200824
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100825#if defined(USE_THREAD)
826 count = l->bind_conf->thr_count;
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100827 if (count > 1 && (global.tune.options & GTUNE_LISTENER_MQ)) {
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100828 struct accept_queue_ring *ring;
829 int r, t1, t2, q1, q2;
830
831 /* pick two small distinct random values and drop lower bits */
832 r = (random() >> 8) % ((count - 1) * count);
833 t2 = r / count; // 0..thr_count-2
834 t1 = r % count; // 0..thr_count-1
835 t2 += t1 + 1; // necessarily different from t1
836
837 if (t2 >= count)
838 t2 -= count;
839
840 t1 = bind_map_thread_id(l->bind_conf, t1);
841 t2 = bind_map_thread_id(l->bind_conf, t2);
842
843 q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE;
844 if (q1 >= ACCEPT_QUEUE_SIZE)
845 q1 -= ACCEPT_QUEUE_SIZE;
846
847 q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE;
848 if (q2 >= ACCEPT_QUEUE_SIZE)
849 q2 -= ACCEPT_QUEUE_SIZE;
850
851 /* make t1 the lowest loaded thread */
852 if (q1 >= ACCEPT_QUEUE_SIZE || l->thr_conn[t1] + q1 > l->thr_conn[t2] + q2)
853 t1 = t2;
854
855 /* We use deferred accepts even if it's the local thread because
856 * tests show that it's the best performing model, likely due to
857 * better cache locality when processing this loop.
858 */
859 ring = &accept_queue_rings[t1];
860 if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) {
Willy Tarreau8a034082019-02-27 10:45:55 +0100861 HA_ATOMIC_ADD(&activity[t1].accq_pushed, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100862 task_wakeup(ring->task, TASK_WOKEN_IO);
863 continue;
864 }
865 /* If the ring is full we do a synchronous accept on
866 * the local thread here.
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100867 */
Willy Tarreau8a034082019-02-27 10:45:55 +0100868 HA_ATOMIC_ADD(&activity[t1].accq_full, 1);
Willy Tarreaue0e9c482019-01-27 15:37:19 +0100869 }
870#endif // USE_THREAD
871
Willy Tarreau9e853182019-02-03 10:36:29 +0100872 HA_ATOMIC_ADD(&l->thr_conn[tid], 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200873 ret = l->accept(l, cfd, &addr);
874 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200875 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200876 * we just have to ignore it (ret == 0) or it's a critical
877 * error due to a resource shortage, and we must stop the
878 * listener (ret < 0).
879 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200880 if (ret == 0) /* successful termination */
881 continue;
882
Willy Tarreaubb660302014-05-07 19:47:02 +0200883 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200884 }
885
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100886 /* increase the per-process number of cumulated sessions, this
887 * may only be done once l->accept() has accepted the connection.
888 */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200889 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200890 count = update_freq_ctr(&global.sess_per_sec, 1);
891 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200892 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200893#ifdef USE_OPENSSL
894 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200895 count = update_freq_ctr(&global.ssl_per_sec, 1);
896 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +0200897 }
898#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +0200899
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100900 } /* end of for (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200901
Willy Tarreauaece46a2012-07-06 12:25:58 +0200902 /* we've exhausted max_accept, so there is no need to poll again */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100903 stop:
904 fd_done_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200905 goto end;
Willy Tarreaubb660302014-05-07 19:47:02 +0200906
907 transient_error:
908 /* pause the listener and try again in 100 ms */
909 expire = tick_add(now_ms, 100);
910
911 wait_expire:
912 limit_listener(l, &global_listener_queue);
913 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200914 end:
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100915 if (next_conn)
916 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau741b4d62019-02-25 15:02:04 +0100917
Willy Tarreau82c97892019-02-27 19:32:32 +0100918 if (p && next_feconn)
919 HA_ATOMIC_SUB(&p->feconn, 1);
920
921 if (next_actconn)
922 HA_ATOMIC_SUB(&actconn, 1);
923
924 if ((l->state == LI_FULL && l->nbconn < l->maxconn) ||
925 (l->state == LI_LIMITED && ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn)))) {
Willy Tarreau3f0d02b2019-02-25 19:23:37 +0100926 /* at least one thread has to this when quitting */
927 resume_listener(l);
928
929 /* Dequeues all of the listeners waiting for a resource */
930 if (!LIST_ISEMPTY(&global_listener_queue))
931 dequeue_all_listeners(&global_listener_queue);
932
933 if (!LIST_ISEMPTY(&p->listener_queue) &&
934 (!p->fe_sps_lim || freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0) > 0))
935 dequeue_all_listeners(&p->listener_queue);
936 }
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200937}
938
Willy Tarreau05f50472017-09-15 09:19:58 +0200939/* Notify the listener that a connection initiated from it was released. This
940 * is used to keep the connection count consistent and to possibly re-open
941 * listening when it was limited.
942 */
943void listener_release(struct listener *l)
944{
945 struct proxy *fe = l->bind_conf->frontend;
946
947 if (!(l->options & LI_O_UNLIMITED))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200948 HA_ATOMIC_SUB(&actconn, 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100949 if (fe)
950 HA_ATOMIC_SUB(&fe->feconn, 1);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200951 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau9e853182019-02-03 10:36:29 +0100952 HA_ATOMIC_SUB(&l->thr_conn[tid], 1);
Willy Tarreau82c97892019-02-27 19:32:32 +0100953
954 if (l->state == LI_FULL || l->state == LI_LIMITED)
Willy Tarreau05f50472017-09-15 09:19:58 +0200955 resume_listener(l);
956
957 /* Dequeues all of the listeners waiting for a resource */
958 if (!LIST_ISEMPTY(&global_listener_queue))
959 dequeue_all_listeners(&global_listener_queue);
960
961 if (!LIST_ISEMPTY(&fe->listener_queue) &&
962 (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0))
963 dequeue_all_listeners(&fe->listener_queue);
964}
965
Willy Tarreau26982662012-09-12 23:17:10 +0200966/*
967 * Registers the bind keyword list <kwl> as a list of valid keywords for next
968 * parsing sessions.
969 */
970void bind_register_keywords(struct bind_kw_list *kwl)
971{
972 LIST_ADDQ(&bind_keywords.list, &kwl->list);
973}
974
975/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
976 * keyword is found with a NULL ->parse() function, then an attempt is made to
977 * find one with a valid ->parse() function. This way it is possible to declare
978 * platform-dependant, known keywords as NULL, then only declare them as valid
979 * if some options are met. Note that if the requested keyword contains an
980 * opening parenthesis, everything from this point is ignored.
981 */
982struct bind_kw *bind_find_kw(const char *kw)
983{
984 int index;
985 const char *kwend;
986 struct bind_kw_list *kwl;
987 struct bind_kw *ret = NULL;
988
989 kwend = strchr(kw, '(');
990 if (!kwend)
991 kwend = kw + strlen(kw);
992
993 list_for_each_entry(kwl, &bind_keywords.list, list) {
994 for (index = 0; kwl->kw[index].kw != NULL; index++) {
995 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
996 kwl->kw[index].kw[kwend-kw] == 0) {
997 if (kwl->kw[index].parse)
998 return &kwl->kw[index]; /* found it !*/
999 else
1000 ret = &kwl->kw[index]; /* may be OK */
1001 }
1002 }
1003 }
1004 return ret;
1005}
1006
Willy Tarreau8638f482012-09-18 18:01:17 +02001007/* Dumps all registered "bind" keywords to the <out> string pointer. The
1008 * unsupported keywords are only dumped if their supported form was not
1009 * found.
1010 */
1011void bind_dump_kws(char **out)
1012{
1013 struct bind_kw_list *kwl;
1014 int index;
1015
1016 *out = NULL;
1017 list_for_each_entry(kwl, &bind_keywords.list, list) {
1018 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1019 if (kwl->kw[index].parse ||
1020 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +02001021 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
1022 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +02001023 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +02001024 kwl->kw[index].skip ? " <arg>" : "",
1025 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +02001026 }
1027 }
1028 }
1029}
1030
Willy Tarreaub2b50a72019-02-03 11:14:25 +01001031/* recompute the bit counts per parity for the bind_thread value. This will be
1032 * used to quickly map a thread number from 1 to #thread to a thread ID among
1033 * the ones bound. This is the preparation phase of the bit rank counting algo
1034 * described here: https://graphics.stanford.edu/~seander/bithacks.html
1035 */
1036void bind_recount_thread_bits(struct bind_conf *conf)
1037{
1038 unsigned long m;
1039
1040 m = thread_mask(conf->bind_thread);
1041 conf->thr_count = my_popcountl(m);
1042 mask_prep_rank_map(m, &conf->thr_2, &conf->thr_4, &conf->thr_8, &conf->thr_16);
1043}
1044
1045/* Report the ID of thread <r> in bind_conf <conf> according to its thread_mask.
1046 * <r> must be between 0 and LONGBITS-1. This makes use of the pre-computed
1047 * bits resulting from bind_recount_thread_bits. See this function for more
1048 * info.
1049 */
1050unsigned int bind_map_thread_id(const struct bind_conf *conf, unsigned int r)
1051{
1052 unsigned long m;
1053
1054 m = thread_mask(conf->bind_thread);
1055 return mask_find_rank_bit_fast(r, m, conf->thr_2, conf->thr_4, conf->thr_8, conf->thr_16);
1056}
1057
Willy Tarreau645513a2010-05-24 20:55:15 +02001058/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001059/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +02001060/************************************************************************/
1061
Willy Tarreaua5e37562011-12-16 17:06:15 +01001062/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +02001063static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001064smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001065{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001066 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001067 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +02001068 return 1;
1069}
1070
Willy Tarreaua5e37562011-12-16 17:06:15 +01001071/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +02001072static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001073smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001074{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001075 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001076 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +02001077 return 1;
1078}
1079
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001080/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001081static 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 +02001082{
1083 struct listener *l;
1084
Willy Tarreau4348fad2012-09-20 16:48:07 +02001085 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001086 l->options |= LI_O_ACC_PROXY;
1087
1088 return 0;
1089}
1090
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001091/* parse the "accept-netscaler-cip" bind keyword */
1092static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1093{
1094 struct listener *l;
1095 uint32_t val;
1096
1097 if (!*args[cur_arg + 1]) {
1098 memprintf(err, "'%s' : missing value", args[cur_arg]);
1099 return ERR_ALERT | ERR_FATAL;
1100 }
1101
1102 val = atol(args[cur_arg + 1]);
1103 if (val <= 0) {
1104 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
1105 return ERR_ALERT | ERR_FATAL;
1106 }
1107
1108 list_for_each_entry(l, &conf->listeners, by_bind) {
1109 l->options |= LI_O_ACC_CIP;
1110 conf->ns_cip_magic = val;
1111 }
1112
1113 return 0;
1114}
1115
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001116/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001117static 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 +02001118{
1119 struct listener *l;
1120 int val;
1121
1122 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001123 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001124 return ERR_ALERT | ERR_FATAL;
1125 }
1126
1127 val = atol(args[cur_arg + 1]);
1128 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001129 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001130 return ERR_ALERT | ERR_FATAL;
1131 }
1132
Willy Tarreau4348fad2012-09-20 16:48:07 +02001133 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001134 l->backlog = val;
1135
1136 return 0;
1137}
1138
1139/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001140static 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 +02001141{
1142 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001143 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001144 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001145
Willy Tarreau4348fad2012-09-20 16:48:07 +02001146 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001147 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001148 return ERR_ALERT | ERR_FATAL;
1149 }
1150
1151 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001152 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001153 return ERR_ALERT | ERR_FATAL;
1154 }
1155
Willy Tarreau4348fad2012-09-20 16:48:07 +02001156 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +01001157 new->luid = strtol(args[cur_arg + 1], &error, 10);
1158 if (*error != '\0') {
1159 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
1160 return ERR_ALERT | ERR_FATAL;
1161 }
Willy Tarreau4348fad2012-09-20 16:48:07 +02001162 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001163
Willy Tarreau4348fad2012-09-20 16:48:07 +02001164 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001165 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001166 return ERR_ALERT | ERR_FATAL;
1167 }
1168
Willy Tarreau4348fad2012-09-20 16:48:07 +02001169 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001170 if (node) {
1171 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001172 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
1173 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
1174 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001175 return ERR_ALERT | ERR_FATAL;
1176 }
1177
Willy Tarreau4348fad2012-09-20 16:48:07 +02001178 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001179 return 0;
1180}
1181
1182/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001183static 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 +02001184{
1185 struct listener *l;
1186 int val;
1187
1188 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001189 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001190 return ERR_ALERT | ERR_FATAL;
1191 }
1192
1193 val = atol(args[cur_arg + 1]);
1194 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001195 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001196 return ERR_ALERT | ERR_FATAL;
1197 }
1198
Willy Tarreau4348fad2012-09-20 16:48:07 +02001199 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001200 l->maxconn = val;
1201
1202 return 0;
1203}
1204
1205/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001206static 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 +02001207{
1208 struct listener *l;
1209
1210 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001211 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001212 return ERR_ALERT | ERR_FATAL;
1213 }
1214
Willy Tarreau4348fad2012-09-20 16:48:07 +02001215 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001216 l->name = strdup(args[cur_arg + 1]);
1217
1218 return 0;
1219}
1220
1221/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001222static 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 +02001223{
1224 struct listener *l;
1225 int val;
1226
1227 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001228 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001229 return ERR_ALERT | ERR_FATAL;
1230 }
1231
1232 val = atol(args[cur_arg + 1]);
1233 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001234 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001235 return ERR_ALERT | ERR_FATAL;
1236 }
1237
Willy Tarreau4348fad2012-09-20 16:48:07 +02001238 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001239 l->nice = val;
1240
1241 return 0;
1242}
1243
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001244/* parse the "process" bind keyword */
1245static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1246{
Christopher Fauletc644fa92017-11-23 22:44:11 +01001247 char *slash;
1248 unsigned long proc = 0, thread = 0;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001249
Christopher Fauletc644fa92017-11-23 22:44:11 +01001250 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
1251 *slash = 0;
1252
Willy Tarreauff9c9142019-02-07 10:39:36 +01001253 if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +01001254 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001255 return ERR_ALERT | ERR_FATAL;
1256 }
1257
Christopher Fauletc644fa92017-11-23 22:44:11 +01001258 if (slash) {
Willy Tarreauc9a82e42019-01-26 13:25:14 +01001259 if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) {
Christopher Fauletc644fa92017-11-23 22:44:11 +01001260 memprintf(err, "'%s' : %s", args[cur_arg], *err);
1261 return ERR_ALERT | ERR_FATAL;
1262 }
1263 *slash = '/';
1264 }
1265
1266 conf->bind_proc |= proc;
Willy Tarreaua36b3242019-02-02 13:14:34 +01001267 conf->bind_thread |= thread;
Willy Tarreaub2b50a72019-02-03 11:14:25 +01001268 bind_recount_thread_bits(conf);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001269 return 0;
1270}
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001271
Christopher Fauleta717b992018-04-10 14:43:00 +02001272/* parse the "proto" bind keyword */
1273static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1274{
1275 struct ist proto;
1276
1277 if (!*args[cur_arg + 1]) {
1278 memprintf(err, "'%s' : missing value", args[cur_arg]);
1279 return ERR_ALERT | ERR_FATAL;
1280 }
1281
1282 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
1283 conf->mux_proto = get_mux_proto(proto);
1284 if (!conf->mux_proto) {
1285 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
1286 return ERR_ALERT | ERR_FATAL;
1287 }
Christopher Fauleta717b992018-04-10 14:43:00 +02001288 return 0;
1289}
1290
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001291/* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */
1292static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx,
1293 struct proxy *defpx, const char *file, int line,
1294 char **err)
1295{
1296 if (too_many_args(1, args, err, NULL))
1297 return -1;
1298
1299 if (strcmp(args[1], "on") == 0)
1300 global.tune.options |= GTUNE_LISTENER_MQ;
1301 else if (strcmp(args[1], "off") == 0)
1302 global.tune.options &= ~GTUNE_LISTENER_MQ;
1303 else {
1304 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
1305 return -1;
1306 }
1307 return 0;
1308}
1309
Willy Tarreau61612d42012-04-19 18:42:05 +02001310/* Note: must not be declared <const> as its list will be overwritten.
1311 * Please take care of keeping this list alphabetically sorted.
1312 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001313static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001314 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
1315 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001316 { /* END */ },
1317}};
1318
Willy Tarreau0108d902018-11-25 19:14:37 +01001319INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1320
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001321/* Note: must not be declared <const> as its list will be overwritten.
1322 * Please take care of keeping this list alphabetically sorted.
1323 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001324static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001325 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001326}};
1327
Willy Tarreau0108d902018-11-25 19:14:37 +01001328INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
1329
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001330/* Note: must not be declared <const> as its list will be overwritten.
1331 * Please take care of keeping this list alphabetically sorted, doing so helps
1332 * all code contributors.
1333 * Optional keywords are also declared with a NULL ->parse() function so that
1334 * the config parser can report an appropriate error when a known keyword was
1335 * not enabled.
1336 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001337static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001338 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001339 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1340 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1341 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1342 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1343 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1344 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001345 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001346 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001347 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001348}};
1349
Willy Tarreau0108d902018-11-25 19:14:37 +01001350INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1351
Willy Tarreau7ac908b2019-02-27 12:02:18 +01001352/* config keyword parsers */
1353static struct cfg_kw_list cfg_kws = {ILH, {
1354 { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq },
1355 { 0, NULL, NULL }
1356}};
1357
1358INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1359
Willy Tarreau645513a2010-05-24 20:55:15 +02001360/*
1361 * Local variables:
1362 * c-indent-level: 8
1363 * c-basic-offset: 8
1364 * End:
1365 */