blob: 18f016c83a997b0404f4a3cd977416618b1dedc1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <fcntl.h>
14#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/defaults.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020021#include <common/cfgparse.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020023#include <common/config.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010024#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010025#include <common/initcall.h>
Willy Tarreau4d2d0982007-05-14 00:39:29 +020026#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020027#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreaucfd837f2014-03-15 07:43:51 +010029#include <eb32tree.h>
30#include <ebistree.h>
31
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +020032#include <types/capture.h>
Willy Tarreau960f2cb2016-11-24 12:02:29 +010033#include <types/cli.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010035#include <types/obj_type.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020036#include <types/peers.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010037#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
William Lallemanda6c5f332016-11-19 02:25:36 +010039#include <proto/applet.h>
40#include <proto/cli.h>
Alexandre Cassen87ea5482007-10-11 20:48:58 +020041#include <proto/backend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <proto/filters.h>
Willy Tarreau51aecc72009-07-12 09:47:04 +020044#include <proto/hdr_idx.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020045#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010047#include <proto/proto_tcp.h>
Willy Tarreau39e4f622010-05-31 17:01:36 +020048#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/proxy.h>
Olivier Houchard614f8d72017-03-14 20:08:46 +010050#include <proto/server.h>
Willy Tarreaud0807c32010-08-27 18:26:11 +020051#include <proto/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020052#include <proto/stream.h>
William Lallemanda6c5f332016-11-19 02:25:36 +010053#include <proto/stream_interface.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020054#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
56
Willy Tarreau918ff602011-07-25 16:33:49 +020057int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010058struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020059struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010060struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010061unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020062
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010063/* proxy->options */
64const struct cfg_opt cfg_opts[] =
65{
66 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
67 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
68 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
69 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
70 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
71 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
72 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
73 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
74 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
75 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
76 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
77 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
78 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
79 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
80#ifdef TPROXY
81 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
82#else
83 { "transparent", 0, 0, 0, 0 },
84#endif
85
86 { NULL, 0, 0, 0, 0 }
87};
88
89/* proxy->options2 */
90const struct cfg_opt cfg_opts2[] =
91{
92#ifdef CONFIG_HAP_LINUX_SPLICE
93 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
94 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
95 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
96#else
97 { "splice-request", 0, 0, 0, 0 },
98 { "splice-response", 0, 0, 0, 0 },
99 { "splice-auto", 0, 0, 0, 0 },
100#endif
101 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
102 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
103 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
104 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
105 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
106 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
107 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
108 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
109 { "independant-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
110 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
111 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
112 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
113 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Fauleteb709802019-04-11 22:04:08 +0200114 { "http-use-htx", PR_O2_USE_HTX, PR_CAP_FE|PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100115 { NULL, 0, 0, 0 }
116};
117
Willy Tarreau977b8e42006-12-29 14:19:17 +0100118/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100119 * This function returns a string containing a name describing capabilities to
120 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200121 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100122 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100123 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100124const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100125{
Willy Tarreau816eb542007-11-04 07:04:43 +0100126 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
127 if (cap & PR_CAP_FE)
128 return "frontend";
129 else if (cap & PR_CAP_BE)
130 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100131 }
132 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100133}
134
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100135/*
136 * This function returns a string containing the mode of the proxy in a format
137 * suitable for error messages.
138 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100139const char *proxy_mode_str(int mode) {
140
141 if (mode == PR_MODE_TCP)
142 return "tcp";
143 else if (mode == PR_MODE_HTTP)
144 return "http";
145 else if (mode == PR_MODE_HEALTH)
146 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200147 else if (mode == PR_MODE_CLI)
148 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100149 else
150 return "unknown";
151}
152
Willy Tarreauf3950172009-10-10 18:35:51 +0200153/*
154 * This function scans the list of backends and servers to retrieve the first
155 * backend and the first server with the given names, and sets them in both
156 * parameters. It returns zero if either is not found, or non-zero and sets
157 * the ones it did not found to NULL. If a NULL pointer is passed for the
158 * backend, only the pointer to the server will be updated.
159 */
160int get_backend_server(const char *bk_name, const char *sv_name,
161 struct proxy **bk, struct server **sv)
162{
163 struct proxy *p;
164 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100165 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200166
167 *sv = NULL;
168
Willy Tarreau050536d2012-10-04 08:47:34 +0200169 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200170 if (*sv_name == '#')
171 sid = atoi(sv_name + 1);
172
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200173 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200174 if (bk)
175 *bk = p;
176 if (!p)
177 return 0;
178
179 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100180 if ((sid >= 0 && s->puid == sid) ||
181 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200182 break;
183 *sv = s;
184 if (!s)
185 return 0;
186 return 1;
187}
188
Willy Tarreaue219db72007-12-03 01:30:13 +0100189/* This function parses a "timeout" statement in a proxy section. It returns
190 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200191 * return zero, it will write an error or warning message into a preallocated
192 * buffer returned at <err>. The trailing is not be written. The function must
193 * be called with <args> pointing to the first command line word, with <proxy>
194 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
195 * As a special case for compatibility with older configs, it also accepts
196 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100197 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200198static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200199 struct proxy *defpx, const char *file, int line,
200 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100201{
202 unsigned timeout;
203 int retval, cap;
204 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200205 int *tv = NULL;
206 int *td = NULL;
Willy Tarreaued446492014-04-28 22:56:38 +0200207 int warn = 0;
Willy Tarreaue219db72007-12-03 01:30:13 +0100208
209 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200210
211 /* simply skip "timeout" but remain compatible with old form */
212 if (strcmp(args[0], "timeout") == 0)
213 args++;
214
Willy Tarreaue219db72007-12-03 01:30:13 +0100215 name = args[0];
Willy Tarreaued446492014-04-28 22:56:38 +0200216 if (!strcmp(args[0], "client") || (!strcmp(args[0], "clitimeout") && (warn = WARN_CLITO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100217 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100218 tv = &proxy->timeout.client;
219 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100220 cap = PR_CAP_FE;
221 } else if (!strcmp(args[0], "tarpit")) {
222 tv = &proxy->timeout.tarpit;
223 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100224 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100225 } else if (!strcmp(args[0], "http-keep-alive")) {
226 tv = &proxy->timeout.httpka;
227 td = &defpx->timeout.httpka;
228 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100229 } else if (!strcmp(args[0], "http-request")) {
230 tv = &proxy->timeout.httpreq;
231 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200232 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200233 } else if (!strcmp(args[0], "server") || (!strcmp(args[0], "srvtimeout") && (warn = WARN_SRVTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100234 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100235 tv = &proxy->timeout.server;
236 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100237 cap = PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200238 } else if (!strcmp(args[0], "connect") || (!strcmp(args[0], "contimeout") && (warn = WARN_CONTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100239 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100240 tv = &proxy->timeout.connect;
241 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100242 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100243 } else if (!strcmp(args[0], "check")) {
244 tv = &proxy->timeout.check;
245 td = &defpx->timeout.check;
246 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100247 } else if (!strcmp(args[0], "queue")) {
248 tv = &proxy->timeout.queue;
249 td = &defpx->timeout.queue;
250 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200251 } else if (!strcmp(args[0], "tunnel")) {
252 tv = &proxy->timeout.tunnel;
253 td = &defpx->timeout.tunnel;
254 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200255 } else if (!strcmp(args[0], "client-fin")) {
256 tv = &proxy->timeout.clientfin;
257 td = &defpx->timeout.clientfin;
258 cap = PR_CAP_FE;
259 } else if (!strcmp(args[0], "server-fin")) {
260 tv = &proxy->timeout.serverfin;
261 td = &defpx->timeout.serverfin;
262 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100263 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200264 memprintf(err,
265 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200266 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
267 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200268 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100269 return -1;
270 }
271
272 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200273 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100274 return -1;
275 }
276
277 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
278 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200279 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100280 return -1;
281 }
282
283 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200284 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
285 name, proxy_type_str(proxy), proxy->id,
286 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100287 retval = 1;
288 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200289 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200290 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100291 retval = 1;
292 }
Willy Tarreaued446492014-04-28 22:56:38 +0200293 else if (warn) {
294 if (!already_warned(warn)) {
295 memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.",
296 args[0], name);
297 retval = 1;
298 }
299 }
Willy Tarreaue219db72007-12-03 01:30:13 +0100300
Willy Tarreaufac5b592014-05-22 08:24:46 +0200301 if (*args[2] != 0) {
302 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
303 retval = -1;
304 }
305
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200306 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100307 return retval;
308}
309
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100310/* This function parses a "rate-limit" statement in a proxy section. It returns
311 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200312 * return zero, it will write an error or warning message into a preallocated
313 * buffer returned at <err>. The function must be called with <args> pointing
314 * to the first command line word, with <proxy> pointing to the proxy being
315 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100316 */
317static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200318 struct proxy *defpx, const char *file, int line,
319 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100320{
321 int retval, cap;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200322 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100323 unsigned int *tv = NULL;
324 unsigned int *td = NULL;
325 unsigned int val;
326
327 retval = 0;
328
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200329 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200330 tv = &proxy->fe_sps_lim;
331 td = &defpx->fe_sps_lim;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100332 cap = PR_CAP_FE;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200333 }
334 else {
335 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100336 return -1;
337 }
338
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200339 if (*args[2] == 0) {
340 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100341 return -1;
342 }
343
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200344 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100345 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200346 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 +0100347 return -1;
348 }
349
350 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability",
352 args[0], args[1], proxy_type_str(proxy), proxy->id,
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100353 (cap & PR_CAP_BE) ? "backend" : "frontend");
354 retval = 1;
355 }
356 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200357 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100358 retval = 1;
359 }
360
361 *tv = val;
362 return retval;
363}
364
Willy Tarreauc35362a2014-04-25 13:58:37 +0200365/* This function parses a "max-keep-alive-queue" statement in a proxy section.
366 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
367 * does not return zero, it will write an error or warning message into a
368 * preallocated buffer returned at <err>. The function must be called with
369 * <args> pointing to the first command line word, with <proxy> pointing to
370 * the proxy being parsed, and <defpx> to the default proxy or NULL.
371 */
372static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
373 struct proxy *defpx, const char *file, int line,
374 char **err)
375{
376 int retval;
377 char *res;
378 unsigned int val;
379
380 retval = 0;
381
382 if (*args[1] == 0) {
383 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
384 return -1;
385 }
386
387 val = strtol(args[1], &res, 0);
388 if (*res) {
389 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
390 return -1;
391 }
392
393 if (!(proxy->cap & PR_CAP_BE)) {
394 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
395 args[0], proxy_type_str(proxy), proxy->id);
396 retval = 1;
397 }
398
399 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
400 proxy->max_ka_queue = val + 1;
401 return retval;
402}
403
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200404/* This function parses a "declare" statement in a proxy section. It returns -1
405 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
406 * it will write an error or warning message into a preallocated buffer returned
407 * at <err>. The function must be called with <args> pointing to the first command
408 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
409 * default proxy or NULL.
410 */
411static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
412 struct proxy *defpx, const char *file, int line,
413 char **err)
414{
415 /* Capture keyword wannot be declared in a default proxy. */
416 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800417 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200418 return -1;
419 }
420
Joseph Herlant59dd2952018-11-15 11:46:55 -0800421 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200422 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800423 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200424 return -1;
425 }
426
427 /* Check mandatory second keyword. */
428 if (!args[1] || !*args[1]) {
429 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
430 return -1;
431 }
432
Joseph Herlant59dd2952018-11-15 11:46:55 -0800433 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200434 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800435 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200436 * the second keyword.
437 */
438 if (strcmp(args[1], "capture") == 0) {
439 char *error = NULL;
440 long len;
441 struct cap_hdr *hdr;
442
443 /* Check the next keyword. */
444 if (!args[2] || !*args[2] ||
445 (strcmp(args[2], "response") != 0 &&
446 strcmp(args[2], "request") != 0)) {
447 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
448 return -1;
449 }
450
451 /* Check the 'len' keyword. */
452 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
453 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
454 return -1;
455 }
456
457 /* Check the length value. */
458 if (!args[4] || !*args[4]) {
459 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
460 "capture length",
461 args[0], args[1]);
462 return -1;
463 }
464
465 /* convert the length value. */
466 len = strtol(args[4], &error, 10);
467 if (*error != '\0') {
468 memprintf(err, "'%s %s': cannot parse the length '%s'.",
469 args[0], args[1], args[3]);
470 return -1;
471 }
472
473 /* check length. */
474 if (len <= 0) {
475 memprintf(err, "length must be > 0");
476 return -1;
477 }
478
479 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200480 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200481 hdr->name = NULL; /* not a header capture */
482 hdr->namelen = 0;
483 hdr->len = len;
484 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
485
486 if (strcmp(args[2], "request") == 0) {
487 hdr->next = curpx->req_cap;
488 hdr->index = curpx->nb_req_cap++;
489 curpx->req_cap = hdr;
490 }
491 if (strcmp(args[2], "response") == 0) {
492 hdr->next = curpx->rsp_cap;
493 hdr->index = curpx->nb_rsp_cap++;
494 curpx->rsp_cap = hdr;
495 }
496 return 0;
497 }
498 else {
499 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
500 return -1;
501 }
502}
503
Olivier Houcharda254a372019-04-05 15:30:12 +0200504/* This function parses a "retry-on" statement */
505static int
506proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
507 struct proxy *defpx, const char *file, int line,
508 char **err)
509{
510 int i;
511
512 if (!(*args[1])) {
513 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
514 return -1;
515 }
516 if (!(curpx->cap & PR_CAP_BE)) {
517 memprintf(err, "'%s' only available in backend or listen section", args[0]);
518 return -1;
519 }
520 curpx->retry_type = 0;
521 for (i = 1; *(args[i]); i++) {
522 if (!strcmp(args[i], "conn-failure"))
523 curpx->retry_type |= PR_RE_CONN_FAILED;
524 else if (!strcmp(args[i], "empty-response"))
525 curpx->retry_type |= PR_RE_DISCONNECTED;
526 else if (!strcmp(args[i], "response-timeout"))
527 curpx->retry_type |= PR_RE_TIMEOUT;
528 else if (!strcmp(args[i], "404"))
529 curpx->retry_type |= PR_RE_404;
530 else if (!strcmp(args[i], "408"))
531 curpx->retry_type |= PR_RE_408;
532 else if (!strcmp(args[i], "425"))
533 curpx->retry_type |= PR_RE_425;
534 else if (!strcmp(args[i], "500"))
535 curpx->retry_type |= PR_RE_500;
536 else if (!strcmp(args[i], "501"))
537 curpx->retry_type |= PR_RE_501;
538 else if (!strcmp(args[i], "502"))
539 curpx->retry_type |= PR_RE_502;
540 else if (!strcmp(args[i], "503"))
541 curpx->retry_type |= PR_RE_503;
542 else if (!strcmp(args[i], "504"))
543 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200544 else if (!strcmp(args[i], "0rtt-rejected"))
545 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200546 else if (!strcmp(args[i], "junk-response"))
547 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200548 else if (!strcmp(args[i], "none")) {
549 if (i != 1 || *args[i + 1]) {
550 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
551 return -1;
552 }
553 } else {
554 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
555 return -1;
556 }
557
558 }
559
560
561 return 0;
562}
563
Willy Tarreauf79d9502014-03-15 07:22:35 +0100564/* This function inserts proxy <px> into the tree of known proxies. The proxy's
565 * name is used as the storing key so it must already have been initialized.
566 */
567void proxy_store_name(struct proxy *px)
568{
569 px->conf.by_name.key = px->id;
570 ebis_insert(&proxy_by_name, &px->conf.by_name);
571}
572
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200573/* Returns a pointer to the first proxy matching capabilities <cap> and id
574 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
575 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200576 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200577struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200578{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200579 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200580
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200581 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
582 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100583
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200584 if (px->uuid != id)
585 break;
Alex Williams96532db2009-11-01 21:27:13 -0500586
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200587 if ((px->cap & cap) != cap)
588 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500589
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200590 if (table && !px->table.size)
591 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100592
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200593 return px;
594 }
595 return NULL;
596}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100597
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200598/* Returns a pointer to the first proxy matching either name <name>, or id
599 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
600 * If <table> is non-zero, it only considers proxies having a table.
601 */
602struct proxy *proxy_find_by_name(const char *name, int cap, int table)
603{
604 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200605
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200606 if (*name == '#') {
607 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
608 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200609 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500610 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100611 else {
612 struct ebpt_node *node;
613
614 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
615 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500616
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100617 if (strcmp(curproxy->id, name) != 0)
618 break;
619
620 if ((curproxy->cap & cap) != cap)
621 continue;
622
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200623 if (table && !curproxy->table.size)
624 continue;
625
Willy Tarreauc739aa82015-05-26 11:35:41 +0200626 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100627 }
628 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200629 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500630}
631
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200632/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
633 * <id>. At most one of <id> or <name> may be different provided that <cap> is
634 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
635 * find a proxy based on some information from a previous configuration, across
636 * reloads or during information exchange between peers.
637 *
638 * Names are looked up first if present, then IDs are compared if present. In
639 * case of an inexact match whatever is forced in the configuration has
640 * precedence in the following order :
641 * - 1) forced ID (proves a renaming / change of proxy type)
642 * - 2) proxy name+type (may indicate a move if ID differs)
643 * - 3) automatic ID+type (may indicate a renaming)
644 *
645 * Depending on what is found, we can end up in the following situations :
646 *
647 * name id cap | possible causes
648 * -------------+-----------------
649 * -- -- -- | nothing found
650 * -- -- ok | nothing found
651 * -- ok -- | proxy deleted, ID points to next one
652 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
653 * ok -- -- | proxy deleted, but other half with same name still here (before)
654 * ok -- ok | proxy's ID changed (proxy moved in the config file)
655 * ok ok -- | proxy deleted, but other half with same name still here (after)
656 * ok ok ok | perfect match
657 *
658 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200659 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
660 * (and ID was not zero)
661 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
662 * (and name was not NULL)
663 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
664 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200665 *
666 * Only a valid proxy is returned. If capabilities do not match, NULL is
667 * returned. The caller can check <diff> to report detailed warnings / errors,
668 * and decide whether or not to use what was found.
669 */
670struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
671{
672 struct proxy *byname;
673 struct proxy *byid;
674
675 if (!name && !id)
676 return NULL;
677
678 if (diff)
679 *diff = 0;
680
681 byname = byid = NULL;
682
683 if (name) {
684 byname = proxy_find_by_name(name, cap, 0);
685 if (byname && (!id || byname->uuid == id))
686 return byname;
687 }
688
Joseph Herlant59dd2952018-11-15 11:46:55 -0800689 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200690 * - name not set
691 * - name set but not found
692 * - name found, but ID doesn't match.
693 */
694 if (id) {
695 byid = proxy_find_by_id(id, cap, 0);
696 if (byid) {
697 if (byname) {
698 /* id+type found, name+type found, but not all 3.
699 * ID wins only if forced, otherwise name wins.
700 */
701 if (byid->options & PR_O_FORCED_ID) {
702 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200703 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200704 return byid;
705 }
706 else {
707 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200708 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200709 return byname;
710 }
711 }
712
Joseph Herlant59dd2952018-11-15 11:46:55 -0800713 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200714 * - name not set
715 * - name set but not found
716 */
717 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200718 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200719 return byid;
720 }
721
722 /* ID not found */
723 if (byname) {
724 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200725 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200726 return byname;
727 }
728 }
729
Joseph Herlant59dd2952018-11-15 11:46:55 -0800730 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200731 * detailed information to the caller about changed types and/or name,
732 * we'll do it. For example, we could detect that "listen foo" was
733 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
734 * - name not set, ID not found
735 * - name not found, ID not set
736 * - name not found, ID not found
737 */
738 if (!diff)
739 return NULL;
740
741 if (name) {
742 byname = proxy_find_by_name(name, 0, 0);
743 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200744 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200745 }
746
747 if (id) {
748 byid = proxy_find_by_id(id, 0, 0);
749 if (byid) {
750 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200751 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200752 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200753 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200754 /* otherwise it's a different proxy that was returned */
755 }
756 }
757 return NULL;
758}
759
Willy Tarreaubaaee002006-06-26 02:48:02 +0200760/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100761 * This function finds a server with matching name within selected proxy.
762 * It also checks if there are more matching servers with
763 * requested name as this often leads into unexpected situations.
764 */
765
766struct server *findserver(const struct proxy *px, const char *name) {
767
768 struct server *cursrv, *target = NULL;
769
770 if (!px)
771 return NULL;
772
773 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
774 if (strcmp(cursrv->id, name))
775 continue;
776
777 if (!target) {
778 target = cursrv;
779 continue;
780 }
781
Christopher Faulet767a84b2017-11-24 16:50:31 +0100782 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
783 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100784
785 return NULL;
786 }
787
788 return target;
789}
790
Willy Tarreauff01a212009-03-15 13:46:16 +0100791/* This function checks that the designated proxy has no http directives
792 * enabled. It will output a warning if there are, and will fix some of them.
793 * It returns the number of fatal errors encountered. This should be called
794 * at the end of the configuration parsing if the proxy is not in http mode.
795 * The <file> argument is used to construct the error message.
796 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200797int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100798{
799 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100800 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
801 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100802 }
803 if (curproxy->rsp_exp != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100804 ha_warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
805 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100806 }
807 if (curproxy->req_exp != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100808 ha_warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
809 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100810 }
811 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100812 ha_warning("config : monitor-uri 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 Tarreauf3e49f92009-10-03 12:21:20 +0200815 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100816 curproxy->lbprm.algo &= ~BE_LB_ALGO;
817 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100818 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
819 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100820 }
Willy Tarreau17804162009-11-09 21:27:51 +0100821 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
822 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100823 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
824 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
825 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100826 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200827 if (curproxy->conf.logformat_string == default_http_log_format ||
828 curproxy->conf.logformat_string == clf_http_log_format) {
829 /* Note: we don't change the directive's file:line number */
830 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100831 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
832 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
833 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200834 }
835
Willy Tarreauff01a212009-03-15 13:46:16 +0100836 return 0;
837}
838
Willy Tarreau237250c2011-07-29 01:49:03 +0200839/* Perform the most basic initialization of a proxy :
840 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200841 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200842 */
843void init_new_proxy(struct proxy *p)
844{
845 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100846 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400847 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200848 LIST_INIT(&p->acl);
849 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200850 LIST_INIT(&p->http_res_rules);
Willy Tarreau353bc9f2014-04-28 22:05:31 +0200851 LIST_INIT(&p->block_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200852 LIST_INIT(&p->redirect_rules);
853 LIST_INIT(&p->mon_fail_cond);
854 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200855 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200856 LIST_INIT(&p->persist_rules);
857 LIST_INIT(&p->sticking_rules);
858 LIST_INIT(&p->storersp_rules);
859 LIST_INIT(&p->tcp_req.inspect_rules);
860 LIST_INIT(&p->tcp_rep.inspect_rules);
861 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200862 LIST_INIT(&p->tcp_req.l5_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200863 LIST_INIT(&p->req_add);
864 LIST_INIT(&p->rsp_add);
865 LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200866 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100867 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200868 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100869 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200870 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200871 LIST_INIT(&p->conf.listeners);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200872 LIST_INIT(&p->conf.args.list);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200873 LIST_INIT(&p->tcpcheck_rules);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100874 LIST_INIT(&p->filter_configs);
Willy Tarreau237250c2011-07-29 01:49:03 +0200875
876 /* Timeouts are defined as -1 */
877 proxy_reset_timeouts(p);
878 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200879
880 /* initial uuid is unassigned (-1) */
881 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200882
Christopher Faulet1d2b5862019-04-12 16:10:51 +0200883 /* HTX is the default mode, for HTTP and TCP */
884 p->options2 |= PR_O2_USE_HTX;
885
Olivier Houcharda254a372019-04-05 15:30:12 +0200886 /* Default to only allow L4 retries */
887 p->retry_type = PR_RE_CONN_FAILED;
888
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100889 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200890}
891
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100892/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200893 * This function creates all proxy sockets. It should be done very early,
894 * typically before privileges are dropped. The sockets will be registered
895 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200896 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200897 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200898 *
899 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
900 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200901 */
902int start_proxies(int verbose)
903{
904 struct proxy *curproxy;
905 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100906 int lerr, err = ERR_NONE;
907 int pxerr;
908 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100910 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 if (curproxy->state != PR_STNEW)
912 continue; /* already initialized */
913
914 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200915 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100916 if (listener->state != LI_ASSIGNED)
917 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918
Emeric Bruncf20bf12010-10-22 16:06:11 +0200919 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920
Willy Tarreaue6b98942007-10-29 01:09:36 +0100921 /* errors are reported if <verbose> is set or if they are fatal */
922 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
923 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100924 ha_alert("Starting %s %s: %s\n",
925 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100926 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100927 ha_warning("Starting %s %s: %s\n",
928 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929 }
930
Willy Tarreaue6b98942007-10-29 01:09:36 +0100931 err |= lerr;
932 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100934 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100936 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 pxerr |= 1;
938 continue;
939 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940 }
941
942 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200943 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
945 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100946
947 if (err & ERR_ABORT)
948 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949 }
950
951 return err;
952}
953
954
955/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200956 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200957 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200958 * called as a task which is woken up upon stopping or when rate limiting must
959 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200961struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200963 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200964 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100965 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966
Willy Tarreau918ff602011-07-25 16:33:49 +0200967 /* We should periodically try to enable listeners waiting for a
968 * global resource here.
969 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970
Willy Tarreau918ff602011-07-25 16:33:49 +0200971 /* first, let's check if we need to stop the proxy */
972 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
973 int t;
974 t = tick_remain(now_ms, p->stop_time);
975 if (t == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100976 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
977 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau918ff602011-07-25 16:33:49 +0200978 send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
979 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
980 stop_proxy(p);
981 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100982 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200983 }
984 else {
985 next = tick_first(next, p->stop_time);
986 }
987 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200988
Willy Tarreau3a925c12013-09-04 17:54:01 +0200989 /* If the proxy holds a stick table, we need to purge all unused
990 * entries. These are all the ones in the table with ref_cnt == 0
991 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200992 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200993 * be in neither list. Any entry being dumped will have ref_cnt > 0.
994 * However we protect tables that are being synced to peers.
995 */
996 if (unlikely(stopping && p->state == PR_STSTOPPED && 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 }
1001 if (p->table.current) {
1002 /* some entries still remain, let's recheck in one second */
1003 next = tick_first(next, tick_add(now_ms, 1000));
1004 }
1005 }
1006
Willy Tarreau918ff602011-07-25 16:33:49 +02001007 /* the rest below is just for frontends */
1008 if (!(p->cap & PR_CAP_FE))
1009 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001010
Willy Tarreau918ff602011-07-25 16:33:49 +02001011 /* check the various reasons we may find to block the frontend */
1012 if (unlikely(p->feconn >= p->maxconn)) {
1013 if (p->state == PR_STREADY)
1014 p->state = PR_STFULL;
1015 goto out;
1016 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001017
Willy Tarreau918ff602011-07-25 16:33:49 +02001018 /* OK we have no reason to block, so let's unblock if we were blocking */
1019 if (p->state == PR_STFULL)
1020 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001021
Willy Tarreau918ff602011-07-25 16:33:49 +02001022 if (p->fe_sps_lim &&
1023 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1024 /* we're blocking because a limit was reached on the number of
1025 * requests/s on the frontend. We want to re-check ASAP, which
1026 * means in 1 ms before estimated expiration date, because the
1027 * timer will have settled down.
1028 */
1029 next = tick_first(next, tick_add(now_ms, wait));
1030 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001031 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001032
1033 /* The proxy is not limited so we can re-enable any waiting listener */
1034 if (!LIST_ISEMPTY(&p->listener_queue))
1035 dequeue_all_listeners(&p->listener_queue);
1036 out:
1037 t->expire = next;
1038 task_queue(t);
1039 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001040}
1041
1042
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001043static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1044 struct proxy *defpx, const char *file, int line,
1045 char **err)
1046{
1047 const char *res;
1048
1049 if (!*args[1]) {
1050 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1051 return -1;
1052 }
1053 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
1054 if (res) {
1055 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1056 return -1;
1057 }
1058 return 0;
1059}
1060
Olivier Houchard9f6af332018-05-25 14:04:04 +02001061struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001062{
1063 struct proxy *p;
1064 struct stream *s;
1065
1066 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001067 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001068 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Joseph Herlant59dd2952018-11-15 11:46:55 -08001069 /* Do some cleanup and explicitly quit */
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001070 deinit();
1071 exit(0);
1072 }
1073
Christopher Faulet767a84b2017-11-24 16:50:31 +01001074 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001075 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001076 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001077 while (p) {
1078 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001079 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1080 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001081 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1082 p->id, p->feconn);
1083 }
1084 p = p->next;
1085 }
1086 list_for_each_entry(s, &streams, list) {
1087 stream_shutdown(s, SF_ERR_KILLED);
1088 }
1089
1090 killed = 1;
1091 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1092 return t;
1093}
1094
Willy Tarreaubaaee002006-06-26 02:48:02 +02001095/*
1096 * this function disables health-check servers so that the process will quickly be ignored
1097 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1098 * time will not be used since it would already not listen anymore to the socket.
1099 */
1100void soft_stop(void)
1101{
1102 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001103 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001104 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001105
1106 stopping = 1;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001107 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001108 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001109 if (task) {
1110 task->process = hard_stop;
1111 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1112 }
1113 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001114 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001115 }
1116 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001117 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001118 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001119 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001120 /* Zombie proxy, let's close the file descriptors */
1121 if (p->state == PR_STSTOPPED &&
1122 !LIST_ISEMPTY(&p->conf.listeners) &&
1123 LIST_ELEM(p->conf.listeners.n,
1124 struct listener *, by_fe)->state >= LI_ZOMBIE) {
1125 struct listener *l;
1126 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1127 if (l->state >= LI_ZOMBIE)
1128 close(l->fd);
1129 l->state = LI_INIT;
1130 }
1131 }
1132
Willy Tarreaubaaee002006-06-26 02:48:02 +02001133 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001134 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 +02001135 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 +02001136 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001137
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001138 /* Note: do not wake up stopped proxies' task nor their tables'
1139 * tasks as these ones might point to already released entries.
1140 */
1141 if (p->table.size && p->table.sync_task)
1142 task_wakeup(p->table.sync_task, TASK_WOKEN_MSG);
1143
1144 if (p->task)
1145 task_wakeup(p->task, TASK_WOKEN_MSG);
1146 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001147 p = p->next;
1148 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001149
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001150 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001151 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001152 if (prs->peers_fe)
1153 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001154 prs = prs->next;
1155 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001156 /* signal zero is used to broadcast the "stopping" event */
1157 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001158}
1159
1160
Willy Tarreaube58c382011-07-24 18:28:10 +02001161/* Temporarily disables listening on all of the proxy's listeners. Upon
1162 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1163 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001164 * because we don't know how to resume from this. The function returns 0
1165 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001166 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001167int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168{
1169 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001170
1171 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1172 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1173 return 1;
1174
Christopher Faulet767a84b2017-11-24 16:50:31 +01001175 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001176 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1177
Willy Tarreau4348fad2012-09-20 16:48:07 +02001178 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001179 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001180 p->state = PR_STERROR;
1181 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001182
1183 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001184 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001185 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1186 return 0;
1187 }
1188
1189 p->state = PR_STPAUSED;
1190 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001191}
1192
Olivier Houchard1fc05162017-04-06 01:05:05 +02001193/* This function makes the proxy unusable, but keeps the listening sockets
1194 * opened, so that if any process requests them, we are able to serve them.
1195 * This should only be called early, before we started accepting requests.
1196 */
1197void zombify_proxy(struct proxy *p)
1198{
1199 struct listener *l;
1200 struct listener *first_to_listen = NULL;
1201
1202 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1203 enum li_state oldstate = l->state;
1204
1205 unbind_listener_no_close(l);
1206 if (l->state >= LI_ASSIGNED) {
1207 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001208 }
1209 /*
1210 * Pretend we're still up and running so that the fd
1211 * will be sent if asked.
1212 */
1213 l->state = LI_ZOMBIE;
1214 if (!first_to_listen && oldstate >= LI_LISTEN)
1215 first_to_listen = l;
1216 }
1217 /* Quick hack : at stop time, to know we have to close the sockets
1218 * despite the proxy being marked as stopped, make the first listener
1219 * of the listener list an active one, so that we don't have to
1220 * parse the whole list to be sure.
1221 */
1222 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1223 struct listener *, by_fe) != first_to_listen) {
1224 LIST_DEL(&l->by_fe);
1225 LIST_ADD(&p->conf.listeners, &l->by_fe);
1226 }
1227
1228 p->state = PR_STSTOPPED;
1229}
Willy Tarreauda250db2008-10-12 12:07:48 +02001230
1231/*
1232 * This function completely stops a proxy and releases its listeners. It has
1233 * to be called when going down in order to release the ports so that another
1234 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001235 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreauda250db2008-10-12 12:07:48 +02001236 * PR_STSTOPPED state.
1237 */
1238void stop_proxy(struct proxy *p)
1239{
1240 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001241 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001242
Willy Tarreau4348fad2012-09-20 16:48:07 +02001243 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001244 if (l->options & LI_O_NOSTOP) {
1245 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1246 nostop = 1;
1247 continue;
1248 }
Willy Tarreauda250db2008-10-12 12:07:48 +02001249 unbind_listener(l);
1250 if (l->state >= LI_ASSIGNED) {
1251 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001252 }
1253 }
William Lallemandc59f9882018-11-16 16:57:21 +01001254 if (!nostop)
1255 p->state = PR_STSTOPPED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001256}
1257
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001258/* This function resumes listening on the specified proxy. It scans all of its
1259 * listeners and tries to enable them all. If any of them fails, the proxy is
1260 * put back to the paused state. It returns 1 upon success, or zero if an error
1261 * is encountered.
1262 */
1263int resume_proxy(struct proxy *p)
1264{
1265 struct listener *l;
1266 int fail;
1267
1268 if (p->state != PR_STPAUSED)
1269 return 1;
1270
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001272 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1273
1274 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001275 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001276 if (!resume_listener(l)) {
1277 int port;
1278
1279 port = get_host_port(&l->addr);
1280 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001281 ha_warning("Port %d busy while trying to enable %s %s.\n",
1282 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001283 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1284 port, proxy_cap_str(p->cap), p->id);
1285 }
1286 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001287 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1288 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001289 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1290 l->luid, proxy_cap_str(p->cap), p->id);
1291 }
1292
1293 /* Another port might have been enabled. Let's stop everything. */
1294 fail = 1;
1295 break;
1296 }
1297 }
1298
1299 p->state = PR_STREADY;
1300 if (fail) {
1301 pause_proxy(p);
1302 return 0;
1303 }
1304 return 1;
1305}
1306
Willy Tarreaubaaee002006-06-26 02:48:02 +02001307/*
1308 * This function temporarily disables listening so that another new instance
1309 * can start listening. It is designed to be called upon reception of a
1310 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1311 * the proxy, or a SIGTTIN can be sent to listen again.
1312 */
1313void pause_proxies(void)
1314{
1315 int err;
1316 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001317 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001318
1319 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001320 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001321 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001323 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001324 p = p->next;
1325 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001326
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001327 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001328 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001329 if (prs->peers_fe)
1330 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001331 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001332 }
1333
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001335 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001336 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1337 soft_stop();
1338 }
1339}
1340
1341
1342/*
1343 * This function reactivates listening. This can be used after a call to
1344 * sig_pause(), for example when a new instance has failed starting up.
1345 * It is designed to be called upon reception of a SIGTTIN.
1346 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001347void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001348{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001349 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001350 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001351 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001352
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001353 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001354 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001355 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001356 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001357 err |= !resume_proxy(p);
1358 p = p->next;
1359 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001360
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001361 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001362 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001363 if (prs->peers_fe)
1364 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001365 prs = prs->next;
1366 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001367
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001368 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001369 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001370 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 +02001371 }
1372}
1373
Willy Tarreau87b09662015-04-03 00:22:06 +02001374/* Set current stream's backend to <be>. Nothing is done if the
1375 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001376 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001377 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001378 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001379 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001380int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001381{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001382 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001383 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001384
1385 if (flt_set_stream_backend(s, be) < 0)
1386 return 0;
1387
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001388 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001389 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1390 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001391 proxy_inc_be_ctr(be);
1392
Willy Tarreau3e451842019-02-01 15:06:09 +01001393 /* HTX/legacy must match */
Christopher Fauletbbe68542019-04-08 10:53:51 +02001394 if ((strm_fe(s)->options2 ^ be->options2) & PR_O2_USE_HTX)
Willy Tarreau3e451842019-02-01 15:06:09 +01001395 return 0;
1396
Willy Tarreau87b09662015-04-03 00:22:06 +02001397 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001398 s->si[1].flags &= ~SI_FL_INDEP_STR;
1399 if (be->options2 & PR_O2_INDEPSTR)
1400 s->si[1].flags |= SI_FL_INDEP_STR;
1401
Hongbo Longe39683c2017-03-10 18:41:51 +01001402 if (tick_isset(be->timeout.serverfin))
1403 s->si[1].hcto = be->timeout.serverfin;
1404
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001405 /* We want to enable the backend-specific analysers except those which
1406 * were already run as part of the frontend/listener. Note that it would
1407 * be more reliable to store the list of analysers that have been run,
1408 * but what we do here is OK for now.
1409 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001410 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001411
Willy Tarreau51aecc72009-07-12 09:47:04 +02001412 /* If the target backend requires HTTP processing, we have to allocate
Willy Tarreaueee5b512015-04-03 23:46:31 +02001413 * the HTTP transaction and hdr_idx if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001414 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001415 if (unlikely(!s->txn && be->http_needed)) {
1416 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001417 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001418
1419 /* and now initialize the HTTP transaction state */
1420 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001421 }
1422
Christopher Faulet309c6412015-12-02 09:57:32 +01001423 /* Be sure to filter request headers if the backend is an HTTP proxy and
1424 * if there are filters attached to the stream. */
1425 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001426 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001427
Willy Tarreaueee5b512015-04-03 23:46:31 +02001428 if (s->txn) {
1429 if (be->options2 & PR_O2_RSPBUG_OK)
1430 s->txn->rsp.err_pos = -1; /* let buggy responses pass */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001431
Willy Tarreaueee5b512015-04-03 23:46:31 +02001432 /* If we chain to an HTTP backend running a different HTTP mode, we
1433 * have to re-adjust the desired keep-alive/close mode to accommodate
1434 * both the frontend's and the backend's modes.
1435 */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001436 if (strm_fe(s)->mode == PR_MODE_HTTP && be->mode == PR_MODE_HTTP &&
1437 ((strm_fe(s)->options & PR_O_HTTP_MODE) != (be->options & PR_O_HTTP_MODE)))
Willy Tarreaueee5b512015-04-03 23:46:31 +02001438 http_adjust_conn_mode(s, s->txn, &s->txn->req);
Willy Tarreau80a92c02014-03-12 10:41:13 +01001439
Christopher Fauletbbe68542019-04-08 10:53:51 +02001440 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1441 * the client mux */
1442 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP && (be->options2 & PR_O2_USE_HTX)) {
1443 struct connection *conn = objt_conn(strm_sess(s)->origin);
1444 struct conn_stream *cs = objt_cs(s->si[0].end);
1445
1446 if (conn && cs) {
1447 si_rx_endp_more(&s->si[0]);
1448 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTX) == -1)
1449 return 0;
1450 s->flags |= SF_HTX;
1451 }
1452 }
1453
Willy Tarreaueee5b512015-04-03 23:46:31 +02001454 /* If an LB algorithm needs to access some pre-parsed body contents,
1455 * we must not start to forward anything until the connection is
1456 * confirmed otherwise we'll lose the pointer to these data and
1457 * prevent the hash from being doable again after a redispatch.
1458 */
1459 if (be->mode == PR_MODE_HTTP &&
1460 (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM))
1461 s->txn->req.flags |= HTTP_MSGF_WAIT_CONN;
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001462
1463 /* we may request to parse a request body */
1464 if ((be->options & PR_O_WREQ_BODY) &&
1465 (s->txn->req.body_len || (s->txn->req.flags & HTTP_MSGF_TE_CHNK)))
1466 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001467 }
1468
1469 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001470 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001471 s->req.flags |= CF_NEVER_WAIT;
1472 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001473 }
1474
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001475 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001476}
1477
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001478/* Capture a bad request or response and archive it in the proxy's structure.
1479 * It is relatively protocol-agnostic so it requires that a number of elements
1480 * are passed :
1481 * - <proxy> is the proxy where the error was detected and where the snapshot
1482 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001483 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001484 * - <other_end> is a pointer to the proxy on the other side when known
1485 * - <target> is the target of the connection, usually a server or a proxy
1486 * - <sess> is the session which experienced the error
1487 * - <ctx> may be NULL or should contain any info relevant to the protocol
1488 * - <buf> is the buffer containing the offending data
1489 * - <buf_ofs> is the position of this buffer's input data in the input
1490 * stream, starting at zero. It may be passed as zero if unknown.
1491 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1492 * which precedes the buffer's input. The buffer's input starts at
1493 * buf->head + buf_out.
1494 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1495 * - <show> is the callback to use to display <ctx>. It may be NULL.
1496 */
1497void proxy_capture_error(struct proxy *proxy, int is_back,
1498 struct proxy *other_end, enum obj_type *target,
1499 const struct session *sess,
1500 const struct buffer *buf, long buf_ofs,
1501 unsigned int buf_out, unsigned int err_pos,
1502 const union error_snapshot_ctx *ctx,
1503 void (*show)(struct buffer *, const struct error_snapshot *))
1504{
1505 struct error_snapshot *es;
1506 unsigned int buf_len;
1507 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001508 unsigned int ev_id;
1509
1510 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1511
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001512 buf_len = b_data(buf) - buf_out;
1513
1514 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001515 if (!es)
1516 return;
1517
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001518 es->buf_len = buf_len;
1519 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001520
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001521 len1 = b_size(buf) - buf_len;
1522 if (len1 > buf_len)
1523 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001524
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001525 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001526 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001527 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001528 if (len2)
1529 memcpy(es->buf + len1, b_orig(buf), len2);
1530 }
1531
1532 es->buf_err = err_pos;
1533 es->when = date; // user-visible date
1534 es->srv = objt_server(target);
1535 es->oe = other_end;
1536 if (objt_conn(sess->origin))
1537 es->src = __objt_conn(sess->origin)->addr.from;
1538 else
1539 memset(&es->src, 0, sizeof(es->src));
1540
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001541 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1542 es->buf_out = buf_out;
1543 es->buf_ofs = buf_ofs;
1544
1545 /* be sure to indicate the offset of the first IN byte */
1546 if (es->buf_ofs >= es->buf_len)
1547 es->buf_ofs -= es->buf_len;
1548 else
1549 es->buf_ofs = 0;
1550
1551 /* protocol-specific part now */
1552 if (ctx)
1553 es->ctx = *ctx;
1554 else
1555 memset(&es->ctx, 0, sizeof(es->ctx));
1556 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001557
1558 /* note: we still lock since we have to be certain that nobody is
1559 * dumping the output while we free.
1560 */
1561 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1562 if (is_back) {
1563 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1564 } else {
1565 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1566 }
1567 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001568 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1569}
1570
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001571/* Configure all proxies which lack a maxconn setting to use the global one by
1572 * default. This avoids the common mistake consisting in setting maxconn only
1573 * in the global section and discovering the hard way that it doesn't propagate
1574 * through the frontends. These values are also propagated through the various
1575 * targetted backends, whose fullconn is finally calculated if not yet set.
1576 */
1577void proxy_adjust_all_maxconn()
1578{
1579 struct proxy *curproxy;
1580 struct switching_rule *swrule1, *swrule2;
1581
1582 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1583 if (curproxy->state == PR_STSTOPPED)
1584 continue;
1585
1586 if (!(curproxy->cap & PR_CAP_FE))
1587 continue;
1588
1589 if (!curproxy->maxconn)
1590 curproxy->maxconn = global.maxconn;
1591
1592 /* update the target backend's fullconn count : default_backend */
1593 if (curproxy->defbe.be)
1594 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1595 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1596 curproxy->tot_fe_maxconn += curproxy->maxconn;
1597
1598 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1599 /* For each target of switching rules, we update their
1600 * tot_fe_maxconn, except if a previous rule points to
1601 * the same backend or to the default backend.
1602 */
1603 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001604 /* note: swrule1->be.backend isn't a backend if the rule
1605 * is dynamic, it's an expression instead, so it must not
1606 * be dereferenced as a backend before being certain it is.
1607 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001608 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1609 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001610 if (!swrule1->dynamic)
1611 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001612 break;
1613 }
1614 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1615 /* there are multiple refs of this backend */
1616 break;
1617 }
1618 }
1619 }
1620 }
1621 }
1622
1623 /* automatically compute fullconn if not set. We must not do it in the
1624 * loop above because cross-references are not yet fully resolved.
1625 */
1626 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1627 if (curproxy->state == PR_STSTOPPED)
1628 continue;
1629
1630 /* If <fullconn> is not set, let's set it to 10% of the sum of
1631 * the possible incoming frontend's maxconns.
1632 */
1633 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1634 /* we have the sum of the maxconns in <total>. We only
1635 * keep 10% of that sum to set the default fullconn, with
1636 * a hard minimum of 1 (to avoid a divide by zero).
1637 */
1638 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1639 if (!curproxy->fullconn)
1640 curproxy->fullconn = 1;
1641 }
1642 }
1643}
1644
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001645/* Config keywords below */
1646
Willy Tarreaudc13c112013-06-21 23:16:39 +02001647static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001648 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001649 { CFG_LISTEN, "timeout", proxy_parse_timeout },
1650 { CFG_LISTEN, "clitimeout", proxy_parse_timeout },
1651 { CFG_LISTEN, "contimeout", proxy_parse_timeout },
1652 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout },
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001653 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001654 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001655 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001656 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001657 { 0, NULL, NULL },
1658}};
1659
Willy Tarreau0108d902018-11-25 19:14:37 +01001660INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1661
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001662/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1663 * adequate error messages and returns NULL. This function is designed to be used by
1664 * functions requiring a frontend on the CLI.
1665 */
1666struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1667{
1668 struct proxy *px;
1669
1670 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001671 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001672 appctx->ctx.cli.msg = "A frontend name is expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001673 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001674 return NULL;
1675 }
1676
1677 px = proxy_fe_by_name(arg);
1678 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001679 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001680 appctx->ctx.cli.msg = "No such frontend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001681 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001682 return NULL;
1683 }
1684 return px;
1685}
1686
Olivier Houchard614f8d72017-03-14 20:08:46 +01001687/* Expects to find a backend named <arg> and returns it, otherwise displays various
1688 * adequate error messages and returns NULL. This function is designed to be used by
1689 * functions requiring a frontend on the CLI.
1690 */
1691struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1692{
1693 struct proxy *px;
1694
1695 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001696 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001697 appctx->ctx.cli.msg = "A backend name is expected.\n";
1698 appctx->st0 = CLI_ST_PRINT;
1699 return NULL;
1700 }
1701
1702 px = proxy_be_by_name(arg);
1703 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001704 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001705 appctx->ctx.cli.msg = "No such backend.\n";
1706 appctx->st0 = CLI_ST_PRINT;
1707 return NULL;
1708 }
1709 return px;
1710}
1711
1712
William Lallemanda6c5f332016-11-19 02:25:36 +01001713/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001714 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1715 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001716 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001717static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001718{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001719 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001720
1721 /* check if a backend name has been provided */
1722 if (*args[3]) {
1723 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001724 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001725
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001726 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001727 appctx->ctx.cli.severity = LOG_ERR;
William Lallemanda6c5f332016-11-19 02:25:36 +01001728 appctx->ctx.cli.msg = "Can't find backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001729 appctx->st0 = CLI_ST_PRINT;
William Lallemanda6c5f332016-11-19 02:25:36 +01001730 return 1;
1731 }
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001732 appctx->ctx.cli.p0 = px;
1733 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001734 }
1735 return 0;
1736}
1737
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001738/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001739 * These information are all the parameters which may change during HAProxy runtime.
1740 * By default, we only export to the last known server state file format.
1741 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001742 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1743 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001744 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001745static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001746{
1747 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001748 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001749 struct server *srv;
1750 char srv_addr[INET6_ADDRSTRLEN + 1];
1751 time_t srv_time_since_last_change;
1752 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001753 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001754
William Lallemanda6c5f332016-11-19 02:25:36 +01001755 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001756 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001757 return 1;
1758
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001759 if (!appctx->ctx.cli.p1)
1760 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001761
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001762 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1763 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001764 srv_addr[0] = '\0';
1765
1766 switch (srv->addr.ss_family) {
1767 case AF_INET:
1768 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1769 srv_addr, INET_ADDRSTRLEN + 1);
1770 break;
1771 case AF_INET6:
1772 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1773 srv_addr, INET6_ADDRSTRLEN + 1);
1774 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001775 default:
1776 memcpy(srv_addr, "-\0", 2);
1777 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001778 }
1779 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001780 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001781 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1782
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001783 srvrecord = NULL;
1784 if (srv->srvrq && srv->srvrq->name)
1785 srvrecord = srv->srvrq->name;
1786
William Lallemanda6c5f332016-11-19 02:25:36 +01001787 chunk_appendf(buf,
1788 "%d %s "
1789 "%d %s %s "
1790 "%d %d %d %d %ld "
1791 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001792 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001793 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001794 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001795 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001796 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001797 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001798 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1799 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001800 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001801 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001802 return 0;
1803 }
1804 }
1805 return 1;
1806}
1807
1808/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001809 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1810 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001811 */
1812static int cli_io_handler_servers_state(struct appctx *appctx)
1813{
1814 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001815 struct proxy *curproxy;
1816
1817 chunk_reset(&trash);
1818
1819 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001820 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001821 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001822 appctx->st2 = STAT_ST_HEAD;
1823 }
1824
1825 if (appctx->st2 == STAT_ST_HEAD) {
1826 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001827 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001828 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001829 return 0;
1830 }
1831 appctx->st2 = STAT_ST_INFO;
1832 }
1833
1834 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001835 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1836 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001837 /* servers are only in backends */
1838 if (curproxy->cap & PR_CAP_BE) {
1839 if (!dump_servers_state(si, &trash))
1840 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001841 }
1842 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001843 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001844 break;
1845 }
1846
1847 return 1;
1848}
1849
Willy Tarreau608ea592016-12-16 18:01:15 +01001850/* Parses backend list and simply report backend names. It keeps the proxy
1851 * pointer in cli.p0.
1852 */
William Lallemand933efcd2016-11-22 12:34:16 +01001853static int cli_io_handler_show_backend(struct appctx *appctx)
1854{
William Lallemand933efcd2016-11-22 12:34:16 +01001855 struct stream_interface *si = appctx->owner;
1856 struct proxy *curproxy;
1857
1858 chunk_reset(&trash);
1859
Willy Tarreau608ea592016-12-16 18:01:15 +01001860 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001861 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001862 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001863 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001864 return 0;
1865 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001866 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001867 }
1868
Willy Tarreau608ea592016-12-16 18:01:15 +01001869 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1870 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001871
1872 /* looking for backends only */
1873 if (!(curproxy->cap & PR_CAP_BE))
1874 continue;
1875
1876 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001877 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001878 continue;
1879
1880 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001881 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001882 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001883 return 0;
1884 }
1885 }
1886
1887 return 1;
1888}
William Lallemanda6c5f332016-11-19 02:25:36 +01001889
Willy Tarreaua275a372018-08-21 14:50:44 +02001890/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1891 *
1892 * Grabs the proxy lock and each server's lock.
1893 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001894static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001895{
1896 struct proxy *px;
1897 struct server *s;
1898
1899 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1900 return 1;
1901
1902 px = cli_find_backend(appctx, args[3]);
1903 if (!px)
1904 return 1;
1905
Willy Tarreaua275a372018-08-21 14:50:44 +02001906 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1907
Olivier Houchard614f8d72017-03-14 20:08:46 +01001908 px->ck_opts |= PR_CK_DYNAMIC;
1909
Willy Tarreaua275a372018-08-21 14:50:44 +02001910 for (s = px->srv; s != NULL; s = s->next) {
1911 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001912 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001913 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1914 }
1915
1916 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001917
1918 return 1;
1919}
1920
Willy Tarreaua275a372018-08-21 14:50:44 +02001921/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1922 *
1923 * Grabs the proxy lock and each server's lock.
1924 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001925static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001926{
1927 struct proxy *px;
1928 struct server *s;
1929
1930 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1931 return 1;
1932
1933 px = cli_find_backend(appctx, args[3]);
1934 if (!px)
1935 return 1;
1936
Willy Tarreaua275a372018-08-21 14:50:44 +02001937 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1938
Olivier Houchard614f8d72017-03-14 20:08:46 +01001939 px->ck_opts &= ~PR_CK_DYNAMIC;
1940
1941 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001942 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001943 if (!(s->flags & SRV_F_COOKIESET)) {
1944 free(s->cookie);
1945 s->cookie = NULL;
1946 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001947 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001948 }
1949
Willy Tarreaua275a372018-08-21 14:50:44 +02001950 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
1951
Olivier Houchard614f8d72017-03-14 20:08:46 +01001952 return 1;
1953}
1954
Willy Tarreaua275a372018-08-21 14:50:44 +02001955/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1956 *
1957 * Grabs the proxy lock and each server's lock.
1958 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001959static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001960{
1961 struct proxy *px;
1962 struct server *s;
1963 char *newkey;
1964
1965 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1966 return 1;
1967
1968 px = cli_find_backend(appctx, args[3]);
1969 if (!px)
1970 return 1;
1971
1972 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001973 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001974 appctx->ctx.cli.msg = "String value expected.\n";
1975 appctx->st0 = CLI_ST_PRINT;
1976 return 1;
1977 }
1978
1979 newkey = strdup(args[4]);
1980 if (!newkey) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001981 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001982 appctx->ctx.cli.msg = "Failed to allocate memory.\n";
1983 appctx->st0 = CLI_ST_PRINT;
1984 return 1;
1985 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001986
1987 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
1988
Olivier Houchard614f8d72017-03-14 20:08:46 +01001989 free(px->dyncookie_key);
1990 px->dyncookie_key = newkey;
1991
Willy Tarreaua275a372018-08-21 14:50:44 +02001992 for (s = px->srv; s != NULL; s = s->next) {
1993 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001994 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001995 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1996 }
1997
1998 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001999
2000 return 1;
2001}
2002
Willy Tarreaua275a372018-08-21 14:50:44 +02002003/* Parses the "set maxconn frontend" directive, it always returns 1.
2004 *
2005 * Grabs the proxy lock.
2006 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002007static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002008{
2009 struct proxy *px;
2010 struct listener *l;
2011 int v;
2012
2013 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2014 return 1;
2015
2016 px = cli_find_frontend(appctx, args[3]);
2017 if (!px)
2018 return 1;
2019
2020 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002021 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002022 appctx->ctx.cli.msg = "Integer value expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002023 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002024 return 1;
2025 }
2026
2027 v = atoi(args[4]);
2028 if (v < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002029 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002030 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002031 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002032 return 1;
2033 }
2034
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
2046 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue))
2047 dequeue_all_listeners(&px->listener_queue);
2048
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
2069 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002070 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002071 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002072 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002073 return 1;
2074 }
2075
Christopher Faulet767a84b2017-11-24 16:50:31 +01002076 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2077 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002078 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2079 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002080
2081 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002082 stop_proxy(px);
Willy Tarreaua275a372018-08-21 14:50:44 +02002083 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2084
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002085 return 1;
2086}
2087
Willy Tarreaua275a372018-08-21 14:50:44 +02002088/* Parses the "disable frontend" directive, it always returns 1.
2089 *
2090 * Grabs the proxy lock.
2091 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002092static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002093{
2094 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002095 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002096
2097 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2098 return 1;
2099
2100 px = cli_find_frontend(appctx, args[2]);
2101 if (!px)
2102 return 1;
2103
2104 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002105 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002106 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002107 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002108 return 1;
2109 }
2110
2111 if (px->state == PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002112 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002113 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002114 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002115 return 1;
2116 }
2117
Willy Tarreaua275a372018-08-21 14:50:44 +02002118 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2119 ret = pause_proxy(px);
2120 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2121
2122 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002123 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002124 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002125 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002126 return 1;
2127 }
2128 return 1;
2129}
2130
Willy Tarreaua275a372018-08-21 14:50:44 +02002131/* Parses the "enable frontend" directive, it always returns 1.
2132 *
2133 * Grabs the proxy lock.
2134 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002135static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002136{
2137 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002138 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002139
2140 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2141 return 1;
2142
2143 px = cli_find_frontend(appctx, args[2]);
2144 if (!px)
2145 return 1;
2146
2147 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002148 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002149 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002150 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002151 return 1;
2152 }
2153
2154 if (px->state != PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002155 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002156 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002157 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002158 return 1;
2159 }
2160
Willy Tarreaua275a372018-08-21 14:50:44 +02002161 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2162 ret = resume_proxy(px);
2163 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2164
2165 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002166 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002167 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002168 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002169 return 1;
2170 }
2171 return 1;
2172}
2173
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002174/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2175 * now.
2176 */
2177static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2178{
2179 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2180 return 1;
2181
2182 if (*args[2]) {
2183 struct proxy *px;
2184
2185 px = proxy_find_by_name(args[2], 0, 0);
2186 if (px)
2187 appctx->ctx.errors.iid = px->uuid;
2188 else
2189 appctx->ctx.errors.iid = atoi(args[2]);
2190
2191 if (!appctx->ctx.errors.iid) {
2192 appctx->ctx.cli.severity = LOG_ERR;
2193 appctx->ctx.cli.msg = "No such proxy.\n";
2194 appctx->st0 = CLI_ST_PRINT;
2195 return 1;
2196 }
2197 }
2198 else
2199 appctx->ctx.errors.iid = -1; // dump all proxies
2200
2201 appctx->ctx.errors.flag = 0;
2202 if (strcmp(args[3], "request") == 0)
2203 appctx->ctx.errors.flag |= 4; // ignore response
2204 else if (strcmp(args[3], "response") == 0)
2205 appctx->ctx.errors.flag |= 2; // ignore request
2206 appctx->ctx.errors.px = NULL;
2207 return 0;
2208}
2209
2210/* This function dumps all captured errors onto the stream interface's
2211 * read buffer. It returns 0 if the output buffer is full and it needs
2212 * to be called again, otherwise non-zero.
2213 */
2214static int cli_io_handler_show_errors(struct appctx *appctx)
2215{
2216 struct stream_interface *si = appctx->owner;
2217 extern const char *monthname[12];
2218
2219 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2220 return 1;
2221
2222 chunk_reset(&trash);
2223
2224 if (!appctx->ctx.errors.px) {
2225 /* the function had not been called yet, let's prepare the
2226 * buffer for a response.
2227 */
2228 struct tm tm;
2229
2230 get_localtime(date.tv_sec, &tm);
2231 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2232 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2233 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2234 error_snapshot_id);
2235
Willy Tarreau36b27362018-09-07 19:55:44 +02002236 if (ci_putchk(si_ic(si), &trash) == -1)
2237 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002238
2239 appctx->ctx.errors.px = proxies_list;
2240 appctx->ctx.errors.bol = 0;
2241 appctx->ctx.errors.ptr = -1;
2242 }
2243
2244 /* we have two inner loops here, one for the proxy, the other one for
2245 * the buffer.
2246 */
2247 while (appctx->ctx.errors.px) {
2248 struct error_snapshot *es;
2249
Willy Tarreau36b27362018-09-07 19:55:44 +02002250 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2251
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002252 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002253 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002254 if (appctx->ctx.errors.flag & 2) // skip req
2255 goto next;
2256 }
2257 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002258 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002259 if (appctx->ctx.errors.flag & 4) // skip resp
2260 goto next;
2261 }
2262
Willy Tarreauc55015e2018-09-07 19:02:32 +02002263 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002264 goto next;
2265
2266 if (appctx->ctx.errors.iid >= 0 &&
2267 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
2268 es->oe->uuid != appctx->ctx.errors.iid)
2269 goto next;
2270
2271 if (appctx->ctx.errors.ptr < 0) {
2272 /* just print headers now */
2273
2274 char pn[INET6_ADDRSTRLEN];
2275 struct tm tm;
2276 int port;
2277
2278 get_localtime(es->when.tv_sec, &tm);
2279 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2280 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2281 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2282
2283 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2284 case AF_INET:
2285 case AF_INET6:
2286 port = get_host_port(&es->src);
2287 break;
2288 default:
2289 port = 0;
2290 }
2291
2292 switch (appctx->ctx.errors.flag & 1) {
2293 case 0:
2294 chunk_appendf(&trash,
2295 " frontend %s (#%d): invalid request\n"
2296 " backend %s (#%d)",
2297 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2298 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2299 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
2300 break;
2301 case 1:
2302 chunk_appendf(&trash,
2303 " backend %s (#%d): invalid response\n"
2304 " frontend %s (#%d)",
2305 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2306 es->oe->id, es->oe->uuid);
2307 break;
2308 }
2309
2310 chunk_appendf(&trash,
2311 ", server %s (#%d), event #%u, src %s:%d\n"
2312 " buffer starts at %llu (including %u out), %u free,\n"
2313 " len %u, wraps at %u, error at position %u\n",
2314 es->srv ? es->srv->id : "<NONE>",
2315 es->srv ? es->srv->puid : -1,
2316 es->ev_id, pn, port,
2317 es->buf_ofs, es->buf_out,
2318 global.tune.bufsize - es->buf_out - es->buf_len,
2319 es->buf_len, es->buf_wrap, es->buf_err);
2320
2321 if (es->show)
2322 es->show(&trash, es);
2323
2324 chunk_appendf(&trash, " \n");
2325
Willy Tarreau36b27362018-09-07 19:55:44 +02002326 if (ci_putchk(si_ic(si), &trash) == -1)
2327 goto cant_send_unlock;
2328
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002329 appctx->ctx.errors.ptr = 0;
2330 appctx->ctx.errors.ev_id = es->ev_id;
2331 }
2332
2333 if (appctx->ctx.errors.ev_id != es->ev_id) {
2334 /* the snapshot changed while we were dumping it */
2335 chunk_appendf(&trash,
2336 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002337 if (ci_putchk(si_ic(si), &trash) == -1)
2338 goto cant_send_unlock;
2339
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002340 goto next;
2341 }
2342
2343 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002344 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002345 int newptr;
2346 int newline;
2347
2348 newline = appctx->ctx.errors.bol;
2349 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2350 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002351 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002352
Willy Tarreau36b27362018-09-07 19:55:44 +02002353 if (ci_putchk(si_ic(si), &trash) == -1)
2354 goto cant_send_unlock;
2355
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002356 appctx->ctx.errors.ptr = newptr;
2357 appctx->ctx.errors.bol = newline;
2358 };
2359 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002360 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002361 appctx->ctx.errors.bol = 0;
2362 appctx->ctx.errors.ptr = -1;
2363 appctx->ctx.errors.flag ^= 1;
2364 if (!(appctx->ctx.errors.flag & 1))
2365 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2366 }
2367
2368 /* dump complete */
2369 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002370
2371 cant_send_unlock:
2372 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2373 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002374 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002375 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002376}
2377
William Lallemanda6c5f332016-11-19 02:25:36 +01002378/* register cli keywords */
2379static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002380 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2381 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002382 { { "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 +01002383 { { "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 +01002384 { { "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 +01002385 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002386 { { "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 },
2387 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2388 { { "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 +02002389 { { "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 +01002390 {{},}
2391}};
2392
Willy Tarreau0108d902018-11-25 19:14:37 +01002393INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002394
2395/*
2396 * Local variables:
2397 * c-indent-level: 8
2398 * c-basic-offset: 8
2399 * End:
2400 */