blob: 0845bced14247464997460a8aaca820b33ad52bd [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <fcntl.h>
14#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/defaults.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020021#include <common/cfgparse.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020023#include <common/config.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010024#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010025#include <common/initcall.h>
Willy Tarreau4d2d0982007-05-14 00:39:29 +020026#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020027#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau8d2b7772020-05-27 10:58:19 +020029#include <import/eb32tree.h>
30#include <import/ebistree.h>
Willy Tarreaucfd837f2014-03-15 07:43:51 +010031
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +020032#include <types/capture.h>
Willy Tarreau960f2cb2016-11-24 12:02:29 +010033#include <types/cli.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010035#include <types/obj_type.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020036#include <types/peers.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010037#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
William Lallemanda6c5f332016-11-19 02:25:36 +010039#include <proto/applet.h>
40#include <proto/cli.h>
Alexandre Cassen87ea5482007-10-11 20:48:58 +020041#include <proto/backend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <proto/filters.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020044#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010046#include <proto/proto_tcp.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020047#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/proxy.h>
Olivier Houchard614f8d72017-03-14 20:08:46 +010049#include <proto/server.h>
Willy Tarreaud0807c32010-08-27 18:26:11 +020050#include <proto/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020051#include <proto/stream.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010052#include <proto/stream_interface.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020053#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
55
Willy Tarreau918ff602011-07-25 16:33:49 +020056int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010057struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020058struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010059struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010060unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010062/* proxy->options */
63const struct cfg_opt cfg_opts[] =
64{
65 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
66 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
67 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
68 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
69 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
70 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
71 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
72 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
73 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
74 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
75 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
76 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
77 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
78 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020079#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010080 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
81#else
82 { "transparent", 0, 0, 0, 0 },
83#endif
84
85 { NULL, 0, 0, 0, 0 }
86};
87
88/* proxy->options2 */
89const struct cfg_opt cfg_opts2[] =
90{
Willy Tarreaue5733232019-05-22 19:24:06 +020091#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010092 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
93 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
94 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
95#else
96 { "splice-request", 0, 0, 0, 0 },
97 { "splice-response", 0, 0, 0, 0 },
98 { "splice-auto", 0, 0, 0, 0 },
99#endif
100 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
101 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
102 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
103 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
104 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
105 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
106 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
107 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100108 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
109 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
110 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
111 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200112 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Christopher Faulet98fbe952019-07-22 16:18:24 +0200113
114 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
115 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet89aed322020-06-02 17:33:56 +0200116 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100117 { NULL, 0, 0, 0 }
118};
119
Willy Tarreau977b8e42006-12-29 14:19:17 +0100120/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100121 * This function returns a string containing a name describing capabilities to
122 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200123 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100124 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100125 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100126const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100127{
Willy Tarreau816eb542007-11-04 07:04:43 +0100128 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
129 if (cap & PR_CAP_FE)
130 return "frontend";
131 else if (cap & PR_CAP_BE)
132 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100133 }
134 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100135}
136
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100137/*
138 * This function returns a string containing the mode of the proxy in a format
139 * suitable for error messages.
140 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100141const char *proxy_mode_str(int mode) {
142
143 if (mode == PR_MODE_TCP)
144 return "tcp";
145 else if (mode == PR_MODE_HTTP)
146 return "http";
147 else if (mode == PR_MODE_HEALTH)
148 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200149 else if (mode == PR_MODE_CLI)
150 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100151 else
152 return "unknown";
153}
154
Willy Tarreauf3950172009-10-10 18:35:51 +0200155/*
156 * This function scans the list of backends and servers to retrieve the first
157 * backend and the first server with the given names, and sets them in both
158 * parameters. It returns zero if either is not found, or non-zero and sets
159 * the ones it did not found to NULL. If a NULL pointer is passed for the
160 * backend, only the pointer to the server will be updated.
161 */
162int get_backend_server(const char *bk_name, const char *sv_name,
163 struct proxy **bk, struct server **sv)
164{
165 struct proxy *p;
166 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100167 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200168
169 *sv = NULL;
170
Willy Tarreau050536d2012-10-04 08:47:34 +0200171 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200172 if (*sv_name == '#')
173 sid = atoi(sv_name + 1);
174
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200175 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200176 if (bk)
177 *bk = p;
178 if (!p)
179 return 0;
180
181 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100182 if ((sid >= 0 && s->puid == sid) ||
183 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200184 break;
185 *sv = s;
186 if (!s)
187 return 0;
188 return 1;
189}
190
Willy Tarreaue219db72007-12-03 01:30:13 +0100191/* This function parses a "timeout" statement in a proxy section. It returns
192 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200193 * return zero, it will write an error or warning message into a preallocated
194 * buffer returned at <err>. The trailing is not be written. The function must
195 * be called with <args> pointing to the first command line word, with <proxy>
196 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
197 * As a special case for compatibility with older configs, it also accepts
198 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100199 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200200static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200201 struct proxy *defpx, const char *file, int line,
202 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100203{
204 unsigned timeout;
205 int retval, cap;
206 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200207 int *tv = NULL;
208 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100209
210 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200211
212 /* simply skip "timeout" but remain compatible with old form */
213 if (strcmp(args[0], "timeout") == 0)
214 args++;
215
Willy Tarreaue219db72007-12-03 01:30:13 +0100216 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200217 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100218 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100219 tv = &proxy->timeout.client;
220 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100221 cap = PR_CAP_FE;
222 } else if (!strcmp(args[0], "tarpit")) {
223 tv = &proxy->timeout.tarpit;
224 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100225 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100226 } else if (!strcmp(args[0], "http-keep-alive")) {
227 tv = &proxy->timeout.httpka;
228 td = &defpx->timeout.httpka;
229 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100230 } else if (!strcmp(args[0], "http-request")) {
231 tv = &proxy->timeout.httpreq;
232 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200233 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200234 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100235 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100236 tv = &proxy->timeout.server;
237 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100238 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200239 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100240 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100241 tv = &proxy->timeout.connect;
242 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100243 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100244 } else if (!strcmp(args[0], "check")) {
245 tv = &proxy->timeout.check;
246 td = &defpx->timeout.check;
247 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100248 } else if (!strcmp(args[0], "queue")) {
249 tv = &proxy->timeout.queue;
250 td = &defpx->timeout.queue;
251 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200252 } else if (!strcmp(args[0], "tunnel")) {
253 tv = &proxy->timeout.tunnel;
254 td = &defpx->timeout.tunnel;
255 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200256 } else if (!strcmp(args[0], "client-fin")) {
257 tv = &proxy->timeout.clientfin;
258 td = &defpx->timeout.clientfin;
259 cap = PR_CAP_FE;
260 } else if (!strcmp(args[0], "server-fin")) {
261 tv = &proxy->timeout.serverfin;
262 td = &defpx->timeout.serverfin;
263 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200264 } else if (!strcmp(args[0], "clitimeout")) {
265 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
266 return -1;
267 } else if (!strcmp(args[0], "srvtimeout")) {
268 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
269 return -1;
270 } else if (!strcmp(args[0], "contimeout")) {
271 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
272 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100273 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200274 memprintf(err,
275 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200276 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
277 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200278 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100279 return -1;
280 }
281
282 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200283 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100284 return -1;
285 }
286
287 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200288 if (res == PARSE_TIME_OVER) {
289 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
290 args[1], name);
291 return -1;
292 }
293 else if (res == PARSE_TIME_UNDER) {
294 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
295 args[1], name);
296 return -1;
297 }
298 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200299 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100300 return -1;
301 }
302
303 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200304 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
305 name, proxy_type_str(proxy), proxy->id,
306 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100307 retval = 1;
308 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200309 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200310 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100311 retval = 1;
312 }
313
Willy Tarreaufac5b592014-05-22 08:24:46 +0200314 if (*args[2] != 0) {
315 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
316 retval = -1;
317 }
318
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200319 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100320 return retval;
321}
322
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100323/* This function parses a "rate-limit" statement in a proxy section. It returns
324 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200325 * return zero, it will write an error or warning message into a preallocated
326 * buffer returned at <err>. The function must be called with <args> pointing
327 * to the first command line word, with <proxy> pointing to the proxy being
328 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100329 */
330static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200331 struct proxy *defpx, const char *file, int line,
332 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100333{
William Dauchybb9da0b2020-01-16 01:34:27 +0100334 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200335 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100336 unsigned int *tv = NULL;
337 unsigned int *td = NULL;
338 unsigned int val;
339
340 retval = 0;
341
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200342 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200343 tv = &proxy->fe_sps_lim;
344 td = &defpx->fe_sps_lim;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200345 }
346 else {
347 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100348 return -1;
349 }
350
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 if (*args[2] == 0) {
352 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100353 return -1;
354 }
355
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200356 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100357 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200358 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 +0100359 return -1;
360 }
361
William Dauchybb9da0b2020-01-16 01:34:27 +0100362 if (!(proxy->cap & PR_CAP_FE)) {
363 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
364 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100365 retval = 1;
366 }
367 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200368 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100369 retval = 1;
370 }
371
372 *tv = val;
373 return retval;
374}
375
Willy Tarreauc35362a2014-04-25 13:58:37 +0200376/* This function parses a "max-keep-alive-queue" statement in a proxy section.
377 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
378 * does not return zero, it will write an error or warning message into a
379 * preallocated buffer returned at <err>. The function must be called with
380 * <args> pointing to the first command line word, with <proxy> pointing to
381 * the proxy being parsed, and <defpx> to the default proxy or NULL.
382 */
383static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
384 struct proxy *defpx, const char *file, int line,
385 char **err)
386{
387 int retval;
388 char *res;
389 unsigned int val;
390
391 retval = 0;
392
393 if (*args[1] == 0) {
394 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
395 return -1;
396 }
397
398 val = strtol(args[1], &res, 0);
399 if (*res) {
400 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
401 return -1;
402 }
403
404 if (!(proxy->cap & PR_CAP_BE)) {
405 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
406 args[0], proxy_type_str(proxy), proxy->id);
407 retval = 1;
408 }
409
410 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
411 proxy->max_ka_queue = val + 1;
412 return retval;
413}
414
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200415/* This function parses a "declare" statement in a proxy section. It returns -1
416 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
417 * it will write an error or warning message into a preallocated buffer returned
418 * at <err>. The function must be called with <args> pointing to the first command
419 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
420 * default proxy or NULL.
421 */
422static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
423 struct proxy *defpx, const char *file, int line,
424 char **err)
425{
426 /* Capture keyword wannot be declared in a default proxy. */
427 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800428 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200429 return -1;
430 }
431
Joseph Herlant59dd2952018-11-15 11:46:55 -0800432 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200433 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800434 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200435 return -1;
436 }
437
438 /* Check mandatory second keyword. */
439 if (!args[1] || !*args[1]) {
440 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
441 return -1;
442 }
443
Joseph Herlant59dd2952018-11-15 11:46:55 -0800444 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200445 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800446 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200447 * the second keyword.
448 */
449 if (strcmp(args[1], "capture") == 0) {
450 char *error = NULL;
451 long len;
452 struct cap_hdr *hdr;
453
454 /* Check the next keyword. */
455 if (!args[2] || !*args[2] ||
456 (strcmp(args[2], "response") != 0 &&
457 strcmp(args[2], "request") != 0)) {
458 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
459 return -1;
460 }
461
462 /* Check the 'len' keyword. */
463 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
464 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
465 return -1;
466 }
467
468 /* Check the length value. */
469 if (!args[4] || !*args[4]) {
470 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
471 "capture length",
472 args[0], args[1]);
473 return -1;
474 }
475
476 /* convert the length value. */
477 len = strtol(args[4], &error, 10);
478 if (*error != '\0') {
479 memprintf(err, "'%s %s': cannot parse the length '%s'.",
480 args[0], args[1], args[3]);
481 return -1;
482 }
483
484 /* check length. */
485 if (len <= 0) {
486 memprintf(err, "length must be > 0");
487 return -1;
488 }
489
490 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200491 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200492 hdr->name = NULL; /* not a header capture */
493 hdr->namelen = 0;
494 hdr->len = len;
495 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
496
497 if (strcmp(args[2], "request") == 0) {
498 hdr->next = curpx->req_cap;
499 hdr->index = curpx->nb_req_cap++;
500 curpx->req_cap = hdr;
501 }
502 if (strcmp(args[2], "response") == 0) {
503 hdr->next = curpx->rsp_cap;
504 hdr->index = curpx->nb_rsp_cap++;
505 curpx->rsp_cap = hdr;
506 }
507 return 0;
508 }
509 else {
510 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
511 return -1;
512 }
513}
514
Olivier Houcharda254a372019-04-05 15:30:12 +0200515/* This function parses a "retry-on" statement */
516static int
517proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
518 struct proxy *defpx, const char *file, int line,
519 char **err)
520{
521 int i;
522
523 if (!(*args[1])) {
524 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
525 return -1;
526 }
527 if (!(curpx->cap & PR_CAP_BE)) {
528 memprintf(err, "'%s' only available in backend or listen section", args[0]);
529 return -1;
530 }
531 curpx->retry_type = 0;
532 for (i = 1; *(args[i]); i++) {
533 if (!strcmp(args[i], "conn-failure"))
534 curpx->retry_type |= PR_RE_CONN_FAILED;
535 else if (!strcmp(args[i], "empty-response"))
536 curpx->retry_type |= PR_RE_DISCONNECTED;
537 else if (!strcmp(args[i], "response-timeout"))
538 curpx->retry_type |= PR_RE_TIMEOUT;
539 else if (!strcmp(args[i], "404"))
540 curpx->retry_type |= PR_RE_404;
541 else if (!strcmp(args[i], "408"))
542 curpx->retry_type |= PR_RE_408;
543 else if (!strcmp(args[i], "425"))
544 curpx->retry_type |= PR_RE_425;
545 else if (!strcmp(args[i], "500"))
546 curpx->retry_type |= PR_RE_500;
547 else if (!strcmp(args[i], "501"))
548 curpx->retry_type |= PR_RE_501;
549 else if (!strcmp(args[i], "502"))
550 curpx->retry_type |= PR_RE_502;
551 else if (!strcmp(args[i], "503"))
552 curpx->retry_type |= PR_RE_503;
553 else if (!strcmp(args[i], "504"))
554 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200555 else if (!strcmp(args[i], "0rtt-rejected"))
556 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200557 else if (!strcmp(args[i], "junk-response"))
558 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200559 else if (!(strcmp(args[i], "all-retryable-errors")))
560 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
561 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
562 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
563 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200564 else if (!strcmp(args[i], "none")) {
565 if (i != 1 || *args[i + 1]) {
566 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
567 return -1;
568 }
569 } else {
570 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
571 return -1;
572 }
573
574 }
575
576
577 return 0;
578}
579
Willy Tarreauf79d9502014-03-15 07:22:35 +0100580/* This function inserts proxy <px> into the tree of known proxies. The proxy's
581 * name is used as the storing key so it must already have been initialized.
582 */
583void proxy_store_name(struct proxy *px)
584{
585 px->conf.by_name.key = px->id;
586 ebis_insert(&proxy_by_name, &px->conf.by_name);
587}
588
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200589/* Returns a pointer to the first proxy matching capabilities <cap> and id
590 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
591 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200592 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200593struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200594{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200595 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200596
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200597 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
598 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100599
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200600 if (px->uuid != id)
601 break;
Alex Williams96532db2009-11-01 21:27:13 -0500602
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200603 if ((px->cap & cap) != cap)
604 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500605
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100606 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200607 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100608
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200609 return px;
610 }
611 return NULL;
612}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100613
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200614/* Returns a pointer to the first proxy matching either name <name>, or id
615 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
616 * If <table> is non-zero, it only considers proxies having a table.
617 */
618struct proxy *proxy_find_by_name(const char *name, int cap, int table)
619{
620 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200621
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200622 if (*name == '#') {
623 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
624 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200625 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500626 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100627 else {
628 struct ebpt_node *node;
629
630 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
631 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500632
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100633 if (strcmp(curproxy->id, name) != 0)
634 break;
635
636 if ((curproxy->cap & cap) != cap)
637 continue;
638
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100639 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200640 continue;
641
Willy Tarreauc739aa82015-05-26 11:35:41 +0200642 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100643 }
644 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200645 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500646}
647
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200648/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
649 * <id>. At most one of <id> or <name> may be different provided that <cap> is
650 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
651 * find a proxy based on some information from a previous configuration, across
652 * reloads or during information exchange between peers.
653 *
654 * Names are looked up first if present, then IDs are compared if present. In
655 * case of an inexact match whatever is forced in the configuration has
656 * precedence in the following order :
657 * - 1) forced ID (proves a renaming / change of proxy type)
658 * - 2) proxy name+type (may indicate a move if ID differs)
659 * - 3) automatic ID+type (may indicate a renaming)
660 *
661 * Depending on what is found, we can end up in the following situations :
662 *
663 * name id cap | possible causes
664 * -------------+-----------------
665 * -- -- -- | nothing found
666 * -- -- ok | nothing found
667 * -- ok -- | proxy deleted, ID points to next one
668 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
669 * ok -- -- | proxy deleted, but other half with same name still here (before)
670 * ok -- ok | proxy's ID changed (proxy moved in the config file)
671 * ok ok -- | proxy deleted, but other half with same name still here (after)
672 * ok ok ok | perfect match
673 *
674 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200675 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
676 * (and ID was not zero)
677 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
678 * (and name was not NULL)
679 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
680 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200681 *
682 * Only a valid proxy is returned. If capabilities do not match, NULL is
683 * returned. The caller can check <diff> to report detailed warnings / errors,
684 * and decide whether or not to use what was found.
685 */
686struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
687{
688 struct proxy *byname;
689 struct proxy *byid;
690
691 if (!name && !id)
692 return NULL;
693
694 if (diff)
695 *diff = 0;
696
697 byname = byid = NULL;
698
699 if (name) {
700 byname = proxy_find_by_name(name, cap, 0);
701 if (byname && (!id || byname->uuid == id))
702 return byname;
703 }
704
Joseph Herlant59dd2952018-11-15 11:46:55 -0800705 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200706 * - name not set
707 * - name set but not found
708 * - name found, but ID doesn't match.
709 */
710 if (id) {
711 byid = proxy_find_by_id(id, cap, 0);
712 if (byid) {
713 if (byname) {
714 /* id+type found, name+type found, but not all 3.
715 * ID wins only if forced, otherwise name wins.
716 */
717 if (byid->options & PR_O_FORCED_ID) {
718 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200719 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200720 return byid;
721 }
722 else {
723 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200724 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200725 return byname;
726 }
727 }
728
Joseph Herlant59dd2952018-11-15 11:46:55 -0800729 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200730 * - name not set
731 * - name set but not found
732 */
733 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200734 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200735 return byid;
736 }
737
738 /* ID not found */
739 if (byname) {
740 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200741 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200742 return byname;
743 }
744 }
745
Joseph Herlant59dd2952018-11-15 11:46:55 -0800746 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200747 * detailed information to the caller about changed types and/or name,
748 * we'll do it. For example, we could detect that "listen foo" was
749 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
750 * - name not set, ID not found
751 * - name not found, ID not set
752 * - name not found, ID not found
753 */
754 if (!diff)
755 return NULL;
756
757 if (name) {
758 byname = proxy_find_by_name(name, 0, 0);
759 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200760 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200761 }
762
763 if (id) {
764 byid = proxy_find_by_id(id, 0, 0);
765 if (byid) {
766 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200767 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200768 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200769 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200770 /* otherwise it's a different proxy that was returned */
771 }
772 }
773 return NULL;
774}
775
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100777 * This function finds a server with matching name within selected proxy.
778 * It also checks if there are more matching servers with
779 * requested name as this often leads into unexpected situations.
780 */
781
782struct server *findserver(const struct proxy *px, const char *name) {
783
784 struct server *cursrv, *target = NULL;
785
786 if (!px)
787 return NULL;
788
789 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
790 if (strcmp(cursrv->id, name))
791 continue;
792
793 if (!target) {
794 target = cursrv;
795 continue;
796 }
797
Christopher Faulet767a84b2017-11-24 16:50:31 +0100798 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
799 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100800
801 return NULL;
802 }
803
804 return target;
805}
806
Willy Tarreauff01a212009-03-15 13:46:16 +0100807/* This function checks that the designated proxy has no http directives
808 * enabled. It will output a warning if there are, and will fix some of them.
809 * It returns the number of fatal errors encountered. This should be called
810 * at the end of the configuration parsing if the proxy is not in http mode.
811 * The <file> argument is used to construct the error message.
812 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200813int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100814{
815 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100816 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
817 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100818 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100819 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100820 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
821 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100822 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200823 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100824 curproxy->lbprm.algo &= ~BE_LB_ALGO;
825 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100826 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
827 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100828 }
Willy Tarreau17804162009-11-09 21:27:51 +0100829 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
830 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100831 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
832 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
833 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100834 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200835 if (curproxy->conf.logformat_string == default_http_log_format ||
836 curproxy->conf.logformat_string == clf_http_log_format) {
837 /* Note: we don't change the directive's file:line number */
838 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100839 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
840 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
841 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200842 }
843
Willy Tarreauff01a212009-03-15 13:46:16 +0100844 return 0;
845}
846
Willy Tarreau237250c2011-07-29 01:49:03 +0200847/* Perform the most basic initialization of a proxy :
848 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200849 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200850 */
851void init_new_proxy(struct proxy *p)
852{
853 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100854 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400855 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200856 LIST_INIT(&p->acl);
857 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200858 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +0100859 LIST_INIT(&p->http_after_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200860 LIST_INIT(&p->redirect_rules);
861 LIST_INIT(&p->mon_fail_cond);
862 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200863 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200864 LIST_INIT(&p->persist_rules);
865 LIST_INIT(&p->sticking_rules);
866 LIST_INIT(&p->storersp_rules);
867 LIST_INIT(&p->tcp_req.inspect_rules);
868 LIST_INIT(&p->tcp_rep.inspect_rules);
869 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200870 LIST_INIT(&p->tcp_req.l5_rules);
Olivier Houchard859dc802019-08-08 15:47:21 +0200871 MT_LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200872 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100873 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200874 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100875 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200876 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200877 LIST_INIT(&p->conf.listeners);
Christopher Faulet76edc0f2020-01-13 15:52:01 +0100878 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200879 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100880 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +0200881 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +0200882
883 /* Timeouts are defined as -1 */
884 proxy_reset_timeouts(p);
885 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200886
887 /* initial uuid is unassigned (-1) */
888 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200889
Olivier Houcharda254a372019-04-05 15:30:12 +0200890 /* Default to only allow L4 retries */
891 p->retry_type = PR_RE_CONN_FAILED;
892
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100893 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200894}
895
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100896/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200897 * This function creates all proxy sockets. It should be done very early,
898 * typically before privileges are dropped. The sockets will be registered
899 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200900 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200901 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200902 *
903 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
904 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905 */
906int start_proxies(int verbose)
907{
908 struct proxy *curproxy;
909 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100910 int lerr, err = ERR_NONE;
911 int pxerr;
912 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200913
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100914 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915 if (curproxy->state != PR_STNEW)
916 continue; /* already initialized */
917
918 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200919 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100920 if (listener->state != LI_ASSIGNED)
921 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200922
Emeric Bruncf20bf12010-10-22 16:06:11 +0200923 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200924
Willy Tarreaue6b98942007-10-29 01:09:36 +0100925 /* errors are reported if <verbose> is set or if they are fatal */
926 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
927 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100928 ha_alert("Starting %s %s: %s\n",
929 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100930 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100931 ha_warning("Starting %s %s: %s\n",
932 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 }
934
Willy Tarreaue6b98942007-10-29 01:09:36 +0100935 err |= lerr;
936 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100938 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200939 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100940 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941 pxerr |= 1;
942 continue;
943 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944 }
945
946 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200947 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
949 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100950
951 if (err & ERR_ABORT)
952 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953 }
954
955 return err;
956}
957
958
959/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200960 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200961 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200962 * called as a task which is woken up upon stopping or when rate limiting must
963 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200964 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200965struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200967 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200968 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100969 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970
Willy Tarreau918ff602011-07-25 16:33:49 +0200971 /* We should periodically try to enable listeners waiting for a
972 * global resource here.
973 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200974
Willy Tarreau918ff602011-07-25 16:33:49 +0200975 /* first, let's check if we need to stop the proxy */
976 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
977 int t;
978 t = tick_remain(now_ms, p->stop_time);
979 if (t == 0) {
William Dauchy1e2256d2020-01-25 23:45:18 +0100980 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +0100981 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +0100982 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau918ff602011-07-25 16:33:49 +0200983 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
984 stop_proxy(p);
985 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100986 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200987 }
988 else {
989 next = tick_first(next, p->stop_time);
990 }
991 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200992
Willy Tarreau3a925c12013-09-04 17:54:01 +0200993 /* If the proxy holds a stick table, we need to purge all unused
994 * entries. These are all the ones in the table with ref_cnt == 0
995 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200996 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200997 * be in neither list. Any entry being dumped will have ref_cnt > 0.
998 * However we protect tables that are being synced to peers.
999 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001000 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
1001 if (!p->table->syncing) {
1002 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001003 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001004 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001005 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001006 /* some entries still remain, let's recheck in one second */
1007 next = tick_first(next, tick_add(now_ms, 1000));
1008 }
1009 }
1010
Willy Tarreau918ff602011-07-25 16:33:49 +02001011 /* the rest below is just for frontends */
1012 if (!(p->cap & PR_CAP_FE))
1013 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001014
Willy Tarreau918ff602011-07-25 16:33:49 +02001015 /* check the various reasons we may find to block the frontend */
1016 if (unlikely(p->feconn >= p->maxconn)) {
1017 if (p->state == PR_STREADY)
1018 p->state = PR_STFULL;
1019 goto out;
1020 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001021
Willy Tarreau918ff602011-07-25 16:33:49 +02001022 /* OK we have no reason to block, so let's unblock if we were blocking */
1023 if (p->state == PR_STFULL)
1024 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001025
Willy Tarreau918ff602011-07-25 16:33:49 +02001026 if (p->fe_sps_lim &&
1027 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1028 /* we're blocking because a limit was reached on the number of
1029 * requests/s on the frontend. We want to re-check ASAP, which
1030 * means in 1 ms before estimated expiration date, because the
1031 * timer will have settled down.
1032 */
1033 next = tick_first(next, tick_add(now_ms, wait));
1034 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001035 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001036
1037 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01001038 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02001039 out:
1040 t->expire = next;
1041 task_queue(t);
1042 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001043}
1044
1045
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001046static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1047 struct proxy *defpx, const char *file, int line,
1048 char **err)
1049{
1050 const char *res;
1051
1052 if (!*args[1]) {
1053 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1054 return -1;
1055 }
1056 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001057 if (res == PARSE_TIME_OVER) {
1058 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1059 args[1], args[0]);
1060 return -1;
1061 }
1062 else if (res == PARSE_TIME_UNDER) {
1063 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1064 args[1], args[0]);
1065 return -1;
1066 }
1067 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001068 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1069 return -1;
1070 }
1071 return 0;
1072}
1073
Olivier Houchard9f6af332018-05-25 14:04:04 +02001074struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001075{
1076 struct proxy *p;
1077 struct stream *s;
1078
1079 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001080 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001081 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001082 killed = 2;
1083 t->expire = TICK_ETERNITY;
1084 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001085 }
1086
Christopher Faulet767a84b2017-11-24 16:50:31 +01001087 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001088 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001089 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001090 while (p) {
1091 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001092 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1093 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001094 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1095 p->id, p->feconn);
1096 }
1097 p = p->next;
1098 }
1099 list_for_each_entry(s, &streams, list) {
1100 stream_shutdown(s, SF_ERR_KILLED);
1101 }
1102
1103 killed = 1;
1104 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1105 return t;
1106}
1107
Willy Tarreaubaaee002006-06-26 02:48:02 +02001108/*
1109 * this function disables health-check servers so that the process will quickly be ignored
1110 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1111 * time will not be used since it would already not listen anymore to the socket.
1112 */
1113void soft_stop(void)
1114{
1115 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001116 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001117 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001118
1119 stopping = 1;
William Dauchy3894d972019-12-28 15:36:02 +01001120 /* disable busy polling to avoid cpu eating for the new process */
1121 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001122 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001123 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001124 if (task) {
1125 task->process = hard_stop;
1126 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1127 }
1128 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001129 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001130 }
1131 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001132 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001133 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001134 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001135 /* Zombie proxy, let's close the file descriptors */
1136 if (p->state == PR_STSTOPPED &&
1137 !LIST_ISEMPTY(&p->conf.listeners) &&
1138 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau67878d72019-12-10 07:11:35 +01001139 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001140 struct listener *l;
1141 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau67878d72019-12-10 07:11:35 +01001142 if (l->state > LI_ASSIGNED)
Olivier Houchard1fc05162017-04-06 01:05:05 +02001143 close(l->fd);
1144 l->state = LI_INIT;
1145 }
1146 }
1147
Willy Tarreaubaaee002006-06-26 02:48:02 +02001148 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001149 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 +02001150 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 +02001151 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001152
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001153 /* Note: do not wake up stopped proxies' task nor their tables'
1154 * tasks as these ones might point to already released entries.
1155 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001156 if (p->table && p->table->size && p->table->sync_task)
1157 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001158
1159 if (p->task)
1160 task_wakeup(p->task, TASK_WOKEN_MSG);
1161 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001162 p = p->next;
1163 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001164
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001165 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001166 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001167 if (prs->peers_fe)
1168 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001169 prs = prs->next;
1170 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001171 /* signal zero is used to broadcast the "stopping" event */
1172 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001173}
1174
1175
Willy Tarreaube58c382011-07-24 18:28:10 +02001176/* Temporarily disables listening on all of the proxy's listeners. Upon
1177 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1178 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001179 * because we don't know how to resume from this. The function returns 0
1180 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001181 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001182int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001183{
1184 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001185
1186 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1187 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1188 return 1;
1189
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001191 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1192
Willy Tarreau4348fad2012-09-20 16:48:07 +02001193 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001194 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001195 p->state = PR_STERROR;
1196 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001197
1198 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001199 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001200 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1201 return 0;
1202 }
1203
1204 p->state = PR_STPAUSED;
1205 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001206}
1207
Olivier Houchard1fc05162017-04-06 01:05:05 +02001208/* This function makes the proxy unusable, but keeps the listening sockets
1209 * opened, so that if any process requests them, we are able to serve them.
1210 * This should only be called early, before we started accepting requests.
1211 */
1212void zombify_proxy(struct proxy *p)
1213{
1214 struct listener *l;
1215 struct listener *first_to_listen = NULL;
1216
1217 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1218 enum li_state oldstate = l->state;
1219
1220 unbind_listener_no_close(l);
1221 if (l->state >= LI_ASSIGNED) {
1222 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001223 }
1224 /*
1225 * Pretend we're still up and running so that the fd
1226 * will be sent if asked.
1227 */
1228 l->state = LI_ZOMBIE;
1229 if (!first_to_listen && oldstate >= LI_LISTEN)
1230 first_to_listen = l;
1231 }
1232 /* Quick hack : at stop time, to know we have to close the sockets
1233 * despite the proxy being marked as stopped, make the first listener
1234 * of the listener list an active one, so that we don't have to
1235 * parse the whole list to be sure.
1236 */
1237 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1238 struct listener *, by_fe) != first_to_listen) {
1239 LIST_DEL(&l->by_fe);
1240 LIST_ADD(&p->conf.listeners, &l->by_fe);
1241 }
1242
1243 p->state = PR_STSTOPPED;
1244}
Willy Tarreauda250db2008-10-12 12:07:48 +02001245
1246/*
1247 * This function completely stops a proxy and releases its listeners. It has
1248 * to be called when going down in order to release the ports so that another
1249 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001250 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001251 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1252 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001253 */
1254void stop_proxy(struct proxy *p)
1255{
1256 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001257 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001258
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001259 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1260
Willy Tarreau4348fad2012-09-20 16:48:07 +02001261 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001262 if (l->options & LI_O_NOSTOP) {
1263 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1264 nostop = 1;
1265 continue;
1266 }
William Lallemandf7f488d2019-10-18 21:16:39 +02001267 /* The master should not close an inherited FD */
1268 if (master && (l->options & LI_O_INHERITED))
1269 unbind_listener_no_close(l);
1270 else
1271 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001272 if (l->state >= LI_ASSIGNED) {
1273 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001274 }
1275 }
William Lallemandc59f9882018-11-16 16:57:21 +01001276 if (!nostop)
1277 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001278
1279 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001280}
1281
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001282/* This function resumes listening on the specified proxy. It scans all of its
1283 * listeners and tries to enable them all. If any of them fails, the proxy is
1284 * put back to the paused state. It returns 1 upon success, or zero if an error
1285 * is encountered.
1286 */
1287int resume_proxy(struct proxy *p)
1288{
1289 struct listener *l;
1290 int fail;
1291
1292 if (p->state != PR_STPAUSED)
1293 return 1;
1294
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001296 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1297
1298 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001299 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001300 if (!resume_listener(l)) {
1301 int port;
1302
1303 port = get_host_port(&l->addr);
1304 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001305 ha_warning("Port %d busy while trying to enable %s %s.\n",
1306 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001307 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1308 port, proxy_cap_str(p->cap), p->id);
1309 }
1310 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001311 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1312 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001313 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1314 l->luid, proxy_cap_str(p->cap), p->id);
1315 }
1316
1317 /* Another port might have been enabled. Let's stop everything. */
1318 fail = 1;
1319 break;
1320 }
1321 }
1322
1323 p->state = PR_STREADY;
1324 if (fail) {
1325 pause_proxy(p);
1326 return 0;
1327 }
1328 return 1;
1329}
1330
Willy Tarreaubaaee002006-06-26 02:48:02 +02001331/*
1332 * This function temporarily disables listening so that another new instance
1333 * can start listening. It is designed to be called upon reception of a
1334 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1335 * the proxy, or a SIGTTIN can be sent to listen again.
1336 */
1337void pause_proxies(void)
1338{
1339 int err;
1340 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001341 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001342
1343 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001344 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001345 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001346 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001347 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001348 p = p->next;
1349 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001350
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001351 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001352 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001353 if (prs->peers_fe)
1354 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001355 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001356 }
1357
Willy Tarreaubaaee002006-06-26 02:48:02 +02001358 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001359 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001360 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1361 soft_stop();
1362 }
1363}
1364
1365
1366/*
1367 * This function reactivates listening. This can be used after a call to
1368 * sig_pause(), for example when a new instance has failed starting up.
1369 * It is designed to be called upon reception of a SIGTTIN.
1370 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001371void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001372{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001373 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001375 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001376
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001377 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001378 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001379 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001380 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001381 err |= !resume_proxy(p);
1382 p = p->next;
1383 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001384
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001385 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001386 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001387 if (prs->peers_fe)
1388 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001389 prs = prs->next;
1390 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001391
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001392 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001393 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001394 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 +02001395 }
1396}
1397
Willy Tarreau87b09662015-04-03 00:22:06 +02001398/* Set current stream's backend to <be>. Nothing is done if the
1399 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001400 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001401 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001402 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001403 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001404int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001405{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001406 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001407 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001408
1409 if (flt_set_stream_backend(s, be) < 0)
1410 return 0;
1411
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001412 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001413 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1414 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001415 proxy_inc_be_ctr(be);
1416
Willy Tarreau87b09662015-04-03 00:22:06 +02001417 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001418 s->si[1].flags &= ~SI_FL_INDEP_STR;
1419 if (be->options2 & PR_O2_INDEPSTR)
1420 s->si[1].flags |= SI_FL_INDEP_STR;
1421
Hongbo Longe39683c2017-03-10 18:41:51 +01001422 if (tick_isset(be->timeout.serverfin))
1423 s->si[1].hcto = be->timeout.serverfin;
1424
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001425 /* We want to enable the backend-specific analysers except those which
1426 * were already run as part of the frontend/listener. Note that it would
1427 * be more reliable to store the list of analysers that have been run,
1428 * but what we do here is OK for now.
1429 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001430 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001431
Willy Tarreau51aecc72009-07-12 09:47:04 +02001432 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001433 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001434 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001435 if (unlikely(!s->txn && be->http_needed)) {
1436 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001437 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001438
1439 /* and now initialize the HTTP transaction state */
1440 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001441 }
1442
Christopher Faulet309c6412015-12-02 09:57:32 +01001443 /* Be sure to filter request headers if the backend is an HTTP proxy and
1444 * if there are filters attached to the stream. */
1445 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001446 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001447
Willy Tarreaueee5b512015-04-03 23:46:31 +02001448 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001449 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1450 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001451 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001452 struct connection *conn = objt_conn(strm_sess(s)->origin);
1453 struct conn_stream *cs = objt_cs(s->si[0].end);
1454
1455 if (conn && cs) {
1456 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001457 /* Make sure we're unsubscribed, the the new
1458 * mux will probably want to subscribe to
1459 * the underlying XPRT
1460 */
1461 if (s->si[0].wait_event.events)
1462 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1463 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001464 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001465 return 0;
Olivier Houchard4c18f942019-07-31 18:05:26 +02001466 if (!strcmp(conn->mux->name, "H2")) {
1467 /* For HTTP/2, destroy the conn_stream,
1468 * disable logging, and pretend that we
1469 * failed, to that the stream is
1470 * silently destroyed. The new mux
1471 * will create new streams.
1472 */
Olivier Houchard59dd06d2019-08-09 18:01:15 +02001473 cs_free(cs);
Olivier Houchard4c18f942019-07-31 18:05:26 +02001474 si_detach_endpoint(&s->si[0]);
1475 s->logs.logwait = 0;
1476 s->logs.level = 0;
1477 s->flags |= SF_IGNORE;
1478 return 0;
1479 }
Olivier Houchard71b20c22019-08-09 17:50:05 +02001480 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001481 }
1482 }
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001483 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1484 /* If a TCP backend is assgiend to an HTX stream, return
1485 * an error. It may happens for a new stream on a
1486 * previously upgraded connnections. */
1487 if (!(s->flags & SF_ERR_MASK))
1488 s->flags |= SF_ERR_INTERNAL;
1489 return 0;
1490 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001491
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001492 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001493 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001494 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001495 }
1496
1497 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001498 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001499 s->req.flags |= CF_NEVER_WAIT;
1500 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001501 }
1502
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001503 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001504}
1505
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001506/* Capture a bad request or response and archive it in the proxy's structure.
1507 * It is relatively protocol-agnostic so it requires that a number of elements
1508 * are passed :
1509 * - <proxy> is the proxy where the error was detected and where the snapshot
1510 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001511 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001512 * - <other_end> is a pointer to the proxy on the other side when known
1513 * - <target> is the target of the connection, usually a server or a proxy
1514 * - <sess> is the session which experienced the error
1515 * - <ctx> may be NULL or should contain any info relevant to the protocol
1516 * - <buf> is the buffer containing the offending data
1517 * - <buf_ofs> is the position of this buffer's input data in the input
1518 * stream, starting at zero. It may be passed as zero if unknown.
1519 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1520 * which precedes the buffer's input. The buffer's input starts at
1521 * buf->head + buf_out.
1522 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1523 * - <show> is the callback to use to display <ctx>. It may be NULL.
1524 */
1525void proxy_capture_error(struct proxy *proxy, int is_back,
1526 struct proxy *other_end, enum obj_type *target,
1527 const struct session *sess,
1528 const struct buffer *buf, long buf_ofs,
1529 unsigned int buf_out, unsigned int err_pos,
1530 const union error_snapshot_ctx *ctx,
1531 void (*show)(struct buffer *, const struct error_snapshot *))
1532{
1533 struct error_snapshot *es;
1534 unsigned int buf_len;
1535 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001536 unsigned int ev_id;
1537
1538 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1539
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001540 buf_len = b_data(buf) - buf_out;
1541
1542 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001543 if (!es)
1544 return;
1545
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001546 es->buf_len = buf_len;
1547 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001548
Christopher Faulet47a72102020-01-06 11:37:00 +01001549 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001550 if (len1 > buf_len)
1551 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001552
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001553 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001554 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001555 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001556 if (len2)
1557 memcpy(es->buf + len1, b_orig(buf), len2);
1558 }
1559
1560 es->buf_err = err_pos;
1561 es->when = date; // user-visible date
1562 es->srv = objt_server(target);
1563 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001564 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02001565 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001566 else
1567 memset(&es->src, 0, sizeof(es->src));
1568
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001569 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1570 es->buf_out = buf_out;
1571 es->buf_ofs = buf_ofs;
1572
1573 /* be sure to indicate the offset of the first IN byte */
1574 if (es->buf_ofs >= es->buf_len)
1575 es->buf_ofs -= es->buf_len;
1576 else
1577 es->buf_ofs = 0;
1578
1579 /* protocol-specific part now */
1580 if (ctx)
1581 es->ctx = *ctx;
1582 else
1583 memset(&es->ctx, 0, sizeof(es->ctx));
1584 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001585
1586 /* note: we still lock since we have to be certain that nobody is
1587 * dumping the output while we free.
1588 */
1589 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1590 if (is_back) {
1591 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1592 } else {
1593 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1594 }
1595 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001596 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1597}
1598
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001599/* Configure all proxies which lack a maxconn setting to use the global one by
1600 * default. This avoids the common mistake consisting in setting maxconn only
1601 * in the global section and discovering the hard way that it doesn't propagate
1602 * through the frontends. These values are also propagated through the various
1603 * targetted backends, whose fullconn is finally calculated if not yet set.
1604 */
1605void proxy_adjust_all_maxconn()
1606{
1607 struct proxy *curproxy;
1608 struct switching_rule *swrule1, *swrule2;
1609
1610 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1611 if (curproxy->state == PR_STSTOPPED)
1612 continue;
1613
1614 if (!(curproxy->cap & PR_CAP_FE))
1615 continue;
1616
1617 if (!curproxy->maxconn)
1618 curproxy->maxconn = global.maxconn;
1619
1620 /* update the target backend's fullconn count : default_backend */
1621 if (curproxy->defbe.be)
1622 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1623 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1624 curproxy->tot_fe_maxconn += curproxy->maxconn;
1625
1626 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1627 /* For each target of switching rules, we update their
1628 * tot_fe_maxconn, except if a previous rule points to
1629 * the same backend or to the default backend.
1630 */
1631 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001632 /* note: swrule1->be.backend isn't a backend if the rule
1633 * is dynamic, it's an expression instead, so it must not
1634 * be dereferenced as a backend before being certain it is.
1635 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001636 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1637 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001638 if (!swrule1->dynamic)
1639 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001640 break;
1641 }
1642 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1643 /* there are multiple refs of this backend */
1644 break;
1645 }
1646 }
1647 }
1648 }
1649 }
1650
1651 /* automatically compute fullconn if not set. We must not do it in the
1652 * loop above because cross-references are not yet fully resolved.
1653 */
1654 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1655 if (curproxy->state == PR_STSTOPPED)
1656 continue;
1657
1658 /* If <fullconn> is not set, let's set it to 10% of the sum of
1659 * the possible incoming frontend's maxconns.
1660 */
1661 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1662 /* we have the sum of the maxconns in <total>. We only
1663 * keep 10% of that sum to set the default fullconn, with
1664 * a hard minimum of 1 (to avoid a divide by zero).
1665 */
1666 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1667 if (!curproxy->fullconn)
1668 curproxy->fullconn = 1;
1669 }
1670 }
1671}
1672
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001673/* Config keywords below */
1674
Willy Tarreaudc13c112013-06-21 23:16:39 +02001675static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001676 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001677 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001678 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1679 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1680 { 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 +01001681 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001682 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001683 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001684 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001685 { 0, NULL, NULL },
1686}};
1687
Willy Tarreau0108d902018-11-25 19:14:37 +01001688INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1689
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001690/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1691 * adequate error messages and returns NULL. This function is designed to be used by
1692 * functions requiring a frontend on the CLI.
1693 */
1694struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1695{
1696 struct proxy *px;
1697
1698 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001699 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001700 return NULL;
1701 }
1702
1703 px = proxy_fe_by_name(arg);
1704 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001705 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001706 return NULL;
1707 }
1708 return px;
1709}
1710
Olivier Houchard614f8d72017-03-14 20:08:46 +01001711/* Expects to find a backend named <arg> and returns it, otherwise displays various
1712 * adequate error messages and returns NULL. This function is designed to be used by
1713 * functions requiring a frontend on the CLI.
1714 */
1715struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1716{
1717 struct proxy *px;
1718
1719 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001720 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001721 return NULL;
1722 }
1723
1724 px = proxy_be_by_name(arg);
1725 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001726 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001727 return NULL;
1728 }
1729 return px;
1730}
1731
1732
William Lallemanda6c5f332016-11-19 02:25:36 +01001733/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001734 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1735 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001736 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001737static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001738{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001739 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001740
1741 /* check if a backend name has been provided */
1742 if (*args[3]) {
1743 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001744 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001745
Willy Tarreau9d008692019-08-09 11:21:01 +02001746 if (!px)
1747 return cli_err(appctx, "Can't find backend.\n");
1748
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001749 appctx->ctx.cli.p0 = px;
1750 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001751 }
1752 return 0;
1753}
1754
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001755/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001756 * These information are all the parameters which may change during HAProxy runtime.
1757 * By default, we only export to the last known server state file format.
1758 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001759 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1760 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001761 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001762static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001763{
1764 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001765 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001766 struct server *srv;
1767 char srv_addr[INET6_ADDRSTRLEN + 1];
1768 time_t srv_time_since_last_change;
1769 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001770 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001771
William Lallemanda6c5f332016-11-19 02:25:36 +01001772 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001773 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001774 return 1;
1775
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001776 if (!appctx->ctx.cli.p1)
1777 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001778
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001779 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1780 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001781 srv_addr[0] = '\0';
1782
1783 switch (srv->addr.ss_family) {
1784 case AF_INET:
1785 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1786 srv_addr, INET_ADDRSTRLEN + 1);
1787 break;
1788 case AF_INET6:
1789 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1790 srv_addr, INET6_ADDRSTRLEN + 1);
1791 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001792 default:
1793 memcpy(srv_addr, "-\0", 2);
1794 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001795 }
1796 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001797 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001798 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1799
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001800 srvrecord = NULL;
1801 if (srv->srvrq && srv->srvrq->name)
1802 srvrecord = srv->srvrq->name;
1803
William Lallemanda6c5f332016-11-19 02:25:36 +01001804 chunk_appendf(buf,
1805 "%d %s "
1806 "%d %s %s "
1807 "%d %d %d %d %ld "
1808 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001809 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001810 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001811 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001812 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001813 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001814 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001815 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1816 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001817 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001818 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001819 return 0;
1820 }
1821 }
1822 return 1;
1823}
1824
1825/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001826 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1827 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001828 */
1829static int cli_io_handler_servers_state(struct appctx *appctx)
1830{
1831 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001832 struct proxy *curproxy;
1833
1834 chunk_reset(&trash);
1835
1836 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001837 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001838 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001839 appctx->st2 = STAT_ST_HEAD;
1840 }
1841
1842 if (appctx->st2 == STAT_ST_HEAD) {
1843 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001844 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001845 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001846 return 0;
1847 }
1848 appctx->st2 = STAT_ST_INFO;
1849 }
1850
1851 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001852 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1853 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001854 /* servers are only in backends */
1855 if (curproxy->cap & PR_CAP_BE) {
1856 if (!dump_servers_state(si, &trash))
1857 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001858 }
1859 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001860 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001861 break;
1862 }
1863
1864 return 1;
1865}
1866
Willy Tarreau608ea592016-12-16 18:01:15 +01001867/* Parses backend list and simply report backend names. It keeps the proxy
1868 * pointer in cli.p0.
1869 */
William Lallemand933efcd2016-11-22 12:34:16 +01001870static int cli_io_handler_show_backend(struct appctx *appctx)
1871{
William Lallemand933efcd2016-11-22 12:34:16 +01001872 struct stream_interface *si = appctx->owner;
1873 struct proxy *curproxy;
1874
1875 chunk_reset(&trash);
1876
Willy Tarreau608ea592016-12-16 18:01:15 +01001877 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001878 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001879 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001880 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001881 return 0;
1882 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001883 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001884 }
1885
Willy Tarreau608ea592016-12-16 18:01:15 +01001886 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1887 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001888
1889 /* looking for backends only */
1890 if (!(curproxy->cap & PR_CAP_BE))
1891 continue;
1892
1893 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001894 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001895 continue;
1896
1897 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001898 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001899 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001900 return 0;
1901 }
1902 }
1903
1904 return 1;
1905}
William Lallemanda6c5f332016-11-19 02:25:36 +01001906
Willy Tarreaua275a372018-08-21 14:50:44 +02001907/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1908 *
1909 * Grabs the proxy lock and each server's lock.
1910 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001911static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001912{
1913 struct proxy *px;
1914 struct server *s;
1915
1916 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1917 return 1;
1918
1919 px = cli_find_backend(appctx, args[3]);
1920 if (!px)
1921 return 1;
1922
Willy Tarreau5e83d992019-07-30 11:59:34 +02001923 /* Note: this lock is to make sure this doesn't change while another
1924 * thread is in srv_set_dyncookie().
1925 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001926 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001927 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001928 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001929
Willy Tarreaua275a372018-08-21 14:50:44 +02001930 for (s = px->srv; s != NULL; s = s->next) {
1931 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001932 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001933 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1934 }
1935
Olivier Houchard614f8d72017-03-14 20:08:46 +01001936 return 1;
1937}
1938
Willy Tarreaua275a372018-08-21 14:50:44 +02001939/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1940 *
1941 * Grabs the proxy lock and each server's lock.
1942 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001943static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001944{
1945 struct proxy *px;
1946 struct server *s;
1947
1948 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1949 return 1;
1950
1951 px = cli_find_backend(appctx, args[3]);
1952 if (!px)
1953 return 1;
1954
Willy Tarreau5e83d992019-07-30 11:59:34 +02001955 /* Note: this lock is to make sure this doesn't change while another
1956 * thread is in srv_set_dyncookie().
1957 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001958 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001959 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001960 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001961
1962 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001963 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001964 if (!(s->flags & SRV_F_COOKIESET)) {
1965 free(s->cookie);
1966 s->cookie = NULL;
1967 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001968 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001969 }
1970
1971 return 1;
1972}
1973
Willy Tarreaua275a372018-08-21 14:50:44 +02001974/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1975 *
1976 * Grabs the proxy lock and each server's lock.
1977 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001978static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001979{
1980 struct proxy *px;
1981 struct server *s;
1982 char *newkey;
1983
1984 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1985 return 1;
1986
1987 px = cli_find_backend(appctx, args[3]);
1988 if (!px)
1989 return 1;
1990
Willy Tarreau9d008692019-08-09 11:21:01 +02001991 if (!*args[4])
1992 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001993
1994 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001995 if (!newkey)
1996 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02001997
Willy Tarreau5e83d992019-07-30 11:59:34 +02001998 /* Note: this lock is to make sure this doesn't change while another
1999 * thread is in srv_set_dyncookie().
2000 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002001 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002002 free(px->dyncookie_key);
2003 px->dyncookie_key = newkey;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002004 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002005
Willy Tarreaua275a372018-08-21 14:50:44 +02002006 for (s = px->srv; s != NULL; s = s->next) {
2007 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002008 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002009 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2010 }
2011
Olivier Houchard614f8d72017-03-14 20:08:46 +01002012 return 1;
2013}
2014
Willy Tarreaua275a372018-08-21 14:50:44 +02002015/* Parses the "set maxconn frontend" directive, it always returns 1.
2016 *
2017 * Grabs the proxy lock.
2018 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002019static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002020{
2021 struct proxy *px;
2022 struct listener *l;
2023 int v;
2024
2025 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2026 return 1;
2027
2028 px = cli_find_frontend(appctx, args[3]);
2029 if (!px)
2030 return 1;
2031
Willy Tarreau9d008692019-08-09 11:21:01 +02002032 if (!*args[4])
2033 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002034
2035 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002036 if (v < 0)
2037 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002038
2039 /* OK, the value is fine, so we assign it to the proxy and to all of
2040 * its listeners. The blocked ones will be dequeued.
2041 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002042 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2043
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002044 px->maxconn = v;
2045 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002046 if (l->state == LI_FULL)
2047 resume_listener(l);
2048 }
2049
Willy Tarreau241797a2019-12-10 14:10:52 +01002050 if (px->maxconn > px->feconn)
2051 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002052
Willy Tarreaua275a372018-08-21 14:50:44 +02002053 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2054
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002055 return 1;
2056}
2057
Willy Tarreaua275a372018-08-21 14:50:44 +02002058/* Parses the "shutdown frontend" directive, it always returns 1.
2059 *
2060 * Grabs the proxy lock.
2061 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002062static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002063{
2064 struct proxy *px;
2065
2066 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2067 return 1;
2068
2069 px = cli_find_frontend(appctx, args[2]);
2070 if (!px)
2071 return 1;
2072
Willy Tarreau9d008692019-08-09 11:21:01 +02002073 if (px->state == PR_STSTOPPED)
2074 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002075
William Dauchy1e2256d2020-01-25 23:45:18 +01002076 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002077 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01002078 send_log(px, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002079 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002080
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002081 stop_proxy(px);
2082 return 1;
2083}
2084
Willy Tarreaua275a372018-08-21 14:50:44 +02002085/* Parses the "disable frontend" directive, it always returns 1.
2086 *
2087 * Grabs the proxy lock.
2088 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002089static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002090{
2091 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002092 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002093
2094 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2095 return 1;
2096
2097 px = cli_find_frontend(appctx, args[2]);
2098 if (!px)
2099 return 1;
2100
Willy Tarreau9d008692019-08-09 11:21:01 +02002101 if (px->state == PR_STSTOPPED)
2102 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002103
Willy Tarreau9d008692019-08-09 11:21:01 +02002104 if (px->state == PR_STPAUSED)
2105 return cli_msg(appctx, LOG_NOTICE, "Frontend is already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002106
Willy Tarreaua275a372018-08-21 14:50:44 +02002107 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2108 ret = pause_proxy(px);
2109 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2110
Willy Tarreau9d008692019-08-09 11:21:01 +02002111 if (!ret)
2112 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
2113
Willy Tarreau15b9e682016-11-24 11:55:28 +01002114 return 1;
2115}
2116
Willy Tarreaua275a372018-08-21 14:50:44 +02002117/* Parses the "enable frontend" directive, it always returns 1.
2118 *
2119 * Grabs the proxy lock.
2120 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002121static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002122{
2123 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002124 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002125
2126 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2127 return 1;
2128
2129 px = cli_find_frontend(appctx, args[2]);
2130 if (!px)
2131 return 1;
2132
Willy Tarreau9d008692019-08-09 11:21:01 +02002133 if (px->state == PR_STSTOPPED)
2134 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002135
Willy Tarreau9d008692019-08-09 11:21:01 +02002136 if (px->state != PR_STPAUSED)
2137 return cli_msg(appctx, LOG_NOTICE, "Frontend is already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002138
Willy Tarreaua275a372018-08-21 14:50:44 +02002139 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2140 ret = resume_proxy(px);
2141 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2142
Willy Tarreau9d008692019-08-09 11:21:01 +02002143 if (!ret)
2144 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002145 return 1;
2146}
2147
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002148/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2149 * now.
2150 */
2151static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2152{
2153 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2154 return 1;
2155
2156 if (*args[2]) {
2157 struct proxy *px;
2158
2159 px = proxy_find_by_name(args[2], 0, 0);
2160 if (px)
2161 appctx->ctx.errors.iid = px->uuid;
2162 else
2163 appctx->ctx.errors.iid = atoi(args[2]);
2164
Willy Tarreau9d008692019-08-09 11:21:01 +02002165 if (!appctx->ctx.errors.iid)
2166 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002167 }
2168 else
2169 appctx->ctx.errors.iid = -1; // dump all proxies
2170
2171 appctx->ctx.errors.flag = 0;
2172 if (strcmp(args[3], "request") == 0)
2173 appctx->ctx.errors.flag |= 4; // ignore response
2174 else if (strcmp(args[3], "response") == 0)
2175 appctx->ctx.errors.flag |= 2; // ignore request
2176 appctx->ctx.errors.px = NULL;
2177 return 0;
2178}
2179
2180/* This function dumps all captured errors onto the stream interface's
2181 * read buffer. It returns 0 if the output buffer is full and it needs
2182 * to be called again, otherwise non-zero.
2183 */
2184static int cli_io_handler_show_errors(struct appctx *appctx)
2185{
2186 struct stream_interface *si = appctx->owner;
2187 extern const char *monthname[12];
2188
2189 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2190 return 1;
2191
2192 chunk_reset(&trash);
2193
2194 if (!appctx->ctx.errors.px) {
2195 /* the function had not been called yet, let's prepare the
2196 * buffer for a response.
2197 */
2198 struct tm tm;
2199
2200 get_localtime(date.tv_sec, &tm);
2201 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2202 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2203 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2204 error_snapshot_id);
2205
Willy Tarreau36b27362018-09-07 19:55:44 +02002206 if (ci_putchk(si_ic(si), &trash) == -1)
2207 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002208
2209 appctx->ctx.errors.px = proxies_list;
2210 appctx->ctx.errors.bol = 0;
2211 appctx->ctx.errors.ptr = -1;
2212 }
2213
2214 /* we have two inner loops here, one for the proxy, the other one for
2215 * the buffer.
2216 */
2217 while (appctx->ctx.errors.px) {
2218 struct error_snapshot *es;
2219
Willy Tarreau36b27362018-09-07 19:55:44 +02002220 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2221
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002222 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002223 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002224 if (appctx->ctx.errors.flag & 2) // skip req
2225 goto next;
2226 }
2227 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002228 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002229 if (appctx->ctx.errors.flag & 4) // skip resp
2230 goto next;
2231 }
2232
Willy Tarreauc55015e2018-09-07 19:02:32 +02002233 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002234 goto next;
2235
2236 if (appctx->ctx.errors.iid >= 0 &&
2237 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002238 (!es->oe || es->oe->uuid != appctx->ctx.errors.iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002239 goto next;
2240
2241 if (appctx->ctx.errors.ptr < 0) {
2242 /* just print headers now */
2243
2244 char pn[INET6_ADDRSTRLEN];
2245 struct tm tm;
2246 int port;
2247
2248 get_localtime(es->when.tv_sec, &tm);
2249 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2250 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2251 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2252
2253 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2254 case AF_INET:
2255 case AF_INET6:
2256 port = get_host_port(&es->src);
2257 break;
2258 default:
2259 port = 0;
2260 }
2261
2262 switch (appctx->ctx.errors.flag & 1) {
2263 case 0:
2264 chunk_appendf(&trash,
2265 " frontend %s (#%d): invalid request\n"
2266 " backend %s (#%d)",
2267 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002268 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2269 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002270 break;
2271 case 1:
2272 chunk_appendf(&trash,
2273 " backend %s (#%d): invalid response\n"
2274 " frontend %s (#%d)",
2275 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002276 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002277 break;
2278 }
2279
2280 chunk_appendf(&trash,
2281 ", server %s (#%d), event #%u, src %s:%d\n"
2282 " buffer starts at %llu (including %u out), %u free,\n"
2283 " len %u, wraps at %u, error at position %u\n",
2284 es->srv ? es->srv->id : "<NONE>",
2285 es->srv ? es->srv->puid : -1,
2286 es->ev_id, pn, port,
2287 es->buf_ofs, es->buf_out,
2288 global.tune.bufsize - es->buf_out - es->buf_len,
2289 es->buf_len, es->buf_wrap, es->buf_err);
2290
2291 if (es->show)
2292 es->show(&trash, es);
2293
2294 chunk_appendf(&trash, " \n");
2295
Willy Tarreau36b27362018-09-07 19:55:44 +02002296 if (ci_putchk(si_ic(si), &trash) == -1)
2297 goto cant_send_unlock;
2298
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002299 appctx->ctx.errors.ptr = 0;
2300 appctx->ctx.errors.ev_id = es->ev_id;
2301 }
2302
2303 if (appctx->ctx.errors.ev_id != es->ev_id) {
2304 /* the snapshot changed while we were dumping it */
2305 chunk_appendf(&trash,
2306 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002307 if (ci_putchk(si_ic(si), &trash) == -1)
2308 goto cant_send_unlock;
2309
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002310 goto next;
2311 }
2312
2313 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002314 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002315 int newptr;
2316 int newline;
2317
2318 newline = appctx->ctx.errors.bol;
2319 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2320 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002321 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002322
Willy Tarreau36b27362018-09-07 19:55:44 +02002323 if (ci_putchk(si_ic(si), &trash) == -1)
2324 goto cant_send_unlock;
2325
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002326 appctx->ctx.errors.ptr = newptr;
2327 appctx->ctx.errors.bol = newline;
2328 };
2329 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002330 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002331 appctx->ctx.errors.bol = 0;
2332 appctx->ctx.errors.ptr = -1;
2333 appctx->ctx.errors.flag ^= 1;
2334 if (!(appctx->ctx.errors.flag & 1))
2335 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2336 }
2337
2338 /* dump complete */
2339 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002340
2341 cant_send_unlock:
2342 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2343 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002344 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002345 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002346}
2347
William Lallemanda6c5f332016-11-19 02:25:36 +01002348/* register cli keywords */
2349static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002350 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2351 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002352 { { "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 +01002353 { { "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 +01002354 { { "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 +01002355 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002356 { { "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 },
2357 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2358 { { "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 +02002359 { { "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 +01002360 {{},}
2361}};
2362
Willy Tarreau0108d902018-11-25 19:14:37 +01002363INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002364
2365/*
2366 * Local variables:
2367 * c-indent-level: 8
2368 * c-basic-offset: 8
2369 * End:
2370 */