blob: 43ae7cf9658c2226990c1a970b74242ce3867509 [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 Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020021#include <common/cfgparse.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020022#include <haproxy/errors.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020023#include <haproxy/obj_type-t.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020024#include <haproxy/pool.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020025#include <haproxy/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreau8d2b7772020-05-27 10:58:19 +020027#include <import/eb32tree.h>
28#include <import/ebistree.h>
Willy Tarreaucfd837f2014-03-15 07:43:51 +010029
Willy Tarreau278161c2020-06-04 11:18:28 +020030#include <haproxy/capture-t.h>
Willy Tarreau960f2cb2016-11-24 12:02:29 +010031#include <types/cli.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032#include <types/global.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020033#include <types/peers.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010034#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
William Lallemanda6c5f332016-11-19 02:25:36 +010036#include <proto/applet.h>
37#include <proto/cli.h>
Alexandre Cassen87ea5482007-10-11 20:48:58 +020038#include <proto/backend.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020039#include <haproxy/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020040#include <proto/filters.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020041#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010043#include <proto/proto_tcp.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020044#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/proxy.h>
Olivier Houchard614f8d72017-03-14 20:08:46 +010046#include <proto/server.h>
Willy Tarreaud0807c32010-08-27 18:26:11 +020047#include <proto/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020048#include <proto/stream.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010049#include <proto/stream_interface.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020050#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051
52
Willy Tarreau918ff602011-07-25 16:33:49 +020053int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010054struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020055struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010056struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010057unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020058
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010059/* proxy->options */
60const struct cfg_opt cfg_opts[] =
61{
62 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
63 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
64 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
65 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
66 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
67 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
68 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
69 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
70 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
71 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
72 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
73 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
74 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
75 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020076#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010077 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
78#else
79 { "transparent", 0, 0, 0, 0 },
80#endif
81
82 { NULL, 0, 0, 0, 0 }
83};
84
85/* proxy->options2 */
86const struct cfg_opt cfg_opts2[] =
87{
Willy Tarreaue5733232019-05-22 19:24:06 +020088#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010089 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
90 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
91 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
92#else
93 { "splice-request", 0, 0, 0, 0 },
94 { "splice-response", 0, 0, 0, 0 },
95 { "splice-auto", 0, 0, 0, 0 },
96#endif
97 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
98 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
99 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
100 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
101 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
102 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
103 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
104 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100105 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
106 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
107 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
108 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200109 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Christopher Faulet98fbe952019-07-22 16:18:24 +0200110
111 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
112 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet89aed322020-06-02 17:33:56 +0200113 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100114 { NULL, 0, 0, 0 }
115};
116
Willy Tarreau977b8e42006-12-29 14:19:17 +0100117/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100118 * This function returns a string containing a name describing capabilities to
119 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200120 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100121 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100122 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100123const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100124{
Willy Tarreau816eb542007-11-04 07:04:43 +0100125 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
126 if (cap & PR_CAP_FE)
127 return "frontend";
128 else if (cap & PR_CAP_BE)
129 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100130 }
131 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100132}
133
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100134/*
135 * This function returns a string containing the mode of the proxy in a format
136 * suitable for error messages.
137 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100138const char *proxy_mode_str(int mode) {
139
140 if (mode == PR_MODE_TCP)
141 return "tcp";
142 else if (mode == PR_MODE_HTTP)
143 return "http";
144 else if (mode == PR_MODE_HEALTH)
145 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200146 else if (mode == PR_MODE_CLI)
147 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100148 else
149 return "unknown";
150}
151
Willy Tarreauf3950172009-10-10 18:35:51 +0200152/*
153 * This function scans the list of backends and servers to retrieve the first
154 * backend and the first server with the given names, and sets them in both
155 * parameters. It returns zero if either is not found, or non-zero and sets
156 * the ones it did not found to NULL. If a NULL pointer is passed for the
157 * backend, only the pointer to the server will be updated.
158 */
159int get_backend_server(const char *bk_name, const char *sv_name,
160 struct proxy **bk, struct server **sv)
161{
162 struct proxy *p;
163 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100164 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200165
166 *sv = NULL;
167
Willy Tarreau050536d2012-10-04 08:47:34 +0200168 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200169 if (*sv_name == '#')
170 sid = atoi(sv_name + 1);
171
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200172 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200173 if (bk)
174 *bk = p;
175 if (!p)
176 return 0;
177
178 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100179 if ((sid >= 0 && s->puid == sid) ||
180 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200181 break;
182 *sv = s;
183 if (!s)
184 return 0;
185 return 1;
186}
187
Willy Tarreaue219db72007-12-03 01:30:13 +0100188/* This function parses a "timeout" statement in a proxy section. It returns
189 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200190 * return zero, it will write an error or warning message into a preallocated
191 * buffer returned at <err>. The trailing is not be written. The function must
192 * be called with <args> pointing to the first command line word, with <proxy>
193 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
194 * As a special case for compatibility with older configs, it also accepts
195 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100196 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200197static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200198 struct proxy *defpx, const char *file, int line,
199 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100200{
201 unsigned timeout;
202 int retval, cap;
203 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200204 int *tv = NULL;
205 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100206
207 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200208
209 /* simply skip "timeout" but remain compatible with old form */
210 if (strcmp(args[0], "timeout") == 0)
211 args++;
212
Willy Tarreaue219db72007-12-03 01:30:13 +0100213 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200214 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100215 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100216 tv = &proxy->timeout.client;
217 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100218 cap = PR_CAP_FE;
219 } else if (!strcmp(args[0], "tarpit")) {
220 tv = &proxy->timeout.tarpit;
221 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100222 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100223 } else if (!strcmp(args[0], "http-keep-alive")) {
224 tv = &proxy->timeout.httpka;
225 td = &defpx->timeout.httpka;
226 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100227 } else if (!strcmp(args[0], "http-request")) {
228 tv = &proxy->timeout.httpreq;
229 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200230 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200231 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100232 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100233 tv = &proxy->timeout.server;
234 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100235 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200236 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100237 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100238 tv = &proxy->timeout.connect;
239 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100240 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100241 } else if (!strcmp(args[0], "check")) {
242 tv = &proxy->timeout.check;
243 td = &defpx->timeout.check;
244 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100245 } else if (!strcmp(args[0], "queue")) {
246 tv = &proxy->timeout.queue;
247 td = &defpx->timeout.queue;
248 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200249 } else if (!strcmp(args[0], "tunnel")) {
250 tv = &proxy->timeout.tunnel;
251 td = &defpx->timeout.tunnel;
252 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200253 } else if (!strcmp(args[0], "client-fin")) {
254 tv = &proxy->timeout.clientfin;
255 td = &defpx->timeout.clientfin;
256 cap = PR_CAP_FE;
257 } else if (!strcmp(args[0], "server-fin")) {
258 tv = &proxy->timeout.serverfin;
259 td = &defpx->timeout.serverfin;
260 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200261 } else if (!strcmp(args[0], "clitimeout")) {
262 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
263 return -1;
264 } else if (!strcmp(args[0], "srvtimeout")) {
265 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
266 return -1;
267 } else if (!strcmp(args[0], "contimeout")) {
268 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
269 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100270 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200271 memprintf(err,
272 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200273 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
274 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200275 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100276 return -1;
277 }
278
279 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200280 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100281 return -1;
282 }
283
284 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200285 if (res == PARSE_TIME_OVER) {
286 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
287 args[1], name);
288 return -1;
289 }
290 else if (res == PARSE_TIME_UNDER) {
291 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
292 args[1], name);
293 return -1;
294 }
295 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200296 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100297 return -1;
298 }
299
300 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200301 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
302 name, proxy_type_str(proxy), proxy->id,
303 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100304 retval = 1;
305 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200306 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200307 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100308 retval = 1;
309 }
310
Willy Tarreaufac5b592014-05-22 08:24:46 +0200311 if (*args[2] != 0) {
312 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
313 retval = -1;
314 }
315
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200316 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100317 return retval;
318}
319
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100320/* This function parses a "rate-limit" statement in a proxy section. It returns
321 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200322 * return zero, it will write an error or warning message into a preallocated
323 * buffer returned at <err>. The function must be called with <args> pointing
324 * to the first command line word, with <proxy> pointing to the proxy being
325 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100326 */
327static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200328 struct proxy *defpx, const char *file, int line,
329 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100330{
William Dauchybb9da0b2020-01-16 01:34:27 +0100331 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200332 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100333 unsigned int *tv = NULL;
334 unsigned int *td = NULL;
335 unsigned int val;
336
337 retval = 0;
338
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200339 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200340 tv = &proxy->fe_sps_lim;
341 td = &defpx->fe_sps_lim;
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
William Dauchybb9da0b2020-01-16 01:34:27 +0100359 if (!(proxy->cap & PR_CAP_FE)) {
360 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
361 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100362 retval = 1;
363 }
364 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200365 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100366 retval = 1;
367 }
368
369 *tv = val;
370 return retval;
371}
372
Willy Tarreauc35362a2014-04-25 13:58:37 +0200373/* This function parses a "max-keep-alive-queue" statement in a proxy section.
374 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
375 * does not return zero, it will write an error or warning message into a
376 * preallocated buffer returned at <err>. The function must be called with
377 * <args> pointing to the first command line word, with <proxy> pointing to
378 * the proxy being parsed, and <defpx> to the default proxy or NULL.
379 */
380static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
381 struct proxy *defpx, const char *file, int line,
382 char **err)
383{
384 int retval;
385 char *res;
386 unsigned int val;
387
388 retval = 0;
389
390 if (*args[1] == 0) {
391 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
392 return -1;
393 }
394
395 val = strtol(args[1], &res, 0);
396 if (*res) {
397 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
398 return -1;
399 }
400
401 if (!(proxy->cap & PR_CAP_BE)) {
402 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
403 args[0], proxy_type_str(proxy), proxy->id);
404 retval = 1;
405 }
406
407 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
408 proxy->max_ka_queue = val + 1;
409 return retval;
410}
411
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200412/* This function parses a "declare" statement in a proxy section. It returns -1
413 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
414 * it will write an error or warning message into a preallocated buffer returned
415 * at <err>. The function must be called with <args> pointing to the first command
416 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
417 * default proxy or NULL.
418 */
419static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
420 struct proxy *defpx, const char *file, int line,
421 char **err)
422{
423 /* Capture keyword wannot be declared in a default proxy. */
424 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800425 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200426 return -1;
427 }
428
Joseph Herlant59dd2952018-11-15 11:46:55 -0800429 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200430 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800431 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200432 return -1;
433 }
434
435 /* Check mandatory second keyword. */
436 if (!args[1] || !*args[1]) {
437 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
438 return -1;
439 }
440
Joseph Herlant59dd2952018-11-15 11:46:55 -0800441 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200442 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800443 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200444 * the second keyword.
445 */
446 if (strcmp(args[1], "capture") == 0) {
447 char *error = NULL;
448 long len;
449 struct cap_hdr *hdr;
450
451 /* Check the next keyword. */
452 if (!args[2] || !*args[2] ||
453 (strcmp(args[2], "response") != 0 &&
454 strcmp(args[2], "request") != 0)) {
455 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
456 return -1;
457 }
458
459 /* Check the 'len' keyword. */
460 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
461 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
462 return -1;
463 }
464
465 /* Check the length value. */
466 if (!args[4] || !*args[4]) {
467 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
468 "capture length",
469 args[0], args[1]);
470 return -1;
471 }
472
473 /* convert the length value. */
474 len = strtol(args[4], &error, 10);
475 if (*error != '\0') {
476 memprintf(err, "'%s %s': cannot parse the length '%s'.",
477 args[0], args[1], args[3]);
478 return -1;
479 }
480
481 /* check length. */
482 if (len <= 0) {
483 memprintf(err, "length must be > 0");
484 return -1;
485 }
486
487 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200488 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200489 hdr->name = NULL; /* not a header capture */
490 hdr->namelen = 0;
491 hdr->len = len;
492 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
493
494 if (strcmp(args[2], "request") == 0) {
495 hdr->next = curpx->req_cap;
496 hdr->index = curpx->nb_req_cap++;
497 curpx->req_cap = hdr;
498 }
499 if (strcmp(args[2], "response") == 0) {
500 hdr->next = curpx->rsp_cap;
501 hdr->index = curpx->nb_rsp_cap++;
502 curpx->rsp_cap = hdr;
503 }
504 return 0;
505 }
506 else {
507 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
508 return -1;
509 }
510}
511
Olivier Houcharda254a372019-04-05 15:30:12 +0200512/* This function parses a "retry-on" statement */
513static int
514proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
515 struct proxy *defpx, const char *file, int line,
516 char **err)
517{
518 int i;
519
520 if (!(*args[1])) {
521 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
522 return -1;
523 }
524 if (!(curpx->cap & PR_CAP_BE)) {
525 memprintf(err, "'%s' only available in backend or listen section", args[0]);
526 return -1;
527 }
528 curpx->retry_type = 0;
529 for (i = 1; *(args[i]); i++) {
530 if (!strcmp(args[i], "conn-failure"))
531 curpx->retry_type |= PR_RE_CONN_FAILED;
532 else if (!strcmp(args[i], "empty-response"))
533 curpx->retry_type |= PR_RE_DISCONNECTED;
534 else if (!strcmp(args[i], "response-timeout"))
535 curpx->retry_type |= PR_RE_TIMEOUT;
536 else if (!strcmp(args[i], "404"))
537 curpx->retry_type |= PR_RE_404;
538 else if (!strcmp(args[i], "408"))
539 curpx->retry_type |= PR_RE_408;
540 else if (!strcmp(args[i], "425"))
541 curpx->retry_type |= PR_RE_425;
542 else if (!strcmp(args[i], "500"))
543 curpx->retry_type |= PR_RE_500;
544 else if (!strcmp(args[i], "501"))
545 curpx->retry_type |= PR_RE_501;
546 else if (!strcmp(args[i], "502"))
547 curpx->retry_type |= PR_RE_502;
548 else if (!strcmp(args[i], "503"))
549 curpx->retry_type |= PR_RE_503;
550 else if (!strcmp(args[i], "504"))
551 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200552 else if (!strcmp(args[i], "0rtt-rejected"))
553 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200554 else if (!strcmp(args[i], "junk-response"))
555 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200556 else if (!(strcmp(args[i], "all-retryable-errors")))
557 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
558 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
559 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
560 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200561 else if (!strcmp(args[i], "none")) {
562 if (i != 1 || *args[i + 1]) {
563 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
564 return -1;
565 }
566 } else {
567 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
568 return -1;
569 }
570
571 }
572
573
574 return 0;
575}
576
Willy Tarreauf79d9502014-03-15 07:22:35 +0100577/* This function inserts proxy <px> into the tree of known proxies. The proxy's
578 * name is used as the storing key so it must already have been initialized.
579 */
580void proxy_store_name(struct proxy *px)
581{
582 px->conf.by_name.key = px->id;
583 ebis_insert(&proxy_by_name, &px->conf.by_name);
584}
585
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200586/* Returns a pointer to the first proxy matching capabilities <cap> and id
587 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
588 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200589 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200590struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200591{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200592 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200593
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200594 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
595 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100596
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200597 if (px->uuid != id)
598 break;
Alex Williams96532db2009-11-01 21:27:13 -0500599
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200600 if ((px->cap & cap) != cap)
601 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500602
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100603 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200604 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100605
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200606 return px;
607 }
608 return NULL;
609}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100610
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200611/* Returns a pointer to the first proxy matching either name <name>, or id
612 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
613 * If <table> is non-zero, it only considers proxies having a table.
614 */
615struct proxy *proxy_find_by_name(const char *name, int cap, int table)
616{
617 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200618
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200619 if (*name == '#') {
620 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
621 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200622 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500623 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100624 else {
625 struct ebpt_node *node;
626
627 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
628 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500629
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100630 if (strcmp(curproxy->id, name) != 0)
631 break;
632
633 if ((curproxy->cap & cap) != cap)
634 continue;
635
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100636 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200637 continue;
638
Willy Tarreauc739aa82015-05-26 11:35:41 +0200639 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100640 }
641 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200642 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500643}
644
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200645/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
646 * <id>. At most one of <id> or <name> may be different provided that <cap> is
647 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
648 * find a proxy based on some information from a previous configuration, across
649 * reloads or during information exchange between peers.
650 *
651 * Names are looked up first if present, then IDs are compared if present. In
652 * case of an inexact match whatever is forced in the configuration has
653 * precedence in the following order :
654 * - 1) forced ID (proves a renaming / change of proxy type)
655 * - 2) proxy name+type (may indicate a move if ID differs)
656 * - 3) automatic ID+type (may indicate a renaming)
657 *
658 * Depending on what is found, we can end up in the following situations :
659 *
660 * name id cap | possible causes
661 * -------------+-----------------
662 * -- -- -- | nothing found
663 * -- -- ok | nothing found
664 * -- ok -- | proxy deleted, ID points to next one
665 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
666 * ok -- -- | proxy deleted, but other half with same name still here (before)
667 * ok -- ok | proxy's ID changed (proxy moved in the config file)
668 * ok ok -- | proxy deleted, but other half with same name still here (after)
669 * ok ok ok | perfect match
670 *
671 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200672 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
673 * (and ID was not zero)
674 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
675 * (and name was not NULL)
676 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
677 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200678 *
679 * Only a valid proxy is returned. If capabilities do not match, NULL is
680 * returned. The caller can check <diff> to report detailed warnings / errors,
681 * and decide whether or not to use what was found.
682 */
683struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
684{
685 struct proxy *byname;
686 struct proxy *byid;
687
688 if (!name && !id)
689 return NULL;
690
691 if (diff)
692 *diff = 0;
693
694 byname = byid = NULL;
695
696 if (name) {
697 byname = proxy_find_by_name(name, cap, 0);
698 if (byname && (!id || byname->uuid == id))
699 return byname;
700 }
701
Joseph Herlant59dd2952018-11-15 11:46:55 -0800702 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200703 * - name not set
704 * - name set but not found
705 * - name found, but ID doesn't match.
706 */
707 if (id) {
708 byid = proxy_find_by_id(id, cap, 0);
709 if (byid) {
710 if (byname) {
711 /* id+type found, name+type found, but not all 3.
712 * ID wins only if forced, otherwise name wins.
713 */
714 if (byid->options & PR_O_FORCED_ID) {
715 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200716 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200717 return byid;
718 }
719 else {
720 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200721 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200722 return byname;
723 }
724 }
725
Joseph Herlant59dd2952018-11-15 11:46:55 -0800726 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200727 * - name not set
728 * - name set but not found
729 */
730 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200731 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200732 return byid;
733 }
734
735 /* ID not found */
736 if (byname) {
737 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200738 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200739 return byname;
740 }
741 }
742
Joseph Herlant59dd2952018-11-15 11:46:55 -0800743 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200744 * detailed information to the caller about changed types and/or name,
745 * we'll do it. For example, we could detect that "listen foo" was
746 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
747 * - name not set, ID not found
748 * - name not found, ID not set
749 * - name not found, ID not found
750 */
751 if (!diff)
752 return NULL;
753
754 if (name) {
755 byname = proxy_find_by_name(name, 0, 0);
756 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200757 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200758 }
759
760 if (id) {
761 byid = proxy_find_by_id(id, 0, 0);
762 if (byid) {
763 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200764 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200765 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200766 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200767 /* otherwise it's a different proxy that was returned */
768 }
769 }
770 return NULL;
771}
772
Willy Tarreaubaaee002006-06-26 02:48:02 +0200773/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100774 * This function finds a server with matching name within selected proxy.
775 * It also checks if there are more matching servers with
776 * requested name as this often leads into unexpected situations.
777 */
778
779struct server *findserver(const struct proxy *px, const char *name) {
780
781 struct server *cursrv, *target = NULL;
782
783 if (!px)
784 return NULL;
785
786 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
787 if (strcmp(cursrv->id, name))
788 continue;
789
790 if (!target) {
791 target = cursrv;
792 continue;
793 }
794
Christopher Faulet767a84b2017-11-24 16:50:31 +0100795 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
796 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100797
798 return NULL;
799 }
800
801 return target;
802}
803
Willy Tarreauff01a212009-03-15 13:46:16 +0100804/* This function checks that the designated proxy has no http directives
805 * enabled. It will output a warning if there are, and will fix some of them.
806 * It returns the number of fatal errors encountered. This should be called
807 * at the end of the configuration parsing if the proxy is not in http mode.
808 * The <file> argument is used to construct the error message.
809 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200810int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100811{
812 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100813 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
814 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100815 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100816 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100817 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
818 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100819 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200820 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100821 curproxy->lbprm.algo &= ~BE_LB_ALGO;
822 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100823 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
824 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100825 }
Willy Tarreau17804162009-11-09 21:27:51 +0100826 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
827 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100828 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
829 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
830 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100831 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200832 if (curproxy->conf.logformat_string == default_http_log_format ||
833 curproxy->conf.logformat_string == clf_http_log_format) {
834 /* Note: we don't change the directive's file:line number */
835 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100836 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
837 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
838 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200839 }
840
Willy Tarreauff01a212009-03-15 13:46:16 +0100841 return 0;
842}
843
Willy Tarreau237250c2011-07-29 01:49:03 +0200844/* Perform the most basic initialization of a proxy :
845 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200846 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200847 */
848void init_new_proxy(struct proxy *p)
849{
850 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100851 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400852 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200853 LIST_INIT(&p->acl);
854 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200855 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +0100856 LIST_INIT(&p->http_after_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);
Olivier Houchard859dc802019-08-08 15:47:21 +0200868 MT_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);
Christopher Faulet76edc0f2020-01-13 15:52:01 +0100875 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200876 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100877 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +0200878 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +0200879
880 /* Timeouts are defined as -1 */
881 proxy_reset_timeouts(p);
882 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200883
884 /* initial uuid is unassigned (-1) */
885 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200886
Olivier Houcharda254a372019-04-05 15:30:12 +0200887 /* Default to only allow L4 retries */
888 p->retry_type = PR_RE_CONN_FAILED;
889
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100890 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200891}
892
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100893/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200894 * This function creates all proxy sockets. It should be done very early,
895 * typically before privileges are dropped. The sockets will be registered
896 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200897 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200898 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200899 *
900 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
901 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200902 */
903int start_proxies(int verbose)
904{
905 struct proxy *curproxy;
906 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100907 int lerr, err = ERR_NONE;
908 int pxerr;
909 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200910
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100911 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200912 if (curproxy->state != PR_STNEW)
913 continue; /* already initialized */
914
915 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200916 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100917 if (listener->state != LI_ASSIGNED)
918 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919
Emeric Bruncf20bf12010-10-22 16:06:11 +0200920 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921
Willy Tarreaue6b98942007-10-29 01:09:36 +0100922 /* errors are reported if <verbose> is set or if they are fatal */
923 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
924 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100925 ha_alert("Starting %s %s: %s\n",
926 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100927 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100928 ha_warning("Starting %s %s: %s\n",
929 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930 }
931
Willy Tarreaue6b98942007-10-29 01:09:36 +0100932 err |= lerr;
933 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100935 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100937 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200938 pxerr |= 1;
939 continue;
940 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941 }
942
943 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200944 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200945 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
946 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100947
948 if (err & ERR_ABORT)
949 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950 }
951
952 return err;
953}
954
955
956/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200957 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200958 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200959 * called as a task which is woken up upon stopping or when rate limiting must
960 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200962struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200963{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200964 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200965 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100966 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200967
Willy Tarreau918ff602011-07-25 16:33:49 +0200968 /* We should periodically try to enable listeners waiting for a
969 * global resource here.
970 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200971
Willy Tarreau918ff602011-07-25 16:33:49 +0200972 /* first, let's check if we need to stop the proxy */
973 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
974 int t;
975 t = tick_remain(now_ms, p->stop_time);
976 if (t == 0) {
William Dauchy1e2256d2020-01-25 23:45:18 +0100977 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +0100978 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +0100979 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau918ff602011-07-25 16:33:49 +0200980 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
981 stop_proxy(p);
982 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100983 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200984 }
985 else {
986 next = tick_first(next, p->stop_time);
987 }
988 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200989
Willy Tarreau3a925c12013-09-04 17:54:01 +0200990 /* If the proxy holds a stick table, we need to purge all unused
991 * entries. These are all the ones in the table with ref_cnt == 0
992 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200993 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200994 * be in neither list. Any entry being dumped will have ref_cnt > 0.
995 * However we protect tables that are being synced to peers.
996 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100997 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
998 if (!p->table->syncing) {
999 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001000 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001001 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001002 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001003 /* some entries still remain, let's recheck in one second */
1004 next = tick_first(next, tick_add(now_ms, 1000));
1005 }
1006 }
1007
Willy Tarreau918ff602011-07-25 16:33:49 +02001008 /* the rest below is just for frontends */
1009 if (!(p->cap & PR_CAP_FE))
1010 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001011
Willy Tarreau918ff602011-07-25 16:33:49 +02001012 /* check the various reasons we may find to block the frontend */
1013 if (unlikely(p->feconn >= p->maxconn)) {
1014 if (p->state == PR_STREADY)
1015 p->state = PR_STFULL;
1016 goto out;
1017 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001018
Willy Tarreau918ff602011-07-25 16:33:49 +02001019 /* OK we have no reason to block, so let's unblock if we were blocking */
1020 if (p->state == PR_STFULL)
1021 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001022
Willy Tarreau918ff602011-07-25 16:33:49 +02001023 if (p->fe_sps_lim &&
1024 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1025 /* we're blocking because a limit was reached on the number of
1026 * requests/s on the frontend. We want to re-check ASAP, which
1027 * means in 1 ms before estimated expiration date, because the
1028 * timer will have settled down.
1029 */
1030 next = tick_first(next, tick_add(now_ms, wait));
1031 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001032 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001033
1034 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01001035 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02001036 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;
William Dauchy3894d972019-12-28 15:36:02 +01001117 /* disable busy polling to avoid cpu eating for the new process */
1118 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001119 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001120 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001121 if (task) {
1122 task->process = hard_stop;
1123 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1124 }
1125 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001126 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001127 }
1128 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001129 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001130 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001131 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001132 /* Zombie proxy, let's close the file descriptors */
1133 if (p->state == PR_STSTOPPED &&
1134 !LIST_ISEMPTY(&p->conf.listeners) &&
1135 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau67878d72019-12-10 07:11:35 +01001136 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001137 struct listener *l;
1138 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau67878d72019-12-10 07:11:35 +01001139 if (l->state > LI_ASSIGNED)
Olivier Houchard1fc05162017-04-06 01:05:05 +02001140 close(l->fd);
1141 l->state = LI_INIT;
1142 }
1143 }
1144
Willy Tarreaubaaee002006-06-26 02:48:02 +02001145 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001146 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 +02001147 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 +02001148 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001149
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001150 /* Note: do not wake up stopped proxies' task nor their tables'
1151 * tasks as these ones might point to already released entries.
1152 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001153 if (p->table && p->table->size && p->table->sync_task)
1154 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001155
1156 if (p->task)
1157 task_wakeup(p->task, TASK_WOKEN_MSG);
1158 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001159 p = p->next;
1160 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001161
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001162 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001163 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001164 if (prs->peers_fe)
1165 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001166 prs = prs->next;
1167 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001168 /* signal zero is used to broadcast the "stopping" event */
1169 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001170}
1171
1172
Willy Tarreaube58c382011-07-24 18:28:10 +02001173/* Temporarily disables listening on all of the proxy's listeners. Upon
1174 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1175 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001176 * because we don't know how to resume from this. The function returns 0
1177 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001179int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001180{
1181 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001182
1183 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1184 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1185 return 1;
1186
Christopher Faulet767a84b2017-11-24 16:50:31 +01001187 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001188 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1189
Willy Tarreau4348fad2012-09-20 16:48:07 +02001190 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001191 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001192 p->state = PR_STERROR;
1193 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001194
1195 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001196 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001197 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1198 return 0;
1199 }
1200
1201 p->state = PR_STPAUSED;
1202 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001203}
1204
Olivier Houchard1fc05162017-04-06 01:05:05 +02001205/* This function makes the proxy unusable, but keeps the listening sockets
1206 * opened, so that if any process requests them, we are able to serve them.
1207 * This should only be called early, before we started accepting requests.
1208 */
1209void zombify_proxy(struct proxy *p)
1210{
1211 struct listener *l;
1212 struct listener *first_to_listen = NULL;
1213
1214 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1215 enum li_state oldstate = l->state;
1216
1217 unbind_listener_no_close(l);
1218 if (l->state >= LI_ASSIGNED) {
1219 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001220 }
1221 /*
1222 * Pretend we're still up and running so that the fd
1223 * will be sent if asked.
1224 */
1225 l->state = LI_ZOMBIE;
1226 if (!first_to_listen && oldstate >= LI_LISTEN)
1227 first_to_listen = l;
1228 }
1229 /* Quick hack : at stop time, to know we have to close the sockets
1230 * despite the proxy being marked as stopped, make the first listener
1231 * of the listener list an active one, so that we don't have to
1232 * parse the whole list to be sure.
1233 */
1234 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1235 struct listener *, by_fe) != first_to_listen) {
1236 LIST_DEL(&l->by_fe);
1237 LIST_ADD(&p->conf.listeners, &l->by_fe);
1238 }
1239
1240 p->state = PR_STSTOPPED;
1241}
Willy Tarreauda250db2008-10-12 12:07:48 +02001242
1243/*
1244 * This function completely stops a proxy and releases its listeners. It has
1245 * to be called when going down in order to release the ports so that another
1246 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001247 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001248 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1249 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001250 */
1251void stop_proxy(struct proxy *p)
1252{
1253 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001254 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001255
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001256 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1257
Willy Tarreau4348fad2012-09-20 16:48:07 +02001258 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001259 if (l->options & LI_O_NOSTOP) {
1260 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1261 nostop = 1;
1262 continue;
1263 }
William Lallemandf7f488d2019-10-18 21:16:39 +02001264 /* The master should not close an inherited FD */
1265 if (master && (l->options & LI_O_INHERITED))
1266 unbind_listener_no_close(l);
1267 else
1268 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001269 if (l->state >= LI_ASSIGNED) {
1270 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001271 }
1272 }
William Lallemandc59f9882018-11-16 16:57:21 +01001273 if (!nostop)
1274 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001275
1276 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001277}
1278
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001279/* This function resumes listening on the specified proxy. It scans all of its
1280 * listeners and tries to enable them all. If any of them fails, the proxy is
1281 * put back to the paused state. It returns 1 upon success, or zero if an error
1282 * is encountered.
1283 */
1284int resume_proxy(struct proxy *p)
1285{
1286 struct listener *l;
1287 int fail;
1288
1289 if (p->state != PR_STPAUSED)
1290 return 1;
1291
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001293 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1294
1295 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001296 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001297 if (!resume_listener(l)) {
1298 int port;
1299
1300 port = get_host_port(&l->addr);
1301 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001302 ha_warning("Port %d busy while trying to enable %s %s.\n",
1303 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001304 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1305 port, proxy_cap_str(p->cap), p->id);
1306 }
1307 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001308 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1309 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001310 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1311 l->luid, proxy_cap_str(p->cap), p->id);
1312 }
1313
1314 /* Another port might have been enabled. Let's stop everything. */
1315 fail = 1;
1316 break;
1317 }
1318 }
1319
1320 p->state = PR_STREADY;
1321 if (fail) {
1322 pause_proxy(p);
1323 return 0;
1324 }
1325 return 1;
1326}
1327
Willy Tarreaubaaee002006-06-26 02:48:02 +02001328/*
1329 * This function temporarily disables listening so that another new instance
1330 * can start listening. It is designed to be called upon reception of a
1331 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1332 * the proxy, or a SIGTTIN can be sent to listen again.
1333 */
1334void pause_proxies(void)
1335{
1336 int err;
1337 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001338 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339
1340 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001341 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001342 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001343 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001344 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001345 p = p->next;
1346 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001347
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001348 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001349 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001350 if (prs->peers_fe)
1351 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001352 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001353 }
1354
Willy Tarreaubaaee002006-06-26 02:48:02 +02001355 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001356 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001357 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1358 soft_stop();
1359 }
1360}
1361
1362
1363/*
1364 * This function reactivates listening. This can be used after a call to
1365 * sig_pause(), for example when a new instance has failed starting up.
1366 * It is designed to be called upon reception of a SIGTTIN.
1367 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001368void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001369{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001370 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001372 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001373
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001374 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001375 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001376 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001377 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001378 err |= !resume_proxy(p);
1379 p = p->next;
1380 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001381
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001382 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001383 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001384 if (prs->peers_fe)
1385 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001386 prs = prs->next;
1387 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001388
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001389 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001390 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001391 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 +02001392 }
1393}
1394
Willy Tarreau87b09662015-04-03 00:22:06 +02001395/* Set current stream's backend to <be>. Nothing is done if the
1396 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001397 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001398 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001399 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001400 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001401int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001402{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001403 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001404 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001405
1406 if (flt_set_stream_backend(s, be) < 0)
1407 return 0;
1408
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001409 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001410 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1411 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001412 proxy_inc_be_ctr(be);
1413
Willy Tarreau87b09662015-04-03 00:22:06 +02001414 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001415 s->si[1].flags &= ~SI_FL_INDEP_STR;
1416 if (be->options2 & PR_O2_INDEPSTR)
1417 s->si[1].flags |= SI_FL_INDEP_STR;
1418
Hongbo Longe39683c2017-03-10 18:41:51 +01001419 if (tick_isset(be->timeout.serverfin))
1420 s->si[1].hcto = be->timeout.serverfin;
1421
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001422 /* We want to enable the backend-specific analysers except those which
1423 * were already run as part of the frontend/listener. Note that it would
1424 * be more reliable to store the list of analysers that have been run,
1425 * but what we do here is OK for now.
1426 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001427 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001428
Willy Tarreau51aecc72009-07-12 09:47:04 +02001429 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001430 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001431 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001432 if (unlikely(!s->txn && be->http_needed)) {
1433 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001434 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001435
1436 /* and now initialize the HTTP transaction state */
1437 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001438 }
1439
Christopher Faulet309c6412015-12-02 09:57:32 +01001440 /* Be sure to filter request headers if the backend is an HTTP proxy and
1441 * if there are filters attached to the stream. */
1442 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001443 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001444
Willy Tarreaueee5b512015-04-03 23:46:31 +02001445 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001446 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1447 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001448 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001449 struct connection *conn = objt_conn(strm_sess(s)->origin);
1450 struct conn_stream *cs = objt_cs(s->si[0].end);
1451
1452 if (conn && cs) {
1453 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001454 /* Make sure we're unsubscribed, the the new
1455 * mux will probably want to subscribe to
1456 * the underlying XPRT
1457 */
1458 if (s->si[0].wait_event.events)
1459 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1460 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001461 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001462 return 0;
Olivier Houchard4c18f942019-07-31 18:05:26 +02001463 if (!strcmp(conn->mux->name, "H2")) {
1464 /* For HTTP/2, destroy the conn_stream,
1465 * disable logging, and pretend that we
1466 * failed, to that the stream is
1467 * silently destroyed. The new mux
1468 * will create new streams.
1469 */
Olivier Houchard59dd06d2019-08-09 18:01:15 +02001470 cs_free(cs);
Olivier Houchard4c18f942019-07-31 18:05:26 +02001471 si_detach_endpoint(&s->si[0]);
1472 s->logs.logwait = 0;
1473 s->logs.level = 0;
1474 s->flags |= SF_IGNORE;
1475 return 0;
1476 }
Olivier Houchard71b20c22019-08-09 17:50:05 +02001477 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001478 }
1479 }
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001480 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1481 /* If a TCP backend is assgiend to an HTX stream, return
1482 * an error. It may happens for a new stream on a
1483 * previously upgraded connnections. */
1484 if (!(s->flags & SF_ERR_MASK))
1485 s->flags |= SF_ERR_INTERNAL;
1486 return 0;
1487 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001488
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001489 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001490 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001491 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001492 }
1493
1494 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001495 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001496 s->req.flags |= CF_NEVER_WAIT;
1497 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001498 }
1499
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001500 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001501}
1502
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001503/* Capture a bad request or response and archive it in the proxy's structure.
1504 * It is relatively protocol-agnostic so it requires that a number of elements
1505 * are passed :
1506 * - <proxy> is the proxy where the error was detected and where the snapshot
1507 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001508 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001509 * - <other_end> is a pointer to the proxy on the other side when known
1510 * - <target> is the target of the connection, usually a server or a proxy
1511 * - <sess> is the session which experienced the error
1512 * - <ctx> may be NULL or should contain any info relevant to the protocol
1513 * - <buf> is the buffer containing the offending data
1514 * - <buf_ofs> is the position of this buffer's input data in the input
1515 * stream, starting at zero. It may be passed as zero if unknown.
1516 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1517 * which precedes the buffer's input. The buffer's input starts at
1518 * buf->head + buf_out.
1519 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1520 * - <show> is the callback to use to display <ctx>. It may be NULL.
1521 */
1522void proxy_capture_error(struct proxy *proxy, int is_back,
1523 struct proxy *other_end, enum obj_type *target,
1524 const struct session *sess,
1525 const struct buffer *buf, long buf_ofs,
1526 unsigned int buf_out, unsigned int err_pos,
1527 const union error_snapshot_ctx *ctx,
1528 void (*show)(struct buffer *, const struct error_snapshot *))
1529{
1530 struct error_snapshot *es;
1531 unsigned int buf_len;
1532 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001533 unsigned int ev_id;
1534
1535 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1536
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001537 buf_len = b_data(buf) - buf_out;
1538
1539 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001540 if (!es)
1541 return;
1542
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001543 es->buf_len = buf_len;
1544 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001545
Christopher Faulet47a72102020-01-06 11:37:00 +01001546 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001547 if (len1 > buf_len)
1548 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001549
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001550 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001551 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001552 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001553 if (len2)
1554 memcpy(es->buf + len1, b_orig(buf), len2);
1555 }
1556
1557 es->buf_err = err_pos;
1558 es->when = date; // user-visible date
1559 es->srv = objt_server(target);
1560 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001561 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02001562 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001563 else
1564 memset(&es->src, 0, sizeof(es->src));
1565
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001566 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1567 es->buf_out = buf_out;
1568 es->buf_ofs = buf_ofs;
1569
1570 /* be sure to indicate the offset of the first IN byte */
1571 if (es->buf_ofs >= es->buf_len)
1572 es->buf_ofs -= es->buf_len;
1573 else
1574 es->buf_ofs = 0;
1575
1576 /* protocol-specific part now */
1577 if (ctx)
1578 es->ctx = *ctx;
1579 else
1580 memset(&es->ctx, 0, sizeof(es->ctx));
1581 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001582
1583 /* note: we still lock since we have to be certain that nobody is
1584 * dumping the output while we free.
1585 */
1586 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1587 if (is_back) {
1588 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1589 } else {
1590 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1591 }
1592 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001593 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1594}
1595
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001596/* Configure all proxies which lack a maxconn setting to use the global one by
1597 * default. This avoids the common mistake consisting in setting maxconn only
1598 * in the global section and discovering the hard way that it doesn't propagate
1599 * through the frontends. These values are also propagated through the various
1600 * targetted backends, whose fullconn is finally calculated if not yet set.
1601 */
1602void proxy_adjust_all_maxconn()
1603{
1604 struct proxy *curproxy;
1605 struct switching_rule *swrule1, *swrule2;
1606
1607 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1608 if (curproxy->state == PR_STSTOPPED)
1609 continue;
1610
1611 if (!(curproxy->cap & PR_CAP_FE))
1612 continue;
1613
1614 if (!curproxy->maxconn)
1615 curproxy->maxconn = global.maxconn;
1616
1617 /* update the target backend's fullconn count : default_backend */
1618 if (curproxy->defbe.be)
1619 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1620 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1621 curproxy->tot_fe_maxconn += curproxy->maxconn;
1622
1623 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1624 /* For each target of switching rules, we update their
1625 * tot_fe_maxconn, except if a previous rule points to
1626 * the same backend or to the default backend.
1627 */
1628 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001629 /* note: swrule1->be.backend isn't a backend if the rule
1630 * is dynamic, it's an expression instead, so it must not
1631 * be dereferenced as a backend before being certain it is.
1632 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001633 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1634 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001635 if (!swrule1->dynamic)
1636 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001637 break;
1638 }
1639 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1640 /* there are multiple refs of this backend */
1641 break;
1642 }
1643 }
1644 }
1645 }
1646 }
1647
1648 /* automatically compute fullconn if not set. We must not do it in the
1649 * loop above because cross-references are not yet fully resolved.
1650 */
1651 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1652 if (curproxy->state == PR_STSTOPPED)
1653 continue;
1654
1655 /* If <fullconn> is not set, let's set it to 10% of the sum of
1656 * the possible incoming frontend's maxconns.
1657 */
1658 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1659 /* we have the sum of the maxconns in <total>. We only
1660 * keep 10% of that sum to set the default fullconn, with
1661 * a hard minimum of 1 (to avoid a divide by zero).
1662 */
1663 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1664 if (!curproxy->fullconn)
1665 curproxy->fullconn = 1;
1666 }
1667 }
1668}
1669
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001670/* Config keywords below */
1671
Willy Tarreaudc13c112013-06-21 23:16:39 +02001672static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001673 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001674 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001675 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1676 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1677 { 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 +01001678 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001679 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001680 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001681 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001682 { 0, NULL, NULL },
1683}};
1684
Willy Tarreau0108d902018-11-25 19:14:37 +01001685INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1686
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001687/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1688 * adequate error messages and returns NULL. This function is designed to be used by
1689 * functions requiring a frontend on the CLI.
1690 */
1691struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1692{
1693 struct proxy *px;
1694
1695 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001696 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001697 return NULL;
1698 }
1699
1700 px = proxy_fe_by_name(arg);
1701 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001702 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001703 return NULL;
1704 }
1705 return px;
1706}
1707
Olivier Houchard614f8d72017-03-14 20:08:46 +01001708/* Expects to find a backend named <arg> and returns it, otherwise displays various
1709 * adequate error messages and returns NULL. This function is designed to be used by
1710 * functions requiring a frontend on the CLI.
1711 */
1712struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1713{
1714 struct proxy *px;
1715
1716 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001717 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001718 return NULL;
1719 }
1720
1721 px = proxy_be_by_name(arg);
1722 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001723 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001724 return NULL;
1725 }
1726 return px;
1727}
1728
1729
William Lallemanda6c5f332016-11-19 02:25:36 +01001730/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001731 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1732 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001733 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001734static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001735{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001736 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001737
1738 /* check if a backend name has been provided */
1739 if (*args[3]) {
1740 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001741 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001742
Willy Tarreau9d008692019-08-09 11:21:01 +02001743 if (!px)
1744 return cli_err(appctx, "Can't find backend.\n");
1745
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001746 appctx->ctx.cli.p0 = px;
1747 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001748 }
1749 return 0;
1750}
1751
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001752/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001753 * These information are all the parameters which may change during HAProxy runtime.
1754 * By default, we only export to the last known server state file format.
1755 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001756 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1757 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001758 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001759static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001760{
1761 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001762 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001763 struct server *srv;
1764 char srv_addr[INET6_ADDRSTRLEN + 1];
1765 time_t srv_time_since_last_change;
1766 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001767 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001768
William Lallemanda6c5f332016-11-19 02:25:36 +01001769 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001770 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001771 return 1;
1772
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001773 if (!appctx->ctx.cli.p1)
1774 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001775
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001776 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1777 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001778 srv_addr[0] = '\0';
1779
1780 switch (srv->addr.ss_family) {
1781 case AF_INET:
1782 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1783 srv_addr, INET_ADDRSTRLEN + 1);
1784 break;
1785 case AF_INET6:
1786 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1787 srv_addr, INET6_ADDRSTRLEN + 1);
1788 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001789 default:
1790 memcpy(srv_addr, "-\0", 2);
1791 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001792 }
1793 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001794 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001795 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1796
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001797 srvrecord = NULL;
1798 if (srv->srvrq && srv->srvrq->name)
1799 srvrecord = srv->srvrq->name;
1800
William Lallemanda6c5f332016-11-19 02:25:36 +01001801 chunk_appendf(buf,
1802 "%d %s "
1803 "%d %s %s "
1804 "%d %d %d %d %ld "
1805 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001806 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001807 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001808 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001809 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001810 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001811 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001812 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1813 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001814 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001815 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001816 return 0;
1817 }
1818 }
1819 return 1;
1820}
1821
1822/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001823 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1824 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001825 */
1826static int cli_io_handler_servers_state(struct appctx *appctx)
1827{
1828 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001829 struct proxy *curproxy;
1830
1831 chunk_reset(&trash);
1832
1833 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001834 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001835 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001836 appctx->st2 = STAT_ST_HEAD;
1837 }
1838
1839 if (appctx->st2 == STAT_ST_HEAD) {
1840 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001841 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001842 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001843 return 0;
1844 }
1845 appctx->st2 = STAT_ST_INFO;
1846 }
1847
1848 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001849 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1850 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001851 /* servers are only in backends */
1852 if (curproxy->cap & PR_CAP_BE) {
1853 if (!dump_servers_state(si, &trash))
1854 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001855 }
1856 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001857 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001858 break;
1859 }
1860
1861 return 1;
1862}
1863
Willy Tarreau608ea592016-12-16 18:01:15 +01001864/* Parses backend list and simply report backend names. It keeps the proxy
1865 * pointer in cli.p0.
1866 */
William Lallemand933efcd2016-11-22 12:34:16 +01001867static int cli_io_handler_show_backend(struct appctx *appctx)
1868{
William Lallemand933efcd2016-11-22 12:34:16 +01001869 struct stream_interface *si = appctx->owner;
1870 struct proxy *curproxy;
1871
1872 chunk_reset(&trash);
1873
Willy Tarreau608ea592016-12-16 18:01:15 +01001874 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001875 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001876 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001877 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001878 return 0;
1879 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001880 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001881 }
1882
Willy Tarreau608ea592016-12-16 18:01:15 +01001883 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1884 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001885
1886 /* looking for backends only */
1887 if (!(curproxy->cap & PR_CAP_BE))
1888 continue;
1889
1890 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001891 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001892 continue;
1893
1894 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001895 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001896 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001897 return 0;
1898 }
1899 }
1900
1901 return 1;
1902}
William Lallemanda6c5f332016-11-19 02:25:36 +01001903
Willy Tarreaua275a372018-08-21 14:50:44 +02001904/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1905 *
1906 * Grabs the proxy lock and each server's lock.
1907 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001908static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001909{
1910 struct proxy *px;
1911 struct server *s;
1912
1913 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1914 return 1;
1915
1916 px = cli_find_backend(appctx, args[3]);
1917 if (!px)
1918 return 1;
1919
Willy Tarreau5e83d992019-07-30 11:59:34 +02001920 /* Note: this lock is to make sure this doesn't change while another
1921 * thread is in srv_set_dyncookie().
1922 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001923 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001924 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001925 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001926
Willy Tarreaua275a372018-08-21 14:50:44 +02001927 for (s = px->srv; s != NULL; s = s->next) {
1928 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001929 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001930 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1931 }
1932
Olivier Houchard614f8d72017-03-14 20:08:46 +01001933 return 1;
1934}
1935
Willy Tarreaua275a372018-08-21 14:50:44 +02001936/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1937 *
1938 * Grabs the proxy lock and each server's lock.
1939 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001940static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001941{
1942 struct proxy *px;
1943 struct server *s;
1944
1945 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1946 return 1;
1947
1948 px = cli_find_backend(appctx, args[3]);
1949 if (!px)
1950 return 1;
1951
Willy Tarreau5e83d992019-07-30 11:59:34 +02001952 /* Note: this lock is to make sure this doesn't change while another
1953 * thread is in srv_set_dyncookie().
1954 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001955 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001956 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001957 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001958
1959 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001960 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001961 if (!(s->flags & SRV_F_COOKIESET)) {
1962 free(s->cookie);
1963 s->cookie = NULL;
1964 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001965 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001966 }
1967
1968 return 1;
1969}
1970
Willy Tarreaua275a372018-08-21 14:50:44 +02001971/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1972 *
1973 * Grabs the proxy lock and each server's lock.
1974 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001975static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001976{
1977 struct proxy *px;
1978 struct server *s;
1979 char *newkey;
1980
1981 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1982 return 1;
1983
1984 px = cli_find_backend(appctx, args[3]);
1985 if (!px)
1986 return 1;
1987
Willy Tarreau9d008692019-08-09 11:21:01 +02001988 if (!*args[4])
1989 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001990
1991 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001992 if (!newkey)
1993 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02001994
Willy Tarreau5e83d992019-07-30 11:59:34 +02001995 /* Note: this lock is to make sure this doesn't change while another
1996 * thread is in srv_set_dyncookie().
1997 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001998 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001999 free(px->dyncookie_key);
2000 px->dyncookie_key = newkey;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002001 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002002
Willy Tarreaua275a372018-08-21 14:50:44 +02002003 for (s = px->srv; s != NULL; s = s->next) {
2004 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002005 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002006 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2007 }
2008
Olivier Houchard614f8d72017-03-14 20:08:46 +01002009 return 1;
2010}
2011
Willy Tarreaua275a372018-08-21 14:50:44 +02002012/* Parses the "set maxconn frontend" directive, it always returns 1.
2013 *
2014 * Grabs the proxy lock.
2015 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002016static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002017{
2018 struct proxy *px;
2019 struct listener *l;
2020 int v;
2021
2022 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2023 return 1;
2024
2025 px = cli_find_frontend(appctx, args[3]);
2026 if (!px)
2027 return 1;
2028
Willy Tarreau9d008692019-08-09 11:21:01 +02002029 if (!*args[4])
2030 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002031
2032 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002033 if (v < 0)
2034 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002035
2036 /* OK, the value is fine, so we assign it to the proxy and to all of
2037 * its listeners. The blocked ones will be dequeued.
2038 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002039 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2040
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002041 px->maxconn = v;
2042 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002043 if (l->state == LI_FULL)
2044 resume_listener(l);
2045 }
2046
Willy Tarreau241797a2019-12-10 14:10:52 +01002047 if (px->maxconn > px->feconn)
2048 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002049
Willy Tarreaua275a372018-08-21 14:50:44 +02002050 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2051
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002052 return 1;
2053}
2054
Willy Tarreaua275a372018-08-21 14:50:44 +02002055/* Parses the "shutdown frontend" directive, it always returns 1.
2056 *
2057 * Grabs the proxy lock.
2058 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002059static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002060{
2061 struct proxy *px;
2062
2063 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2064 return 1;
2065
2066 px = cli_find_frontend(appctx, args[2]);
2067 if (!px)
2068 return 1;
2069
Willy Tarreau9d008692019-08-09 11:21:01 +02002070 if (px->state == PR_STSTOPPED)
2071 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002072
William Dauchy1e2256d2020-01-25 23:45:18 +01002073 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002074 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01002075 send_log(px, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002076 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
Willy Tarreau9d008692019-08-09 11:21:01 +02002098 if (px->state == PR_STSTOPPED)
2099 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002100
Willy Tarreau9d008692019-08-09 11:21:01 +02002101 if (px->state == PR_STPAUSED)
2102 return cli_msg(appctx, LOG_NOTICE, "Frontend is already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002103
Willy Tarreaua275a372018-08-21 14:50:44 +02002104 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2105 ret = pause_proxy(px);
2106 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2107
Willy Tarreau9d008692019-08-09 11:21:01 +02002108 if (!ret)
2109 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
2110
Willy Tarreau15b9e682016-11-24 11:55:28 +01002111 return 1;
2112}
2113
Willy Tarreaua275a372018-08-21 14:50:44 +02002114/* Parses the "enable frontend" directive, it always returns 1.
2115 *
2116 * Grabs the proxy lock.
2117 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002118static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002119{
2120 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002121 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002122
2123 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2124 return 1;
2125
2126 px = cli_find_frontend(appctx, args[2]);
2127 if (!px)
2128 return 1;
2129
Willy Tarreau9d008692019-08-09 11:21:01 +02002130 if (px->state == PR_STSTOPPED)
2131 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002132
Willy Tarreau9d008692019-08-09 11:21:01 +02002133 if (px->state != PR_STPAUSED)
2134 return cli_msg(appctx, LOG_NOTICE, "Frontend is already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002135
Willy Tarreaua275a372018-08-21 14:50:44 +02002136 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2137 ret = resume_proxy(px);
2138 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2139
Willy Tarreau9d008692019-08-09 11:21:01 +02002140 if (!ret)
2141 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002142 return 1;
2143}
2144
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002145/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2146 * now.
2147 */
2148static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2149{
2150 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2151 return 1;
2152
2153 if (*args[2]) {
2154 struct proxy *px;
2155
2156 px = proxy_find_by_name(args[2], 0, 0);
2157 if (px)
2158 appctx->ctx.errors.iid = px->uuid;
2159 else
2160 appctx->ctx.errors.iid = atoi(args[2]);
2161
Willy Tarreau9d008692019-08-09 11:21:01 +02002162 if (!appctx->ctx.errors.iid)
2163 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002164 }
2165 else
2166 appctx->ctx.errors.iid = -1; // dump all proxies
2167
2168 appctx->ctx.errors.flag = 0;
2169 if (strcmp(args[3], "request") == 0)
2170 appctx->ctx.errors.flag |= 4; // ignore response
2171 else if (strcmp(args[3], "response") == 0)
2172 appctx->ctx.errors.flag |= 2; // ignore request
2173 appctx->ctx.errors.px = NULL;
2174 return 0;
2175}
2176
2177/* This function dumps all captured errors onto the stream interface's
2178 * read buffer. It returns 0 if the output buffer is full and it needs
2179 * to be called again, otherwise non-zero.
2180 */
2181static int cli_io_handler_show_errors(struct appctx *appctx)
2182{
2183 struct stream_interface *si = appctx->owner;
2184 extern const char *monthname[12];
2185
2186 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2187 return 1;
2188
2189 chunk_reset(&trash);
2190
2191 if (!appctx->ctx.errors.px) {
2192 /* the function had not been called yet, let's prepare the
2193 * buffer for a response.
2194 */
2195 struct tm tm;
2196
2197 get_localtime(date.tv_sec, &tm);
2198 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2199 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2200 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2201 error_snapshot_id);
2202
Willy Tarreau36b27362018-09-07 19:55:44 +02002203 if (ci_putchk(si_ic(si), &trash) == -1)
2204 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002205
2206 appctx->ctx.errors.px = proxies_list;
2207 appctx->ctx.errors.bol = 0;
2208 appctx->ctx.errors.ptr = -1;
2209 }
2210
2211 /* we have two inner loops here, one for the proxy, the other one for
2212 * the buffer.
2213 */
2214 while (appctx->ctx.errors.px) {
2215 struct error_snapshot *es;
2216
Willy Tarreau36b27362018-09-07 19:55:44 +02002217 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2218
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002219 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002220 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002221 if (appctx->ctx.errors.flag & 2) // skip req
2222 goto next;
2223 }
2224 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002225 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002226 if (appctx->ctx.errors.flag & 4) // skip resp
2227 goto next;
2228 }
2229
Willy Tarreauc55015e2018-09-07 19:02:32 +02002230 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002231 goto next;
2232
2233 if (appctx->ctx.errors.iid >= 0 &&
2234 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002235 (!es->oe || es->oe->uuid != appctx->ctx.errors.iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002236 goto next;
2237
2238 if (appctx->ctx.errors.ptr < 0) {
2239 /* just print headers now */
2240
2241 char pn[INET6_ADDRSTRLEN];
2242 struct tm tm;
2243 int port;
2244
2245 get_localtime(es->when.tv_sec, &tm);
2246 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2247 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2248 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2249
2250 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2251 case AF_INET:
2252 case AF_INET6:
2253 port = get_host_port(&es->src);
2254 break;
2255 default:
2256 port = 0;
2257 }
2258
2259 switch (appctx->ctx.errors.flag & 1) {
2260 case 0:
2261 chunk_appendf(&trash,
2262 " frontend %s (#%d): invalid request\n"
2263 " backend %s (#%d)",
2264 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002265 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2266 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002267 break;
2268 case 1:
2269 chunk_appendf(&trash,
2270 " backend %s (#%d): invalid response\n"
2271 " frontend %s (#%d)",
2272 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002273 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002274 break;
2275 }
2276
2277 chunk_appendf(&trash,
2278 ", server %s (#%d), event #%u, src %s:%d\n"
2279 " buffer starts at %llu (including %u out), %u free,\n"
2280 " len %u, wraps at %u, error at position %u\n",
2281 es->srv ? es->srv->id : "<NONE>",
2282 es->srv ? es->srv->puid : -1,
2283 es->ev_id, pn, port,
2284 es->buf_ofs, es->buf_out,
2285 global.tune.bufsize - es->buf_out - es->buf_len,
2286 es->buf_len, es->buf_wrap, es->buf_err);
2287
2288 if (es->show)
2289 es->show(&trash, es);
2290
2291 chunk_appendf(&trash, " \n");
2292
Willy Tarreau36b27362018-09-07 19:55:44 +02002293 if (ci_putchk(si_ic(si), &trash) == -1)
2294 goto cant_send_unlock;
2295
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002296 appctx->ctx.errors.ptr = 0;
2297 appctx->ctx.errors.ev_id = es->ev_id;
2298 }
2299
2300 if (appctx->ctx.errors.ev_id != es->ev_id) {
2301 /* the snapshot changed while we were dumping it */
2302 chunk_appendf(&trash,
2303 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002304 if (ci_putchk(si_ic(si), &trash) == -1)
2305 goto cant_send_unlock;
2306
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002307 goto next;
2308 }
2309
2310 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002311 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002312 int newptr;
2313 int newline;
2314
2315 newline = appctx->ctx.errors.bol;
2316 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2317 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002318 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002319
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 = newptr;
2324 appctx->ctx.errors.bol = newline;
2325 };
2326 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002327 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002328 appctx->ctx.errors.bol = 0;
2329 appctx->ctx.errors.ptr = -1;
2330 appctx->ctx.errors.flag ^= 1;
2331 if (!(appctx->ctx.errors.flag & 1))
2332 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2333 }
2334
2335 /* dump complete */
2336 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002337
2338 cant_send_unlock:
2339 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2340 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002341 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002342 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002343}
2344
William Lallemanda6c5f332016-11-19 02:25:36 +01002345/* register cli keywords */
2346static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002347 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2348 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002349 { { "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 +01002350 { { "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 +01002351 { { "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 +01002352 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002353 { { "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 },
2354 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2355 { { "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 +02002356 { { "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 +01002357 {{},}
2358}};
2359
Willy Tarreau0108d902018-11-25 19:14:37 +01002360INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002361
2362/*
2363 * Local variables:
2364 * c-indent-level: 8
2365 * c-basic-offset: 8
2366 * End:
2367 */