blob: 9646bbaaf8ccf367e8c1dbbebda297478d276cb1 [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>
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 Tarreaudd815982007-10-16 12:25:14 +020024#include <common/mini-clist.h>
25#include <common/standard.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020026#include <common/time.h>
27
28#include <types/global.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020029#include <types/protocol.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020030
Willy Tarreau645513a2010-05-24 20:55:15 +020031#include <proto/acl.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010032#include <proto/fd.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020033#include <proto/freq_ctr.h>
34#include <proto/log.h>
Willy Tarreau7a798e52016-04-14 11:13:20 +020035#include <proto/listener.h>
Willy Tarreau0de59fd2017-09-15 08:10:44 +020036#include <proto/protocol.h>
Willy Tarreau0ccb7442013-01-07 22:54:17 +010037#include <proto/sample.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020038#include <proto/stream.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020039#include <proto/task.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010040
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020041#ifdef USE_THREAD
42 /* listner_queue lock (same for global and per proxy queues) */
43static HA_SPINLOCK_T lq_lock;
44#endif
45
Willy Tarreau26982662012-09-12 23:17:10 +020046/* List head of all known bind keywords */
47static struct bind_kw_list bind_keywords = {
48 .list = LIST_HEAD_INIT(bind_keywords.list)
49};
50
Olivier Houchardf73629d2017-04-05 22:33:04 +020051struct xfer_sock_list *xfer_sock_list = NULL;
52
Willy Tarreaudabf2e22007-10-28 21:59:24 +010053/* This function adds the specified listener's file descriptor to the polling
54 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
Willy Tarreauae302532014-05-07 19:22:24 +020055 * LI_FULL state depending on its number of connections. In deamon mode, we
56 * also support binding only the relevant processes to their respective
57 * listeners. We don't do that in debug mode however.
Willy Tarreaudabf2e22007-10-28 21:59:24 +010058 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +020059static void enable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +010060{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020061 SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010062 if (listener->state == LI_LISTEN) {
William Lallemand095ba4c2017-06-01 17:38:50 +020063 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreauae302532014-05-07 19:22:24 +020064 listener->bind_conf->bind_proc &&
65 !(listener->bind_conf->bind_proc & (1UL << (relative_pid - 1)))) {
66 /* we don't want to enable this listener and don't
67 * want any fd event to reach it.
68 */
Olivier Houchard1fc05162017-04-06 01:05:05 +020069 if (!(global.tune.options & GTUNE_SOCKET_TRANSFER))
70 unbind_listener(listener);
71 else {
72 unbind_listener_no_close(listener);
73 listener->state = LI_LISTEN;
74 }
Willy Tarreauae302532014-05-07 19:22:24 +020075 }
76 else if (listener->nbconn < listener->maxconn) {
Willy Tarreau49b046d2012-08-09 12:11:58 +020077 fd_want_recv(listener->fd);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010078 listener->state = LI_READY;
Willy Tarreauae302532014-05-07 19:22:24 +020079 }
80 else {
Willy Tarreaudabf2e22007-10-28 21:59:24 +010081 listener->state = LI_FULL;
82 }
83 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020084 SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010085}
86
87/* This function removes the specified listener's file descriptor from the
88 * polling lists if it is in the LI_READY or in the LI_FULL state. The listener
89 * enters LI_LISTEN.
90 */
Christopher Fauletf5b8adc2017-06-02 10:00:35 +020091static void disable_listener(struct listener *listener)
Willy Tarreaudabf2e22007-10-28 21:59:24 +010092{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020093 SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010094 if (listener->state < LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020095 goto end;
Willy Tarreaudabf2e22007-10-28 21:59:24 +010096 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +020097 fd_stop_recv(listener->fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020098 if (listener->state == LI_LIMITED) {
99 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200100 LIST_DEL(&listener->wait_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200101 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
102 }
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100103 listener->state = LI_LISTEN;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200104 end:
105 SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100106}
107
Willy Tarreaube58c382011-07-24 18:28:10 +0200108/* This function tries to temporarily disable a listener, depending on the OS
109 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
110 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
111 * closes upon SHUT_WR and refuses to rebind. So a common validation path
112 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
113 * is disabled. It normally returns non-zero, unless an error is reported.
114 */
115int pause_listener(struct listener *l)
116{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200117 int ret = 1;
118
119 SPIN_LOCK(LISTENER_LOCK, &l->lock);
120
Olivier Houchard1fc05162017-04-06 01:05:05 +0200121 if (l->state <= LI_ZOMBIE)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200122 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200123
Willy Tarreau092d8652014-07-07 20:22:12 +0200124 if (l->proto->pause) {
125 /* Returns < 0 in case of failure, 0 if the listener
126 * was totally stopped, or > 0 if correctly paused.
127 */
128 int ret = l->proto->pause(l);
Willy Tarreaube58c382011-07-24 18:28:10 +0200129
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200130 if (ret < 0) {
131 ret = 0;
132 goto end;
133 }
Willy Tarreau092d8652014-07-07 20:22:12 +0200134 else if (ret == 0)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200135 goto end;
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200136 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200137
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200138 if (l->state == LI_LIMITED) {
139 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200140 LIST_DEL(&l->wait_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200141 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
142 }
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200143
Willy Tarreau49b046d2012-08-09 12:11:58 +0200144 fd_stop_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200145 l->state = LI_PAUSED;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200146 end:
147 SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
148 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200149}
150
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200151/* This function tries to resume a temporarily disabled listener. Paused, full,
152 * limited and disabled listeners are handled, which means that this function
153 * may replace enable_listener(). The resulting state will either be LI_READY
154 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreauae302532014-05-07 19:22:24 +0200155 * Listeners bound to a different process are not woken up unless we're in
Willy Tarreauaf2fd582015-04-14 12:07:16 +0200156 * foreground mode, and are ignored. If the listener was only in the assigned
157 * state, it's totally rebound. This can happen if a pause() has completely
158 * stopped it. If the resume fails, 0 is returned and an error might be
159 * displayed.
Willy Tarreaube58c382011-07-24 18:28:10 +0200160 */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200161static int __resume_listener(struct listener *l)
Willy Tarreaube58c382011-07-24 18:28:10 +0200162{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200163 int ret = 1;
164
165 SPIN_LOCK(LISTENER_LOCK, &l->lock);
166
William Lallemand095ba4c2017-06-01 17:38:50 +0200167 if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
Willy Tarreau3569df32017-03-15 12:47:46 +0100168 l->bind_conf->bind_proc &&
169 !(l->bind_conf->bind_proc & (1UL << (relative_pid - 1))))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200170 goto end;
Willy Tarreau3569df32017-03-15 12:47:46 +0100171
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200172 if (l->state == LI_ASSIGNED) {
173 char msg[100];
174 int err;
175
176 err = l->proto->bind(l, msg, sizeof(msg));
177 if (err & ERR_ALERT)
178 Alert("Resuming listener: %s\n", msg);
179 else if (err & ERR_WARN)
180 Warning("Resuming listener: %s\n", msg);
181
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200182 if (err & (ERR_FATAL | ERR_ABORT)) {
183 ret = 0;
184 goto end;
185 }
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200186 }
187
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200188 if (l->state < LI_PAUSED || l->state == LI_ZOMBIE) {
189 ret = 0;
190 goto end;
191 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200192
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200193 if (l->proto->sock_prot == IPPROTO_TCP &&
194 l->state == LI_PAUSED &&
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200195 listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0) {
196 ret = 0;
197 goto end;
198 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200199
200 if (l->state == LI_READY)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200201 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200202
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200203 if (l->state == LI_LIMITED)
204 LIST_DEL(&l->wait_queue);
205
Willy Tarreaube58c382011-07-24 18:28:10 +0200206 if (l->nbconn >= l->maxconn) {
207 l->state = LI_FULL;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200208 goto end;
Willy Tarreaube58c382011-07-24 18:28:10 +0200209 }
210
Willy Tarreau49b046d2012-08-09 12:11:58 +0200211 fd_want_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200212 l->state = LI_READY;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200213 end:
214 SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
215 return ret;
216}
217
218int resume_listener(struct listener *l)
219{
220 int ret;
221
222 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
223 ret = __resume_listener(l);
224 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
225 return ret;
Willy Tarreaube58c382011-07-24 18:28:10 +0200226}
227
Willy Tarreau87b09662015-04-03 00:22:06 +0200228/* Marks a ready listener as full so that the stream code tries to re-enable
Willy Tarreau62793712011-07-24 19:23:38 +0200229 * it upon next close() using resume_listener().
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200230 *
231 * Note: this function is only called from listener_accept so <l> is already
232 * locked.
Willy Tarreau62793712011-07-24 19:23:38 +0200233 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200234static void listener_full(struct listener *l)
Willy Tarreau62793712011-07-24 19:23:38 +0200235{
236 if (l->state >= LI_READY) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200237 if (l->state == LI_LIMITED) {
238 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200239 LIST_DEL(&l->wait_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200240 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
241 }
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200242
Willy Tarreau49b046d2012-08-09 12:11:58 +0200243 fd_stop_recv(l->fd);
Willy Tarreau62793712011-07-24 19:23:38 +0200244 l->state = LI_FULL;
245 }
246}
247
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200248/* Marks a ready listener as limited so that we only try to re-enable it when
249 * resources are free again. It will be queued into the specified queue.
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200250 *
251 * Note: this function is only called from listener_accept so <l> is already
252 * locked.
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200253 */
Christopher Faulet5580ba22017-08-28 15:29:20 +0200254static void limit_listener(struct listener *l, struct list *list)
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200255{
256 if (l->state == LI_READY) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200257 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200258 LIST_ADDQ(list, &l->wait_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200259 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreau49b046d2012-08-09 12:11:58 +0200260 fd_stop_recv(l->fd);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200261 l->state = LI_LIMITED;
262 }
263}
264
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100265/* This function adds all of the protocol's listener's file descriptors to the
266 * polling lists when they are in the LI_LISTEN state. It is intended to be
267 * used as a protocol's generic enable_all() primitive, for use after the
268 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
269 * their number of connections. It always returns ERR_NONE.
270 */
271int enable_all_listeners(struct protocol *proto)
272{
273 struct listener *listener;
274
275 list_for_each_entry(listener, &proto->listeners, proto_list)
276 enable_listener(listener);
277 return ERR_NONE;
278}
279
280/* This function removes all of the protocol's listener's file descriptors from
281 * the polling lists when they are in the LI_READY or LI_FULL states. It is
282 * intended to be used as a protocol's generic disable_all() primitive. It puts
283 * the listeners into LI_LISTEN, and always returns ERR_NONE.
284 */
285int disable_all_listeners(struct protocol *proto)
286{
287 struct listener *listener;
288
289 list_for_each_entry(listener, &proto->listeners, proto_list)
290 disable_listener(listener);
291 return ERR_NONE;
292}
293
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200294/* Dequeues all of the listeners waiting for a resource in wait queue <queue>. */
295void dequeue_all_listeners(struct list *list)
296{
297 struct listener *listener, *l_back;
298
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200299 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200300 list_for_each_entry_safe(listener, l_back, list, wait_queue) {
301 /* This cannot fail because the listeners are by definition in
302 * the LI_LIMITED state. The function also removes the entry
303 * from the queue.
304 */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200305 __resume_listener(listener);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200306 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200307 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200308}
309
Olivier Houchard1fc05162017-04-06 01:05:05 +0200310static int do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100311{
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200312 SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub648d632007-10-28 22:13:50 +0100313 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200314 fd_stop_recv(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100315
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200316 if (listener->state == LI_LIMITED) {
317 SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200318 LIST_DEL(&listener->wait_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200319 SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
320 }
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200321
Willy Tarreaube58c382011-07-24 18:28:10 +0200322 if (listener->state >= LI_PAUSED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +0200323 if (do_close) {
324 fd_delete(listener->fd);
325 listener->fd = -1;
326 }
327 else
328 fd_remove(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100329 listener->state = LI_ASSIGNED;
330 }
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200331 SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaub648d632007-10-28 22:13:50 +0100332 return ERR_NONE;
333}
334
Olivier Houchard1fc05162017-04-06 01:05:05 +0200335/* This function closes the listening socket for the specified listener,
336 * provided that it's already in a listening state. The listener enters the
337 * LI_ASSIGNED state. It always returns ERR_NONE. This function is intended
338 * to be used as a generic function for standard protocols.
339 */
340int unbind_listener(struct listener *listener)
341{
342 return do_unbind_listener(listener, 1);
343}
344
345/* This function pretends the listener is dead, but keeps the FD opened, so
346 * that we can provide it, for conf reloading.
347 */
348int unbind_listener_no_close(struct listener *listener)
349{
350 return do_unbind_listener(listener, 0);
351}
352
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100353/* This function closes all listening sockets bound to the protocol <proto>,
354 * and the listeners end in LI_ASSIGNED state if they were higher. It does not
355 * detach them from the protocol. It always returns ERR_NONE.
356 */
357int unbind_all_listeners(struct protocol *proto)
358{
359 struct listener *listener;
360
361 list_for_each_entry(listener, &proto->listeners, proto_list)
362 unbind_listener(listener);
363 return ERR_NONE;
364}
365
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200366/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
367 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
368 * allocation). The address family is taken from ss->ss_family. The number of
369 * jobs and listeners is automatically increased by the number of listeners
370 * created. It returns non-zero on success, zero on error with the error message
371 * set in <err>.
372 */
373int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
374 int portl, int porth, int fd, char **err)
375{
376 struct protocol *proto = protocol_by_family(ss->ss_family);
377 struct listener *l;
378 int port;
379
380 if (!proto) {
381 memprintf(err, "unsupported protocol family %d", ss->ss_family);
382 return 0;
383 }
384
385 for (port = portl; port <= porth; port++) {
386 l = calloc(1, sizeof(*l));
387 if (!l) {
388 memprintf(err, "out of memory");
389 return 0;
390 }
391 l->obj_type = OBJ_TYPE_LISTENER;
392 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
393 LIST_ADDQ(&bc->listeners, &l->by_bind);
394 l->bind_conf = bc;
395
396 l->fd = fd;
397 memcpy(&l->addr, ss, sizeof(*ss));
398 l->state = LI_INIT;
399
400 proto->add(l, port);
401
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200402 SPIN_INIT(&l->lock);
403 HA_ATOMIC_ADD(&jobs, 1);
404 HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200405 }
406 return 1;
407}
408
Willy Tarreau1a64d162007-10-28 22:26:05 +0100409/* Delete a listener from its protocol's list of listeners. The listener's
410 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200411 * number of listeners is updated, as well as the global number of listeners
412 * and jobs. Note that the listener must have previously been unbound. This
413 * is the generic function to use to remove a listener.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100414 */
415void delete_listener(struct listener *listener)
416{
417 if (listener->state != LI_ASSIGNED)
418 return;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200419
420 SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100421 listener->state = LI_INIT;
422 LIST_DEL(&listener->proto_list);
423 listener->proto->nb_listeners--;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200424 HA_ATOMIC_SUB(&jobs, 1);
425 HA_ATOMIC_SUB(&listeners, 1);
426 SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100427}
428
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200429/* This function is called on a read event from a listening socket, corresponding
430 * to an accept. It tries to accept as many connections as possible, and for each
431 * calls the listener's accept handler (generally the frontend's accept handler).
432 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200433void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200434{
435 struct listener *l = fdtab[fd].owner;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100436 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau50de90a2012-11-23 20:11:45 +0100437 int max_accept = l->maxaccept ? l->maxaccept : 1;
Willy Tarreaubb660302014-05-07 19:47:02 +0200438 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200439 int cfd;
440 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100441#ifdef USE_ACCEPT4
442 static int accept4_broken;
443#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200444
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200445 if (SPIN_TRYLOCK(LISTENER_LOCK, &l->lock))
446 return;
447
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200448 if (unlikely(l->nbconn >= l->maxconn)) {
449 listener_full(l);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200450 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200451 }
452
Willy Tarreau93e7c002013-10-07 18:51:07 +0200453 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
454 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200455
456 if (unlikely(!max)) {
457 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200458 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200459 goto wait_expire;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200460 }
461
462 if (max_accept > max)
463 max_accept = max;
464 }
465
466 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200467 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
468
469 if (unlikely(!max)) {
470 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200471 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200472 goto wait_expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200473 }
474
475 if (max_accept > max)
476 max_accept = max;
477 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200478#ifdef USE_OPENSSL
479 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
480 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200481
Willy Tarreaue43d5322013-10-07 20:01:52 +0200482 if (unlikely(!max)) {
483 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200484 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200485 goto wait_expire;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200486 }
487
488 if (max_accept > max)
489 max_accept = max;
490 }
491#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200492 if (p && p->fe_sps_lim) {
493 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
494
495 if (unlikely(!max)) {
496 /* frontend accept rate limit was reached */
497 limit_listener(l, &p->listener_queue);
498 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 +0200499 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200500 }
501
502 if (max_accept > max)
503 max_accept = max;
504 }
505
506 /* Note: if we fail to allocate a connection because of configured
507 * limits, we'll schedule a new attempt worst 1 second later in the
508 * worst case. If we fail due to system limits or temporary resource
509 * shortage, we try again 100ms later in the worst case.
510 */
511 while (max_accept--) {
512 struct sockaddr_storage addr;
513 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200514 unsigned int count;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200515
516 if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) {
517 limit_listener(l, &global_listener_queue);
518 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200519 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200520 }
521
522 if (unlikely(p && p->feconn >= p->maxconn)) {
523 limit_listener(l, &p->listener_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200524 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200525 }
526
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200527#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100528 /* only call accept4() if it's known to be safe, otherwise
529 * fallback to the legacy accept() + fcntl().
530 */
531 if (unlikely(accept4_broken ||
532 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
533 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
534 (accept4_broken = 1))))
535#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200536 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
537 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100538
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200539 if (unlikely(cfd == -1)) {
540 switch (errno) {
541 case EAGAIN:
Willy Tarreaubb660302014-05-07 19:47:02 +0200542 if (fdtab[fd].ev & FD_POLL_HUP) {
543 /* the listening socket might have been disabled in a shared
544 * process and we're a collateral victim. We'll just pause for
545 * a while in case it comes back. In the mean time, we need to
546 * clear this sticky flag.
547 */
548 fdtab[fd].ev &= ~FD_POLL_HUP;
549 goto transient_error;
550 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100551 fd_cant_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200552 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200553 case EINVAL:
554 /* might be trying to accept on a shut fd (eg: soft stop) */
555 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100556 case EINTR:
557 case ECONNABORTED:
558 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200559 case ENFILE:
560 if (p)
561 send_log(p, LOG_EMERG,
562 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
563 p->id, maxfd);
Willy Tarreaubb660302014-05-07 19:47:02 +0200564 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200565 case EMFILE:
566 if (p)
567 send_log(p, LOG_EMERG,
568 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
569 p->id, maxfd);
Willy Tarreaubb660302014-05-07 19:47:02 +0200570 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200571 case ENOBUFS:
572 case ENOMEM:
573 if (p)
574 send_log(p, LOG_EMERG,
575 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
576 p->id, maxfd);
Willy Tarreaubb660302014-05-07 19:47:02 +0200577 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200578 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100579 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100580 goto stop;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200581 }
582 }
583
584 if (unlikely(cfd >= global.maxsock)) {
585 send_log(p, LOG_EMERG,
586 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
587 p->id);
588 close(cfd);
589 limit_listener(l, &global_listener_queue);
590 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200591 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200592 }
593
594 /* increase the per-process number of cumulated connections */
595 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200596 count = update_freq_ctr(&global.conn_per_sec, 1);
597 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
598 HA_ATOMIC_ADD(&actconn, 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200599 }
600
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200601 count = HA_ATOMIC_ADD(&l->nbconn, 1);
602 if (l->counters)
603 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, count);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200604
605 ret = l->accept(l, cfd, &addr);
606 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200607 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200608 * we just have to ignore it (ret == 0) or it's a critical
609 * error due to a resource shortage, and we must stop the
610 * listener (ret < 0).
611 */
612 if (!(l->options & LI_O_UNLIMITED))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200613 HA_ATOMIC_SUB(&actconn, 1);
614 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200615 if (ret == 0) /* successful termination */
616 continue;
617
Willy Tarreaubb660302014-05-07 19:47:02 +0200618 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200619 }
620
621 if (l->nbconn >= l->maxconn) {
622 listener_full(l);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200623 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200624 }
625
Willy Tarreau93e7c002013-10-07 18:51:07 +0200626 /* increase the per-process number of cumulated connections */
627 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200628 count = update_freq_ctr(&global.sess_per_sec, 1);
629 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200630 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200631#ifdef USE_OPENSSL
632 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200633 count = update_freq_ctr(&global.ssl_per_sec, 1);
634 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +0200635 }
636#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +0200637
Willy Tarreauaece46a2012-07-06 12:25:58 +0200638 } /* end of while (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200639
Willy Tarreauaece46a2012-07-06 12:25:58 +0200640 /* we've exhausted max_accept, so there is no need to poll again */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100641 stop:
642 fd_done_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200643 goto end;
Willy Tarreaubb660302014-05-07 19:47:02 +0200644
645 transient_error:
646 /* pause the listener and try again in 100 ms */
647 expire = tick_add(now_ms, 100);
648
649 wait_expire:
650 limit_listener(l, &global_listener_queue);
651 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200652 end:
653 SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200654}
655
Willy Tarreau05f50472017-09-15 09:19:58 +0200656/* Notify the listener that a connection initiated from it was released. This
657 * is used to keep the connection count consistent and to possibly re-open
658 * listening when it was limited.
659 */
660void listener_release(struct listener *l)
661{
662 struct proxy *fe = l->bind_conf->frontend;
663
664 if (!(l->options & LI_O_UNLIMITED))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200665 HA_ATOMIC_SUB(&actconn, 1);
666 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau05f50472017-09-15 09:19:58 +0200667 if (l->state == LI_FULL)
668 resume_listener(l);
669
670 /* Dequeues all of the listeners waiting for a resource */
671 if (!LIST_ISEMPTY(&global_listener_queue))
672 dequeue_all_listeners(&global_listener_queue);
673
674 if (!LIST_ISEMPTY(&fe->listener_queue) &&
675 (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0))
676 dequeue_all_listeners(&fe->listener_queue);
677}
678
Willy Tarreau26982662012-09-12 23:17:10 +0200679/*
680 * Registers the bind keyword list <kwl> as a list of valid keywords for next
681 * parsing sessions.
682 */
683void bind_register_keywords(struct bind_kw_list *kwl)
684{
685 LIST_ADDQ(&bind_keywords.list, &kwl->list);
686}
687
688/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
689 * keyword is found with a NULL ->parse() function, then an attempt is made to
690 * find one with a valid ->parse() function. This way it is possible to declare
691 * platform-dependant, known keywords as NULL, then only declare them as valid
692 * if some options are met. Note that if the requested keyword contains an
693 * opening parenthesis, everything from this point is ignored.
694 */
695struct bind_kw *bind_find_kw(const char *kw)
696{
697 int index;
698 const char *kwend;
699 struct bind_kw_list *kwl;
700 struct bind_kw *ret = NULL;
701
702 kwend = strchr(kw, '(');
703 if (!kwend)
704 kwend = kw + strlen(kw);
705
706 list_for_each_entry(kwl, &bind_keywords.list, list) {
707 for (index = 0; kwl->kw[index].kw != NULL; index++) {
708 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
709 kwl->kw[index].kw[kwend-kw] == 0) {
710 if (kwl->kw[index].parse)
711 return &kwl->kw[index]; /* found it !*/
712 else
713 ret = &kwl->kw[index]; /* may be OK */
714 }
715 }
716 }
717 return ret;
718}
719
Willy Tarreau8638f482012-09-18 18:01:17 +0200720/* Dumps all registered "bind" keywords to the <out> string pointer. The
721 * unsupported keywords are only dumped if their supported form was not
722 * found.
723 */
724void bind_dump_kws(char **out)
725{
726 struct bind_kw_list *kwl;
727 int index;
728
729 *out = NULL;
730 list_for_each_entry(kwl, &bind_keywords.list, list) {
731 for (index = 0; kwl->kw[index].kw != NULL; index++) {
732 if (kwl->kw[index].parse ||
733 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +0200734 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
735 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +0200736 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +0200737 kwl->kw[index].skip ? " <arg>" : "",
738 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +0200739 }
740 }
741 }
742}
743
Willy Tarreau645513a2010-05-24 20:55:15 +0200744/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100745/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +0200746/************************************************************************/
747
Willy Tarreaua5e37562011-12-16 17:06:15 +0100748/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +0200749static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200750smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +0200751{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200752 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200753 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +0200754 return 1;
755}
756
Willy Tarreaua5e37562011-12-16 17:06:15 +0100757/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +0200758static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200759smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +0200760{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200761 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200762 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +0200763 return 1;
764}
765
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200766/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200767static 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 +0200768{
769 struct listener *l;
770
Willy Tarreau4348fad2012-09-20 16:48:07 +0200771 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200772 l->options |= LI_O_ACC_PROXY;
773
774 return 0;
775}
776
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100777/* parse the "accept-netscaler-cip" bind keyword */
778static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
779{
780 struct listener *l;
781 uint32_t val;
782
783 if (!*args[cur_arg + 1]) {
784 memprintf(err, "'%s' : missing value", args[cur_arg]);
785 return ERR_ALERT | ERR_FATAL;
786 }
787
788 val = atol(args[cur_arg + 1]);
789 if (val <= 0) {
790 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
791 return ERR_ALERT | ERR_FATAL;
792 }
793
794 list_for_each_entry(l, &conf->listeners, by_bind) {
795 l->options |= LI_O_ACC_CIP;
796 conf->ns_cip_magic = val;
797 }
798
799 return 0;
800}
801
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200802/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200803static 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 +0200804{
805 struct listener *l;
806 int val;
807
808 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200809 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200810 return ERR_ALERT | ERR_FATAL;
811 }
812
813 val = atol(args[cur_arg + 1]);
814 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200815 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200816 return ERR_ALERT | ERR_FATAL;
817 }
818
Willy Tarreau4348fad2012-09-20 16:48:07 +0200819 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200820 l->backlog = val;
821
822 return 0;
823}
824
825/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200826static 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 +0200827{
828 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200829 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +0100830 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200831
Willy Tarreau4348fad2012-09-20 16:48:07 +0200832 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200833 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200834 return ERR_ALERT | ERR_FATAL;
835 }
836
837 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200838 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200839 return ERR_ALERT | ERR_FATAL;
840 }
841
Willy Tarreau4348fad2012-09-20 16:48:07 +0200842 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +0100843 new->luid = strtol(args[cur_arg + 1], &error, 10);
844 if (*error != '\0') {
845 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
846 return ERR_ALERT | ERR_FATAL;
847 }
Willy Tarreau4348fad2012-09-20 16:48:07 +0200848 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200849
Willy Tarreau4348fad2012-09-20 16:48:07 +0200850 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200851 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200852 return ERR_ALERT | ERR_FATAL;
853 }
854
Willy Tarreau4348fad2012-09-20 16:48:07 +0200855 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200856 if (node) {
857 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200858 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
859 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
860 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200861 return ERR_ALERT | ERR_FATAL;
862 }
863
Willy Tarreau4348fad2012-09-20 16:48:07 +0200864 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200865 return 0;
866}
867
868/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200869static 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 +0200870{
871 struct listener *l;
872 int val;
873
874 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200875 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200876 return ERR_ALERT | ERR_FATAL;
877 }
878
879 val = atol(args[cur_arg + 1]);
880 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200881 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200882 return ERR_ALERT | ERR_FATAL;
883 }
884
Willy Tarreau4348fad2012-09-20 16:48:07 +0200885 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200886 l->maxconn = val;
887
888 return 0;
889}
890
891/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200892static 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 +0200893{
894 struct listener *l;
895
896 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200897 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200898 return ERR_ALERT | ERR_FATAL;
899 }
900
Willy Tarreau4348fad2012-09-20 16:48:07 +0200901 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200902 l->name = strdup(args[cur_arg + 1]);
903
904 return 0;
905}
906
907/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200908static 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 +0200909{
910 struct listener *l;
911 int val;
912
913 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200914 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200915 return ERR_ALERT | ERR_FATAL;
916 }
917
918 val = atol(args[cur_arg + 1]);
919 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200920 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200921 return ERR_ALERT | ERR_FATAL;
922 }
923
Willy Tarreau4348fad2012-09-20 16:48:07 +0200924 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200925 l->nice = val;
926
927 return 0;
928}
929
Willy Tarreau6ae1ba62014-05-07 19:01:58 +0200930/* parse the "process" bind keyword */
931static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
932{
933 unsigned long set = 0;
934 unsigned int low, high;
935
936 if (strcmp(args[cur_arg + 1], "all") == 0) {
937 set = 0;
938 }
939 else if (strcmp(args[cur_arg + 1], "odd") == 0) {
940 set |= ~0UL/3UL; /* 0x555....555 */
941 }
942 else if (strcmp(args[cur_arg + 1], "even") == 0) {
943 set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
944 }
945 else if (isdigit((int)*args[cur_arg + 1])) {
946 char *dash = strchr(args[cur_arg + 1], '-');
947
948 low = high = str2uic(args[cur_arg + 1]);
949 if (dash)
950 high = str2uic(dash + 1);
951
952 if (high < low) {
953 unsigned int swap = low;
954 low = high;
955 high = swap;
956 }
957
958 if (low < 1 || high > LONGBITS) {
959 memprintf(err, "'%s' : invalid range %d-%d, allowed range is 1..%d", args[cur_arg], low, high, LONGBITS);
960 return ERR_ALERT | ERR_FATAL;
961 }
962 while (low <= high)
963 set |= 1UL << (low++ - 1);
964 }
965 else {
966 memprintf(err, "'%s' expects 'all', 'odd', 'even', or a process range with numbers from 1 to %d.", args[cur_arg], LONGBITS);
967 return ERR_ALERT | ERR_FATAL;
968 }
969
970 conf->bind_proc = set;
971 return 0;
972}
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200973
Willy Tarreau61612d42012-04-19 18:42:05 +0200974/* Note: must not be declared <const> as its list will be overwritten.
975 * Please take care of keeping this list alphabetically sorted.
976 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200977static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200978 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
979 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100980 { /* END */ },
981}};
982
983/* Note: must not be declared <const> as its list will be overwritten.
984 * Please take care of keeping this list alphabetically sorted.
985 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200986static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100987 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +0200988}};
989
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200990/* Note: must not be declared <const> as its list will be overwritten.
991 * Please take care of keeping this list alphabetically sorted, doing so helps
992 * all code contributors.
993 * Optional keywords are also declared with a NULL ->parse() function so that
994 * the config parser can report an appropriate error when a known keyword was
995 * not enabled.
996 */
Willy Tarreau51fb7652012-09-18 18:24:39 +0200997static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100998 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200999 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1000 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1001 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1002 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1003 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1004 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001005 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001006 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001007}};
1008
Willy Tarreau645513a2010-05-24 20:55:15 +02001009__attribute__((constructor))
Willy Tarreaud1d54542012-09-12 22:58:11 +02001010static void __listener_init(void)
Willy Tarreau645513a2010-05-24 20:55:15 +02001011{
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001012 sample_register_fetches(&smp_kws);
Willy Tarreau645513a2010-05-24 20:55:15 +02001013 acl_register_keywords(&acl_kws);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001014 bind_register_keywords(&bind_kws);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001015 SPIN_INIT(&lq_lock);
Willy Tarreau645513a2010-05-24 20:55:15 +02001016}
1017
1018/*
1019 * Local variables:
1020 * c-indent-level: 8
1021 * c-basic-offset: 8
1022 * End:
1023 */