blob: a30d4fb4f6dda180fc50b7760bf93564cfad9602 [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 Tarreaudd815982007-10-16 12:25:14 +020025#include <common/mini-clist.h>
26#include <common/standard.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020027#include <common/time.h>
28
29#include <types/global.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020030#include <types/protocol.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020031
Willy Tarreau645513a2010-05-24 20:55:15 +020032#include <proto/acl.h>
Christopher Fauleta717b992018-04-10 14:43:00 +020033#include <proto/connection.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010034#include <proto/fd.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020035#include <proto/freq_ctr.h>
36#include <proto/log.h>
Willy Tarreau7a798e52016-04-14 11:13:20 +020037#include <proto/listener.h>
Willy Tarreau0de59fd2017-09-15 08:10:44 +020038#include <proto/protocol.h>
Willy Tarreau0ccb7442013-01-07 22:54:17 +010039#include <proto/sample.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020040#include <proto/stream.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020041#include <proto/task.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010042
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020043 /* listner_queue lock (same for global and per proxy queues) */
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010044__decl_hathreads(static HA_SPINLOCK_T lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020045
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 Faulet2a944ee2017-11-07 10:42:54 +010061 HA_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 &&
Willy Tarreau387bd4f2017-11-10 19:08:14 +010065 !(listener->bind_conf->bind_proc & pid_bit)) {
Willy Tarreauae302532014-05-07 19:22:24 +020066 /* 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))
Christopher Faulet510c0d62018-03-16 10:04:47 +010070 do_unbind_listener(listener, 1);
Olivier Houchard1fc05162017-04-06 01:05:05 +020071 else {
Christopher Faulet510c0d62018-03-16 10:04:47 +010072 do_unbind_listener(listener, 0);
Olivier Houchard1fc05162017-04-06 01:05:05 +020073 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 Faulet2a944ee2017-11-07 10:42:54 +010084 HA_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 Faulet2a944ee2017-11-07 10:42:54 +010093 HA_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) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +010099 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200100 LIST_DEL(&listener->wait_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100101 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200102 }
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100103 listener->state = LI_LISTEN;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200104 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100105 HA_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
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100119 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200120
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) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100139 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200140 LIST_DEL(&l->wait_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100141 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200142 }
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:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100147 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200148 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
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100165 HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200166
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 &&
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100169 !(l->bind_conf->bind_proc & pid_bit))
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)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100178 ha_alert("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200179 else if (err & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100180 ha_warning("Resuming listener: %s\n", msg);
Willy Tarreau1c4b8142014-07-07 21:06:24 +0200181
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:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100214 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200215 return ret;
216}
217
218int resume_listener(struct listener *l)
219{
220 int ret;
221
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100222 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200223 ret = __resume_listener(l);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100224 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200225 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) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100238 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200239 LIST_DEL(&l->wait_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100240 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200241 }
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 Faulet2a944ee2017-11-07 10:42:54 +0100257 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200258 LIST_ADDQ(list, &l->wait_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100259 HA_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 Faulet2a944ee2017-11-07 10:42:54 +0100299 HA_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 Faulet2a944ee2017-11-07 10:42:54 +0100307 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200308}
309
Christopher Faulet510c0d62018-03-16 10:04:47 +0100310/* Must be called with the lock held. Depending on <do_close> value, it does
311 * what unbind_listener or unbind_listener_no_close should do.
312 */
313void do_unbind_listener(struct listener *listener, int do_close)
Willy Tarreaub648d632007-10-28 22:13:50 +0100314{
315 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200316 fd_stop_recv(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100317
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200318 if (listener->state == LI_LIMITED) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100319 HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200320 LIST_DEL(&listener->wait_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100321 HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200322 }
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200323
Willy Tarreaube58c382011-07-24 18:28:10 +0200324 if (listener->state >= LI_PAUSED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +0200325 if (do_close) {
326 fd_delete(listener->fd);
327 listener->fd = -1;
328 }
329 else
330 fd_remove(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100331 listener->state = LI_ASSIGNED;
332 }
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100333}
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
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100337 * LI_ASSIGNED state. This function is intended to be used as a generic
338 * function for standard protocols.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200339 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100340void unbind_listener(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200341{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100342 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100343 do_unbind_listener(listener, 1);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100344 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200345}
346
347/* This function pretends the listener is dead, but keeps the FD opened, so
348 * that we can provide it, for conf reloading.
349 */
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100350void unbind_listener_no_close(struct listener *listener)
Olivier Houchard1fc05162017-04-06 01:05:05 +0200351{
Christopher Faulet510c0d62018-03-16 10:04:47 +0100352 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreaubbd09b92017-11-05 11:38:44 +0100353 do_unbind_listener(listener, 0);
Christopher Faulet510c0d62018-03-16 10:04:47 +0100354 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Olivier Houchard1fc05162017-04-06 01:05:05 +0200355}
356
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100357/* This function closes all listening sockets bound to the protocol <proto>,
358 * and the listeners end in LI_ASSIGNED state if they were higher. It does not
359 * detach them from the protocol. It always returns ERR_NONE.
360 */
361int unbind_all_listeners(struct protocol *proto)
362{
363 struct listener *listener;
364
365 list_for_each_entry(listener, &proto->listeners, proto_list)
366 unbind_listener(listener);
367 return ERR_NONE;
368}
369
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200370/* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port
371 * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto
372 * allocation). The address family is taken from ss->ss_family. The number of
373 * jobs and listeners is automatically increased by the number of listeners
William Lallemand75ea0a02017-11-15 19:02:58 +0100374 * created. If the <inherited> argument is set to 1, it specifies that the FD
375 * was obtained from a parent process.
376 * It returns non-zero on success, zero on error with the error message
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200377 * set in <err>.
378 */
379int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss,
William Lallemand75ea0a02017-11-15 19:02:58 +0100380 int portl, int porth, int fd, int inherited, char **err)
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200381{
382 struct protocol *proto = protocol_by_family(ss->ss_family);
383 struct listener *l;
384 int port;
385
386 if (!proto) {
387 memprintf(err, "unsupported protocol family %d", ss->ss_family);
388 return 0;
389 }
390
391 for (port = portl; port <= porth; port++) {
392 l = calloc(1, sizeof(*l));
393 if (!l) {
394 memprintf(err, "out of memory");
395 return 0;
396 }
397 l->obj_type = OBJ_TYPE_LISTENER;
398 LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe);
399 LIST_ADDQ(&bc->listeners, &l->by_bind);
400 l->bind_conf = bc;
401
402 l->fd = fd;
403 memcpy(&l->addr, ss, sizeof(*ss));
404 l->state = LI_INIT;
405
406 proto->add(l, port);
407
William Lallemand75ea0a02017-11-15 19:02:58 +0100408 if (inherited)
409 l->options |= LI_O_INHERITED;
410
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100411 HA_SPIN_INIT(&l->lock);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200412 HA_ATOMIC_ADD(&jobs, 1);
413 HA_ATOMIC_ADD(&listeners, 1);
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200414 }
415 return 1;
416}
417
Willy Tarreau1a64d162007-10-28 22:26:05 +0100418/* Delete a listener from its protocol's list of listeners. The listener's
419 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
Willy Tarreau2cc5bae2017-09-15 08:18:11 +0200420 * number of listeners is updated, as well as the global number of listeners
421 * and jobs. Note that the listener must have previously been unbound. This
422 * is the generic function to use to remove a listener.
Willy Tarreau1a64d162007-10-28 22:26:05 +0100423 */
424void delete_listener(struct listener *listener)
425{
426 if (listener->state != LI_ASSIGNED)
427 return;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200428
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100429 HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100430 listener->state = LI_INIT;
431 LIST_DEL(&listener->proto_list);
432 listener->proto->nb_listeners--;
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200433 HA_ATOMIC_SUB(&jobs, 1);
434 HA_ATOMIC_SUB(&listeners, 1);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100435 HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock);
Willy Tarreau1a64d162007-10-28 22:26:05 +0100436}
437
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200438/* This function is called on a read event from a listening socket, corresponding
439 * to an accept. It tries to accept as many connections as possible, and for each
440 * calls the listener's accept handler (generally the frontend's accept handler).
441 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200442void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200443{
444 struct listener *l = fdtab[fd].owner;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100445 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau50de90a2012-11-23 20:11:45 +0100446 int max_accept = l->maxaccept ? l->maxaccept : 1;
Willy Tarreaubb660302014-05-07 19:47:02 +0200447 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200448 int cfd;
449 int ret;
Willy Tarreau818dca52014-01-31 19:40:19 +0100450#ifdef USE_ACCEPT4
451 static int accept4_broken;
452#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200453
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100454 if (HA_SPIN_TRYLOCK(LISTENER_LOCK, &l->lock))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200455 return;
456
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200457 if (unlikely(l->nbconn >= l->maxconn)) {
458 listener_full(l);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200459 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200460 }
461
Willy Tarreau93e7c002013-10-07 18:51:07 +0200462 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
463 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200464
465 if (unlikely(!max)) {
466 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200467 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200468 goto wait_expire;
Willy Tarreau93e7c002013-10-07 18:51:07 +0200469 }
470
471 if (max_accept > max)
472 max_accept = max;
473 }
474
475 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200476 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
477
478 if (unlikely(!max)) {
479 /* frontend accept rate limit was reached */
Willy Tarreau93e7c002013-10-07 18:51:07 +0200480 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200481 goto wait_expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200482 }
483
484 if (max_accept > max)
485 max_accept = max;
486 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200487#ifdef USE_OPENSSL
488 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
489 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200490
Willy Tarreaue43d5322013-10-07 20:01:52 +0200491 if (unlikely(!max)) {
492 /* frontend accept rate limit was reached */
Willy Tarreaue43d5322013-10-07 20:01:52 +0200493 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
Willy Tarreaubb660302014-05-07 19:47:02 +0200494 goto wait_expire;
Willy Tarreaue43d5322013-10-07 20:01:52 +0200495 }
496
497 if (max_accept > max)
498 max_accept = max;
499 }
500#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200501 if (p && p->fe_sps_lim) {
502 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
503
504 if (unlikely(!max)) {
505 /* frontend accept rate limit was reached */
506 limit_listener(l, &p->listener_queue);
507 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 +0200508 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200509 }
510
511 if (max_accept > max)
512 max_accept = max;
513 }
514
515 /* Note: if we fail to allocate a connection because of configured
516 * limits, we'll schedule a new attempt worst 1 second later in the
517 * worst case. If we fail due to system limits or temporary resource
518 * shortage, we try again 100ms later in the worst case.
519 */
520 while (max_accept--) {
521 struct sockaddr_storage addr;
522 socklen_t laddr = sizeof(addr);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200523 unsigned int count;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200524
525 if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) {
526 limit_listener(l, &global_listener_queue);
527 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200528 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200529 }
530
531 if (unlikely(p && p->feconn >= p->maxconn)) {
532 limit_listener(l, &p->listener_queue);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200533 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200534 }
535
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200536#ifdef USE_ACCEPT4
Willy Tarreau818dca52014-01-31 19:40:19 +0100537 /* only call accept4() if it's known to be safe, otherwise
538 * fallback to the legacy accept() + fcntl().
539 */
540 if (unlikely(accept4_broken ||
541 ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 &&
542 (errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
543 (accept4_broken = 1))))
544#endif
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200545 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
546 fcntl(cfd, F_SETFL, O_NONBLOCK);
Willy Tarreau818dca52014-01-31 19:40:19 +0100547
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200548 if (unlikely(cfd == -1)) {
549 switch (errno) {
550 case EAGAIN:
Willy Tarreaubb660302014-05-07 19:47:02 +0200551 if (fdtab[fd].ev & FD_POLL_HUP) {
552 /* the listening socket might have been disabled in a shared
553 * process and we're a collateral victim. We'll just pause for
554 * a while in case it comes back. In the mean time, we need to
555 * clear this sticky flag.
556 */
557 fdtab[fd].ev &= ~FD_POLL_HUP;
558 goto transient_error;
559 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100560 fd_cant_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200561 goto end; /* nothing more to accept */
Willy Tarreaubb660302014-05-07 19:47:02 +0200562 case EINVAL:
563 /* might be trying to accept on a shut fd (eg: soft stop) */
564 goto transient_error;
Willy Tarreaua593ec52014-01-20 21:21:30 +0100565 case EINTR:
566 case ECONNABORTED:
567 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200568 case ENFILE:
569 if (p)
570 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100571 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
572 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200573 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200574 case EMFILE:
575 if (p)
576 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100577 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
578 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200579 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200580 case ENOBUFS:
581 case ENOMEM:
582 if (p)
583 send_log(p, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100584 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
585 p->id, global.maxsock);
Willy Tarreaubb660302014-05-07 19:47:02 +0200586 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200587 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100588 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100589 goto stop;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200590 }
591 }
592
593 if (unlikely(cfd >= global.maxsock)) {
594 send_log(p, LOG_EMERG,
595 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
596 p->id);
597 close(cfd);
598 limit_listener(l, &global_listener_queue);
599 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200600 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200601 }
602
603 /* increase the per-process number of cumulated connections */
604 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200605 count = update_freq_ctr(&global.conn_per_sec, 1);
606 HA_ATOMIC_UPDATE_MAX(&global.cps_max, count);
607 HA_ATOMIC_ADD(&actconn, 1);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200608 }
609
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200610 count = HA_ATOMIC_ADD(&l->nbconn, 1);
611 if (l->counters)
612 HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, count);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200613
614 ret = l->accept(l, cfd, &addr);
615 if (unlikely(ret <= 0)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200616 /* The connection was closed by stream_accept(). Either
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200617 * we just have to ignore it (ret == 0) or it's a critical
618 * error due to a resource shortage, and we must stop the
619 * listener (ret < 0).
620 */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200621 if (ret == 0) /* successful termination */
622 continue;
623
Willy Tarreaubb660302014-05-07 19:47:02 +0200624 goto transient_error;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200625 }
626
627 if (l->nbconn >= l->maxconn) {
628 listener_full(l);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200629 goto end;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200630 }
631
Willy Tarreau93e7c002013-10-07 18:51:07 +0200632 /* increase the per-process number of cumulated connections */
633 if (!(l->options & LI_O_UNLIMITED)) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200634 count = update_freq_ctr(&global.sess_per_sec, 1);
635 HA_ATOMIC_UPDATE_MAX(&global.sps_max, count);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200636 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200637#ifdef USE_OPENSSL
638 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200639 count = update_freq_ctr(&global.ssl_per_sec, 1);
640 HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count);
Willy Tarreaue43d5322013-10-07 20:01:52 +0200641 }
642#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +0200643
Willy Tarreauaece46a2012-07-06 12:25:58 +0200644 } /* end of while (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200645
Willy Tarreauaece46a2012-07-06 12:25:58 +0200646 /* we've exhausted max_accept, so there is no need to poll again */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100647 stop:
648 fd_done_recv(fd);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200649 goto end;
Willy Tarreaubb660302014-05-07 19:47:02 +0200650
651 transient_error:
652 /* pause the listener and try again in 100 ms */
653 expire = tick_add(now_ms, 100);
654
655 wait_expire:
656 limit_listener(l, &global_listener_queue);
657 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200658 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100659 HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock);
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200660}
661
Willy Tarreau05f50472017-09-15 09:19:58 +0200662/* Notify the listener that a connection initiated from it was released. This
663 * is used to keep the connection count consistent and to possibly re-open
664 * listening when it was limited.
665 */
666void listener_release(struct listener *l)
667{
668 struct proxy *fe = l->bind_conf->frontend;
669
670 if (!(l->options & LI_O_UNLIMITED))
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200671 HA_ATOMIC_SUB(&actconn, 1);
672 HA_ATOMIC_SUB(&l->nbconn, 1);
Willy Tarreau05f50472017-09-15 09:19:58 +0200673 if (l->state == LI_FULL)
674 resume_listener(l);
675
676 /* Dequeues all of the listeners waiting for a resource */
677 if (!LIST_ISEMPTY(&global_listener_queue))
678 dequeue_all_listeners(&global_listener_queue);
679
680 if (!LIST_ISEMPTY(&fe->listener_queue) &&
681 (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0))
682 dequeue_all_listeners(&fe->listener_queue);
683}
684
Willy Tarreau26982662012-09-12 23:17:10 +0200685/*
686 * Registers the bind keyword list <kwl> as a list of valid keywords for next
687 * parsing sessions.
688 */
689void bind_register_keywords(struct bind_kw_list *kwl)
690{
691 LIST_ADDQ(&bind_keywords.list, &kwl->list);
692}
693
694/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
695 * keyword is found with a NULL ->parse() function, then an attempt is made to
696 * find one with a valid ->parse() function. This way it is possible to declare
697 * platform-dependant, known keywords as NULL, then only declare them as valid
698 * if some options are met. Note that if the requested keyword contains an
699 * opening parenthesis, everything from this point is ignored.
700 */
701struct bind_kw *bind_find_kw(const char *kw)
702{
703 int index;
704 const char *kwend;
705 struct bind_kw_list *kwl;
706 struct bind_kw *ret = NULL;
707
708 kwend = strchr(kw, '(');
709 if (!kwend)
710 kwend = kw + strlen(kw);
711
712 list_for_each_entry(kwl, &bind_keywords.list, list) {
713 for (index = 0; kwl->kw[index].kw != NULL; index++) {
714 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
715 kwl->kw[index].kw[kwend-kw] == 0) {
716 if (kwl->kw[index].parse)
717 return &kwl->kw[index]; /* found it !*/
718 else
719 ret = &kwl->kw[index]; /* may be OK */
720 }
721 }
722 }
723 return ret;
724}
725
Willy Tarreau8638f482012-09-18 18:01:17 +0200726/* Dumps all registered "bind" keywords to the <out> string pointer. The
727 * unsupported keywords are only dumped if their supported form was not
728 * found.
729 */
730void bind_dump_kws(char **out)
731{
732 struct bind_kw_list *kwl;
733 int index;
734
735 *out = NULL;
736 list_for_each_entry(kwl, &bind_keywords.list, list) {
737 for (index = 0; kwl->kw[index].kw != NULL; index++) {
738 if (kwl->kw[index].parse ||
739 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +0200740 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
741 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +0200742 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +0200743 kwl->kw[index].skip ? " <arg>" : "",
744 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +0200745 }
746 }
747 }
748}
749
Willy Tarreau645513a2010-05-24 20:55:15 +0200750/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100751/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +0200752/************************************************************************/
753
Willy Tarreaua5e37562011-12-16 17:06:15 +0100754/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +0200755static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200756smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +0200757{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200758 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200759 smp->data.u.sint = smp->sess->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +0200760 return 1;
761}
762
Willy Tarreaua5e37562011-12-16 17:06:15 +0100763/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +0200764static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200765smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +0200766{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200767 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200768 smp->data.u.sint = smp->sess->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +0200769 return 1;
770}
771
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200772/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200773static 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 +0200774{
775 struct listener *l;
776
Willy Tarreau4348fad2012-09-20 16:48:07 +0200777 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200778 l->options |= LI_O_ACC_PROXY;
779
780 return 0;
781}
782
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100783/* parse the "accept-netscaler-cip" bind keyword */
784static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
785{
786 struct listener *l;
787 uint32_t val;
788
789 if (!*args[cur_arg + 1]) {
790 memprintf(err, "'%s' : missing value", args[cur_arg]);
791 return ERR_ALERT | ERR_FATAL;
792 }
793
794 val = atol(args[cur_arg + 1]);
795 if (val <= 0) {
796 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
797 return ERR_ALERT | ERR_FATAL;
798 }
799
800 list_for_each_entry(l, &conf->listeners, by_bind) {
801 l->options |= LI_O_ACC_CIP;
802 conf->ns_cip_magic = val;
803 }
804
805 return 0;
806}
807
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200808/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200809static 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 +0200810{
811 struct listener *l;
812 int val;
813
814 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200815 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200816 return ERR_ALERT | ERR_FATAL;
817 }
818
819 val = atol(args[cur_arg + 1]);
820 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200821 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200822 return ERR_ALERT | ERR_FATAL;
823 }
824
Willy Tarreau4348fad2012-09-20 16:48:07 +0200825 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200826 l->backlog = val;
827
828 return 0;
829}
830
831/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200832static 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 +0200833{
834 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200835 struct listener *l, *new;
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +0100836 char *error;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200837
Willy Tarreau4348fad2012-09-20 16:48:07 +0200838 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200839 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200840 return ERR_ALERT | ERR_FATAL;
841 }
842
843 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200844 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200845 return ERR_ALERT | ERR_FATAL;
846 }
847
Willy Tarreau4348fad2012-09-20 16:48:07 +0200848 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
Thierry Fourniere7fe8eb2016-02-26 08:45:58 +0100849 new->luid = strtol(args[cur_arg + 1], &error, 10);
850 if (*error != '\0') {
851 memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]);
852 return ERR_ALERT | ERR_FATAL;
853 }
Willy Tarreau4348fad2012-09-20 16:48:07 +0200854 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200855
Willy Tarreau4348fad2012-09-20 16:48:07 +0200856 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200857 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200858 return ERR_ALERT | ERR_FATAL;
859 }
860
Willy Tarreau4348fad2012-09-20 16:48:07 +0200861 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200862 if (node) {
863 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200864 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
865 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
866 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200867 return ERR_ALERT | ERR_FATAL;
868 }
869
Willy Tarreau4348fad2012-09-20 16:48:07 +0200870 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200871 return 0;
872}
873
874/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200875static 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 +0200876{
877 struct listener *l;
878 int val;
879
880 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200881 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200882 return ERR_ALERT | ERR_FATAL;
883 }
884
885 val = atol(args[cur_arg + 1]);
886 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200887 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200888 return ERR_ALERT | ERR_FATAL;
889 }
890
Willy Tarreau4348fad2012-09-20 16:48:07 +0200891 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200892 l->maxconn = val;
893
894 return 0;
895}
896
897/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200898static 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 +0200899{
900 struct listener *l;
901
902 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200903 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200904 return ERR_ALERT | ERR_FATAL;
905 }
906
Willy Tarreau4348fad2012-09-20 16:48:07 +0200907 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200908 l->name = strdup(args[cur_arg + 1]);
909
910 return 0;
911}
912
913/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200914static 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 +0200915{
916 struct listener *l;
917 int val;
918
919 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200920 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200921 return ERR_ALERT | ERR_FATAL;
922 }
923
924 val = atol(args[cur_arg + 1]);
925 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200926 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200927 return ERR_ALERT | ERR_FATAL;
928 }
929
Willy Tarreau4348fad2012-09-20 16:48:07 +0200930 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200931 l->nice = val;
932
933 return 0;
934}
935
Willy Tarreau6ae1ba62014-05-07 19:01:58 +0200936/* parse the "process" bind keyword */
937static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
938{
Christopher Fauletc644fa92017-11-23 22:44:11 +0100939 char *slash;
940 unsigned long proc = 0, thread = 0;
941 int i;
Willy Tarreau6ae1ba62014-05-07 19:01:58 +0200942
Christopher Fauletc644fa92017-11-23 22:44:11 +0100943 if ((slash = strchr(args[cur_arg + 1], '/')) != NULL)
944 *slash = 0;
945
946 if (parse_process_number(args[cur_arg + 1], &proc, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +0100947 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Willy Tarreau6ae1ba62014-05-07 19:01:58 +0200948 return ERR_ALERT | ERR_FATAL;
949 }
950
Christopher Fauletc644fa92017-11-23 22:44:11 +0100951 if (slash) {
952 if (parse_process_number(slash+1, &thread, NULL, err)) {
953 memprintf(err, "'%s' : %s", args[cur_arg], *err);
954 return ERR_ALERT | ERR_FATAL;
955 }
956 *slash = '/';
957 }
958
959 conf->bind_proc |= proc;
960 if (thread) {
Willy Tarreau421f02e2018-01-20 18:19:22 +0100961 for (i = 0; i < MAX_THREADS; i++)
Christopher Fauletc644fa92017-11-23 22:44:11 +0100962 if (!proc || (proc & (1UL << i)))
963 conf->bind_thread[i] |= thread;
964 }
Willy Tarreau6ae1ba62014-05-07 19:01:58 +0200965 return 0;
966}
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200967
Christopher Fauleta717b992018-04-10 14:43:00 +0200968/* parse the "proto" bind keyword */
969static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
970{
971 struct ist proto;
972
973 if (!*args[cur_arg + 1]) {
974 memprintf(err, "'%s' : missing value", args[cur_arg]);
975 return ERR_ALERT | ERR_FATAL;
976 }
977
978 proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1]));
979 conf->mux_proto = get_mux_proto(proto);
980 if (!conf->mux_proto) {
981 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]);
982 return ERR_ALERT | ERR_FATAL;
983 }
984 else if (!(conf->mux_proto->side & PROTO_SIDE_FE)) {
985 memprintf(err, "'%s' : MUX protocol '%s' cannot be used for incoming connections",
986 args[cur_arg], args[cur_arg+1]);
987 return ERR_ALERT | ERR_FATAL;
988 }
989 return 0;
990}
991
Willy Tarreau61612d42012-04-19 18:42:05 +0200992/* Note: must not be declared <const> as its list will be overwritten.
993 * Please take care of keeping this list alphabetically sorted.
994 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200995static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200996 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
997 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100998 { /* END */ },
999}};
1000
1001/* Note: must not be declared <const> as its list will be overwritten.
1002 * Please take care of keeping this list alphabetically sorted.
1003 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001004static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001005 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001006}};
1007
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001008/* Note: must not be declared <const> as its list will be overwritten.
1009 * Please take care of keeping this list alphabetically sorted, doing so helps
1010 * all code contributors.
1011 * Optional keywords are also declared with a NULL ->parse() function so that
1012 * the config parser can report an appropriate error when a known keyword was
1013 * not enabled.
1014 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001015static struct bind_kw_list bind_kws = { "ALL", { }, {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +01001016 { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001017 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
1018 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
1019 { "id", bind_parse_id, 1 }, /* set id of listening socket */
1020 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
1021 { "name", bind_parse_name, 1 }, /* set name of listening socket */
1022 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau6ae1ba62014-05-07 19:01:58 +02001023 { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */
Christopher Fauleta717b992018-04-10 14:43:00 +02001024 { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001025 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001026}};
1027
Willy Tarreau645513a2010-05-24 20:55:15 +02001028__attribute__((constructor))
Willy Tarreaud1d54542012-09-12 22:58:11 +02001029static void __listener_init(void)
Willy Tarreau645513a2010-05-24 20:55:15 +02001030{
Willy Tarreau0ccb7442013-01-07 22:54:17 +01001031 sample_register_fetches(&smp_kws);
Willy Tarreau645513a2010-05-24 20:55:15 +02001032 acl_register_keywords(&acl_kws);
Willy Tarreau3dcc3412012-09-18 17:17:28 +02001033 bind_register_keywords(&bind_kws);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001034 HA_SPIN_INIT(&lq_lock);
Willy Tarreau645513a2010-05-24 20:55:15 +02001035}
1036
1037/*
1038 * Local variables:
1039 * c-indent-level: 8
1040 * c-basic-offset: 8
1041 * End:
1042 */