blob: 48c115f1cad86420291b6d25a72dd620f9aa7c2a [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +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
13#include <fcntl.h>
14#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/defaults.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020021#include <common/cfgparse.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020023#include <common/config.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010024#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010025#include <common/initcall.h>
Willy Tarreau4d2d0982007-05-14 00:39:29 +020026#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020027#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreaucfd837f2014-03-15 07:43:51 +010029#include <eb32tree.h>
30#include <ebistree.h>
31
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +020032#include <types/capture.h>
Willy Tarreau960f2cb2016-11-24 12:02:29 +010033#include <types/cli.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010035#include <types/obj_type.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020036#include <types/peers.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010037#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
William Lallemanda6c5f332016-11-19 02:25:36 +010039#include <proto/applet.h>
40#include <proto/cli.h>
Alexandre Cassen87ea5482007-10-11 20:48:58 +020041#include <proto/backend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <proto/filters.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020044#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010046#include <proto/proto_tcp.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020047#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/proxy.h>
Olivier Houchard614f8d72017-03-14 20:08:46 +010049#include <proto/server.h>
Willy Tarreaud0807c32010-08-27 18:26:11 +020050#include <proto/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020051#include <proto/stream.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010052#include <proto/stream_interface.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020053#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
55
Willy Tarreau918ff602011-07-25 16:33:49 +020056int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010057struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020058struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010059struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010060unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010062/* proxy->options */
63const struct cfg_opt cfg_opts[] =
64{
65 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
66 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
67 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
68 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
69 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
70 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
71 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
72 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
73 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
74 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
75 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
76 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
77 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
78 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020079#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010080 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
81#else
82 { "transparent", 0, 0, 0, 0 },
83#endif
84
85 { NULL, 0, 0, 0, 0 }
86};
87
88/* proxy->options2 */
89const struct cfg_opt cfg_opts2[] =
90{
Willy Tarreaue5733232019-05-22 19:24:06 +020091#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010092 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
93 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
94 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
95#else
96 { "splice-request", 0, 0, 0, 0 },
97 { "splice-response", 0, 0, 0, 0 },
98 { "splice-auto", 0, 0, 0, 0 },
99#endif
100 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
101 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
102 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
103 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
104 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
105 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
106 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
107 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100108 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
109 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
110 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
111 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200112 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100113 { NULL, 0, 0, 0 }
114};
115
Willy Tarreau977b8e42006-12-29 14:19:17 +0100116/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100117 * This function returns a string containing a name describing capabilities to
118 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200119 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100120 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100121 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100122const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100123{
Willy Tarreau816eb542007-11-04 07:04:43 +0100124 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
125 if (cap & PR_CAP_FE)
126 return "frontend";
127 else if (cap & PR_CAP_BE)
128 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100129 }
130 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100131}
132
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100133/*
134 * This function returns a string containing the mode of the proxy in a format
135 * suitable for error messages.
136 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100137const char *proxy_mode_str(int mode) {
138
139 if (mode == PR_MODE_TCP)
140 return "tcp";
141 else if (mode == PR_MODE_HTTP)
142 return "http";
143 else if (mode == PR_MODE_HEALTH)
144 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200145 else if (mode == PR_MODE_CLI)
146 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100147 else
148 return "unknown";
149}
150
Willy Tarreauf3950172009-10-10 18:35:51 +0200151/*
152 * This function scans the list of backends and servers to retrieve the first
153 * backend and the first server with the given names, and sets them in both
154 * parameters. It returns zero if either is not found, or non-zero and sets
155 * the ones it did not found to NULL. If a NULL pointer is passed for the
156 * backend, only the pointer to the server will be updated.
157 */
158int get_backend_server(const char *bk_name, const char *sv_name,
159 struct proxy **bk, struct server **sv)
160{
161 struct proxy *p;
162 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100163 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200164
165 *sv = NULL;
166
Willy Tarreau050536d2012-10-04 08:47:34 +0200167 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200168 if (*sv_name == '#')
169 sid = atoi(sv_name + 1);
170
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200171 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200172 if (bk)
173 *bk = p;
174 if (!p)
175 return 0;
176
177 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100178 if ((sid >= 0 && s->puid == sid) ||
179 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200180 break;
181 *sv = s;
182 if (!s)
183 return 0;
184 return 1;
185}
186
Willy Tarreaue219db72007-12-03 01:30:13 +0100187/* This function parses a "timeout" statement in a proxy section. It returns
188 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200189 * return zero, it will write an error or warning message into a preallocated
190 * buffer returned at <err>. The trailing is not be written. The function must
191 * be called with <args> pointing to the first command line word, with <proxy>
192 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
193 * As a special case for compatibility with older configs, it also accepts
194 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100195 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200196static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200197 struct proxy *defpx, const char *file, int line,
198 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100199{
200 unsigned timeout;
201 int retval, cap;
202 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200203 int *tv = NULL;
204 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100205
206 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200207
208 /* simply skip "timeout" but remain compatible with old form */
209 if (strcmp(args[0], "timeout") == 0)
210 args++;
211
Willy Tarreaue219db72007-12-03 01:30:13 +0100212 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200213 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100214 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100215 tv = &proxy->timeout.client;
216 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100217 cap = PR_CAP_FE;
218 } else if (!strcmp(args[0], "tarpit")) {
219 tv = &proxy->timeout.tarpit;
220 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100221 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100222 } else if (!strcmp(args[0], "http-keep-alive")) {
223 tv = &proxy->timeout.httpka;
224 td = &defpx->timeout.httpka;
225 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100226 } else if (!strcmp(args[0], "http-request")) {
227 tv = &proxy->timeout.httpreq;
228 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200229 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200230 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100231 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100232 tv = &proxy->timeout.server;
233 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100234 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200235 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100236 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100237 tv = &proxy->timeout.connect;
238 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100239 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100240 } else if (!strcmp(args[0], "check")) {
241 tv = &proxy->timeout.check;
242 td = &defpx->timeout.check;
243 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100244 } else if (!strcmp(args[0], "queue")) {
245 tv = &proxy->timeout.queue;
246 td = &defpx->timeout.queue;
247 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200248 } else if (!strcmp(args[0], "tunnel")) {
249 tv = &proxy->timeout.tunnel;
250 td = &defpx->timeout.tunnel;
251 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200252 } else if (!strcmp(args[0], "client-fin")) {
253 tv = &proxy->timeout.clientfin;
254 td = &defpx->timeout.clientfin;
255 cap = PR_CAP_FE;
256 } else if (!strcmp(args[0], "server-fin")) {
257 tv = &proxy->timeout.serverfin;
258 td = &defpx->timeout.serverfin;
259 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200260 } else if (!strcmp(args[0], "clitimeout")) {
261 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
262 return -1;
263 } else if (!strcmp(args[0], "srvtimeout")) {
264 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
265 return -1;
266 } else if (!strcmp(args[0], "contimeout")) {
267 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
268 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100269 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200270 memprintf(err,
271 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200272 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
273 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200274 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100275 return -1;
276 }
277
278 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200279 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100280 return -1;
281 }
282
283 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200284 if (res == PARSE_TIME_OVER) {
285 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
286 args[1], name);
287 return -1;
288 }
289 else if (res == PARSE_TIME_UNDER) {
290 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
291 args[1], name);
292 return -1;
293 }
294 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200295 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100296 return -1;
297 }
298
299 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200300 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
301 name, proxy_type_str(proxy), proxy->id,
302 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100303 retval = 1;
304 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200305 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200306 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100307 retval = 1;
308 }
309
Willy Tarreaufac5b592014-05-22 08:24:46 +0200310 if (*args[2] != 0) {
311 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
312 retval = -1;
313 }
314
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200315 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100316 return retval;
317}
318
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100319/* This function parses a "rate-limit" statement in a proxy section. It returns
320 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200321 * return zero, it will write an error or warning message into a preallocated
322 * buffer returned at <err>. The function must be called with <args> pointing
323 * to the first command line word, with <proxy> pointing to the proxy being
324 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100325 */
326static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200327 struct proxy *defpx, const char *file, int line,
328 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100329{
330 int retval, cap;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200331 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100332 unsigned int *tv = NULL;
333 unsigned int *td = NULL;
334 unsigned int val;
335
336 retval = 0;
337
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200338 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200339 tv = &proxy->fe_sps_lim;
340 td = &defpx->fe_sps_lim;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100341 cap = PR_CAP_FE;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200342 }
343 else {
344 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100345 return -1;
346 }
347
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200348 if (*args[2] == 0) {
349 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100350 return -1;
351 }
352
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200353 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100354 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200355 memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100356 return -1;
357 }
358
359 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200360 memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability",
361 args[0], args[1], proxy_type_str(proxy), proxy->id,
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100362 (cap & PR_CAP_BE) ? "backend" : "frontend");
363 retval = 1;
364 }
365 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200366 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100367 retval = 1;
368 }
369
370 *tv = val;
371 return retval;
372}
373
Willy Tarreauc35362a2014-04-25 13:58:37 +0200374/* This function parses a "max-keep-alive-queue" statement in a proxy section.
375 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
376 * does not return zero, it will write an error or warning message into a
377 * preallocated buffer returned at <err>. The function must be called with
378 * <args> pointing to the first command line word, with <proxy> pointing to
379 * the proxy being parsed, and <defpx> to the default proxy or NULL.
380 */
381static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
382 struct proxy *defpx, const char *file, int line,
383 char **err)
384{
385 int retval;
386 char *res;
387 unsigned int val;
388
389 retval = 0;
390
391 if (*args[1] == 0) {
392 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
393 return -1;
394 }
395
396 val = strtol(args[1], &res, 0);
397 if (*res) {
398 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
399 return -1;
400 }
401
402 if (!(proxy->cap & PR_CAP_BE)) {
403 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
404 args[0], proxy_type_str(proxy), proxy->id);
405 retval = 1;
406 }
407
408 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
409 proxy->max_ka_queue = val + 1;
410 return retval;
411}
412
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200413/* This function parses a "declare" statement in a proxy section. It returns -1
414 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
415 * it will write an error or warning message into a preallocated buffer returned
416 * at <err>. The function must be called with <args> pointing to the first command
417 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
418 * default proxy or NULL.
419 */
420static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
421 struct proxy *defpx, const char *file, int line,
422 char **err)
423{
424 /* Capture keyword wannot be declared in a default proxy. */
425 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800426 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200427 return -1;
428 }
429
Joseph Herlant59dd2952018-11-15 11:46:55 -0800430 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200431 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800432 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200433 return -1;
434 }
435
436 /* Check mandatory second keyword. */
437 if (!args[1] || !*args[1]) {
438 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
439 return -1;
440 }
441
Joseph Herlant59dd2952018-11-15 11:46:55 -0800442 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200443 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800444 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200445 * the second keyword.
446 */
447 if (strcmp(args[1], "capture") == 0) {
448 char *error = NULL;
449 long len;
450 struct cap_hdr *hdr;
451
452 /* Check the next keyword. */
453 if (!args[2] || !*args[2] ||
454 (strcmp(args[2], "response") != 0 &&
455 strcmp(args[2], "request") != 0)) {
456 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
457 return -1;
458 }
459
460 /* Check the 'len' keyword. */
461 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
462 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
463 return -1;
464 }
465
466 /* Check the length value. */
467 if (!args[4] || !*args[4]) {
468 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
469 "capture length",
470 args[0], args[1]);
471 return -1;
472 }
473
474 /* convert the length value. */
475 len = strtol(args[4], &error, 10);
476 if (*error != '\0') {
477 memprintf(err, "'%s %s': cannot parse the length '%s'.",
478 args[0], args[1], args[3]);
479 return -1;
480 }
481
482 /* check length. */
483 if (len <= 0) {
484 memprintf(err, "length must be > 0");
485 return -1;
486 }
487
488 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200489 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200490 hdr->name = NULL; /* not a header capture */
491 hdr->namelen = 0;
492 hdr->len = len;
493 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
494
495 if (strcmp(args[2], "request") == 0) {
496 hdr->next = curpx->req_cap;
497 hdr->index = curpx->nb_req_cap++;
498 curpx->req_cap = hdr;
499 }
500 if (strcmp(args[2], "response") == 0) {
501 hdr->next = curpx->rsp_cap;
502 hdr->index = curpx->nb_rsp_cap++;
503 curpx->rsp_cap = hdr;
504 }
505 return 0;
506 }
507 else {
508 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
509 return -1;
510 }
511}
512
Olivier Houcharda254a372019-04-05 15:30:12 +0200513/* This function parses a "retry-on" statement */
514static int
515proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
516 struct proxy *defpx, const char *file, int line,
517 char **err)
518{
519 int i;
520
521 if (!(*args[1])) {
522 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
523 return -1;
524 }
525 if (!(curpx->cap & PR_CAP_BE)) {
526 memprintf(err, "'%s' only available in backend or listen section", args[0]);
527 return -1;
528 }
529 curpx->retry_type = 0;
530 for (i = 1; *(args[i]); i++) {
531 if (!strcmp(args[i], "conn-failure"))
532 curpx->retry_type |= PR_RE_CONN_FAILED;
533 else if (!strcmp(args[i], "empty-response"))
534 curpx->retry_type |= PR_RE_DISCONNECTED;
535 else if (!strcmp(args[i], "response-timeout"))
536 curpx->retry_type |= PR_RE_TIMEOUT;
537 else if (!strcmp(args[i], "404"))
538 curpx->retry_type |= PR_RE_404;
539 else if (!strcmp(args[i], "408"))
540 curpx->retry_type |= PR_RE_408;
541 else if (!strcmp(args[i], "425"))
542 curpx->retry_type |= PR_RE_425;
543 else if (!strcmp(args[i], "500"))
544 curpx->retry_type |= PR_RE_500;
545 else if (!strcmp(args[i], "501"))
546 curpx->retry_type |= PR_RE_501;
547 else if (!strcmp(args[i], "502"))
548 curpx->retry_type |= PR_RE_502;
549 else if (!strcmp(args[i], "503"))
550 curpx->retry_type |= PR_RE_503;
551 else if (!strcmp(args[i], "504"))
552 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200553 else if (!strcmp(args[i], "0rtt-rejected"))
554 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200555 else if (!strcmp(args[i], "junk-response"))
556 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200557 else if (!(strcmp(args[i], "all-retryable-errors")))
558 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
559 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
560 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
561 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200562 else if (!strcmp(args[i], "none")) {
563 if (i != 1 || *args[i + 1]) {
564 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
565 return -1;
566 }
567 } else {
568 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
569 return -1;
570 }
571
572 }
573
574
575 return 0;
576}
577
Willy Tarreauf79d9502014-03-15 07:22:35 +0100578/* This function inserts proxy <px> into the tree of known proxies. The proxy's
579 * name is used as the storing key so it must already have been initialized.
580 */
581void proxy_store_name(struct proxy *px)
582{
583 px->conf.by_name.key = px->id;
584 ebis_insert(&proxy_by_name, &px->conf.by_name);
585}
586
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200587/* Returns a pointer to the first proxy matching capabilities <cap> and id
588 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
589 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200590 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200591struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200592{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200593 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200594
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200595 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
596 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100597
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200598 if (px->uuid != id)
599 break;
Alex Williams96532db2009-11-01 21:27:13 -0500600
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200601 if ((px->cap & cap) != cap)
602 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500603
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100604 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200605 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100606
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200607 return px;
608 }
609 return NULL;
610}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100611
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200612/* Returns a pointer to the first proxy matching either name <name>, or id
613 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
614 * If <table> is non-zero, it only considers proxies having a table.
615 */
616struct proxy *proxy_find_by_name(const char *name, int cap, int table)
617{
618 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200619
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200620 if (*name == '#') {
621 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
622 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200623 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500624 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100625 else {
626 struct ebpt_node *node;
627
628 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
629 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500630
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100631 if (strcmp(curproxy->id, name) != 0)
632 break;
633
634 if ((curproxy->cap & cap) != cap)
635 continue;
636
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100637 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200638 continue;
639
Willy Tarreauc739aa82015-05-26 11:35:41 +0200640 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100641 }
642 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200643 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500644}
645
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200646/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
647 * <id>. At most one of <id> or <name> may be different provided that <cap> is
648 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
649 * find a proxy based on some information from a previous configuration, across
650 * reloads or during information exchange between peers.
651 *
652 * Names are looked up first if present, then IDs are compared if present. In
653 * case of an inexact match whatever is forced in the configuration has
654 * precedence in the following order :
655 * - 1) forced ID (proves a renaming / change of proxy type)
656 * - 2) proxy name+type (may indicate a move if ID differs)
657 * - 3) automatic ID+type (may indicate a renaming)
658 *
659 * Depending on what is found, we can end up in the following situations :
660 *
661 * name id cap | possible causes
662 * -------------+-----------------
663 * -- -- -- | nothing found
664 * -- -- ok | nothing found
665 * -- ok -- | proxy deleted, ID points to next one
666 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
667 * ok -- -- | proxy deleted, but other half with same name still here (before)
668 * ok -- ok | proxy's ID changed (proxy moved in the config file)
669 * ok ok -- | proxy deleted, but other half with same name still here (after)
670 * ok ok ok | perfect match
671 *
672 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200673 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
674 * (and ID was not zero)
675 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
676 * (and name was not NULL)
677 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
678 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200679 *
680 * Only a valid proxy is returned. If capabilities do not match, NULL is
681 * returned. The caller can check <diff> to report detailed warnings / errors,
682 * and decide whether or not to use what was found.
683 */
684struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
685{
686 struct proxy *byname;
687 struct proxy *byid;
688
689 if (!name && !id)
690 return NULL;
691
692 if (diff)
693 *diff = 0;
694
695 byname = byid = NULL;
696
697 if (name) {
698 byname = proxy_find_by_name(name, cap, 0);
699 if (byname && (!id || byname->uuid == id))
700 return byname;
701 }
702
Joseph Herlant59dd2952018-11-15 11:46:55 -0800703 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200704 * - name not set
705 * - name set but not found
706 * - name found, but ID doesn't match.
707 */
708 if (id) {
709 byid = proxy_find_by_id(id, cap, 0);
710 if (byid) {
711 if (byname) {
712 /* id+type found, name+type found, but not all 3.
713 * ID wins only if forced, otherwise name wins.
714 */
715 if (byid->options & PR_O_FORCED_ID) {
716 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200717 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200718 return byid;
719 }
720 else {
721 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200722 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200723 return byname;
724 }
725 }
726
Joseph Herlant59dd2952018-11-15 11:46:55 -0800727 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200728 * - name not set
729 * - name set but not found
730 */
731 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200732 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200733 return byid;
734 }
735
736 /* ID not found */
737 if (byname) {
738 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200739 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200740 return byname;
741 }
742 }
743
Joseph Herlant59dd2952018-11-15 11:46:55 -0800744 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200745 * detailed information to the caller about changed types and/or name,
746 * we'll do it. For example, we could detect that "listen foo" was
747 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
748 * - name not set, ID not found
749 * - name not found, ID not set
750 * - name not found, ID not found
751 */
752 if (!diff)
753 return NULL;
754
755 if (name) {
756 byname = proxy_find_by_name(name, 0, 0);
757 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200758 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200759 }
760
761 if (id) {
762 byid = proxy_find_by_id(id, 0, 0);
763 if (byid) {
764 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200765 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200766 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200767 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200768 /* otherwise it's a different proxy that was returned */
769 }
770 }
771 return NULL;
772}
773
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100775 * This function finds a server with matching name within selected proxy.
776 * It also checks if there are more matching servers with
777 * requested name as this often leads into unexpected situations.
778 */
779
780struct server *findserver(const struct proxy *px, const char *name) {
781
782 struct server *cursrv, *target = NULL;
783
784 if (!px)
785 return NULL;
786
787 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
788 if (strcmp(cursrv->id, name))
789 continue;
790
791 if (!target) {
792 target = cursrv;
793 continue;
794 }
795
Christopher Faulet767a84b2017-11-24 16:50:31 +0100796 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
797 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100798
799 return NULL;
800 }
801
802 return target;
803}
804
Willy Tarreauff01a212009-03-15 13:46:16 +0100805/* This function checks that the designated proxy has no http directives
806 * enabled. It will output a warning if there are, and will fix some of them.
807 * It returns the number of fatal errors encountered. This should be called
808 * at the end of the configuration parsing if the proxy is not in http mode.
809 * The <file> argument is used to construct the error message.
810 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200811int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100812{
813 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100814 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
815 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100816 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100817 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100818 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
819 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100820 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200821 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100822 curproxy->lbprm.algo &= ~BE_LB_ALGO;
823 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100824 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
825 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100826 }
Willy Tarreau17804162009-11-09 21:27:51 +0100827 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
828 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100829 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
830 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
831 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100832 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200833 if (curproxy->conf.logformat_string == default_http_log_format ||
834 curproxy->conf.logformat_string == clf_http_log_format) {
835 /* Note: we don't change the directive's file:line number */
836 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100837 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
838 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
839 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200840 }
841
Willy Tarreauff01a212009-03-15 13:46:16 +0100842 return 0;
843}
844
Willy Tarreau237250c2011-07-29 01:49:03 +0200845/* Perform the most basic initialization of a proxy :
846 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200847 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200848 */
849void init_new_proxy(struct proxy *p)
850{
851 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100852 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400853 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200854 LIST_INIT(&p->acl);
855 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200856 LIST_INIT(&p->http_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200857 LIST_INIT(&p->redirect_rules);
858 LIST_INIT(&p->mon_fail_cond);
859 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200860 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200861 LIST_INIT(&p->persist_rules);
862 LIST_INIT(&p->sticking_rules);
863 LIST_INIT(&p->storersp_rules);
864 LIST_INIT(&p->tcp_req.inspect_rules);
865 LIST_INIT(&p->tcp_rep.inspect_rules);
866 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200867 LIST_INIT(&p->tcp_req.l5_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200868 LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200869 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100870 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200871 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100872 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200873 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200874 LIST_INIT(&p->conf.listeners);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200875 LIST_INIT(&p->conf.args.list);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200876 LIST_INIT(&p->tcpcheck_rules);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100877 LIST_INIT(&p->filter_configs);
Willy Tarreau237250c2011-07-29 01:49:03 +0200878
879 /* Timeouts are defined as -1 */
880 proxy_reset_timeouts(p);
881 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200882
883 /* initial uuid is unassigned (-1) */
884 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200885
Olivier Houcharda254a372019-04-05 15:30:12 +0200886 /* Default to only allow L4 retries */
887 p->retry_type = PR_RE_CONN_FAILED;
888
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100889 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200890}
891
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100892/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200893 * This function creates all proxy sockets. It should be done very early,
894 * typically before privileges are dropped. The sockets will be registered
895 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200896 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200897 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200898 *
899 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
900 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200901 */
902int start_proxies(int verbose)
903{
904 struct proxy *curproxy;
905 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100906 int lerr, err = ERR_NONE;
907 int pxerr;
908 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100910 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 if (curproxy->state != PR_STNEW)
912 continue; /* already initialized */
913
914 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200915 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100916 if (listener->state != LI_ASSIGNED)
917 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918
Emeric Bruncf20bf12010-10-22 16:06:11 +0200919 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920
Willy Tarreaue6b98942007-10-29 01:09:36 +0100921 /* errors are reported if <verbose> is set or if they are fatal */
922 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
923 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100924 ha_alert("Starting %s %s: %s\n",
925 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100926 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100927 ha_warning("Starting %s %s: %s\n",
928 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929 }
930
Willy Tarreaue6b98942007-10-29 01:09:36 +0100931 err |= lerr;
932 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100934 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100936 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 pxerr |= 1;
938 continue;
939 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940 }
941
942 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200943 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
945 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100946
947 if (err & ERR_ABORT)
948 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949 }
950
951 return err;
952}
953
954
955/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200956 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200957 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200958 * called as a task which is woken up upon stopping or when rate limiting must
959 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200961struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200963 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200964 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100965 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966
Willy Tarreau918ff602011-07-25 16:33:49 +0200967 /* We should periodically try to enable listeners waiting for a
968 * global resource here.
969 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970
Willy Tarreau918ff602011-07-25 16:33:49 +0200971 /* first, let's check if we need to stop the proxy */
972 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
973 int t;
974 t = tick_remain(now_ms, p->stop_time);
975 if (t == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100976 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
977 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau918ff602011-07-25 16:33:49 +0200978 send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
979 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
980 stop_proxy(p);
981 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100982 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200983 }
984 else {
985 next = tick_first(next, p->stop_time);
986 }
987 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200988
Willy Tarreau3a925c12013-09-04 17:54:01 +0200989 /* If the proxy holds a stick table, we need to purge all unused
990 * entries. These are all the ones in the table with ref_cnt == 0
991 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200992 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200993 * be in neither list. Any entry being dumped will have ref_cnt > 0.
994 * However we protect tables that are being synced to peers.
995 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100996 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
997 if (!p->table->syncing) {
998 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100999 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001000 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001001 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001002 /* some entries still remain, let's recheck in one second */
1003 next = tick_first(next, tick_add(now_ms, 1000));
1004 }
1005 }
1006
Willy Tarreau918ff602011-07-25 16:33:49 +02001007 /* the rest below is just for frontends */
1008 if (!(p->cap & PR_CAP_FE))
1009 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001010
Willy Tarreau918ff602011-07-25 16:33:49 +02001011 /* check the various reasons we may find to block the frontend */
1012 if (unlikely(p->feconn >= p->maxconn)) {
1013 if (p->state == PR_STREADY)
1014 p->state = PR_STFULL;
1015 goto out;
1016 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001017
Willy Tarreau918ff602011-07-25 16:33:49 +02001018 /* OK we have no reason to block, so let's unblock if we were blocking */
1019 if (p->state == PR_STFULL)
1020 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001021
Willy Tarreau918ff602011-07-25 16:33:49 +02001022 if (p->fe_sps_lim &&
1023 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1024 /* we're blocking because a limit was reached on the number of
1025 * requests/s on the frontend. We want to re-check ASAP, which
1026 * means in 1 ms before estimated expiration date, because the
1027 * timer will have settled down.
1028 */
1029 next = tick_first(next, tick_add(now_ms, wait));
1030 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001031 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001032
1033 /* The proxy is not limited so we can re-enable any waiting listener */
1034 if (!LIST_ISEMPTY(&p->listener_queue))
1035 dequeue_all_listeners(&p->listener_queue);
1036 out:
1037 t->expire = next;
1038 task_queue(t);
1039 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001040}
1041
1042
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001043static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1044 struct proxy *defpx, const char *file, int line,
1045 char **err)
1046{
1047 const char *res;
1048
1049 if (!*args[1]) {
1050 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1051 return -1;
1052 }
1053 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001054 if (res == PARSE_TIME_OVER) {
1055 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1056 args[1], args[0]);
1057 return -1;
1058 }
1059 else if (res == PARSE_TIME_UNDER) {
1060 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1061 args[1], args[0]);
1062 return -1;
1063 }
1064 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001065 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1066 return -1;
1067 }
1068 return 0;
1069}
1070
Olivier Houchard9f6af332018-05-25 14:04:04 +02001071struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001072{
1073 struct proxy *p;
1074 struct stream *s;
1075
1076 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001077 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001078 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001079 killed = 2;
1080 t->expire = TICK_ETERNITY;
1081 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001082 }
1083
Christopher Faulet767a84b2017-11-24 16:50:31 +01001084 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001085 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001086 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001087 while (p) {
1088 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001089 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1090 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001091 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1092 p->id, p->feconn);
1093 }
1094 p = p->next;
1095 }
1096 list_for_each_entry(s, &streams, list) {
1097 stream_shutdown(s, SF_ERR_KILLED);
1098 }
1099
1100 killed = 1;
1101 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1102 return t;
1103}
1104
Willy Tarreaubaaee002006-06-26 02:48:02 +02001105/*
1106 * this function disables health-check servers so that the process will quickly be ignored
1107 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1108 * time will not be used since it would already not listen anymore to the socket.
1109 */
1110void soft_stop(void)
1111{
1112 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001113 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001114 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001115
1116 stopping = 1;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001117 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001118 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001119 if (task) {
1120 task->process = hard_stop;
1121 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1122 }
1123 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001124 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001125 }
1126 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001127 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001128 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001129 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001130 /* Zombie proxy, let's close the file descriptors */
1131 if (p->state == PR_STSTOPPED &&
1132 !LIST_ISEMPTY(&p->conf.listeners) &&
1133 LIST_ELEM(p->conf.listeners.n,
1134 struct listener *, by_fe)->state >= LI_ZOMBIE) {
1135 struct listener *l;
1136 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1137 if (l->state >= LI_ZOMBIE)
1138 close(l->fd);
1139 l->state = LI_INIT;
1140 }
1141 }
1142
Willy Tarreaubaaee002006-06-26 02:48:02 +02001143 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace);
Willy Tarreauf8fbcef2008-10-10 17:51:34 +02001145 send_log(p, LOG_WARNING, "Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace);
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001146 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001147
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001148 /* Note: do not wake up stopped proxies' task nor their tables'
1149 * tasks as these ones might point to already released entries.
1150 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001151 if (p->table && p->table->size && p->table->sync_task)
1152 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001153
1154 if (p->task)
1155 task_wakeup(p->task, TASK_WOKEN_MSG);
1156 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001157 p = p->next;
1158 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001159
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001160 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001161 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001162 if (prs->peers_fe)
1163 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001164 prs = prs->next;
1165 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001166 /* signal zero is used to broadcast the "stopping" event */
1167 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168}
1169
1170
Willy Tarreaube58c382011-07-24 18:28:10 +02001171/* Temporarily disables listening on all of the proxy's listeners. Upon
1172 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1173 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001174 * because we don't know how to resume from this. The function returns 0
1175 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001176 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001177int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178{
1179 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001180
1181 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1182 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1183 return 1;
1184
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001186 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1187
Willy Tarreau4348fad2012-09-20 16:48:07 +02001188 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001189 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001190 p->state = PR_STERROR;
1191 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001192
1193 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001194 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001195 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1196 return 0;
1197 }
1198
1199 p->state = PR_STPAUSED;
1200 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001201}
1202
Olivier Houchard1fc05162017-04-06 01:05:05 +02001203/* This function makes the proxy unusable, but keeps the listening sockets
1204 * opened, so that if any process requests them, we are able to serve them.
1205 * This should only be called early, before we started accepting requests.
1206 */
1207void zombify_proxy(struct proxy *p)
1208{
1209 struct listener *l;
1210 struct listener *first_to_listen = NULL;
1211
1212 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1213 enum li_state oldstate = l->state;
1214
1215 unbind_listener_no_close(l);
1216 if (l->state >= LI_ASSIGNED) {
1217 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001218 }
1219 /*
1220 * Pretend we're still up and running so that the fd
1221 * will be sent if asked.
1222 */
1223 l->state = LI_ZOMBIE;
1224 if (!first_to_listen && oldstate >= LI_LISTEN)
1225 first_to_listen = l;
1226 }
1227 /* Quick hack : at stop time, to know we have to close the sockets
1228 * despite the proxy being marked as stopped, make the first listener
1229 * of the listener list an active one, so that we don't have to
1230 * parse the whole list to be sure.
1231 */
1232 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1233 struct listener *, by_fe) != first_to_listen) {
1234 LIST_DEL(&l->by_fe);
1235 LIST_ADD(&p->conf.listeners, &l->by_fe);
1236 }
1237
1238 p->state = PR_STSTOPPED;
1239}
Willy Tarreauda250db2008-10-12 12:07:48 +02001240
1241/*
1242 * This function completely stops a proxy and releases its listeners. It has
1243 * to be called when going down in order to release the ports so that another
1244 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001245 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001246 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1247 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001248 */
1249void stop_proxy(struct proxy *p)
1250{
1251 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001252 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001253
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001254 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1255
Willy Tarreau4348fad2012-09-20 16:48:07 +02001256 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001257 if (l->options & LI_O_NOSTOP) {
1258 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1259 nostop = 1;
1260 continue;
1261 }
Willy Tarreauda250db2008-10-12 12:07:48 +02001262 unbind_listener(l);
1263 if (l->state >= LI_ASSIGNED) {
1264 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001265 }
1266 }
William Lallemandc59f9882018-11-16 16:57:21 +01001267 if (!nostop)
1268 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001269
1270 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001271}
1272
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001273/* This function resumes listening on the specified proxy. It scans all of its
1274 * listeners and tries to enable them all. If any of them fails, the proxy is
1275 * put back to the paused state. It returns 1 upon success, or zero if an error
1276 * is encountered.
1277 */
1278int resume_proxy(struct proxy *p)
1279{
1280 struct listener *l;
1281 int fail;
1282
1283 if (p->state != PR_STPAUSED)
1284 return 1;
1285
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001287 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1288
1289 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001290 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001291 if (!resume_listener(l)) {
1292 int port;
1293
1294 port = get_host_port(&l->addr);
1295 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001296 ha_warning("Port %d busy while trying to enable %s %s.\n",
1297 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001298 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1299 port, proxy_cap_str(p->cap), p->id);
1300 }
1301 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001302 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1303 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001304 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1305 l->luid, proxy_cap_str(p->cap), p->id);
1306 }
1307
1308 /* Another port might have been enabled. Let's stop everything. */
1309 fail = 1;
1310 break;
1311 }
1312 }
1313
1314 p->state = PR_STREADY;
1315 if (fail) {
1316 pause_proxy(p);
1317 return 0;
1318 }
1319 return 1;
1320}
1321
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322/*
1323 * This function temporarily disables listening so that another new instance
1324 * can start listening. It is designed to be called upon reception of a
1325 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1326 * the proxy, or a SIGTTIN can be sent to listen again.
1327 */
1328void pause_proxies(void)
1329{
1330 int err;
1331 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001332 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001333
1334 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001335 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001336 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001337 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001338 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339 p = p->next;
1340 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001341
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001342 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001343 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001344 if (prs->peers_fe)
1345 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001346 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001347 }
1348
Willy Tarreaubaaee002006-06-26 02:48:02 +02001349 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001351 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1352 soft_stop();
1353 }
1354}
1355
1356
1357/*
1358 * This function reactivates listening. This can be used after a call to
1359 * sig_pause(), for example when a new instance has failed starting up.
1360 * It is designed to be called upon reception of a SIGTTIN.
1361 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001362void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001363{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001364 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001365 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001366 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001367
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001368 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001369 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001370 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001372 err |= !resume_proxy(p);
1373 p = p->next;
1374 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001375
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001376 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001377 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001378 if (prs->peers_fe)
1379 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001380 prs = prs->next;
1381 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001382
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001383 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001384 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001385 send_log(p, LOG_WARNING, "Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001386 }
1387}
1388
Willy Tarreau87b09662015-04-03 00:22:06 +02001389/* Set current stream's backend to <be>. Nothing is done if the
1390 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001391 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001392 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001393 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001394 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001395int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001396{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001397 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001398 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001399
1400 if (flt_set_stream_backend(s, be) < 0)
1401 return 0;
1402
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001403 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001404 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1405 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001406 proxy_inc_be_ctr(be);
1407
Willy Tarreau87b09662015-04-03 00:22:06 +02001408 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001409 s->si[1].flags &= ~SI_FL_INDEP_STR;
1410 if (be->options2 & PR_O2_INDEPSTR)
1411 s->si[1].flags |= SI_FL_INDEP_STR;
1412
Hongbo Longe39683c2017-03-10 18:41:51 +01001413 if (tick_isset(be->timeout.serverfin))
1414 s->si[1].hcto = be->timeout.serverfin;
1415
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001416 /* We want to enable the backend-specific analysers except those which
1417 * were already run as part of the frontend/listener. Note that it would
1418 * be more reliable to store the list of analysers that have been run,
1419 * but what we do here is OK for now.
1420 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001421 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001422
Willy Tarreau51aecc72009-07-12 09:47:04 +02001423 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001424 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001425 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001426 if (unlikely(!s->txn && be->http_needed)) {
1427 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001428 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001429
1430 /* and now initialize the HTTP transaction state */
1431 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001432 }
1433
Christopher Faulet309c6412015-12-02 09:57:32 +01001434 /* Be sure to filter request headers if the backend is an HTTP proxy and
1435 * if there are filters attached to the stream. */
1436 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001437 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001438
Willy Tarreaueee5b512015-04-03 23:46:31 +02001439 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001440 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1441 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001442 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001443 struct connection *conn = objt_conn(strm_sess(s)->origin);
1444 struct conn_stream *cs = objt_cs(s->si[0].end);
1445
1446 if (conn && cs) {
1447 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001448 /* Make sure we're unsubscribed, the the new
1449 * mux will probably want to subscribe to
1450 * the underlying XPRT
1451 */
1452 if (s->si[0].wait_event.events)
1453 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1454 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001455 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001456 return 0;
1457 s->flags |= SF_HTX;
1458 }
1459 }
1460
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001461 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001462 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001463 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001464 }
1465
1466 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001467 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001468 s->req.flags |= CF_NEVER_WAIT;
1469 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001470 }
1471
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001472 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001473}
1474
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001475/* Capture a bad request or response and archive it in the proxy's structure.
1476 * It is relatively protocol-agnostic so it requires that a number of elements
1477 * are passed :
1478 * - <proxy> is the proxy where the error was detected and where the snapshot
1479 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001480 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001481 * - <other_end> is a pointer to the proxy on the other side when known
1482 * - <target> is the target of the connection, usually a server or a proxy
1483 * - <sess> is the session which experienced the error
1484 * - <ctx> may be NULL or should contain any info relevant to the protocol
1485 * - <buf> is the buffer containing the offending data
1486 * - <buf_ofs> is the position of this buffer's input data in the input
1487 * stream, starting at zero. It may be passed as zero if unknown.
1488 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1489 * which precedes the buffer's input. The buffer's input starts at
1490 * buf->head + buf_out.
1491 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1492 * - <show> is the callback to use to display <ctx>. It may be NULL.
1493 */
1494void proxy_capture_error(struct proxy *proxy, int is_back,
1495 struct proxy *other_end, enum obj_type *target,
1496 const struct session *sess,
1497 const struct buffer *buf, long buf_ofs,
1498 unsigned int buf_out, unsigned int err_pos,
1499 const union error_snapshot_ctx *ctx,
1500 void (*show)(struct buffer *, const struct error_snapshot *))
1501{
1502 struct error_snapshot *es;
1503 unsigned int buf_len;
1504 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001505 unsigned int ev_id;
1506
1507 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1508
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001509 buf_len = b_data(buf) - buf_out;
1510
1511 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001512 if (!es)
1513 return;
1514
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001515 es->buf_len = buf_len;
1516 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001517
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001518 len1 = b_size(buf) - buf_len;
1519 if (len1 > buf_len)
1520 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001521
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001522 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001523 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001524 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001525 if (len2)
1526 memcpy(es->buf + len1, b_orig(buf), len2);
1527 }
1528
1529 es->buf_err = err_pos;
1530 es->when = date; // user-visible date
1531 es->srv = objt_server(target);
1532 es->oe = other_end;
Willy Tarreau026efc72019-07-17 15:20:02 +02001533 if (objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
1534 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001535 else
1536 memset(&es->src, 0, sizeof(es->src));
1537
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001538 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1539 es->buf_out = buf_out;
1540 es->buf_ofs = buf_ofs;
1541
1542 /* be sure to indicate the offset of the first IN byte */
1543 if (es->buf_ofs >= es->buf_len)
1544 es->buf_ofs -= es->buf_len;
1545 else
1546 es->buf_ofs = 0;
1547
1548 /* protocol-specific part now */
1549 if (ctx)
1550 es->ctx = *ctx;
1551 else
1552 memset(&es->ctx, 0, sizeof(es->ctx));
1553 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001554
1555 /* note: we still lock since we have to be certain that nobody is
1556 * dumping the output while we free.
1557 */
1558 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1559 if (is_back) {
1560 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1561 } else {
1562 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1563 }
1564 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001565 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1566}
1567
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001568/* Configure all proxies which lack a maxconn setting to use the global one by
1569 * default. This avoids the common mistake consisting in setting maxconn only
1570 * in the global section and discovering the hard way that it doesn't propagate
1571 * through the frontends. These values are also propagated through the various
1572 * targetted backends, whose fullconn is finally calculated if not yet set.
1573 */
1574void proxy_adjust_all_maxconn()
1575{
1576 struct proxy *curproxy;
1577 struct switching_rule *swrule1, *swrule2;
1578
1579 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1580 if (curproxy->state == PR_STSTOPPED)
1581 continue;
1582
1583 if (!(curproxy->cap & PR_CAP_FE))
1584 continue;
1585
1586 if (!curproxy->maxconn)
1587 curproxy->maxconn = global.maxconn;
1588
1589 /* update the target backend's fullconn count : default_backend */
1590 if (curproxy->defbe.be)
1591 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1592 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1593 curproxy->tot_fe_maxconn += curproxy->maxconn;
1594
1595 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1596 /* For each target of switching rules, we update their
1597 * tot_fe_maxconn, except if a previous rule points to
1598 * the same backend or to the default backend.
1599 */
1600 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001601 /* note: swrule1->be.backend isn't a backend if the rule
1602 * is dynamic, it's an expression instead, so it must not
1603 * be dereferenced as a backend before being certain it is.
1604 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001605 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1606 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001607 if (!swrule1->dynamic)
1608 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001609 break;
1610 }
1611 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1612 /* there are multiple refs of this backend */
1613 break;
1614 }
1615 }
1616 }
1617 }
1618 }
1619
1620 /* automatically compute fullconn if not set. We must not do it in the
1621 * loop above because cross-references are not yet fully resolved.
1622 */
1623 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1624 if (curproxy->state == PR_STSTOPPED)
1625 continue;
1626
1627 /* If <fullconn> is not set, let's set it to 10% of the sum of
1628 * the possible incoming frontend's maxconns.
1629 */
1630 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1631 /* we have the sum of the maxconns in <total>. We only
1632 * keep 10% of that sum to set the default fullconn, with
1633 * a hard minimum of 1 (to avoid a divide by zero).
1634 */
1635 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1636 if (!curproxy->fullconn)
1637 curproxy->fullconn = 1;
1638 }
1639 }
1640}
1641
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001642/* Config keywords below */
1643
Willy Tarreaudc13c112013-06-21 23:16:39 +02001644static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001645 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001646 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001647 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1648 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1649 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001650 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001651 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001652 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001653 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001654 { 0, NULL, NULL },
1655}};
1656
Willy Tarreau0108d902018-11-25 19:14:37 +01001657INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1658
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001659/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1660 * adequate error messages and returns NULL. This function is designed to be used by
1661 * functions requiring a frontend on the CLI.
1662 */
1663struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1664{
1665 struct proxy *px;
1666
1667 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001668 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001669 appctx->ctx.cli.msg = "A frontend name is expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001670 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001671 return NULL;
1672 }
1673
1674 px = proxy_fe_by_name(arg);
1675 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001676 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001677 appctx->ctx.cli.msg = "No such frontend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001678 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001679 return NULL;
1680 }
1681 return px;
1682}
1683
Olivier Houchard614f8d72017-03-14 20:08:46 +01001684/* Expects to find a backend named <arg> and returns it, otherwise displays various
1685 * adequate error messages and returns NULL. This function is designed to be used by
1686 * functions requiring a frontend on the CLI.
1687 */
1688struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1689{
1690 struct proxy *px;
1691
1692 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001693 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001694 appctx->ctx.cli.msg = "A backend name is expected.\n";
1695 appctx->st0 = CLI_ST_PRINT;
1696 return NULL;
1697 }
1698
1699 px = proxy_be_by_name(arg);
1700 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001701 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001702 appctx->ctx.cli.msg = "No such backend.\n";
1703 appctx->st0 = CLI_ST_PRINT;
1704 return NULL;
1705 }
1706 return px;
1707}
1708
1709
William Lallemanda6c5f332016-11-19 02:25:36 +01001710/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001711 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1712 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001713 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001714static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001715{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001716 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001717
1718 /* check if a backend name has been provided */
1719 if (*args[3]) {
1720 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001721 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001722
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001723 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001724 appctx->ctx.cli.severity = LOG_ERR;
William Lallemanda6c5f332016-11-19 02:25:36 +01001725 appctx->ctx.cli.msg = "Can't find backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001726 appctx->st0 = CLI_ST_PRINT;
William Lallemanda6c5f332016-11-19 02:25:36 +01001727 return 1;
1728 }
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001729 appctx->ctx.cli.p0 = px;
1730 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001731 }
1732 return 0;
1733}
1734
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001735/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001736 * These information are all the parameters which may change during HAProxy runtime.
1737 * By default, we only export to the last known server state file format.
1738 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001739 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1740 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001741 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001742static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001743{
1744 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001745 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001746 struct server *srv;
1747 char srv_addr[INET6_ADDRSTRLEN + 1];
1748 time_t srv_time_since_last_change;
1749 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001750 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001751
William Lallemanda6c5f332016-11-19 02:25:36 +01001752 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001753 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001754 return 1;
1755
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001756 if (!appctx->ctx.cli.p1)
1757 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001758
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001759 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1760 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001761 srv_addr[0] = '\0';
1762
1763 switch (srv->addr.ss_family) {
1764 case AF_INET:
1765 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1766 srv_addr, INET_ADDRSTRLEN + 1);
1767 break;
1768 case AF_INET6:
1769 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1770 srv_addr, INET6_ADDRSTRLEN + 1);
1771 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001772 default:
1773 memcpy(srv_addr, "-\0", 2);
1774 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001775 }
1776 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001777 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001778 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1779
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001780 srvrecord = NULL;
1781 if (srv->srvrq && srv->srvrq->name)
1782 srvrecord = srv->srvrq->name;
1783
William Lallemanda6c5f332016-11-19 02:25:36 +01001784 chunk_appendf(buf,
1785 "%d %s "
1786 "%d %s %s "
1787 "%d %d %d %d %ld "
1788 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001789 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001790 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001791 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001792 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001793 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001794 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001795 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1796 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001797 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001798 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001799 return 0;
1800 }
1801 }
1802 return 1;
1803}
1804
1805/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001806 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1807 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001808 */
1809static int cli_io_handler_servers_state(struct appctx *appctx)
1810{
1811 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001812 struct proxy *curproxy;
1813
1814 chunk_reset(&trash);
1815
1816 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001817 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001818 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001819 appctx->st2 = STAT_ST_HEAD;
1820 }
1821
1822 if (appctx->st2 == STAT_ST_HEAD) {
1823 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001824 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001825 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001826 return 0;
1827 }
1828 appctx->st2 = STAT_ST_INFO;
1829 }
1830
1831 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001832 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1833 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001834 /* servers are only in backends */
1835 if (curproxy->cap & PR_CAP_BE) {
1836 if (!dump_servers_state(si, &trash))
1837 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001838 }
1839 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001840 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001841 break;
1842 }
1843
1844 return 1;
1845}
1846
Willy Tarreau608ea592016-12-16 18:01:15 +01001847/* Parses backend list and simply report backend names. It keeps the proxy
1848 * pointer in cli.p0.
1849 */
William Lallemand933efcd2016-11-22 12:34:16 +01001850static int cli_io_handler_show_backend(struct appctx *appctx)
1851{
William Lallemand933efcd2016-11-22 12:34:16 +01001852 struct stream_interface *si = appctx->owner;
1853 struct proxy *curproxy;
1854
1855 chunk_reset(&trash);
1856
Willy Tarreau608ea592016-12-16 18:01:15 +01001857 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001858 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001859 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001860 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001861 return 0;
1862 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001863 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001864 }
1865
Willy Tarreau608ea592016-12-16 18:01:15 +01001866 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1867 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001868
1869 /* looking for backends only */
1870 if (!(curproxy->cap & PR_CAP_BE))
1871 continue;
1872
1873 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001874 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001875 continue;
1876
1877 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001878 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001879 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001880 return 0;
1881 }
1882 }
1883
1884 return 1;
1885}
William Lallemanda6c5f332016-11-19 02:25:36 +01001886
Willy Tarreaua275a372018-08-21 14:50:44 +02001887/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1888 *
1889 * Grabs the proxy lock and each server's lock.
1890 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001891static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001892{
1893 struct proxy *px;
1894 struct server *s;
1895
1896 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1897 return 1;
1898
1899 px = cli_find_backend(appctx, args[3]);
1900 if (!px)
1901 return 1;
1902
Willy Tarreaua275a372018-08-21 14:50:44 +02001903 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1904
Olivier Houchard614f8d72017-03-14 20:08:46 +01001905 px->ck_opts |= PR_CK_DYNAMIC;
1906
Willy Tarreaua275a372018-08-21 14:50:44 +02001907 for (s = px->srv; s != NULL; s = s->next) {
1908 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001909 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001910 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1911 }
1912
1913 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001914
1915 return 1;
1916}
1917
Willy Tarreaua275a372018-08-21 14:50:44 +02001918/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1919 *
1920 * Grabs the proxy lock and each server's lock.
1921 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001922static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001923{
1924 struct proxy *px;
1925 struct server *s;
1926
1927 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1928 return 1;
1929
1930 px = cli_find_backend(appctx, args[3]);
1931 if (!px)
1932 return 1;
1933
Willy Tarreaua275a372018-08-21 14:50:44 +02001934 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1935
Olivier Houchard614f8d72017-03-14 20:08:46 +01001936 px->ck_opts &= ~PR_CK_DYNAMIC;
1937
1938 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001939 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001940 if (!(s->flags & SRV_F_COOKIESET)) {
1941 free(s->cookie);
1942 s->cookie = NULL;
1943 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001944 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001945 }
1946
Willy Tarreaua275a372018-08-21 14:50:44 +02001947 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
1948
Olivier Houchard614f8d72017-03-14 20:08:46 +01001949 return 1;
1950}
1951
Willy Tarreaua275a372018-08-21 14:50:44 +02001952/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1953 *
1954 * Grabs the proxy lock and each server's lock.
1955 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001956static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001957{
1958 struct proxy *px;
1959 struct server *s;
1960 char *newkey;
1961
1962 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1963 return 1;
1964
1965 px = cli_find_backend(appctx, args[3]);
1966 if (!px)
1967 return 1;
1968
1969 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001970 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001971 appctx->ctx.cli.msg = "String value expected.\n";
1972 appctx->st0 = CLI_ST_PRINT;
1973 return 1;
1974 }
1975
1976 newkey = strdup(args[4]);
1977 if (!newkey) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001978 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001979 appctx->ctx.cli.msg = "Failed to allocate memory.\n";
1980 appctx->st0 = CLI_ST_PRINT;
1981 return 1;
1982 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001983
1984 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1985
Olivier Houchard614f8d72017-03-14 20:08:46 +01001986 free(px->dyncookie_key);
1987 px->dyncookie_key = newkey;
1988
Willy Tarreaua275a372018-08-21 14:50:44 +02001989 for (s = px->srv; s != NULL; s = s->next) {
1990 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001991 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001992 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1993 }
1994
1995 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001996
1997 return 1;
1998}
1999
Willy Tarreaua275a372018-08-21 14:50:44 +02002000/* Parses the "set maxconn frontend" directive, it always returns 1.
2001 *
2002 * Grabs the proxy lock.
2003 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002004static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002005{
2006 struct proxy *px;
2007 struct listener *l;
2008 int v;
2009
2010 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2011 return 1;
2012
2013 px = cli_find_frontend(appctx, args[3]);
2014 if (!px)
2015 return 1;
2016
2017 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002018 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002019 appctx->ctx.cli.msg = "Integer value expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002020 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002021 return 1;
2022 }
2023
2024 v = atoi(args[4]);
2025 if (v < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002026 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002027 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002028 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002029 return 1;
2030 }
2031
2032 /* OK, the value is fine, so we assign it to the proxy and to all of
2033 * its listeners. The blocked ones will be dequeued.
2034 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002035 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2036
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002037 px->maxconn = v;
2038 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002039 if (l->state == LI_FULL)
2040 resume_listener(l);
2041 }
2042
2043 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue))
2044 dequeue_all_listeners(&px->listener_queue);
2045
Willy Tarreaua275a372018-08-21 14:50:44 +02002046 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2047
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002048 return 1;
2049}
2050
Willy Tarreaua275a372018-08-21 14:50:44 +02002051/* Parses the "shutdown frontend" directive, it always returns 1.
2052 *
2053 * Grabs the proxy lock.
2054 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002055static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002056{
2057 struct proxy *px;
2058
2059 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2060 return 1;
2061
2062 px = cli_find_frontend(appctx, args[2]);
2063 if (!px)
2064 return 1;
2065
2066 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002067 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002068 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002069 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002070 return 1;
2071 }
2072
Christopher Faulet767a84b2017-11-24 16:50:31 +01002073 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2074 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002075 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2076 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002077
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002078 stop_proxy(px);
2079 return 1;
2080}
2081
Willy Tarreaua275a372018-08-21 14:50:44 +02002082/* Parses the "disable frontend" directive, it always returns 1.
2083 *
2084 * Grabs the proxy lock.
2085 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002086static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002087{
2088 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002089 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002090
2091 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2092 return 1;
2093
2094 px = cli_find_frontend(appctx, args[2]);
2095 if (!px)
2096 return 1;
2097
2098 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002099 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002100 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002101 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002102 return 1;
2103 }
2104
2105 if (px->state == PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002106 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002107 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002108 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002109 return 1;
2110 }
2111
Willy Tarreaua275a372018-08-21 14:50:44 +02002112 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2113 ret = pause_proxy(px);
2114 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2115
2116 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002117 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002118 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002119 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002120 return 1;
2121 }
2122 return 1;
2123}
2124
Willy Tarreaua275a372018-08-21 14:50:44 +02002125/* Parses the "enable frontend" directive, it always returns 1.
2126 *
2127 * Grabs the proxy lock.
2128 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002129static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002130{
2131 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002132 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002133
2134 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2135 return 1;
2136
2137 px = cli_find_frontend(appctx, args[2]);
2138 if (!px)
2139 return 1;
2140
2141 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002142 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002143 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002144 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002145 return 1;
2146 }
2147
2148 if (px->state != PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002149 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002150 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002151 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002152 return 1;
2153 }
2154
Willy Tarreaua275a372018-08-21 14:50:44 +02002155 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2156 ret = resume_proxy(px);
2157 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2158
2159 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002160 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002161 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002162 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002163 return 1;
2164 }
2165 return 1;
2166}
2167
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002168/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2169 * now.
2170 */
2171static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2172{
2173 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2174 return 1;
2175
2176 if (*args[2]) {
2177 struct proxy *px;
2178
2179 px = proxy_find_by_name(args[2], 0, 0);
2180 if (px)
2181 appctx->ctx.errors.iid = px->uuid;
2182 else
2183 appctx->ctx.errors.iid = atoi(args[2]);
2184
2185 if (!appctx->ctx.errors.iid) {
2186 appctx->ctx.cli.severity = LOG_ERR;
2187 appctx->ctx.cli.msg = "No such proxy.\n";
2188 appctx->st0 = CLI_ST_PRINT;
2189 return 1;
2190 }
2191 }
2192 else
2193 appctx->ctx.errors.iid = -1; // dump all proxies
2194
2195 appctx->ctx.errors.flag = 0;
2196 if (strcmp(args[3], "request") == 0)
2197 appctx->ctx.errors.flag |= 4; // ignore response
2198 else if (strcmp(args[3], "response") == 0)
2199 appctx->ctx.errors.flag |= 2; // ignore request
2200 appctx->ctx.errors.px = NULL;
2201 return 0;
2202}
2203
2204/* This function dumps all captured errors onto the stream interface's
2205 * read buffer. It returns 0 if the output buffer is full and it needs
2206 * to be called again, otherwise non-zero.
2207 */
2208static int cli_io_handler_show_errors(struct appctx *appctx)
2209{
2210 struct stream_interface *si = appctx->owner;
2211 extern const char *monthname[12];
2212
2213 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2214 return 1;
2215
2216 chunk_reset(&trash);
2217
2218 if (!appctx->ctx.errors.px) {
2219 /* the function had not been called yet, let's prepare the
2220 * buffer for a response.
2221 */
2222 struct tm tm;
2223
2224 get_localtime(date.tv_sec, &tm);
2225 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2226 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2227 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2228 error_snapshot_id);
2229
Willy Tarreau36b27362018-09-07 19:55:44 +02002230 if (ci_putchk(si_ic(si), &trash) == -1)
2231 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002232
2233 appctx->ctx.errors.px = proxies_list;
2234 appctx->ctx.errors.bol = 0;
2235 appctx->ctx.errors.ptr = -1;
2236 }
2237
2238 /* we have two inner loops here, one for the proxy, the other one for
2239 * the buffer.
2240 */
2241 while (appctx->ctx.errors.px) {
2242 struct error_snapshot *es;
2243
Willy Tarreau36b27362018-09-07 19:55:44 +02002244 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2245
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002246 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002247 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002248 if (appctx->ctx.errors.flag & 2) // skip req
2249 goto next;
2250 }
2251 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002252 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002253 if (appctx->ctx.errors.flag & 4) // skip resp
2254 goto next;
2255 }
2256
Willy Tarreauc55015e2018-09-07 19:02:32 +02002257 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002258 goto next;
2259
2260 if (appctx->ctx.errors.iid >= 0 &&
2261 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
2262 es->oe->uuid != appctx->ctx.errors.iid)
2263 goto next;
2264
2265 if (appctx->ctx.errors.ptr < 0) {
2266 /* just print headers now */
2267
2268 char pn[INET6_ADDRSTRLEN];
2269 struct tm tm;
2270 int port;
2271
2272 get_localtime(es->when.tv_sec, &tm);
2273 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2274 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2275 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2276
2277 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2278 case AF_INET:
2279 case AF_INET6:
2280 port = get_host_port(&es->src);
2281 break;
2282 default:
2283 port = 0;
2284 }
2285
2286 switch (appctx->ctx.errors.flag & 1) {
2287 case 0:
2288 chunk_appendf(&trash,
2289 " frontend %s (#%d): invalid request\n"
2290 " backend %s (#%d)",
2291 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2292 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2293 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
2294 break;
2295 case 1:
2296 chunk_appendf(&trash,
2297 " backend %s (#%d): invalid response\n"
2298 " frontend %s (#%d)",
2299 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2300 es->oe->id, es->oe->uuid);
2301 break;
2302 }
2303
2304 chunk_appendf(&trash,
2305 ", server %s (#%d), event #%u, src %s:%d\n"
2306 " buffer starts at %llu (including %u out), %u free,\n"
2307 " len %u, wraps at %u, error at position %u\n",
2308 es->srv ? es->srv->id : "<NONE>",
2309 es->srv ? es->srv->puid : -1,
2310 es->ev_id, pn, port,
2311 es->buf_ofs, es->buf_out,
2312 global.tune.bufsize - es->buf_out - es->buf_len,
2313 es->buf_len, es->buf_wrap, es->buf_err);
2314
2315 if (es->show)
2316 es->show(&trash, es);
2317
2318 chunk_appendf(&trash, " \n");
2319
Willy Tarreau36b27362018-09-07 19:55:44 +02002320 if (ci_putchk(si_ic(si), &trash) == -1)
2321 goto cant_send_unlock;
2322
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002323 appctx->ctx.errors.ptr = 0;
2324 appctx->ctx.errors.ev_id = es->ev_id;
2325 }
2326
2327 if (appctx->ctx.errors.ev_id != es->ev_id) {
2328 /* the snapshot changed while we were dumping it */
2329 chunk_appendf(&trash,
2330 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002331 if (ci_putchk(si_ic(si), &trash) == -1)
2332 goto cant_send_unlock;
2333
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002334 goto next;
2335 }
2336
2337 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002338 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002339 int newptr;
2340 int newline;
2341
2342 newline = appctx->ctx.errors.bol;
2343 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2344 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002345 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002346
Willy Tarreau36b27362018-09-07 19:55:44 +02002347 if (ci_putchk(si_ic(si), &trash) == -1)
2348 goto cant_send_unlock;
2349
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002350 appctx->ctx.errors.ptr = newptr;
2351 appctx->ctx.errors.bol = newline;
2352 };
2353 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002354 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002355 appctx->ctx.errors.bol = 0;
2356 appctx->ctx.errors.ptr = -1;
2357 appctx->ctx.errors.flag ^= 1;
2358 if (!(appctx->ctx.errors.flag & 1))
2359 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2360 }
2361
2362 /* dump complete */
2363 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002364
2365 cant_send_unlock:
2366 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2367 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002368 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002369 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002370}
2371
William Lallemanda6c5f332016-11-19 02:25:36 +01002372/* register cli keywords */
2373static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002374 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2375 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002376 { { "set", "maxconn", "frontend", NULL }, "set maxconn frontend : change a frontend's maxconn setting", cli_parse_set_maxconn_frontend, NULL },
William Lallemanda6c5f332016-11-19 02:25:36 +01002377 { { "show","servers", "state", NULL }, "show servers state [id]: dump volatile server information (for backend <id>)", cli_parse_show_servers, cli_io_handler_servers_state },
Willy Tarreau608ea592016-12-16 18:01:15 +01002378 { { "show", "backend", NULL }, "show backend : list backends in the current running config", NULL, cli_io_handler_show_backend },
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002379 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002380 { { "set", "dynamic-cookie-key", "backend", NULL }, "set dynamic-cookie-key backend : change a backend secret key for dynamic cookies", cli_parse_set_dyncookie_key_backend, NULL },
2381 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2382 { { "disable", "dynamic-cookie", "backend", NULL }, "disable dynamic-cookie backend : disable dynamic cookies on a specific backend", cli_parse_disable_dyncookie_backend, NULL },
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002383 { { "show", "errors", NULL }, "show errors : report last request and response errors for each proxy", cli_parse_show_errors, cli_io_handler_show_errors, NULL },
William Lallemanda6c5f332016-11-19 02:25:36 +01002384 {{},}
2385}};
2386
Willy Tarreau0108d902018-11-25 19:14:37 +01002387INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002388
2389/*
2390 * Local variables:
2391 * c-indent-level: 8
2392 * c-basic-offset: 8
2393 * End:
2394 */