blob: 1ca6ab276a2ade7510ee4805cb16af22536cdf73 [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 Tarreau3f0f82e2020-06-04 19:42:41 +020020#include <haproxy/applet-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020021#include <haproxy/api.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020022#include <common/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020023#include <haproxy/cli.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020024#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020025#include <haproxy/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020026#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020027#include <haproxy/http_ana.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020028#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020029#include <haproxy/log.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020030#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020031#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020032#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020033#include <haproxy/proxy.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020034#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020035#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020036#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020037#include <haproxy/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreau8d2b7772020-05-27 10:58:19 +020039#include <import/eb32tree.h>
40#include <import/ebistree.h>
Willy Tarreaucfd837f2014-03-15 07:43:51 +010041
Willy Tarreau278161c2020-06-04 11:18:28 +020042#include <haproxy/capture-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Alexandre Cassen87ea5482007-10-11 20:48:58 +020044#include <proto/backend.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020045#include <haproxy/fd.h>
Willy Tarreaufc774542020-06-04 17:31:04 +020046#include <haproxy/proto_tcp.h>
Olivier Houchard614f8d72017-03-14 20:08:46 +010047#include <proto/server.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020048#include <haproxy/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020049#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
51
Willy Tarreau918ff602011-07-25 16:33:49 +020052int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010053struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020054struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010055struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010056unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020057
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010058/* proxy->options */
59const struct cfg_opt cfg_opts[] =
60{
61 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
62 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
63 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
64 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
65 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
66 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
67 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
68 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
69 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
70 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
71 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
72 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
73 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
74 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020075#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010076 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
77#else
78 { "transparent", 0, 0, 0, 0 },
79#endif
80
81 { NULL, 0, 0, 0, 0 }
82};
83
84/* proxy->options2 */
85const struct cfg_opt cfg_opts2[] =
86{
Willy Tarreaue5733232019-05-22 19:24:06 +020087#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010088 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
89 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
90 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
91#else
92 { "splice-request", 0, 0, 0, 0 },
93 { "splice-response", 0, 0, 0, 0 },
94 { "splice-auto", 0, 0, 0, 0 },
95#endif
96 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
97 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
98 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
99 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
100 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
101 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
102 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
103 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100104 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
105 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
106 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
107 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200108 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Christopher Faulet98fbe952019-07-22 16:18:24 +0200109
110 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
111 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet89aed322020-06-02 17:33:56 +0200112 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100113 { NULL, 0, 0, 0 }
114};
115
Willy Tarreau977b8e42006-12-29 14:19:17 +0100116/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100117 * This function returns a string containing a name describing capabilities to
118 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200119 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100120 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100121 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100122const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100123{
Willy Tarreau816eb542007-11-04 07:04:43 +0100124 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
125 if (cap & PR_CAP_FE)
126 return "frontend";
127 else if (cap & PR_CAP_BE)
128 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100129 }
130 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100131}
132
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100133/*
134 * This function returns a string containing the mode of the proxy in a format
135 * suitable for error messages.
136 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100137const char *proxy_mode_str(int mode) {
138
139 if (mode == PR_MODE_TCP)
140 return "tcp";
141 else if (mode == PR_MODE_HTTP)
142 return "http";
143 else if (mode == PR_MODE_HEALTH)
144 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200145 else if (mode == PR_MODE_CLI)
146 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100147 else
148 return "unknown";
149}
150
Willy Tarreauf3950172009-10-10 18:35:51 +0200151/*
152 * This function scans the list of backends and servers to retrieve the first
153 * backend and the first server with the given names, and sets them in both
154 * parameters. It returns zero if either is not found, or non-zero and sets
155 * the ones it did not found to NULL. If a NULL pointer is passed for the
156 * backend, only the pointer to the server will be updated.
157 */
158int get_backend_server(const char *bk_name, const char *sv_name,
159 struct proxy **bk, struct server **sv)
160{
161 struct proxy *p;
162 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100163 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200164
165 *sv = NULL;
166
Willy Tarreau050536d2012-10-04 08:47:34 +0200167 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200168 if (*sv_name == '#')
169 sid = atoi(sv_name + 1);
170
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200171 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200172 if (bk)
173 *bk = p;
174 if (!p)
175 return 0;
176
177 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100178 if ((sid >= 0 && s->puid == sid) ||
179 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200180 break;
181 *sv = s;
182 if (!s)
183 return 0;
184 return 1;
185}
186
Willy Tarreaue219db72007-12-03 01:30:13 +0100187/* This function parses a "timeout" statement in a proxy section. It returns
188 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200189 * return zero, it will write an error or warning message into a preallocated
190 * buffer returned at <err>. The trailing is not be written. The function must
191 * be called with <args> pointing to the first command line word, with <proxy>
192 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
193 * As a special case for compatibility with older configs, it also accepts
194 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100195 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200196static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200197 struct proxy *defpx, const char *file, int line,
198 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100199{
200 unsigned timeout;
201 int retval, cap;
202 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200203 int *tv = NULL;
204 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100205
206 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200207
208 /* simply skip "timeout" but remain compatible with old form */
209 if (strcmp(args[0], "timeout") == 0)
210 args++;
211
Willy Tarreaue219db72007-12-03 01:30:13 +0100212 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200213 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100214 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100215 tv = &proxy->timeout.client;
216 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100217 cap = PR_CAP_FE;
218 } else if (!strcmp(args[0], "tarpit")) {
219 tv = &proxy->timeout.tarpit;
220 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100221 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100222 } else if (!strcmp(args[0], "http-keep-alive")) {
223 tv = &proxy->timeout.httpka;
224 td = &defpx->timeout.httpka;
225 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100226 } else if (!strcmp(args[0], "http-request")) {
227 tv = &proxy->timeout.httpreq;
228 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200229 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200230 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100231 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100232 tv = &proxy->timeout.server;
233 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100234 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200235 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100236 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100237 tv = &proxy->timeout.connect;
238 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100239 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100240 } else if (!strcmp(args[0], "check")) {
241 tv = &proxy->timeout.check;
242 td = &defpx->timeout.check;
243 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100244 } else if (!strcmp(args[0], "queue")) {
245 tv = &proxy->timeout.queue;
246 td = &defpx->timeout.queue;
247 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200248 } else if (!strcmp(args[0], "tunnel")) {
249 tv = &proxy->timeout.tunnel;
250 td = &defpx->timeout.tunnel;
251 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200252 } else if (!strcmp(args[0], "client-fin")) {
253 tv = &proxy->timeout.clientfin;
254 td = &defpx->timeout.clientfin;
255 cap = PR_CAP_FE;
256 } else if (!strcmp(args[0], "server-fin")) {
257 tv = &proxy->timeout.serverfin;
258 td = &defpx->timeout.serverfin;
259 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200260 } else if (!strcmp(args[0], "clitimeout")) {
261 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
262 return -1;
263 } else if (!strcmp(args[0], "srvtimeout")) {
264 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
265 return -1;
266 } else if (!strcmp(args[0], "contimeout")) {
267 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
268 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100269 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200270 memprintf(err,
271 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200272 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
273 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200274 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100275 return -1;
276 }
277
278 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200279 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100280 return -1;
281 }
282
283 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200284 if (res == PARSE_TIME_OVER) {
285 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
286 args[1], name);
287 return -1;
288 }
289 else if (res == PARSE_TIME_UNDER) {
290 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
291 args[1], name);
292 return -1;
293 }
294 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200295 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100296 return -1;
297 }
298
299 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200300 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
301 name, proxy_type_str(proxy), proxy->id,
302 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100303 retval = 1;
304 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200305 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200306 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100307 retval = 1;
308 }
309
Willy Tarreaufac5b592014-05-22 08:24:46 +0200310 if (*args[2] != 0) {
311 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
312 retval = -1;
313 }
314
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200315 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100316 return retval;
317}
318
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100319/* This function parses a "rate-limit" statement in a proxy section. It returns
320 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200321 * return zero, it will write an error or warning message into a preallocated
322 * buffer returned at <err>. The function must be called with <args> pointing
323 * to the first command line word, with <proxy> pointing to the proxy being
324 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100325 */
326static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200327 struct proxy *defpx, const char *file, int line,
328 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100329{
William Dauchybb9da0b2020-01-16 01:34:27 +0100330 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200331 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100332 unsigned int *tv = NULL;
333 unsigned int *td = NULL;
334 unsigned int val;
335
336 retval = 0;
337
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200338 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200339 tv = &proxy->fe_sps_lim;
340 td = &defpx->fe_sps_lim;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200341 }
342 else {
343 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100344 return -1;
345 }
346
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200347 if (*args[2] == 0) {
348 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100349 return -1;
350 }
351
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200352 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100353 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200354 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 +0100355 return -1;
356 }
357
William Dauchybb9da0b2020-01-16 01:34:27 +0100358 if (!(proxy->cap & PR_CAP_FE)) {
359 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
360 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100361 retval = 1;
362 }
363 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200364 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100365 retval = 1;
366 }
367
368 *tv = val;
369 return retval;
370}
371
Willy Tarreauc35362a2014-04-25 13:58:37 +0200372/* This function parses a "max-keep-alive-queue" statement in a proxy section.
373 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
374 * does not return zero, it will write an error or warning message into a
375 * preallocated buffer returned at <err>. The function must be called with
376 * <args> pointing to the first command line word, with <proxy> pointing to
377 * the proxy being parsed, and <defpx> to the default proxy or NULL.
378 */
379static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
380 struct proxy *defpx, const char *file, int line,
381 char **err)
382{
383 int retval;
384 char *res;
385 unsigned int val;
386
387 retval = 0;
388
389 if (*args[1] == 0) {
390 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
391 return -1;
392 }
393
394 val = strtol(args[1], &res, 0);
395 if (*res) {
396 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
397 return -1;
398 }
399
400 if (!(proxy->cap & PR_CAP_BE)) {
401 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
402 args[0], proxy_type_str(proxy), proxy->id);
403 retval = 1;
404 }
405
406 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
407 proxy->max_ka_queue = val + 1;
408 return retval;
409}
410
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200411/* This function parses a "declare" statement in a proxy section. It returns -1
412 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
413 * it will write an error or warning message into a preallocated buffer returned
414 * at <err>. The function must be called with <args> pointing to the first command
415 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
416 * default proxy or NULL.
417 */
418static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
419 struct proxy *defpx, const char *file, int line,
420 char **err)
421{
422 /* Capture keyword wannot be declared in a default proxy. */
423 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800424 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200425 return -1;
426 }
427
Joseph Herlant59dd2952018-11-15 11:46:55 -0800428 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200429 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800430 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200431 return -1;
432 }
433
434 /* Check mandatory second keyword. */
435 if (!args[1] || !*args[1]) {
436 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
437 return -1;
438 }
439
Joseph Herlant59dd2952018-11-15 11:46:55 -0800440 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200441 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800442 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200443 * the second keyword.
444 */
445 if (strcmp(args[1], "capture") == 0) {
446 char *error = NULL;
447 long len;
448 struct cap_hdr *hdr;
449
450 /* Check the next keyword. */
451 if (!args[2] || !*args[2] ||
452 (strcmp(args[2], "response") != 0 &&
453 strcmp(args[2], "request") != 0)) {
454 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
455 return -1;
456 }
457
458 /* Check the 'len' keyword. */
459 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
460 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
461 return -1;
462 }
463
464 /* Check the length value. */
465 if (!args[4] || !*args[4]) {
466 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
467 "capture length",
468 args[0], args[1]);
469 return -1;
470 }
471
472 /* convert the length value. */
473 len = strtol(args[4], &error, 10);
474 if (*error != '\0') {
475 memprintf(err, "'%s %s': cannot parse the length '%s'.",
476 args[0], args[1], args[3]);
477 return -1;
478 }
479
480 /* check length. */
481 if (len <= 0) {
482 memprintf(err, "length must be > 0");
483 return -1;
484 }
485
486 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200487 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200488 hdr->name = NULL; /* not a header capture */
489 hdr->namelen = 0;
490 hdr->len = len;
491 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
492
493 if (strcmp(args[2], "request") == 0) {
494 hdr->next = curpx->req_cap;
495 hdr->index = curpx->nb_req_cap++;
496 curpx->req_cap = hdr;
497 }
498 if (strcmp(args[2], "response") == 0) {
499 hdr->next = curpx->rsp_cap;
500 hdr->index = curpx->nb_rsp_cap++;
501 curpx->rsp_cap = hdr;
502 }
503 return 0;
504 }
505 else {
506 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
507 return -1;
508 }
509}
510
Olivier Houcharda254a372019-04-05 15:30:12 +0200511/* This function parses a "retry-on" statement */
512static int
513proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
514 struct proxy *defpx, const char *file, int line,
515 char **err)
516{
517 int i;
518
519 if (!(*args[1])) {
520 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
521 return -1;
522 }
523 if (!(curpx->cap & PR_CAP_BE)) {
524 memprintf(err, "'%s' only available in backend or listen section", args[0]);
525 return -1;
526 }
527 curpx->retry_type = 0;
528 for (i = 1; *(args[i]); i++) {
529 if (!strcmp(args[i], "conn-failure"))
530 curpx->retry_type |= PR_RE_CONN_FAILED;
531 else if (!strcmp(args[i], "empty-response"))
532 curpx->retry_type |= PR_RE_DISCONNECTED;
533 else if (!strcmp(args[i], "response-timeout"))
534 curpx->retry_type |= PR_RE_TIMEOUT;
535 else if (!strcmp(args[i], "404"))
536 curpx->retry_type |= PR_RE_404;
537 else if (!strcmp(args[i], "408"))
538 curpx->retry_type |= PR_RE_408;
539 else if (!strcmp(args[i], "425"))
540 curpx->retry_type |= PR_RE_425;
541 else if (!strcmp(args[i], "500"))
542 curpx->retry_type |= PR_RE_500;
543 else if (!strcmp(args[i], "501"))
544 curpx->retry_type |= PR_RE_501;
545 else if (!strcmp(args[i], "502"))
546 curpx->retry_type |= PR_RE_502;
547 else if (!strcmp(args[i], "503"))
548 curpx->retry_type |= PR_RE_503;
549 else if (!strcmp(args[i], "504"))
550 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200551 else if (!strcmp(args[i], "0rtt-rejected"))
552 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200553 else if (!strcmp(args[i], "junk-response"))
554 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200555 else if (!(strcmp(args[i], "all-retryable-errors")))
556 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
557 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
558 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
559 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200560 else if (!strcmp(args[i], "none")) {
561 if (i != 1 || *args[i + 1]) {
562 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
563 return -1;
564 }
565 } else {
566 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
567 return -1;
568 }
569
570 }
571
572
573 return 0;
574}
575
Willy Tarreauf79d9502014-03-15 07:22:35 +0100576/* This function inserts proxy <px> into the tree of known proxies. The proxy's
577 * name is used as the storing key so it must already have been initialized.
578 */
579void proxy_store_name(struct proxy *px)
580{
581 px->conf.by_name.key = px->id;
582 ebis_insert(&proxy_by_name, &px->conf.by_name);
583}
584
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200585/* Returns a pointer to the first proxy matching capabilities <cap> and id
586 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
587 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200588 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200589struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200590{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200591 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200592
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200593 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
594 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100595
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200596 if (px->uuid != id)
597 break;
Alex Williams96532db2009-11-01 21:27:13 -0500598
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200599 if ((px->cap & cap) != cap)
600 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500601
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100602 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200603 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100604
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200605 return px;
606 }
607 return NULL;
608}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100609
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200610/* Returns a pointer to the first proxy matching either name <name>, or id
611 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
612 * If <table> is non-zero, it only considers proxies having a table.
613 */
614struct proxy *proxy_find_by_name(const char *name, int cap, int table)
615{
616 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200617
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200618 if (*name == '#') {
619 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
620 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200621 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500622 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100623 else {
624 struct ebpt_node *node;
625
626 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
627 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500628
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100629 if (strcmp(curproxy->id, name) != 0)
630 break;
631
632 if ((curproxy->cap & cap) != cap)
633 continue;
634
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100635 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200636 continue;
637
Willy Tarreauc739aa82015-05-26 11:35:41 +0200638 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100639 }
640 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200641 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500642}
643
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200644/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
645 * <id>. At most one of <id> or <name> may be different provided that <cap> is
646 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
647 * find a proxy based on some information from a previous configuration, across
648 * reloads or during information exchange between peers.
649 *
650 * Names are looked up first if present, then IDs are compared if present. In
651 * case of an inexact match whatever is forced in the configuration has
652 * precedence in the following order :
653 * - 1) forced ID (proves a renaming / change of proxy type)
654 * - 2) proxy name+type (may indicate a move if ID differs)
655 * - 3) automatic ID+type (may indicate a renaming)
656 *
657 * Depending on what is found, we can end up in the following situations :
658 *
659 * name id cap | possible causes
660 * -------------+-----------------
661 * -- -- -- | nothing found
662 * -- -- ok | nothing found
663 * -- ok -- | proxy deleted, ID points to next one
664 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
665 * ok -- -- | proxy deleted, but other half with same name still here (before)
666 * ok -- ok | proxy's ID changed (proxy moved in the config file)
667 * ok ok -- | proxy deleted, but other half with same name still here (after)
668 * ok ok ok | perfect match
669 *
670 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200671 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
672 * (and ID was not zero)
673 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
674 * (and name was not NULL)
675 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
676 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200677 *
678 * Only a valid proxy is returned. If capabilities do not match, NULL is
679 * returned. The caller can check <diff> to report detailed warnings / errors,
680 * and decide whether or not to use what was found.
681 */
682struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
683{
684 struct proxy *byname;
685 struct proxy *byid;
686
687 if (!name && !id)
688 return NULL;
689
690 if (diff)
691 *diff = 0;
692
693 byname = byid = NULL;
694
695 if (name) {
696 byname = proxy_find_by_name(name, cap, 0);
697 if (byname && (!id || byname->uuid == id))
698 return byname;
699 }
700
Joseph Herlant59dd2952018-11-15 11:46:55 -0800701 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200702 * - name not set
703 * - name set but not found
704 * - name found, but ID doesn't match.
705 */
706 if (id) {
707 byid = proxy_find_by_id(id, cap, 0);
708 if (byid) {
709 if (byname) {
710 /* id+type found, name+type found, but not all 3.
711 * ID wins only if forced, otherwise name wins.
712 */
713 if (byid->options & PR_O_FORCED_ID) {
714 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200715 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200716 return byid;
717 }
718 else {
719 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200720 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200721 return byname;
722 }
723 }
724
Joseph Herlant59dd2952018-11-15 11:46:55 -0800725 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200726 * - name not set
727 * - name set but not found
728 */
729 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200730 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200731 return byid;
732 }
733
734 /* ID not found */
735 if (byname) {
736 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200737 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200738 return byname;
739 }
740 }
741
Joseph Herlant59dd2952018-11-15 11:46:55 -0800742 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200743 * detailed information to the caller about changed types and/or name,
744 * we'll do it. For example, we could detect that "listen foo" was
745 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
746 * - name not set, ID not found
747 * - name not found, ID not set
748 * - name not found, ID not found
749 */
750 if (!diff)
751 return NULL;
752
753 if (name) {
754 byname = proxy_find_by_name(name, 0, 0);
755 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200756 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200757 }
758
759 if (id) {
760 byid = proxy_find_by_id(id, 0, 0);
761 if (byid) {
762 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200763 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200764 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200765 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200766 /* otherwise it's a different proxy that was returned */
767 }
768 }
769 return NULL;
770}
771
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100773 * This function finds a server with matching name within selected proxy.
774 * It also checks if there are more matching servers with
775 * requested name as this often leads into unexpected situations.
776 */
777
778struct server *findserver(const struct proxy *px, const char *name) {
779
780 struct server *cursrv, *target = NULL;
781
782 if (!px)
783 return NULL;
784
785 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
786 if (strcmp(cursrv->id, name))
787 continue;
788
789 if (!target) {
790 target = cursrv;
791 continue;
792 }
793
Christopher Faulet767a84b2017-11-24 16:50:31 +0100794 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
795 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100796
797 return NULL;
798 }
799
800 return target;
801}
802
Willy Tarreauff01a212009-03-15 13:46:16 +0100803/* This function checks that the designated proxy has no http directives
804 * enabled. It will output a warning if there are, and will fix some of them.
805 * It returns the number of fatal errors encountered. This should be called
806 * at the end of the configuration parsing if the proxy is not in http mode.
807 * The <file> argument is used to construct the error message.
808 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200809int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100810{
811 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100812 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
813 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100814 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100815 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100816 ha_warning("config : monitor-uri 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 Tarreauf3e49f92009-10-03 12:21:20 +0200819 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100820 curproxy->lbprm.algo &= ~BE_LB_ALGO;
821 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100822 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
823 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100824 }
Willy Tarreau17804162009-11-09 21:27:51 +0100825 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
826 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100827 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
828 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
829 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100830 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200831 if (curproxy->conf.logformat_string == default_http_log_format ||
832 curproxy->conf.logformat_string == clf_http_log_format) {
833 /* Note: we don't change the directive's file:line number */
834 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100835 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
836 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
837 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200838 }
839
Willy Tarreauff01a212009-03-15 13:46:16 +0100840 return 0;
841}
842
Willy Tarreau237250c2011-07-29 01:49:03 +0200843/* Perform the most basic initialization of a proxy :
844 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200845 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200846 */
847void init_new_proxy(struct proxy *p)
848{
849 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100850 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400851 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200852 LIST_INIT(&p->acl);
853 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200854 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +0100855 LIST_INIT(&p->http_after_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200856 LIST_INIT(&p->redirect_rules);
857 LIST_INIT(&p->mon_fail_cond);
858 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200859 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200860 LIST_INIT(&p->persist_rules);
861 LIST_INIT(&p->sticking_rules);
862 LIST_INIT(&p->storersp_rules);
863 LIST_INIT(&p->tcp_req.inspect_rules);
864 LIST_INIT(&p->tcp_rep.inspect_rules);
865 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200866 LIST_INIT(&p->tcp_req.l5_rules);
Olivier Houchard859dc802019-08-08 15:47:21 +0200867 MT_LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200868 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100869 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200870 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100871 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200872 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200873 LIST_INIT(&p->conf.listeners);
Christopher Faulet76edc0f2020-01-13 15:52:01 +0100874 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200875 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100876 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +0200877 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +0200878
879 /* Timeouts are defined as -1 */
880 proxy_reset_timeouts(p);
881 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200882
883 /* initial uuid is unassigned (-1) */
884 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200885
Olivier Houcharda254a372019-04-05 15:30:12 +0200886 /* Default to only allow L4 retries */
887 p->retry_type = PR_RE_CONN_FAILED;
888
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100889 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200890}
891
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100892/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200893 * This function creates all proxy sockets. It should be done very early,
894 * typically before privileges are dropped. The sockets will be registered
895 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200896 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200897 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200898 *
899 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
900 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200901 */
902int start_proxies(int verbose)
903{
904 struct proxy *curproxy;
905 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100906 int lerr, err = ERR_NONE;
907 int pxerr;
908 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100910 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 if (curproxy->state != PR_STNEW)
912 continue; /* already initialized */
913
914 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200915 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100916 if (listener->state != LI_ASSIGNED)
917 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918
Emeric Bruncf20bf12010-10-22 16:06:11 +0200919 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920
Willy Tarreaue6b98942007-10-29 01:09:36 +0100921 /* errors are reported if <verbose> is set or if they are fatal */
922 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
923 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100924 ha_alert("Starting %s %s: %s\n",
925 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100926 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100927 ha_warning("Starting %s %s: %s\n",
928 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929 }
930
Willy Tarreaue6b98942007-10-29 01:09:36 +0100931 err |= lerr;
932 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100934 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100936 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 pxerr |= 1;
938 continue;
939 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940 }
941
942 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200943 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
945 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100946
947 if (err & ERR_ABORT)
948 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949 }
950
951 return err;
952}
953
954
955/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200956 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200957 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200958 * called as a task which is woken up upon stopping or when rate limiting must
959 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200961struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200963 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200964 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100965 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966
Willy Tarreau918ff602011-07-25 16:33:49 +0200967 /* We should periodically try to enable listeners waiting for a
968 * global resource here.
969 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970
Willy Tarreau918ff602011-07-25 16:33:49 +0200971 /* first, let's check if we need to stop the proxy */
972 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
973 int t;
974 t = tick_remain(now_ms, p->stop_time);
975 if (t == 0) {
William Dauchy1e2256d2020-01-25 23:45:18 +0100976 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +0100977 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +0100978 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau918ff602011-07-25 16:33:49 +0200979 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
980 stop_proxy(p);
981 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100982 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200983 }
984 else {
985 next = tick_first(next, p->stop_time);
986 }
987 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200988
Willy Tarreau3a925c12013-09-04 17:54:01 +0200989 /* If the proxy holds a stick table, we need to purge all unused
990 * entries. These are all the ones in the table with ref_cnt == 0
991 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200992 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200993 * be in neither list. Any entry being dumped will have ref_cnt > 0.
994 * However we protect tables that are being synced to peers.
995 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100996 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
997 if (!p->table->syncing) {
998 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100999 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001000 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001001 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001002 /* some entries still remain, let's recheck in one second */
1003 next = tick_first(next, tick_add(now_ms, 1000));
1004 }
1005 }
1006
Willy Tarreau918ff602011-07-25 16:33:49 +02001007 /* the rest below is just for frontends */
1008 if (!(p->cap & PR_CAP_FE))
1009 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001010
Willy Tarreau918ff602011-07-25 16:33:49 +02001011 /* check the various reasons we may find to block the frontend */
1012 if (unlikely(p->feconn >= p->maxconn)) {
1013 if (p->state == PR_STREADY)
1014 p->state = PR_STFULL;
1015 goto out;
1016 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001017
Willy Tarreau918ff602011-07-25 16:33:49 +02001018 /* OK we have no reason to block, so let's unblock if we were blocking */
1019 if (p->state == PR_STFULL)
1020 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001021
Willy Tarreau918ff602011-07-25 16:33:49 +02001022 if (p->fe_sps_lim &&
1023 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1024 /* we're blocking because a limit was reached on the number of
1025 * requests/s on the frontend. We want to re-check ASAP, which
1026 * means in 1 ms before estimated expiration date, because the
1027 * timer will have settled down.
1028 */
1029 next = tick_first(next, tick_add(now_ms, wait));
1030 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001031 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001032
1033 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01001034 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02001035 out:
1036 t->expire = next;
1037 task_queue(t);
1038 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001039}
1040
1041
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001042static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1043 struct proxy *defpx, const char *file, int line,
1044 char **err)
1045{
1046 const char *res;
1047
1048 if (!*args[1]) {
1049 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1050 return -1;
1051 }
1052 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001053 if (res == PARSE_TIME_OVER) {
1054 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1055 args[1], args[0]);
1056 return -1;
1057 }
1058 else if (res == PARSE_TIME_UNDER) {
1059 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1060 args[1], args[0]);
1061 return -1;
1062 }
1063 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001064 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1065 return -1;
1066 }
1067 return 0;
1068}
1069
Olivier Houchard9f6af332018-05-25 14:04:04 +02001070struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001071{
1072 struct proxy *p;
1073 struct stream *s;
1074
1075 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001076 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001077 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001078 killed = 2;
1079 t->expire = TICK_ETERNITY;
1080 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001081 }
1082
Christopher Faulet767a84b2017-11-24 16:50:31 +01001083 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001084 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001085 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001086 while (p) {
1087 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001088 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1089 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001090 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1091 p->id, p->feconn);
1092 }
1093 p = p->next;
1094 }
1095 list_for_each_entry(s, &streams, list) {
1096 stream_shutdown(s, SF_ERR_KILLED);
1097 }
1098
1099 killed = 1;
1100 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1101 return t;
1102}
1103
Willy Tarreaubaaee002006-06-26 02:48:02 +02001104/*
1105 * this function disables health-check servers so that the process will quickly be ignored
1106 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1107 * time will not be used since it would already not listen anymore to the socket.
1108 */
1109void soft_stop(void)
1110{
1111 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001112 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001113 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001114
1115 stopping = 1;
William Dauchy3894d972019-12-28 15:36:02 +01001116 /* disable busy polling to avoid cpu eating for the new process */
1117 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001118 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001119 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001120 if (task) {
1121 task->process = hard_stop;
1122 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1123 }
1124 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001125 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001126 }
1127 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001128 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001129 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001130 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001131 /* Zombie proxy, let's close the file descriptors */
1132 if (p->state == PR_STSTOPPED &&
1133 !LIST_ISEMPTY(&p->conf.listeners) &&
1134 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau67878d72019-12-10 07:11:35 +01001135 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001136 struct listener *l;
1137 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau67878d72019-12-10 07:11:35 +01001138 if (l->state > LI_ASSIGNED)
Olivier Houchard1fc05162017-04-06 01:05:05 +02001139 close(l->fd);
1140 l->state = LI_INIT;
1141 }
1142 }
1143
Willy Tarreaubaaee002006-06-26 02:48:02 +02001144 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 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 +02001146 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 +02001147 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001148
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001149 /* Note: do not wake up stopped proxies' task nor their tables'
1150 * tasks as these ones might point to already released entries.
1151 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001152 if (p->table && p->table->size && p->table->sync_task)
1153 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001154
1155 if (p->task)
1156 task_wakeup(p->task, TASK_WOKEN_MSG);
1157 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001158 p = p->next;
1159 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001160
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001161 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001162 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001163 if (prs->peers_fe)
1164 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001165 prs = prs->next;
1166 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001167 /* signal zero is used to broadcast the "stopping" event */
1168 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001169}
1170
1171
Willy Tarreaube58c382011-07-24 18:28:10 +02001172/* Temporarily disables listening on all of the proxy's listeners. Upon
1173 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1174 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001175 * because we don't know how to resume from this. The function returns 0
1176 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001177 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001178int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001179{
1180 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001181
1182 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1183 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1184 return 1;
1185
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001187 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1188
Willy Tarreau4348fad2012-09-20 16:48:07 +02001189 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001190 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001191 p->state = PR_STERROR;
1192 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001193
1194 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001195 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001196 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1197 return 0;
1198 }
1199
1200 p->state = PR_STPAUSED;
1201 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001202}
1203
Olivier Houchard1fc05162017-04-06 01:05:05 +02001204/* This function makes the proxy unusable, but keeps the listening sockets
1205 * opened, so that if any process requests them, we are able to serve them.
1206 * This should only be called early, before we started accepting requests.
1207 */
1208void zombify_proxy(struct proxy *p)
1209{
1210 struct listener *l;
1211 struct listener *first_to_listen = NULL;
1212
1213 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1214 enum li_state oldstate = l->state;
1215
1216 unbind_listener_no_close(l);
1217 if (l->state >= LI_ASSIGNED) {
1218 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001219 }
1220 /*
1221 * Pretend we're still up and running so that the fd
1222 * will be sent if asked.
1223 */
1224 l->state = LI_ZOMBIE;
1225 if (!first_to_listen && oldstate >= LI_LISTEN)
1226 first_to_listen = l;
1227 }
1228 /* Quick hack : at stop time, to know we have to close the sockets
1229 * despite the proxy being marked as stopped, make the first listener
1230 * of the listener list an active one, so that we don't have to
1231 * parse the whole list to be sure.
1232 */
1233 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1234 struct listener *, by_fe) != first_to_listen) {
1235 LIST_DEL(&l->by_fe);
1236 LIST_ADD(&p->conf.listeners, &l->by_fe);
1237 }
1238
1239 p->state = PR_STSTOPPED;
1240}
Willy Tarreauda250db2008-10-12 12:07:48 +02001241
1242/*
1243 * This function completely stops a proxy and releases its listeners. It has
1244 * to be called when going down in order to release the ports so that another
1245 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001246 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001247 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1248 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001249 */
1250void stop_proxy(struct proxy *p)
1251{
1252 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001253 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001254
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001255 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1256
Willy Tarreau4348fad2012-09-20 16:48:07 +02001257 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001258 if (l->options & LI_O_NOSTOP) {
1259 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1260 nostop = 1;
1261 continue;
1262 }
William Lallemandf7f488d2019-10-18 21:16:39 +02001263 /* The master should not close an inherited FD */
1264 if (master && (l->options & LI_O_INHERITED))
1265 unbind_listener_no_close(l);
1266 else
1267 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001268 if (l->state >= LI_ASSIGNED) {
1269 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001270 }
1271 }
William Lallemandc59f9882018-11-16 16:57:21 +01001272 if (!nostop)
1273 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001274
1275 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001276}
1277
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001278/* This function resumes listening on the specified proxy. It scans all of its
1279 * listeners and tries to enable them all. If any of them fails, the proxy is
1280 * put back to the paused state. It returns 1 upon success, or zero if an error
1281 * is encountered.
1282 */
1283int resume_proxy(struct proxy *p)
1284{
1285 struct listener *l;
1286 int fail;
1287
1288 if (p->state != PR_STPAUSED)
1289 return 1;
1290
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001292 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1293
1294 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001295 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001296 if (!resume_listener(l)) {
1297 int port;
1298
1299 port = get_host_port(&l->addr);
1300 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 ha_warning("Port %d busy while trying to enable %s %s.\n",
1302 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001303 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1304 port, proxy_cap_str(p->cap), p->id);
1305 }
1306 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001307 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1308 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001309 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1310 l->luid, proxy_cap_str(p->cap), p->id);
1311 }
1312
1313 /* Another port might have been enabled. Let's stop everything. */
1314 fail = 1;
1315 break;
1316 }
1317 }
1318
1319 p->state = PR_STREADY;
1320 if (fail) {
1321 pause_proxy(p);
1322 return 0;
1323 }
1324 return 1;
1325}
1326
Willy Tarreaubaaee002006-06-26 02:48:02 +02001327/*
1328 * This function temporarily disables listening so that another new instance
1329 * can start listening. It is designed to be called upon reception of a
1330 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1331 * the proxy, or a SIGTTIN can be sent to listen again.
1332 */
1333void pause_proxies(void)
1334{
1335 int err;
1336 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001337 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001338
1339 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001340 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001341 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001342 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001343 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001344 p = p->next;
1345 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001346
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001347 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001348 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001349 if (prs->peers_fe)
1350 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001351 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001352 }
1353
Willy Tarreaubaaee002006-06-26 02:48:02 +02001354 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001355 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001356 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1357 soft_stop();
1358 }
1359}
1360
1361
1362/*
1363 * This function reactivates listening. This can be used after a call to
1364 * sig_pause(), for example when a new instance has failed starting up.
1365 * It is designed to be called upon reception of a SIGTTIN.
1366 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001367void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001368{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001369 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001370 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001371 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001372
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001373 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001374 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001375 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001376 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001377 err |= !resume_proxy(p);
1378 p = p->next;
1379 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001380
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001381 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001382 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001383 if (prs->peers_fe)
1384 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001385 prs = prs->next;
1386 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001387
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001388 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001390 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 +02001391 }
1392}
1393
Willy Tarreau87b09662015-04-03 00:22:06 +02001394/* Set current stream's backend to <be>. Nothing is done if the
1395 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001396 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001397 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001398 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001399 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001400int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001401{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001402 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001403 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001404
1405 if (flt_set_stream_backend(s, be) < 0)
1406 return 0;
1407
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001408 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001409 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1410 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001411 proxy_inc_be_ctr(be);
1412
Willy Tarreau87b09662015-04-03 00:22:06 +02001413 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001414 s->si[1].flags &= ~SI_FL_INDEP_STR;
1415 if (be->options2 & PR_O2_INDEPSTR)
1416 s->si[1].flags |= SI_FL_INDEP_STR;
1417
Hongbo Longe39683c2017-03-10 18:41:51 +01001418 if (tick_isset(be->timeout.serverfin))
1419 s->si[1].hcto = be->timeout.serverfin;
1420
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001421 /* We want to enable the backend-specific analysers except those which
1422 * were already run as part of the frontend/listener. Note that it would
1423 * be more reliable to store the list of analysers that have been run,
1424 * but what we do here is OK for now.
1425 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001426 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001427
Willy Tarreau51aecc72009-07-12 09:47:04 +02001428 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001429 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001430 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001431 if (unlikely(!s->txn && be->http_needed)) {
1432 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001433 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001434
1435 /* and now initialize the HTTP transaction state */
1436 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001437 }
1438
Christopher Faulet309c6412015-12-02 09:57:32 +01001439 /* Be sure to filter request headers if the backend is an HTTP proxy and
1440 * if there are filters attached to the stream. */
1441 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001442 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001443
Willy Tarreaueee5b512015-04-03 23:46:31 +02001444 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001445 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1446 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001447 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001448 struct connection *conn = objt_conn(strm_sess(s)->origin);
1449 struct conn_stream *cs = objt_cs(s->si[0].end);
1450
1451 if (conn && cs) {
1452 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001453 /* Make sure we're unsubscribed, the the new
1454 * mux will probably want to subscribe to
1455 * the underlying XPRT
1456 */
1457 if (s->si[0].wait_event.events)
1458 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1459 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001460 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001461 return 0;
Olivier Houchard4c18f942019-07-31 18:05:26 +02001462 if (!strcmp(conn->mux->name, "H2")) {
1463 /* For HTTP/2, destroy the conn_stream,
1464 * disable logging, and pretend that we
1465 * failed, to that the stream is
1466 * silently destroyed. The new mux
1467 * will create new streams.
1468 */
Olivier Houchard59dd06d2019-08-09 18:01:15 +02001469 cs_free(cs);
Olivier Houchard4c18f942019-07-31 18:05:26 +02001470 si_detach_endpoint(&s->si[0]);
1471 s->logs.logwait = 0;
1472 s->logs.level = 0;
1473 s->flags |= SF_IGNORE;
1474 return 0;
1475 }
Olivier Houchard71b20c22019-08-09 17:50:05 +02001476 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001477 }
1478 }
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001479 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1480 /* If a TCP backend is assgiend to an HTX stream, return
1481 * an error. It may happens for a new stream on a
1482 * previously upgraded connnections. */
1483 if (!(s->flags & SF_ERR_MASK))
1484 s->flags |= SF_ERR_INTERNAL;
1485 return 0;
1486 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001487
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001488 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001489 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001490 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001491 }
1492
1493 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001494 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001495 s->req.flags |= CF_NEVER_WAIT;
1496 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001497 }
1498
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001499 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001500}
1501
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001502/* Capture a bad request or response and archive it in the proxy's structure.
1503 * It is relatively protocol-agnostic so it requires that a number of elements
1504 * are passed :
1505 * - <proxy> is the proxy where the error was detected and where the snapshot
1506 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001507 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001508 * - <other_end> is a pointer to the proxy on the other side when known
1509 * - <target> is the target of the connection, usually a server or a proxy
1510 * - <sess> is the session which experienced the error
1511 * - <ctx> may be NULL or should contain any info relevant to the protocol
1512 * - <buf> is the buffer containing the offending data
1513 * - <buf_ofs> is the position of this buffer's input data in the input
1514 * stream, starting at zero. It may be passed as zero if unknown.
1515 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1516 * which precedes the buffer's input. The buffer's input starts at
1517 * buf->head + buf_out.
1518 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1519 * - <show> is the callback to use to display <ctx>. It may be NULL.
1520 */
1521void proxy_capture_error(struct proxy *proxy, int is_back,
1522 struct proxy *other_end, enum obj_type *target,
1523 const struct session *sess,
1524 const struct buffer *buf, long buf_ofs,
1525 unsigned int buf_out, unsigned int err_pos,
1526 const union error_snapshot_ctx *ctx,
1527 void (*show)(struct buffer *, const struct error_snapshot *))
1528{
1529 struct error_snapshot *es;
1530 unsigned int buf_len;
1531 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001532 unsigned int ev_id;
1533
1534 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1535
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001536 buf_len = b_data(buf) - buf_out;
1537
1538 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001539 if (!es)
1540 return;
1541
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001542 es->buf_len = buf_len;
1543 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001544
Christopher Faulet47a72102020-01-06 11:37:00 +01001545 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001546 if (len1 > buf_len)
1547 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001548
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001549 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001550 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001551 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001552 if (len2)
1553 memcpy(es->buf + len1, b_orig(buf), len2);
1554 }
1555
1556 es->buf_err = err_pos;
1557 es->when = date; // user-visible date
1558 es->srv = objt_server(target);
1559 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001560 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02001561 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001562 else
1563 memset(&es->src, 0, sizeof(es->src));
1564
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001565 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1566 es->buf_out = buf_out;
1567 es->buf_ofs = buf_ofs;
1568
1569 /* be sure to indicate the offset of the first IN byte */
1570 if (es->buf_ofs >= es->buf_len)
1571 es->buf_ofs -= es->buf_len;
1572 else
1573 es->buf_ofs = 0;
1574
1575 /* protocol-specific part now */
1576 if (ctx)
1577 es->ctx = *ctx;
1578 else
1579 memset(&es->ctx, 0, sizeof(es->ctx));
1580 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001581
1582 /* note: we still lock since we have to be certain that nobody is
1583 * dumping the output while we free.
1584 */
1585 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1586 if (is_back) {
1587 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1588 } else {
1589 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1590 }
1591 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001592 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1593}
1594
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001595/* Configure all proxies which lack a maxconn setting to use the global one by
1596 * default. This avoids the common mistake consisting in setting maxconn only
1597 * in the global section and discovering the hard way that it doesn't propagate
1598 * through the frontends. These values are also propagated through the various
1599 * targetted backends, whose fullconn is finally calculated if not yet set.
1600 */
1601void proxy_adjust_all_maxconn()
1602{
1603 struct proxy *curproxy;
1604 struct switching_rule *swrule1, *swrule2;
1605
1606 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1607 if (curproxy->state == PR_STSTOPPED)
1608 continue;
1609
1610 if (!(curproxy->cap & PR_CAP_FE))
1611 continue;
1612
1613 if (!curproxy->maxconn)
1614 curproxy->maxconn = global.maxconn;
1615
1616 /* update the target backend's fullconn count : default_backend */
1617 if (curproxy->defbe.be)
1618 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1619 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1620 curproxy->tot_fe_maxconn += curproxy->maxconn;
1621
1622 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1623 /* For each target of switching rules, we update their
1624 * tot_fe_maxconn, except if a previous rule points to
1625 * the same backend or to the default backend.
1626 */
1627 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001628 /* note: swrule1->be.backend isn't a backend if the rule
1629 * is dynamic, it's an expression instead, so it must not
1630 * be dereferenced as a backend before being certain it is.
1631 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001632 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1633 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001634 if (!swrule1->dynamic)
1635 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001636 break;
1637 }
1638 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1639 /* there are multiple refs of this backend */
1640 break;
1641 }
1642 }
1643 }
1644 }
1645 }
1646
1647 /* automatically compute fullconn if not set. We must not do it in the
1648 * loop above because cross-references are not yet fully resolved.
1649 */
1650 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1651 if (curproxy->state == PR_STSTOPPED)
1652 continue;
1653
1654 /* If <fullconn> is not set, let's set it to 10% of the sum of
1655 * the possible incoming frontend's maxconns.
1656 */
1657 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1658 /* we have the sum of the maxconns in <total>. We only
1659 * keep 10% of that sum to set the default fullconn, with
1660 * a hard minimum of 1 (to avoid a divide by zero).
1661 */
1662 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1663 if (!curproxy->fullconn)
1664 curproxy->fullconn = 1;
1665 }
1666 }
1667}
1668
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001669/* Config keywords below */
1670
Willy Tarreaudc13c112013-06-21 23:16:39 +02001671static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001672 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001673 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001674 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1675 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1676 { 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 +01001677 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001678 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001679 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001680 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001681 { 0, NULL, NULL },
1682}};
1683
Willy Tarreau0108d902018-11-25 19:14:37 +01001684INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1685
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001686/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1687 * adequate error messages and returns NULL. This function is designed to be used by
1688 * functions requiring a frontend on the CLI.
1689 */
1690struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1691{
1692 struct proxy *px;
1693
1694 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001695 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001696 return NULL;
1697 }
1698
1699 px = proxy_fe_by_name(arg);
1700 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001701 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001702 return NULL;
1703 }
1704 return px;
1705}
1706
Olivier Houchard614f8d72017-03-14 20:08:46 +01001707/* Expects to find a backend named <arg> and returns it, otherwise displays various
1708 * adequate error messages and returns NULL. This function is designed to be used by
1709 * functions requiring a frontend on the CLI.
1710 */
1711struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1712{
1713 struct proxy *px;
1714
1715 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001716 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001717 return NULL;
1718 }
1719
1720 px = proxy_be_by_name(arg);
1721 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001722 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001723 return NULL;
1724 }
1725 return px;
1726}
1727
1728
William Lallemanda6c5f332016-11-19 02:25:36 +01001729/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001730 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1731 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001732 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001733static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001734{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001735 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001736
1737 /* check if a backend name has been provided */
1738 if (*args[3]) {
1739 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001740 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001741
Willy Tarreau9d008692019-08-09 11:21:01 +02001742 if (!px)
1743 return cli_err(appctx, "Can't find backend.\n");
1744
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001745 appctx->ctx.cli.p0 = px;
1746 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001747 }
1748 return 0;
1749}
1750
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001751/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001752 * These information are all the parameters which may change during HAProxy runtime.
1753 * By default, we only export to the last known server state file format.
1754 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001755 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1756 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001757 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001758static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001759{
1760 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001761 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001762 struct server *srv;
1763 char srv_addr[INET6_ADDRSTRLEN + 1];
1764 time_t srv_time_since_last_change;
1765 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001766 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001767
William Lallemanda6c5f332016-11-19 02:25:36 +01001768 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001769 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001770 return 1;
1771
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001772 if (!appctx->ctx.cli.p1)
1773 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001774
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001775 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1776 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001777 srv_addr[0] = '\0';
1778
1779 switch (srv->addr.ss_family) {
1780 case AF_INET:
1781 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1782 srv_addr, INET_ADDRSTRLEN + 1);
1783 break;
1784 case AF_INET6:
1785 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1786 srv_addr, INET6_ADDRSTRLEN + 1);
1787 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001788 default:
1789 memcpy(srv_addr, "-\0", 2);
1790 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001791 }
1792 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001793 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001794 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1795
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001796 srvrecord = NULL;
1797 if (srv->srvrq && srv->srvrq->name)
1798 srvrecord = srv->srvrq->name;
1799
William Lallemanda6c5f332016-11-19 02:25:36 +01001800 chunk_appendf(buf,
1801 "%d %s "
1802 "%d %s %s "
1803 "%d %d %d %d %ld "
1804 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001805 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001806 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001807 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001808 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001809 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001810 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001811 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1812 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001813 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001814 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001815 return 0;
1816 }
1817 }
1818 return 1;
1819}
1820
1821/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001822 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1823 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001824 */
1825static int cli_io_handler_servers_state(struct appctx *appctx)
1826{
1827 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001828 struct proxy *curproxy;
1829
1830 chunk_reset(&trash);
1831
1832 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001833 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001834 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001835 appctx->st2 = STAT_ST_HEAD;
1836 }
1837
1838 if (appctx->st2 == STAT_ST_HEAD) {
1839 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001840 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001841 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001842 return 0;
1843 }
1844 appctx->st2 = STAT_ST_INFO;
1845 }
1846
1847 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001848 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1849 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001850 /* servers are only in backends */
1851 if (curproxy->cap & PR_CAP_BE) {
1852 if (!dump_servers_state(si, &trash))
1853 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001854 }
1855 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001856 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001857 break;
1858 }
1859
1860 return 1;
1861}
1862
Willy Tarreau608ea592016-12-16 18:01:15 +01001863/* Parses backend list and simply report backend names. It keeps the proxy
1864 * pointer in cli.p0.
1865 */
William Lallemand933efcd2016-11-22 12:34:16 +01001866static int cli_io_handler_show_backend(struct appctx *appctx)
1867{
William Lallemand933efcd2016-11-22 12:34:16 +01001868 struct stream_interface *si = appctx->owner;
1869 struct proxy *curproxy;
1870
1871 chunk_reset(&trash);
1872
Willy Tarreau608ea592016-12-16 18:01:15 +01001873 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001874 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001875 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001876 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001877 return 0;
1878 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001879 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001880 }
1881
Willy Tarreau608ea592016-12-16 18:01:15 +01001882 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1883 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001884
1885 /* looking for backends only */
1886 if (!(curproxy->cap & PR_CAP_BE))
1887 continue;
1888
1889 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001890 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001891 continue;
1892
1893 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001894 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001895 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001896 return 0;
1897 }
1898 }
1899
1900 return 1;
1901}
William Lallemanda6c5f332016-11-19 02:25:36 +01001902
Willy Tarreaua275a372018-08-21 14:50:44 +02001903/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1904 *
1905 * Grabs the proxy lock and each server's lock.
1906 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001907static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001908{
1909 struct proxy *px;
1910 struct server *s;
1911
1912 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1913 return 1;
1914
1915 px = cli_find_backend(appctx, args[3]);
1916 if (!px)
1917 return 1;
1918
Willy Tarreau5e83d992019-07-30 11:59:34 +02001919 /* Note: this lock is to make sure this doesn't change while another
1920 * thread is in srv_set_dyncookie().
1921 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001922 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001923 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001924 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001925
Willy Tarreaua275a372018-08-21 14:50:44 +02001926 for (s = px->srv; s != NULL; s = s->next) {
1927 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001928 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001929 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1930 }
1931
Olivier Houchard614f8d72017-03-14 20:08:46 +01001932 return 1;
1933}
1934
Willy Tarreaua275a372018-08-21 14:50:44 +02001935/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1936 *
1937 * Grabs the proxy lock and each server's lock.
1938 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001939static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001940{
1941 struct proxy *px;
1942 struct server *s;
1943
1944 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1945 return 1;
1946
1947 px = cli_find_backend(appctx, args[3]);
1948 if (!px)
1949 return 1;
1950
Willy Tarreau5e83d992019-07-30 11:59:34 +02001951 /* Note: this lock is to make sure this doesn't change while another
1952 * thread is in srv_set_dyncookie().
1953 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001954 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001955 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001956 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001957
1958 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001959 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001960 if (!(s->flags & SRV_F_COOKIESET)) {
1961 free(s->cookie);
1962 s->cookie = NULL;
1963 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001964 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001965 }
1966
1967 return 1;
1968}
1969
Willy Tarreaua275a372018-08-21 14:50:44 +02001970/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1971 *
1972 * Grabs the proxy lock and each server's lock.
1973 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001974static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001975{
1976 struct proxy *px;
1977 struct server *s;
1978 char *newkey;
1979
1980 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1981 return 1;
1982
1983 px = cli_find_backend(appctx, args[3]);
1984 if (!px)
1985 return 1;
1986
Willy Tarreau9d008692019-08-09 11:21:01 +02001987 if (!*args[4])
1988 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001989
1990 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001991 if (!newkey)
1992 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02001993
Willy Tarreau5e83d992019-07-30 11:59:34 +02001994 /* Note: this lock is to make sure this doesn't change while another
1995 * thread is in srv_set_dyncookie().
1996 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001997 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001998 free(px->dyncookie_key);
1999 px->dyncookie_key = newkey;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002000 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002001
Willy Tarreaua275a372018-08-21 14:50:44 +02002002 for (s = px->srv; s != NULL; s = s->next) {
2003 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002004 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002005 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2006 }
2007
Olivier Houchard614f8d72017-03-14 20:08:46 +01002008 return 1;
2009}
2010
Willy Tarreaua275a372018-08-21 14:50:44 +02002011/* Parses the "set maxconn frontend" directive, it always returns 1.
2012 *
2013 * Grabs the proxy lock.
2014 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002015static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002016{
2017 struct proxy *px;
2018 struct listener *l;
2019 int v;
2020
2021 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2022 return 1;
2023
2024 px = cli_find_frontend(appctx, args[3]);
2025 if (!px)
2026 return 1;
2027
Willy Tarreau9d008692019-08-09 11:21:01 +02002028 if (!*args[4])
2029 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002030
2031 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002032 if (v < 0)
2033 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002034
2035 /* OK, the value is fine, so we assign it to the proxy and to all of
2036 * its listeners. The blocked ones will be dequeued.
2037 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002038 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2039
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002040 px->maxconn = v;
2041 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002042 if (l->state == LI_FULL)
2043 resume_listener(l);
2044 }
2045
Willy Tarreau241797a2019-12-10 14:10:52 +01002046 if (px->maxconn > px->feconn)
2047 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002048
Willy Tarreaua275a372018-08-21 14:50:44 +02002049 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2050
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002051 return 1;
2052}
2053
Willy Tarreaua275a372018-08-21 14:50:44 +02002054/* Parses the "shutdown frontend" directive, it always returns 1.
2055 *
2056 * Grabs the proxy lock.
2057 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002058static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002059{
2060 struct proxy *px;
2061
2062 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2063 return 1;
2064
2065 px = cli_find_frontend(appctx, args[2]);
2066 if (!px)
2067 return 1;
2068
Willy Tarreau9d008692019-08-09 11:21:01 +02002069 if (px->state == PR_STSTOPPED)
2070 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002071
William Dauchy1e2256d2020-01-25 23:45:18 +01002072 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002073 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01002074 send_log(px, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002075 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002076
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002077 stop_proxy(px);
2078 return 1;
2079}
2080
Willy Tarreaua275a372018-08-21 14:50:44 +02002081/* Parses the "disable frontend" directive, it always returns 1.
2082 *
2083 * Grabs the proxy lock.
2084 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002085static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002086{
2087 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002088 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002089
2090 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2091 return 1;
2092
2093 px = cli_find_frontend(appctx, args[2]);
2094 if (!px)
2095 return 1;
2096
Willy Tarreau9d008692019-08-09 11:21:01 +02002097 if (px->state == PR_STSTOPPED)
2098 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002099
Willy Tarreau9d008692019-08-09 11:21:01 +02002100 if (px->state == PR_STPAUSED)
2101 return cli_msg(appctx, LOG_NOTICE, "Frontend is already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002102
Willy Tarreaua275a372018-08-21 14:50:44 +02002103 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2104 ret = pause_proxy(px);
2105 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2106
Willy Tarreau9d008692019-08-09 11:21:01 +02002107 if (!ret)
2108 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
2109
Willy Tarreau15b9e682016-11-24 11:55:28 +01002110 return 1;
2111}
2112
Willy Tarreaua275a372018-08-21 14:50:44 +02002113/* Parses the "enable frontend" directive, it always returns 1.
2114 *
2115 * Grabs the proxy lock.
2116 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002117static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002118{
2119 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002120 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002121
2122 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2123 return 1;
2124
2125 px = cli_find_frontend(appctx, args[2]);
2126 if (!px)
2127 return 1;
2128
Willy Tarreau9d008692019-08-09 11:21:01 +02002129 if (px->state == PR_STSTOPPED)
2130 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002131
Willy Tarreau9d008692019-08-09 11:21:01 +02002132 if (px->state != PR_STPAUSED)
2133 return cli_msg(appctx, LOG_NOTICE, "Frontend is already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002134
Willy Tarreaua275a372018-08-21 14:50:44 +02002135 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2136 ret = resume_proxy(px);
2137 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2138
Willy Tarreau9d008692019-08-09 11:21:01 +02002139 if (!ret)
2140 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002141 return 1;
2142}
2143
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002144/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2145 * now.
2146 */
2147static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2148{
2149 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2150 return 1;
2151
2152 if (*args[2]) {
2153 struct proxy *px;
2154
2155 px = proxy_find_by_name(args[2], 0, 0);
2156 if (px)
2157 appctx->ctx.errors.iid = px->uuid;
2158 else
2159 appctx->ctx.errors.iid = atoi(args[2]);
2160
Willy Tarreau9d008692019-08-09 11:21:01 +02002161 if (!appctx->ctx.errors.iid)
2162 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002163 }
2164 else
2165 appctx->ctx.errors.iid = -1; // dump all proxies
2166
2167 appctx->ctx.errors.flag = 0;
2168 if (strcmp(args[3], "request") == 0)
2169 appctx->ctx.errors.flag |= 4; // ignore response
2170 else if (strcmp(args[3], "response") == 0)
2171 appctx->ctx.errors.flag |= 2; // ignore request
2172 appctx->ctx.errors.px = NULL;
2173 return 0;
2174}
2175
2176/* This function dumps all captured errors onto the stream interface's
2177 * read buffer. It returns 0 if the output buffer is full and it needs
2178 * to be called again, otherwise non-zero.
2179 */
2180static int cli_io_handler_show_errors(struct appctx *appctx)
2181{
2182 struct stream_interface *si = appctx->owner;
2183 extern const char *monthname[12];
2184
2185 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2186 return 1;
2187
2188 chunk_reset(&trash);
2189
2190 if (!appctx->ctx.errors.px) {
2191 /* the function had not been called yet, let's prepare the
2192 * buffer for a response.
2193 */
2194 struct tm tm;
2195
2196 get_localtime(date.tv_sec, &tm);
2197 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2198 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2199 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2200 error_snapshot_id);
2201
Willy Tarreau36b27362018-09-07 19:55:44 +02002202 if (ci_putchk(si_ic(si), &trash) == -1)
2203 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002204
2205 appctx->ctx.errors.px = proxies_list;
2206 appctx->ctx.errors.bol = 0;
2207 appctx->ctx.errors.ptr = -1;
2208 }
2209
2210 /* we have two inner loops here, one for the proxy, the other one for
2211 * the buffer.
2212 */
2213 while (appctx->ctx.errors.px) {
2214 struct error_snapshot *es;
2215
Willy Tarreau36b27362018-09-07 19:55:44 +02002216 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2217
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002218 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002219 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002220 if (appctx->ctx.errors.flag & 2) // skip req
2221 goto next;
2222 }
2223 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002224 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002225 if (appctx->ctx.errors.flag & 4) // skip resp
2226 goto next;
2227 }
2228
Willy Tarreauc55015e2018-09-07 19:02:32 +02002229 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002230 goto next;
2231
2232 if (appctx->ctx.errors.iid >= 0 &&
2233 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002234 (!es->oe || es->oe->uuid != appctx->ctx.errors.iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002235 goto next;
2236
2237 if (appctx->ctx.errors.ptr < 0) {
2238 /* just print headers now */
2239
2240 char pn[INET6_ADDRSTRLEN];
2241 struct tm tm;
2242 int port;
2243
2244 get_localtime(es->when.tv_sec, &tm);
2245 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2246 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2247 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2248
2249 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2250 case AF_INET:
2251 case AF_INET6:
2252 port = get_host_port(&es->src);
2253 break;
2254 default:
2255 port = 0;
2256 }
2257
2258 switch (appctx->ctx.errors.flag & 1) {
2259 case 0:
2260 chunk_appendf(&trash,
2261 " frontend %s (#%d): invalid request\n"
2262 " backend %s (#%d)",
2263 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002264 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2265 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002266 break;
2267 case 1:
2268 chunk_appendf(&trash,
2269 " backend %s (#%d): invalid response\n"
2270 " frontend %s (#%d)",
2271 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002272 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002273 break;
2274 }
2275
2276 chunk_appendf(&trash,
2277 ", server %s (#%d), event #%u, src %s:%d\n"
2278 " buffer starts at %llu (including %u out), %u free,\n"
2279 " len %u, wraps at %u, error at position %u\n",
2280 es->srv ? es->srv->id : "<NONE>",
2281 es->srv ? es->srv->puid : -1,
2282 es->ev_id, pn, port,
2283 es->buf_ofs, es->buf_out,
2284 global.tune.bufsize - es->buf_out - es->buf_len,
2285 es->buf_len, es->buf_wrap, es->buf_err);
2286
2287 if (es->show)
2288 es->show(&trash, es);
2289
2290 chunk_appendf(&trash, " \n");
2291
Willy Tarreau36b27362018-09-07 19:55:44 +02002292 if (ci_putchk(si_ic(si), &trash) == -1)
2293 goto cant_send_unlock;
2294
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002295 appctx->ctx.errors.ptr = 0;
2296 appctx->ctx.errors.ev_id = es->ev_id;
2297 }
2298
2299 if (appctx->ctx.errors.ev_id != es->ev_id) {
2300 /* the snapshot changed while we were dumping it */
2301 chunk_appendf(&trash,
2302 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002303 if (ci_putchk(si_ic(si), &trash) == -1)
2304 goto cant_send_unlock;
2305
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002306 goto next;
2307 }
2308
2309 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002310 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002311 int newptr;
2312 int newline;
2313
2314 newline = appctx->ctx.errors.bol;
2315 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2316 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002317 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002318
Willy Tarreau36b27362018-09-07 19:55:44 +02002319 if (ci_putchk(si_ic(si), &trash) == -1)
2320 goto cant_send_unlock;
2321
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002322 appctx->ctx.errors.ptr = newptr;
2323 appctx->ctx.errors.bol = newline;
2324 };
2325 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002326 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002327 appctx->ctx.errors.bol = 0;
2328 appctx->ctx.errors.ptr = -1;
2329 appctx->ctx.errors.flag ^= 1;
2330 if (!(appctx->ctx.errors.flag & 1))
2331 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2332 }
2333
2334 /* dump complete */
2335 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002336
2337 cant_send_unlock:
2338 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2339 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002340 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002341 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002342}
2343
William Lallemanda6c5f332016-11-19 02:25:36 +01002344/* register cli keywords */
2345static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002346 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2347 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002348 { { "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 +01002349 { { "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 +01002350 { { "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 +01002351 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002352 { { "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 },
2353 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2354 { { "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 +02002355 { { "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 +01002356 {{},}
2357}};
2358
Willy Tarreau0108d902018-11-25 19:14:37 +01002359INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002360
2361/*
2362 * Local variables:
2363 * c-indent-level: 8
2364 * c-basic-offset: 8
2365 * End:
2366 */