blob: 43490db5384234faf44d52f5e1070ad703663733 [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 },
Willy Tarreaue5733232019-05-22 19:24:06 +020080#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010081 { "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{
Willy Tarreaue5733232019-05-22 19:24:06 +020092#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010093 { "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 },
Christopher Fauleta99ff4d2019-07-22 16:18:24 +0200115 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
116 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100117 { NULL, 0, 0, 0 }
118};
119
Willy Tarreau977b8e42006-12-29 14:19:17 +0100120/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100121 * This function returns a string containing a name describing capabilities to
122 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200123 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100124 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100125 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100126const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100127{
Willy Tarreau816eb542007-11-04 07:04:43 +0100128 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
129 if (cap & PR_CAP_FE)
130 return "frontend";
131 else if (cap & PR_CAP_BE)
132 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100133 }
134 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100135}
136
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100137/*
138 * This function returns a string containing the mode of the proxy in a format
139 * suitable for error messages.
140 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100141const char *proxy_mode_str(int mode) {
142
143 if (mode == PR_MODE_TCP)
144 return "tcp";
145 else if (mode == PR_MODE_HTTP)
146 return "http";
147 else if (mode == PR_MODE_HEALTH)
148 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200149 else if (mode == PR_MODE_CLI)
150 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100151 else
152 return "unknown";
153}
154
Willy Tarreauf3950172009-10-10 18:35:51 +0200155/*
156 * This function scans the list of backends and servers to retrieve the first
157 * backend and the first server with the given names, and sets them in both
158 * parameters. It returns zero if either is not found, or non-zero and sets
159 * the ones it did not found to NULL. If a NULL pointer is passed for the
160 * backend, only the pointer to the server will be updated.
161 */
162int get_backend_server(const char *bk_name, const char *sv_name,
163 struct proxy **bk, struct server **sv)
164{
165 struct proxy *p;
166 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100167 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200168
169 *sv = NULL;
170
Willy Tarreau050536d2012-10-04 08:47:34 +0200171 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200172 if (*sv_name == '#')
173 sid = atoi(sv_name + 1);
174
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200175 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200176 if (bk)
177 *bk = p;
178 if (!p)
179 return 0;
180
181 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100182 if ((sid >= 0 && s->puid == sid) ||
183 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200184 break;
185 *sv = s;
186 if (!s)
187 return 0;
188 return 1;
189}
190
Willy Tarreaue219db72007-12-03 01:30:13 +0100191/* This function parses a "timeout" statement in a proxy section. It returns
192 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200193 * return zero, it will write an error or warning message into a preallocated
194 * buffer returned at <err>. The trailing is not be written. The function must
195 * be called with <args> pointing to the first command line word, with <proxy>
196 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
197 * As a special case for compatibility with older configs, it also accepts
198 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100199 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200200static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200201 struct proxy *defpx, const char *file, int line,
202 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100203{
204 unsigned timeout;
205 int retval, cap;
206 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200207 int *tv = NULL;
208 int *td = NULL;
Willy Tarreaued446492014-04-28 22:56:38 +0200209 int warn = 0;
Willy Tarreaue219db72007-12-03 01:30:13 +0100210
211 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200212
213 /* simply skip "timeout" but remain compatible with old form */
214 if (strcmp(args[0], "timeout") == 0)
215 args++;
216
Willy Tarreaue219db72007-12-03 01:30:13 +0100217 name = args[0];
Willy Tarreaued446492014-04-28 22:56:38 +0200218 if (!strcmp(args[0], "client") || (!strcmp(args[0], "clitimeout") && (warn = WARN_CLITO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100219 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100220 tv = &proxy->timeout.client;
221 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100222 cap = PR_CAP_FE;
223 } else if (!strcmp(args[0], "tarpit")) {
224 tv = &proxy->timeout.tarpit;
225 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100226 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100227 } else if (!strcmp(args[0], "http-keep-alive")) {
228 tv = &proxy->timeout.httpka;
229 td = &defpx->timeout.httpka;
230 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100231 } else if (!strcmp(args[0], "http-request")) {
232 tv = &proxy->timeout.httpreq;
233 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200234 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200235 } else if (!strcmp(args[0], "server") || (!strcmp(args[0], "srvtimeout") && (warn = WARN_SRVTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100236 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100237 tv = &proxy->timeout.server;
238 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100239 cap = PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200240 } else if (!strcmp(args[0], "connect") || (!strcmp(args[0], "contimeout") && (warn = WARN_CONTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100241 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100242 tv = &proxy->timeout.connect;
243 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100244 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100245 } else if (!strcmp(args[0], "check")) {
246 tv = &proxy->timeout.check;
247 td = &defpx->timeout.check;
248 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100249 } else if (!strcmp(args[0], "queue")) {
250 tv = &proxy->timeout.queue;
251 td = &defpx->timeout.queue;
252 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200253 } else if (!strcmp(args[0], "tunnel")) {
254 tv = &proxy->timeout.tunnel;
255 td = &defpx->timeout.tunnel;
256 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200257 } else if (!strcmp(args[0], "client-fin")) {
258 tv = &proxy->timeout.clientfin;
259 td = &defpx->timeout.clientfin;
260 cap = PR_CAP_FE;
261 } else if (!strcmp(args[0], "server-fin")) {
262 tv = &proxy->timeout.serverfin;
263 td = &defpx->timeout.serverfin;
264 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100265 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200266 memprintf(err,
267 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200268 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
269 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200270 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100271 return -1;
272 }
273
274 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200275 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100276 return -1;
277 }
278
279 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200280 if (res == PARSE_TIME_OVER) {
281 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
282 args[1], name);
283 return -1;
284 }
285 else if (res == PARSE_TIME_UNDER) {
286 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
287 args[1], name);
288 return -1;
289 }
290 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200291 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100292 return -1;
293 }
294
295 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200296 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
297 name, proxy_type_str(proxy), proxy->id,
298 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100299 retval = 1;
300 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200301 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200302 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100303 retval = 1;
304 }
Willy Tarreaued446492014-04-28 22:56:38 +0200305 else if (warn) {
306 if (!already_warned(warn)) {
307 memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.",
308 args[0], name);
309 retval = 1;
310 }
311 }
Willy Tarreaue219db72007-12-03 01:30:13 +0100312
Willy Tarreaufac5b592014-05-22 08:24:46 +0200313 if (*args[2] != 0) {
314 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
315 retval = -1;
316 }
317
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200318 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100319 return retval;
320}
321
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100322/* This function parses a "rate-limit" statement in a proxy section. It returns
323 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200324 * return zero, it will write an error or warning message into a preallocated
325 * buffer returned at <err>. The function must be called with <args> pointing
326 * to the first command line word, with <proxy> pointing to the proxy being
327 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100328 */
329static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200330 struct proxy *defpx, const char *file, int line,
331 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100332{
333 int retval, cap;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200334 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100335 unsigned int *tv = NULL;
336 unsigned int *td = NULL;
337 unsigned int val;
338
339 retval = 0;
340
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200341 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200342 tv = &proxy->fe_sps_lim;
343 td = &defpx->fe_sps_lim;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100344 cap = PR_CAP_FE;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200345 }
346 else {
347 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100348 return -1;
349 }
350
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 if (*args[2] == 0) {
352 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100353 return -1;
354 }
355
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200356 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100357 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200358 memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100359 return -1;
360 }
361
362 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200363 memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability",
364 args[0], args[1], proxy_type_str(proxy), proxy->id,
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100365 (cap & PR_CAP_BE) ? "backend" : "frontend");
366 retval = 1;
367 }
368 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200369 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100370 retval = 1;
371 }
372
373 *tv = val;
374 return retval;
375}
376
Willy Tarreauc35362a2014-04-25 13:58:37 +0200377/* This function parses a "max-keep-alive-queue" statement in a proxy section.
378 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
379 * does not return zero, it will write an error or warning message into a
380 * preallocated buffer returned at <err>. The function must be called with
381 * <args> pointing to the first command line word, with <proxy> pointing to
382 * the proxy being parsed, and <defpx> to the default proxy or NULL.
383 */
384static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
385 struct proxy *defpx, const char *file, int line,
386 char **err)
387{
388 int retval;
389 char *res;
390 unsigned int val;
391
392 retval = 0;
393
394 if (*args[1] == 0) {
395 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
396 return -1;
397 }
398
399 val = strtol(args[1], &res, 0);
400 if (*res) {
401 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
402 return -1;
403 }
404
405 if (!(proxy->cap & PR_CAP_BE)) {
406 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
407 args[0], proxy_type_str(proxy), proxy->id);
408 retval = 1;
409 }
410
411 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
412 proxy->max_ka_queue = val + 1;
413 return retval;
414}
415
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200416/* This function parses a "declare" statement in a proxy section. It returns -1
417 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
418 * it will write an error or warning message into a preallocated buffer returned
419 * at <err>. The function must be called with <args> pointing to the first command
420 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
421 * default proxy or NULL.
422 */
423static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
424 struct proxy *defpx, const char *file, int line,
425 char **err)
426{
427 /* Capture keyword wannot be declared in a default proxy. */
428 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800429 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200430 return -1;
431 }
432
Joseph Herlant59dd2952018-11-15 11:46:55 -0800433 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200434 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800435 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200436 return -1;
437 }
438
439 /* Check mandatory second keyword. */
440 if (!args[1] || !*args[1]) {
441 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
442 return -1;
443 }
444
Joseph Herlant59dd2952018-11-15 11:46:55 -0800445 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200446 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800447 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200448 * the second keyword.
449 */
450 if (strcmp(args[1], "capture") == 0) {
451 char *error = NULL;
452 long len;
453 struct cap_hdr *hdr;
454
455 /* Check the next keyword. */
456 if (!args[2] || !*args[2] ||
457 (strcmp(args[2], "response") != 0 &&
458 strcmp(args[2], "request") != 0)) {
459 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
460 return -1;
461 }
462
463 /* Check the 'len' keyword. */
464 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
465 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
466 return -1;
467 }
468
469 /* Check the length value. */
470 if (!args[4] || !*args[4]) {
471 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
472 "capture length",
473 args[0], args[1]);
474 return -1;
475 }
476
477 /* convert the length value. */
478 len = strtol(args[4], &error, 10);
479 if (*error != '\0') {
480 memprintf(err, "'%s %s': cannot parse the length '%s'.",
481 args[0], args[1], args[3]);
482 return -1;
483 }
484
485 /* check length. */
486 if (len <= 0) {
487 memprintf(err, "length must be > 0");
488 return -1;
489 }
490
491 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200492 hdr = calloc(1, sizeof(*hdr));
Remi Tricot-Le Breton84651d92021-05-12 18:04:46 +0200493 if (!hdr) {
494 memprintf(err, "proxy '%s': out of memory while registering a capture", curpx->id);
495 return -1;
496 }
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200497 hdr->name = NULL; /* not a header capture */
498 hdr->namelen = 0;
499 hdr->len = len;
500 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
501
502 if (strcmp(args[2], "request") == 0) {
503 hdr->next = curpx->req_cap;
504 hdr->index = curpx->nb_req_cap++;
505 curpx->req_cap = hdr;
506 }
507 if (strcmp(args[2], "response") == 0) {
508 hdr->next = curpx->rsp_cap;
509 hdr->index = curpx->nb_rsp_cap++;
510 curpx->rsp_cap = hdr;
511 }
512 return 0;
513 }
514 else {
515 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
516 return -1;
517 }
518}
519
Olivier Houcharda254a372019-04-05 15:30:12 +0200520/* This function parses a "retry-on" statement */
521static int
522proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
523 struct proxy *defpx, const char *file, int line,
524 char **err)
525{
526 int i;
527
528 if (!(*args[1])) {
529 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
530 return -1;
531 }
532 if (!(curpx->cap & PR_CAP_BE)) {
533 memprintf(err, "'%s' only available in backend or listen section", args[0]);
534 return -1;
535 }
536 curpx->retry_type = 0;
537 for (i = 1; *(args[i]); i++) {
538 if (!strcmp(args[i], "conn-failure"))
539 curpx->retry_type |= PR_RE_CONN_FAILED;
540 else if (!strcmp(args[i], "empty-response"))
541 curpx->retry_type |= PR_RE_DISCONNECTED;
542 else if (!strcmp(args[i], "response-timeout"))
543 curpx->retry_type |= PR_RE_TIMEOUT;
544 else if (!strcmp(args[i], "404"))
545 curpx->retry_type |= PR_RE_404;
546 else if (!strcmp(args[i], "408"))
547 curpx->retry_type |= PR_RE_408;
548 else if (!strcmp(args[i], "425"))
549 curpx->retry_type |= PR_RE_425;
550 else if (!strcmp(args[i], "500"))
551 curpx->retry_type |= PR_RE_500;
552 else if (!strcmp(args[i], "501"))
553 curpx->retry_type |= PR_RE_501;
554 else if (!strcmp(args[i], "502"))
555 curpx->retry_type |= PR_RE_502;
556 else if (!strcmp(args[i], "503"))
557 curpx->retry_type |= PR_RE_503;
558 else if (!strcmp(args[i], "504"))
559 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200560 else if (!strcmp(args[i], "0rtt-rejected"))
561 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200562 else if (!strcmp(args[i], "junk-response"))
563 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200564 else if (!(strcmp(args[i], "all-retryable-errors")))
565 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
566 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
567 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
568 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200569 else if (!strcmp(args[i], "none")) {
570 if (i != 1 || *args[i + 1]) {
571 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
572 return -1;
573 }
574 } else {
575 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
576 return -1;
577 }
578
579 }
580
581
582 return 0;
583}
584
Willy Tarreauf79d9502014-03-15 07:22:35 +0100585/* This function inserts proxy <px> into the tree of known proxies. The proxy's
586 * name is used as the storing key so it must already have been initialized.
587 */
588void proxy_store_name(struct proxy *px)
589{
590 px->conf.by_name.key = px->id;
591 ebis_insert(&proxy_by_name, &px->conf.by_name);
592}
593
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200594/* Returns a pointer to the first proxy matching capabilities <cap> and id
595 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
596 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200597 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200598struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200599{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200600 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200601
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200602 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
603 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100604
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200605 if (px->uuid != id)
606 break;
Alex Williams96532db2009-11-01 21:27:13 -0500607
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200608 if ((px->cap & cap) != cap)
609 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500610
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100611 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200612 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100613
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200614 return px;
615 }
616 return NULL;
617}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100618
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200619/* Returns a pointer to the first proxy matching either name <name>, or id
620 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
621 * If <table> is non-zero, it only considers proxies having a table.
622 */
623struct proxy *proxy_find_by_name(const char *name, int cap, int table)
624{
625 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200626
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200627 if (*name == '#') {
628 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
629 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200630 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500631 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100632 else {
633 struct ebpt_node *node;
634
635 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
636 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500637
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100638 if (strcmp(curproxy->id, name) != 0)
639 break;
640
641 if ((curproxy->cap & cap) != cap)
642 continue;
643
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100644 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200645 continue;
646
Willy Tarreauc739aa82015-05-26 11:35:41 +0200647 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100648 }
649 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200650 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500651}
652
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200653/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
654 * <id>. At most one of <id> or <name> may be different provided that <cap> is
655 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
656 * find a proxy based on some information from a previous configuration, across
657 * reloads or during information exchange between peers.
658 *
659 * Names are looked up first if present, then IDs are compared if present. In
660 * case of an inexact match whatever is forced in the configuration has
661 * precedence in the following order :
662 * - 1) forced ID (proves a renaming / change of proxy type)
663 * - 2) proxy name+type (may indicate a move if ID differs)
664 * - 3) automatic ID+type (may indicate a renaming)
665 *
666 * Depending on what is found, we can end up in the following situations :
667 *
668 * name id cap | possible causes
669 * -------------+-----------------
670 * -- -- -- | nothing found
671 * -- -- ok | nothing found
672 * -- ok -- | proxy deleted, ID points to next one
673 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
674 * ok -- -- | proxy deleted, but other half with same name still here (before)
675 * ok -- ok | proxy's ID changed (proxy moved in the config file)
676 * ok ok -- | proxy deleted, but other half with same name still here (after)
677 * ok ok ok | perfect match
678 *
679 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200680 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
681 * (and ID was not zero)
682 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
683 * (and name was not NULL)
684 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
685 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200686 *
687 * Only a valid proxy is returned. If capabilities do not match, NULL is
688 * returned. The caller can check <diff> to report detailed warnings / errors,
689 * and decide whether or not to use what was found.
690 */
691struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
692{
693 struct proxy *byname;
694 struct proxy *byid;
695
696 if (!name && !id)
697 return NULL;
698
699 if (diff)
700 *diff = 0;
701
702 byname = byid = NULL;
703
704 if (name) {
705 byname = proxy_find_by_name(name, cap, 0);
706 if (byname && (!id || byname->uuid == id))
707 return byname;
708 }
709
Joseph Herlant59dd2952018-11-15 11:46:55 -0800710 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200711 * - name not set
712 * - name set but not found
713 * - name found, but ID doesn't match.
714 */
715 if (id) {
716 byid = proxy_find_by_id(id, cap, 0);
717 if (byid) {
718 if (byname) {
719 /* id+type found, name+type found, but not all 3.
720 * ID wins only if forced, otherwise name wins.
721 */
722 if (byid->options & PR_O_FORCED_ID) {
723 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200724 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200725 return byid;
726 }
727 else {
728 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200729 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200730 return byname;
731 }
732 }
733
Joseph Herlant59dd2952018-11-15 11:46:55 -0800734 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200735 * - name not set
736 * - name set but not found
737 */
738 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200739 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200740 return byid;
741 }
742
743 /* ID not found */
744 if (byname) {
745 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200746 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200747 return byname;
748 }
749 }
750
Joseph Herlant59dd2952018-11-15 11:46:55 -0800751 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200752 * detailed information to the caller about changed types and/or name,
753 * we'll do it. For example, we could detect that "listen foo" was
754 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
755 * - name not set, ID not found
756 * - name not found, ID not set
757 * - name not found, ID not found
758 */
759 if (!diff)
760 return NULL;
761
762 if (name) {
763 byname = proxy_find_by_name(name, 0, 0);
764 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200765 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200766 }
767
768 if (id) {
769 byid = proxy_find_by_id(id, 0, 0);
770 if (byid) {
771 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200772 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200773 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200774 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200775 /* otherwise it's a different proxy that was returned */
776 }
777 }
778 return NULL;
779}
780
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100782 * This function finds a server with matching name within selected proxy.
783 * It also checks if there are more matching servers with
784 * requested name as this often leads into unexpected situations.
785 */
786
787struct server *findserver(const struct proxy *px, const char *name) {
788
789 struct server *cursrv, *target = NULL;
790
791 if (!px)
792 return NULL;
793
794 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
795 if (strcmp(cursrv->id, name))
796 continue;
797
798 if (!target) {
799 target = cursrv;
800 continue;
801 }
802
Christopher Faulet767a84b2017-11-24 16:50:31 +0100803 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
804 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100805
806 return NULL;
807 }
808
809 return target;
810}
811
Willy Tarreauff01a212009-03-15 13:46:16 +0100812/* This function checks that the designated proxy has no http directives
813 * enabled. It will output a warning if there are, and will fix some of them.
814 * It returns the number of fatal errors encountered. This should be called
815 * at the end of the configuration parsing if the proxy is not in http mode.
816 * The <file> argument is used to construct the error message.
817 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200818int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100819{
820 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100821 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
822 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100823 }
824 if (curproxy->rsp_exp != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100825 ha_warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
826 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100827 }
828 if (curproxy->req_exp != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100829 ha_warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
830 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100831 }
832 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100833 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
834 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100835 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200836 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100837 curproxy->lbprm.algo &= ~BE_LB_ALGO;
838 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100839 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
840 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100841 }
Willy Tarreau17804162009-11-09 21:27:51 +0100842 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
843 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100844 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
845 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
846 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100847 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200848 if (curproxy->conf.logformat_string == default_http_log_format ||
849 curproxy->conf.logformat_string == clf_http_log_format) {
850 /* Note: we don't change the directive's file:line number */
851 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100852 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
853 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
854 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200855 }
856
Willy Tarreauff01a212009-03-15 13:46:16 +0100857 return 0;
858}
859
Willy Tarreau237250c2011-07-29 01:49:03 +0200860/* Perform the most basic initialization of a proxy :
861 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200862 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200863 */
864void init_new_proxy(struct proxy *p)
865{
866 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100867 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400868 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200869 LIST_INIT(&p->acl);
870 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200871 LIST_INIT(&p->http_res_rules);
Willy Tarreau353bc9f2014-04-28 22:05:31 +0200872 LIST_INIT(&p->block_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200873 LIST_INIT(&p->redirect_rules);
874 LIST_INIT(&p->mon_fail_cond);
875 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200876 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200877 LIST_INIT(&p->persist_rules);
878 LIST_INIT(&p->sticking_rules);
879 LIST_INIT(&p->storersp_rules);
880 LIST_INIT(&p->tcp_req.inspect_rules);
881 LIST_INIT(&p->tcp_rep.inspect_rules);
882 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200883 LIST_INIT(&p->tcp_req.l5_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200884 LIST_INIT(&p->req_add);
885 LIST_INIT(&p->rsp_add);
886 LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200887 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100888 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200889 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100890 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200891 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200892 LIST_INIT(&p->conf.listeners);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200893 LIST_INIT(&p->conf.args.list);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200894 LIST_INIT(&p->tcpcheck_rules);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100895 LIST_INIT(&p->filter_configs);
Willy Tarreau237250c2011-07-29 01:49:03 +0200896
897 /* Timeouts are defined as -1 */
898 proxy_reset_timeouts(p);
899 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200900
901 /* initial uuid is unassigned (-1) */
902 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200903
Christopher Faulet1d2b5862019-04-12 16:10:51 +0200904 /* HTX is the default mode, for HTTP and TCP */
905 p->options2 |= PR_O2_USE_HTX;
906
Olivier Houcharda254a372019-04-05 15:30:12 +0200907 /* Default to only allow L4 retries */
908 p->retry_type = PR_RE_CONN_FAILED;
909
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100910 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200911}
912
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100913/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200914 * This function creates all proxy sockets. It should be done very early,
915 * typically before privileges are dropped. The sockets will be registered
916 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200917 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200918 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200919 *
920 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
921 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200922 */
923int start_proxies(int verbose)
924{
925 struct proxy *curproxy;
926 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100927 int lerr, err = ERR_NONE;
928 int pxerr;
929 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100931 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932 if (curproxy->state != PR_STNEW)
933 continue; /* already initialized */
934
935 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200936 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100937 if (listener->state != LI_ASSIGNED)
938 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200939
Emeric Bruncf20bf12010-10-22 16:06:11 +0200940 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941
Willy Tarreaue6b98942007-10-29 01:09:36 +0100942 /* errors are reported if <verbose> is set or if they are fatal */
943 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
944 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100945 ha_alert("Starting %s %s: %s\n",
946 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100947 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100948 ha_warning("Starting %s %s: %s\n",
949 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950 }
951
Willy Tarreaue6b98942007-10-29 01:09:36 +0100952 err |= lerr;
953 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200954 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100955 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200956 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100957 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958 pxerr |= 1;
959 continue;
960 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961 }
962
963 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200964 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
966 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100967
968 if (err & ERR_ABORT)
969 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970 }
971
972 return err;
973}
974
975
976/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200977 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200978 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200979 * called as a task which is woken up upon stopping or when rate limiting must
980 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200981 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200982struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200983{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200984 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200985 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100986 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200987
Willy Tarreau918ff602011-07-25 16:33:49 +0200988 /* We should periodically try to enable listeners waiting for a
989 * global resource here.
990 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200991
Willy Tarreau918ff602011-07-25 16:33:49 +0200992 /* first, let's check if we need to stop the proxy */
993 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
994 int t;
995 t = tick_remain(now_ms, p->stop_time);
996 if (t == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100997 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
998 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau918ff602011-07-25 16:33:49 +0200999 send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1000 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
1001 stop_proxy(p);
1002 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001003 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +02001004 }
1005 else {
1006 next = tick_first(next, p->stop_time);
1007 }
1008 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001009
Willy Tarreau3a925c12013-09-04 17:54:01 +02001010 /* If the proxy holds a stick table, we need to purge all unused
1011 * entries. These are all the ones in the table with ref_cnt == 0
1012 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +02001013 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +02001014 * be in neither list. Any entry being dumped will have ref_cnt > 0.
1015 * However we protect tables that are being synced to peers.
1016 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001017 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
Emeric Brun692e71d2021-04-23 17:02:22 +02001018 if (!p->table->refcnt) {
1019 /* !table->refcnt means there
1020 * is no more pending full resync
1021 * to push to a new process and
1022 * we are free to flush the table.
1023 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001024 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001025 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001026 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001027 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001028 /* some entries still remain, let's recheck in one second */
1029 next = tick_first(next, tick_add(now_ms, 1000));
1030 }
1031 }
1032
Willy Tarreau918ff602011-07-25 16:33:49 +02001033 /* the rest below is just for frontends */
1034 if (!(p->cap & PR_CAP_FE))
1035 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001036
Willy Tarreau918ff602011-07-25 16:33:49 +02001037 /* check the various reasons we may find to block the frontend */
1038 if (unlikely(p->feconn >= p->maxconn)) {
1039 if (p->state == PR_STREADY)
1040 p->state = PR_STFULL;
1041 goto out;
1042 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001043
Willy Tarreau918ff602011-07-25 16:33:49 +02001044 /* OK we have no reason to block, so let's unblock if we were blocking */
1045 if (p->state == PR_STFULL)
1046 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001047
Willy Tarreau918ff602011-07-25 16:33:49 +02001048 if (p->fe_sps_lim &&
1049 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1050 /* we're blocking because a limit was reached on the number of
1051 * requests/s on the frontend. We want to re-check ASAP, which
1052 * means in 1 ms before estimated expiration date, because the
1053 * timer will have settled down.
1054 */
1055 next = tick_first(next, tick_add(now_ms, wait));
1056 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001057 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001058
1059 /* The proxy is not limited so we can re-enable any waiting listener */
1060 if (!LIST_ISEMPTY(&p->listener_queue))
1061 dequeue_all_listeners(&p->listener_queue);
1062 out:
1063 t->expire = next;
1064 task_queue(t);
1065 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001066}
1067
1068
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001069static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1070 struct proxy *defpx, const char *file, int line,
1071 char **err)
1072{
1073 const char *res;
1074
1075 if (!*args[1]) {
1076 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1077 return -1;
1078 }
1079 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001080 if (res == PARSE_TIME_OVER) {
1081 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1082 args[1], args[0]);
1083 return -1;
1084 }
1085 else if (res == PARSE_TIME_UNDER) {
1086 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1087 args[1], args[0]);
1088 return -1;
1089 }
1090 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001091 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1092 return -1;
1093 }
1094 return 0;
1095}
1096
Olivier Houchard9f6af332018-05-25 14:04:04 +02001097struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001098{
1099 struct proxy *p;
1100 struct stream *s;
Willy Tarreau05813ef2021-02-24 11:13:59 +01001101 int thr;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001102
1103 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001104 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001105 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001106 killed = 2;
Willy Tarreau05813ef2021-02-24 11:13:59 +01001107 for (thr = 0; thr < global.nbthread; thr++)
1108 if (((all_threads_mask & ~tid_bit) >> thr) & 1)
1109 wake_thread(thr);
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001110 t->expire = TICK_ETERNITY;
1111 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001112 }
1113
Christopher Faulet767a84b2017-11-24 16:50:31 +01001114 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001115 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001116 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001117 while (p) {
1118 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001119 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1120 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001121 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1122 p->id, p->feconn);
1123 }
1124 p = p->next;
1125 }
Willy Tarreau6faa9092021-02-24 11:08:56 +01001126
1127 thread_isolate();
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001128 list_for_each_entry(s, &streams, list) {
1129 stream_shutdown(s, SF_ERR_KILLED);
1130 }
Willy Tarreau6faa9092021-02-24 11:08:56 +01001131 thread_release();
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001132
1133 killed = 1;
1134 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1135 return t;
1136}
1137
Willy Tarreaubaaee002006-06-26 02:48:02 +02001138/*
1139 * this function disables health-check servers so that the process will quickly be ignored
1140 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1141 * time will not be used since it would already not listen anymore to the socket.
1142 */
1143void soft_stop(void)
1144{
1145 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001146 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001147 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001148
1149 stopping = 1;
William Dauchy857b9432019-12-28 15:36:02 +01001150 /* disable busy polling to avoid cpu eating for the new process */
1151 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001152 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001153 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001154 if (task) {
1155 task->process = hard_stop;
1156 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1157 }
1158 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001159 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001160 }
1161 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001162 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001163 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001164 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001165 /* Zombie proxy, let's close the file descriptors */
1166 if (p->state == PR_STSTOPPED &&
1167 !LIST_ISEMPTY(&p->conf.listeners) &&
1168 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau0d5b5c22019-12-10 07:11:35 +01001169 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001170 struct listener *l;
1171 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau0d5b5c22019-12-10 07:11:35 +01001172 if (l->state > LI_ASSIGNED)
Olivier Houchard1fc05162017-04-06 01:05:05 +02001173 close(l->fd);
1174 l->state = LI_INIT;
1175 }
1176 }
1177
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001179 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 +02001180 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 +02001181 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001182
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001183 /* Note: do not wake up stopped proxies' task nor their tables'
1184 * tasks as these ones might point to already released entries.
1185 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001186 if (p->table && p->table->size && p->table->sync_task)
1187 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001188
1189 if (p->task)
1190 task_wakeup(p->task, TASK_WOKEN_MSG);
1191 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001192 p = p->next;
1193 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001194
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001195 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001196 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001197 if (prs->peers_fe)
1198 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001199 prs = prs->next;
1200 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001201 /* signal zero is used to broadcast the "stopping" event */
1202 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001203}
1204
1205
Willy Tarreaube58c382011-07-24 18:28:10 +02001206/* Temporarily disables listening on all of the proxy's listeners. Upon
1207 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1208 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001209 * because we don't know how to resume from this. The function returns 0
1210 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001211 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001212int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001213{
1214 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001215
1216 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1217 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1218 return 1;
1219
Christopher Faulet767a84b2017-11-24 16:50:31 +01001220 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001221 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1222
Willy Tarreau4348fad2012-09-20 16:48:07 +02001223 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001224 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001225 p->state = PR_STERROR;
1226 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001227
1228 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001229 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001230 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1231 return 0;
1232 }
1233
1234 p->state = PR_STPAUSED;
1235 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001236}
1237
Olivier Houchard1fc05162017-04-06 01:05:05 +02001238/* This function makes the proxy unusable, but keeps the listening sockets
1239 * opened, so that if any process requests them, we are able to serve them.
1240 * This should only be called early, before we started accepting requests.
1241 */
1242void zombify_proxy(struct proxy *p)
1243{
1244 struct listener *l;
1245 struct listener *first_to_listen = NULL;
1246
1247 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1248 enum li_state oldstate = l->state;
1249
1250 unbind_listener_no_close(l);
1251 if (l->state >= LI_ASSIGNED) {
1252 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001253 }
1254 /*
1255 * Pretend we're still up and running so that the fd
1256 * will be sent if asked.
1257 */
1258 l->state = LI_ZOMBIE;
1259 if (!first_to_listen && oldstate >= LI_LISTEN)
1260 first_to_listen = l;
1261 }
1262 /* Quick hack : at stop time, to know we have to close the sockets
1263 * despite the proxy being marked as stopped, make the first listener
1264 * of the listener list an active one, so that we don't have to
1265 * parse the whole list to be sure.
1266 */
1267 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1268 struct listener *, by_fe) != first_to_listen) {
1269 LIST_DEL(&l->by_fe);
1270 LIST_ADD(&p->conf.listeners, &l->by_fe);
1271 }
1272
1273 p->state = PR_STSTOPPED;
1274}
Willy Tarreauda250db2008-10-12 12:07:48 +02001275
1276/*
1277 * This function completely stops a proxy and releases its listeners. It has
1278 * to be called when going down in order to release the ports so that another
1279 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001280 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau6d79ced2019-07-24 17:42:44 +02001281 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1282 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001283 */
1284void stop_proxy(struct proxy *p)
1285{
1286 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001287 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001288
Willy Tarreau6d79ced2019-07-24 17:42:44 +02001289 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1290
Willy Tarreau4348fad2012-09-20 16:48:07 +02001291 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001292 if (l->options & LI_O_NOSTOP) {
1293 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1294 nostop = 1;
1295 continue;
1296 }
William Lallemand79eeb2b2019-10-18 21:16:39 +02001297 /* The master should not close an inherited FD */
1298 if (master && (l->options & LI_O_INHERITED))
1299 unbind_listener_no_close(l);
1300 else
1301 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001302 if (l->state >= LI_ASSIGNED) {
1303 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001304 }
1305 }
William Lallemandc59f9882018-11-16 16:57:21 +01001306 if (!nostop)
1307 p->state = PR_STSTOPPED;
Willy Tarreau6d79ced2019-07-24 17:42:44 +02001308
1309 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001310}
1311
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001312/* This function resumes listening on the specified proxy. It scans all of its
1313 * listeners and tries to enable them all. If any of them fails, the proxy is
1314 * put back to the paused state. It returns 1 upon success, or zero if an error
1315 * is encountered.
1316 */
1317int resume_proxy(struct proxy *p)
1318{
1319 struct listener *l;
1320 int fail;
1321
1322 if (p->state != PR_STPAUSED)
1323 return 1;
1324
Christopher Faulet767a84b2017-11-24 16:50:31 +01001325 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001326 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1327
1328 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001329 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001330 if (!resume_listener(l)) {
1331 int port;
1332
1333 port = get_host_port(&l->addr);
1334 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001335 ha_warning("Port %d busy while trying to enable %s %s.\n",
1336 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001337 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1338 port, proxy_cap_str(p->cap), p->id);
1339 }
1340 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001341 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1342 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001343 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1344 l->luid, proxy_cap_str(p->cap), p->id);
1345 }
1346
1347 /* Another port might have been enabled. Let's stop everything. */
1348 fail = 1;
1349 break;
1350 }
1351 }
1352
1353 p->state = PR_STREADY;
1354 if (fail) {
1355 pause_proxy(p);
1356 return 0;
1357 }
1358 return 1;
1359}
1360
Willy Tarreaubaaee002006-06-26 02:48:02 +02001361/*
1362 * This function temporarily disables listening so that another new instance
1363 * can start listening. It is designed to be called upon reception of a
1364 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1365 * the proxy, or a SIGTTIN can be sent to listen again.
1366 */
1367void pause_proxies(void)
1368{
1369 int err;
1370 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001371 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001372
1373 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001374 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001375 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001376 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001377 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001378 p = p->next;
1379 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001380
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001381 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001382 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001383 if (prs->peers_fe)
1384 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001385 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001386 }
1387
Willy Tarreaubaaee002006-06-26 02:48:02 +02001388 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001390 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1391 soft_stop();
1392 }
1393}
1394
1395
1396/*
1397 * This function reactivates listening. This can be used after a call to
1398 * sig_pause(), for example when a new instance has failed starting up.
1399 * It is designed to be called upon reception of a SIGTTIN.
1400 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001401void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001402{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001403 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001404 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001405 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001406
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001407 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001408 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001409 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001410 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001411 err |= !resume_proxy(p);
1412 p = p->next;
1413 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001414
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001415 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001416 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001417 if (prs->peers_fe)
1418 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001419 prs = prs->next;
1420 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001421
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001422 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001423 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001424 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 +02001425 }
1426}
1427
Willy Tarreau87b09662015-04-03 00:22:06 +02001428/* Set current stream's backend to <be>. Nothing is done if the
1429 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001430 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001431 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001432 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001433 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001434int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001435{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001436 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001437 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001438
1439 if (flt_set_stream_backend(s, be) < 0)
1440 return 0;
1441
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001442 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001443 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1444 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001445 proxy_inc_be_ctr(be);
1446
Willy Tarreau3e451842019-02-01 15:06:09 +01001447 /* HTX/legacy must match */
Christopher Fauletbbe68542019-04-08 10:53:51 +02001448 if ((strm_fe(s)->options2 ^ be->options2) & PR_O2_USE_HTX)
Willy Tarreau3e451842019-02-01 15:06:09 +01001449 return 0;
1450
Willy Tarreau87b09662015-04-03 00:22:06 +02001451 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001452 s->si[1].flags &= ~SI_FL_INDEP_STR;
1453 if (be->options2 & PR_O2_INDEPSTR)
1454 s->si[1].flags |= SI_FL_INDEP_STR;
1455
Hongbo Longe39683c2017-03-10 18:41:51 +01001456 if (tick_isset(be->timeout.serverfin))
1457 s->si[1].hcto = be->timeout.serverfin;
1458
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001459 /* We want to enable the backend-specific analysers except those which
1460 * were already run as part of the frontend/listener. Note that it would
1461 * be more reliable to store the list of analysers that have been run,
1462 * but what we do here is OK for now.
1463 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001464 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001465
Willy Tarreau51aecc72009-07-12 09:47:04 +02001466 /* If the target backend requires HTTP processing, we have to allocate
Willy Tarreaueee5b512015-04-03 23:46:31 +02001467 * the HTTP transaction and hdr_idx if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001468 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001469 if (unlikely(!s->txn && be->http_needed)) {
1470 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001471 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001472
1473 /* and now initialize the HTTP transaction state */
1474 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001475 }
1476
Christopher Faulet309c6412015-12-02 09:57:32 +01001477 /* Be sure to filter request headers if the backend is an HTTP proxy and
1478 * if there are filters attached to the stream. */
1479 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001480 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001481
Willy Tarreaueee5b512015-04-03 23:46:31 +02001482 if (s->txn) {
1483 if (be->options2 & PR_O2_RSPBUG_OK)
1484 s->txn->rsp.err_pos = -1; /* let buggy responses pass */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001485
Willy Tarreaueee5b512015-04-03 23:46:31 +02001486 /* If we chain to an HTTP backend running a different HTTP mode, we
1487 * have to re-adjust the desired keep-alive/close mode to accommodate
1488 * both the frontend's and the backend's modes.
1489 */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001490 if (strm_fe(s)->mode == PR_MODE_HTTP && be->mode == PR_MODE_HTTP &&
1491 ((strm_fe(s)->options & PR_O_HTTP_MODE) != (be->options & PR_O_HTTP_MODE)))
Willy Tarreaueee5b512015-04-03 23:46:31 +02001492 http_adjust_conn_mode(s, s->txn, &s->txn->req);
Willy Tarreau80a92c02014-03-12 10:41:13 +01001493
Christopher Fauletbbe68542019-04-08 10:53:51 +02001494 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1495 * the client mux */
1496 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP && (be->options2 & PR_O2_USE_HTX)) {
1497 struct connection *conn = objt_conn(strm_sess(s)->origin);
1498 struct conn_stream *cs = objt_cs(s->si[0].end);
1499
1500 if (conn && cs) {
1501 si_rx_endp_more(&s->si[0]);
Olivier Houchard13f556e2019-07-03 13:08:18 +02001502 /* Make sure we're unsubscribed, the the new
1503 * mux will probably want to subscribe to
1504 * the underlying XPRT
1505 */
1506 if (s->si[0].wait_event.events)
1507 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1508 &s->si[0].wait_event);
Christopher Fauletbbe68542019-04-08 10:53:51 +02001509 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTX) == -1)
1510 return 0;
Olivier Houchard1a8febc2019-07-31 18:05:26 +02001511 if (!strcmp(conn->mux->name, "H2")) {
1512 /* For HTTP/2, destroy the conn_stream,
1513 * disable logging, and pretend that we
1514 * failed, to that the stream is
1515 * silently destroyed. The new mux
1516 * will create new streams.
1517 */
Olivier Houchard09e0b172019-08-09 18:01:15 +02001518 cs_free(cs);
Olivier Houchard1a8febc2019-07-31 18:05:26 +02001519 si_detach_endpoint(&s->si[0]);
1520 s->logs.logwait = 0;
1521 s->logs.level = 0;
1522 s->flags |= SF_IGNORE;
1523 return 0;
1524 }
Olivier Houchardc1f02762019-08-09 17:50:05 +02001525 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001526 }
1527 }
Christopher Faulet0ed1e892019-12-20 15:59:20 +01001528 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1529 /* If a TCP backend is assgiend to an HTX stream, return
1530 * an error. It may happens for a new stream on a
1531 * previously upgraded connnections. */
1532 if (!(s->flags & SF_ERR_MASK))
1533 s->flags |= SF_ERR_INTERNAL;
1534 return 0;
1535 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001536
Willy Tarreaueee5b512015-04-03 23:46:31 +02001537 /* If an LB algorithm needs to access some pre-parsed body contents,
1538 * we must not start to forward anything until the connection is
1539 * confirmed otherwise we'll lose the pointer to these data and
1540 * prevent the hash from being doable again after a redispatch.
1541 */
1542 if (be->mode == PR_MODE_HTTP &&
1543 (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM))
1544 s->txn->req.flags |= HTTP_MSGF_WAIT_CONN;
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001545
1546 /* we may request to parse a request body */
1547 if ((be->options & PR_O_WREQ_BODY) &&
1548 (s->txn->req.body_len || (s->txn->req.flags & HTTP_MSGF_TE_CHNK)))
1549 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001550 }
1551
1552 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001553 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001554 s->req.flags |= CF_NEVER_WAIT;
1555 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001556 }
1557
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001558 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001559}
1560
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001561/* Capture a bad request or response and archive it in the proxy's structure.
1562 * It is relatively protocol-agnostic so it requires that a number of elements
1563 * are passed :
1564 * - <proxy> is the proxy where the error was detected and where the snapshot
1565 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001566 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001567 * - <other_end> is a pointer to the proxy on the other side when known
1568 * - <target> is the target of the connection, usually a server or a proxy
1569 * - <sess> is the session which experienced the error
1570 * - <ctx> may be NULL or should contain any info relevant to the protocol
1571 * - <buf> is the buffer containing the offending data
1572 * - <buf_ofs> is the position of this buffer's input data in the input
1573 * stream, starting at zero. It may be passed as zero if unknown.
1574 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1575 * which precedes the buffer's input. The buffer's input starts at
1576 * buf->head + buf_out.
1577 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1578 * - <show> is the callback to use to display <ctx>. It may be NULL.
1579 */
1580void proxy_capture_error(struct proxy *proxy, int is_back,
1581 struct proxy *other_end, enum obj_type *target,
1582 const struct session *sess,
1583 const struct buffer *buf, long buf_ofs,
1584 unsigned int buf_out, unsigned int err_pos,
1585 const union error_snapshot_ctx *ctx,
1586 void (*show)(struct buffer *, const struct error_snapshot *))
1587{
1588 struct error_snapshot *es;
1589 unsigned int buf_len;
1590 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001591 unsigned int ev_id;
1592
1593 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1594
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001595 buf_len = b_data(buf) - buf_out;
1596
1597 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001598 if (!es)
1599 return;
1600
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001601 es->buf_len = buf_len;
1602 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001603
Christopher Faulet107a7cb2020-01-06 11:37:00 +01001604 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001605 if (len1 > buf_len)
1606 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001607
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001608 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001609 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001610 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001611 if (len2)
1612 memcpy(es->buf + len1, b_orig(buf), len2);
1613 }
1614
1615 es->buf_err = err_pos;
1616 es->when = date; // user-visible date
1617 es->srv = objt_server(target);
1618 es->oe = other_end;
1619 if (objt_conn(sess->origin))
1620 es->src = __objt_conn(sess->origin)->addr.from;
1621 else
1622 memset(&es->src, 0, sizeof(es->src));
1623
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001624 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1625 es->buf_out = buf_out;
1626 es->buf_ofs = buf_ofs;
1627
1628 /* be sure to indicate the offset of the first IN byte */
1629 if (es->buf_ofs >= es->buf_len)
1630 es->buf_ofs -= es->buf_len;
1631 else
1632 es->buf_ofs = 0;
1633
1634 /* protocol-specific part now */
1635 if (ctx)
1636 es->ctx = *ctx;
1637 else
1638 memset(&es->ctx, 0, sizeof(es->ctx));
1639 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001640
1641 /* note: we still lock since we have to be certain that nobody is
1642 * dumping the output while we free.
1643 */
1644 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1645 if (is_back) {
1646 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1647 } else {
1648 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1649 }
1650 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001651 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1652}
1653
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001654/* Configure all proxies which lack a maxconn setting to use the global one by
1655 * default. This avoids the common mistake consisting in setting maxconn only
1656 * in the global section and discovering the hard way that it doesn't propagate
1657 * through the frontends. These values are also propagated through the various
1658 * targetted backends, whose fullconn is finally calculated if not yet set.
1659 */
1660void proxy_adjust_all_maxconn()
1661{
1662 struct proxy *curproxy;
1663 struct switching_rule *swrule1, *swrule2;
1664
1665 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1666 if (curproxy->state == PR_STSTOPPED)
1667 continue;
1668
1669 if (!(curproxy->cap & PR_CAP_FE))
1670 continue;
1671
1672 if (!curproxy->maxconn)
1673 curproxy->maxconn = global.maxconn;
1674
1675 /* update the target backend's fullconn count : default_backend */
1676 if (curproxy->defbe.be)
1677 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1678 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1679 curproxy->tot_fe_maxconn += curproxy->maxconn;
1680
1681 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1682 /* For each target of switching rules, we update their
1683 * tot_fe_maxconn, except if a previous rule points to
1684 * the same backend or to the default backend.
1685 */
1686 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001687 /* note: swrule1->be.backend isn't a backend if the rule
1688 * is dynamic, it's an expression instead, so it must not
1689 * be dereferenced as a backend before being certain it is.
1690 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001691 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1692 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001693 if (!swrule1->dynamic)
1694 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001695 break;
1696 }
1697 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1698 /* there are multiple refs of this backend */
1699 break;
1700 }
1701 }
1702 }
1703 }
1704 }
1705
1706 /* automatically compute fullconn if not set. We must not do it in the
1707 * loop above because cross-references are not yet fully resolved.
1708 */
1709 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1710 if (curproxy->state == PR_STSTOPPED)
1711 continue;
1712
1713 /* If <fullconn> is not set, let's set it to 10% of the sum of
1714 * the possible incoming frontend's maxconns.
1715 */
1716 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1717 /* we have the sum of the maxconns in <total>. We only
1718 * keep 10% of that sum to set the default fullconn, with
1719 * a hard minimum of 1 (to avoid a divide by zero).
1720 */
1721 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1722 if (!curproxy->fullconn)
1723 curproxy->fullconn = 1;
1724 }
1725 }
1726}
1727
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001728/* Config keywords below */
1729
Willy Tarreaudc13c112013-06-21 23:16:39 +02001730static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001731 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001732 { CFG_LISTEN, "timeout", proxy_parse_timeout },
1733 { CFG_LISTEN, "clitimeout", proxy_parse_timeout },
1734 { CFG_LISTEN, "contimeout", proxy_parse_timeout },
1735 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout },
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001736 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001737 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001738 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001739 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001740 { 0, NULL, NULL },
1741}};
1742
Willy Tarreau0108d902018-11-25 19:14:37 +01001743INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1744
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001745/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1746 * adequate error messages and returns NULL. This function is designed to be used by
1747 * functions requiring a frontend on the CLI.
1748 */
1749struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1750{
1751 struct proxy *px;
1752
1753 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001754 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001755 appctx->ctx.cli.msg = "A frontend name is expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001756 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001757 return NULL;
1758 }
1759
1760 px = proxy_fe_by_name(arg);
1761 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001762 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001763 appctx->ctx.cli.msg = "No such frontend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001764 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001765 return NULL;
1766 }
1767 return px;
1768}
1769
Olivier Houchard614f8d72017-03-14 20:08:46 +01001770/* Expects to find a backend named <arg> and returns it, otherwise displays various
1771 * adequate error messages and returns NULL. This function is designed to be used by
1772 * functions requiring a frontend on the CLI.
1773 */
1774struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1775{
1776 struct proxy *px;
1777
1778 if (!*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001779 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001780 appctx->ctx.cli.msg = "A backend name is expected.\n";
1781 appctx->st0 = CLI_ST_PRINT;
1782 return NULL;
1783 }
1784
1785 px = proxy_be_by_name(arg);
1786 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001787 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01001788 appctx->ctx.cli.msg = "No such backend.\n";
1789 appctx->st0 = CLI_ST_PRINT;
1790 return NULL;
1791 }
1792 return px;
1793}
1794
1795
William Lallemanda6c5f332016-11-19 02:25:36 +01001796/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001797 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1798 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001799 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001800static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001801{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001802 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001803
1804 /* check if a backend name has been provided */
1805 if (*args[3]) {
1806 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001807 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001808
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001809 if (!px) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001810 appctx->ctx.cli.severity = LOG_ERR;
William Lallemanda6c5f332016-11-19 02:25:36 +01001811 appctx->ctx.cli.msg = "Can't find backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001812 appctx->st0 = CLI_ST_PRINT;
William Lallemanda6c5f332016-11-19 02:25:36 +01001813 return 1;
1814 }
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001815 appctx->ctx.cli.p0 = px;
1816 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001817 }
1818 return 0;
1819}
1820
Willy Tarreauca212e52020-07-01 07:02:42 +02001821/* dumps server state information for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001822 * These information are all the parameters which may change during HAProxy runtime.
1823 * By default, we only export to the last known server state file format.
1824 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001825 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1826 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001827 */
Willy Tarreauca212e52020-07-01 07:02:42 +02001828static int dump_servers_state(struct stream_interface *si)
William Lallemanda6c5f332016-11-19 02:25:36 +01001829{
1830 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001831 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001832 struct server *srv;
1833 char srv_addr[INET6_ADDRSTRLEN + 1];
1834 time_t srv_time_since_last_change;
1835 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001836 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001837
William Lallemanda6c5f332016-11-19 02:25:36 +01001838 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001839 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001840 return 1;
1841
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001842 if (!appctx->ctx.cli.p1)
1843 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001844
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001845 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1846 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001847 srv_addr[0] = '\0';
1848
1849 switch (srv->addr.ss_family) {
1850 case AF_INET:
1851 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1852 srv_addr, INET_ADDRSTRLEN + 1);
1853 break;
1854 case AF_INET6:
1855 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1856 srv_addr, INET6_ADDRSTRLEN + 1);
1857 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001858 default:
1859 memcpy(srv_addr, "-\0", 2);
1860 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001861 }
1862 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001863 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001864 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1865
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001866 srvrecord = NULL;
1867 if (srv->srvrq && srv->srvrq->name)
1868 srvrecord = srv->srvrq->name;
1869
Willy Tarreauab06f882020-07-01 07:09:39 +02001870 chunk_printf(&trash,
William Lallemanda6c5f332016-11-19 02:25:36 +01001871 "%d %s "
1872 "%d %s %s "
1873 "%d %d %d %d %ld "
1874 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001875 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001876 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001877 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001878 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001879 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001880 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001881 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1882 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001883 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001884 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001885 return 0;
1886 }
1887 }
1888 return 1;
1889}
1890
1891/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001892 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1893 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001894 */
1895static int cli_io_handler_servers_state(struct appctx *appctx)
1896{
1897 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001898 struct proxy *curproxy;
1899
1900 chunk_reset(&trash);
1901
1902 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001903 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001904 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001905 appctx->st2 = STAT_ST_HEAD;
1906 }
1907
1908 if (appctx->st2 == STAT_ST_HEAD) {
1909 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001910 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001911 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001912 return 0;
1913 }
1914 appctx->st2 = STAT_ST_INFO;
1915 }
1916
1917 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001918 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1919 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001920 /* servers are only in backends */
1921 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauca212e52020-07-01 07:02:42 +02001922 if (!dump_servers_state(si))
William Lallemanda6c5f332016-11-19 02:25:36 +01001923 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001924 }
1925 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001926 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001927 break;
1928 }
1929
1930 return 1;
1931}
1932
Willy Tarreau608ea592016-12-16 18:01:15 +01001933/* Parses backend list and simply report backend names. It keeps the proxy
1934 * pointer in cli.p0.
1935 */
William Lallemand933efcd2016-11-22 12:34:16 +01001936static int cli_io_handler_show_backend(struct appctx *appctx)
1937{
William Lallemand933efcd2016-11-22 12:34:16 +01001938 struct stream_interface *si = appctx->owner;
1939 struct proxy *curproxy;
1940
1941 chunk_reset(&trash);
1942
Willy Tarreau608ea592016-12-16 18:01:15 +01001943 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001944 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001945 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001946 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001947 return 0;
1948 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001949 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001950 }
1951
Willy Tarreau608ea592016-12-16 18:01:15 +01001952 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1953 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001954
1955 /* looking for backends only */
1956 if (!(curproxy->cap & PR_CAP_BE))
1957 continue;
1958
1959 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001960 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001961 continue;
1962
1963 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001964 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001965 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001966 return 0;
1967 }
1968 }
1969
1970 return 1;
1971}
William Lallemanda6c5f332016-11-19 02:25:36 +01001972
Willy Tarreaua275a372018-08-21 14:50:44 +02001973/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1974 *
1975 * Grabs the proxy lock and each server's lock.
1976 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001977static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001978{
1979 struct proxy *px;
1980 struct server *s;
1981
1982 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1983 return 1;
1984
1985 px = cli_find_backend(appctx, args[3]);
1986 if (!px)
1987 return 1;
1988
Willy Tarreau0ff395c2019-07-30 11:59:34 +02001989 /* Note: this lock is to make sure this doesn't change while another
1990 * thread is in srv_set_dyncookie().
1991 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001992 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001993 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau0ff395c2019-07-30 11:59:34 +02001994 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001995
Willy Tarreaua275a372018-08-21 14:50:44 +02001996 for (s = px->srv; s != NULL; s = s->next) {
1997 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001998 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001999 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2000 }
2001
Olivier Houchard614f8d72017-03-14 20:08:46 +01002002 return 1;
2003}
2004
Willy Tarreaua275a372018-08-21 14:50:44 +02002005/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
2006 *
2007 * Grabs the proxy lock and each server's lock.
2008 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002009static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002010{
2011 struct proxy *px;
2012 struct server *s;
2013
2014 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2015 return 1;
2016
2017 px = cli_find_backend(appctx, args[3]);
2018 if (!px)
2019 return 1;
2020
Willy Tarreau0ff395c2019-07-30 11:59:34 +02002021 /* Note: this lock is to make sure this doesn't change while another
2022 * thread is in srv_set_dyncookie().
2023 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002024 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002025 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau0ff395c2019-07-30 11:59:34 +02002026 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002027
2028 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02002029 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002030 if (!(s->flags & SRV_F_COOKIESET)) {
2031 free(s->cookie);
2032 s->cookie = NULL;
2033 }
Willy Tarreaua275a372018-08-21 14:50:44 +02002034 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002035 }
2036
2037 return 1;
2038}
2039
Willy Tarreaua275a372018-08-21 14:50:44 +02002040/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
2041 *
2042 * Grabs the proxy lock and each server's lock.
2043 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002044static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002045{
2046 struct proxy *px;
2047 struct server *s;
2048 char *newkey;
2049
2050 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2051 return 1;
2052
2053 px = cli_find_backend(appctx, args[3]);
2054 if (!px)
2055 return 1;
2056
2057 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002058 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01002059 appctx->ctx.cli.msg = "String value expected.\n";
2060 appctx->st0 = CLI_ST_PRINT;
2061 return 1;
2062 }
2063
2064 newkey = strdup(args[4]);
2065 if (!newkey) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002066 appctx->ctx.cli.severity = LOG_ERR;
Olivier Houchard614f8d72017-03-14 20:08:46 +01002067 appctx->ctx.cli.msg = "Failed to allocate memory.\n";
2068 appctx->st0 = CLI_ST_PRINT;
2069 return 1;
2070 }
Willy Tarreaua275a372018-08-21 14:50:44 +02002071
Willy Tarreau0ff395c2019-07-30 11:59:34 +02002072 /* Note: this lock is to make sure this doesn't change while another
2073 * thread is in srv_set_dyncookie().
2074 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002075 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002076 free(px->dyncookie_key);
2077 px->dyncookie_key = newkey;
Willy Tarreau0ff395c2019-07-30 11:59:34 +02002078 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002079
Willy Tarreaua275a372018-08-21 14:50:44 +02002080 for (s = px->srv; s != NULL; s = s->next) {
2081 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002082 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002083 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2084 }
2085
Olivier Houchard614f8d72017-03-14 20:08:46 +01002086 return 1;
2087}
2088
Willy Tarreaua275a372018-08-21 14:50:44 +02002089/* Parses the "set maxconn frontend" directive, it always returns 1.
2090 *
2091 * Grabs the proxy lock.
2092 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002093static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002094{
2095 struct proxy *px;
2096 struct listener *l;
2097 int v;
2098
2099 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2100 return 1;
2101
2102 px = cli_find_frontend(appctx, args[3]);
2103 if (!px)
2104 return 1;
2105
2106 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002107 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002108 appctx->ctx.cli.msg = "Integer value expected.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002109 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002110 return 1;
2111 }
2112
2113 v = atoi(args[4]);
2114 if (v < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002115 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002116 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002117 appctx->st0 = CLI_ST_PRINT;
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002118 return 1;
2119 }
2120
2121 /* OK, the value is fine, so we assign it to the proxy and to all of
2122 * its listeners. The blocked ones will be dequeued.
2123 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002124 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2125
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002126 px->maxconn = v;
2127 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002128 if (l->state == LI_FULL)
2129 resume_listener(l);
2130 }
2131
2132 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue))
2133 dequeue_all_listeners(&px->listener_queue);
2134
Willy Tarreaua275a372018-08-21 14:50:44 +02002135 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2136
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002137 return 1;
2138}
2139
Willy Tarreaua275a372018-08-21 14:50:44 +02002140/* Parses the "shutdown frontend" directive, it always returns 1.
2141 *
2142 * Grabs the proxy lock.
2143 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002144static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002145{
2146 struct proxy *px;
2147
2148 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2149 return 1;
2150
2151 px = cli_find_frontend(appctx, args[2]);
2152 if (!px)
2153 return 1;
2154
2155 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002156 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002157 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002158 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002159 return 1;
2160 }
2161
Christopher Faulet767a84b2017-11-24 16:50:31 +01002162 ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2163 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002164 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
2165 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002166
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002167 stop_proxy(px);
2168 return 1;
2169}
2170
Willy Tarreaua275a372018-08-21 14:50:44 +02002171/* Parses the "disable frontend" directive, it always returns 1.
2172 *
2173 * Grabs the proxy lock.
2174 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002175static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002176{
2177 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002178 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002179
2180 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2181 return 1;
2182
2183 px = cli_find_frontend(appctx, args[2]);
2184 if (!px)
2185 return 1;
2186
2187 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002188 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002189 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002190 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002191 return 1;
2192 }
2193
2194 if (px->state == PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002195 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002196 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002197 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002198 return 1;
2199 }
2200
Willy Tarreaua275a372018-08-21 14:50:44 +02002201 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2202 ret = pause_proxy(px);
2203 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2204
2205 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002206 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002207 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002208 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002209 return 1;
2210 }
2211 return 1;
2212}
2213
Willy Tarreaua275a372018-08-21 14:50:44 +02002214/* Parses the "enable frontend" directive, it always returns 1.
2215 *
2216 * Grabs the proxy lock.
2217 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002218static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002219{
2220 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002221 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002222
2223 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2224 return 1;
2225
2226 px = cli_find_frontend(appctx, args[2]);
2227 if (!px)
2228 return 1;
2229
2230 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002231 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002232 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002233 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002234 return 1;
2235 }
2236
2237 if (px->state != PR_STPAUSED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002238 appctx->ctx.cli.severity = LOG_NOTICE;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002239 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002240 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002241 return 1;
2242 }
2243
Willy Tarreaua275a372018-08-21 14:50:44 +02002244 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2245 ret = resume_proxy(px);
2246 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2247
2248 if (!ret) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02002249 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002250 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01002251 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002252 return 1;
2253 }
2254 return 1;
2255}
2256
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002257/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2258 * now.
2259 */
2260static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2261{
2262 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2263 return 1;
2264
2265 if (*args[2]) {
2266 struct proxy *px;
2267
2268 px = proxy_find_by_name(args[2], 0, 0);
2269 if (px)
2270 appctx->ctx.errors.iid = px->uuid;
2271 else
2272 appctx->ctx.errors.iid = atoi(args[2]);
2273
2274 if (!appctx->ctx.errors.iid) {
2275 appctx->ctx.cli.severity = LOG_ERR;
2276 appctx->ctx.cli.msg = "No such proxy.\n";
2277 appctx->st0 = CLI_ST_PRINT;
2278 return 1;
2279 }
2280 }
2281 else
2282 appctx->ctx.errors.iid = -1; // dump all proxies
2283
2284 appctx->ctx.errors.flag = 0;
2285 if (strcmp(args[3], "request") == 0)
2286 appctx->ctx.errors.flag |= 4; // ignore response
2287 else if (strcmp(args[3], "response") == 0)
2288 appctx->ctx.errors.flag |= 2; // ignore request
2289 appctx->ctx.errors.px = NULL;
2290 return 0;
2291}
2292
2293/* This function dumps all captured errors onto the stream interface's
2294 * read buffer. It returns 0 if the output buffer is full and it needs
2295 * to be called again, otherwise non-zero.
2296 */
2297static int cli_io_handler_show_errors(struct appctx *appctx)
2298{
2299 struct stream_interface *si = appctx->owner;
2300 extern const char *monthname[12];
2301
2302 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2303 return 1;
2304
2305 chunk_reset(&trash);
2306
2307 if (!appctx->ctx.errors.px) {
2308 /* the function had not been called yet, let's prepare the
2309 * buffer for a response.
2310 */
2311 struct tm tm;
2312
2313 get_localtime(date.tv_sec, &tm);
2314 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2315 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2316 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2317 error_snapshot_id);
2318
Willy Tarreau36b27362018-09-07 19:55:44 +02002319 if (ci_putchk(si_ic(si), &trash) == -1)
2320 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002321
2322 appctx->ctx.errors.px = proxies_list;
2323 appctx->ctx.errors.bol = 0;
2324 appctx->ctx.errors.ptr = -1;
2325 }
2326
2327 /* we have two inner loops here, one for the proxy, the other one for
2328 * the buffer.
2329 */
2330 while (appctx->ctx.errors.px) {
2331 struct error_snapshot *es;
2332
Willy Tarreau36b27362018-09-07 19:55:44 +02002333 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2334
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002335 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002336 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002337 if (appctx->ctx.errors.flag & 2) // skip req
2338 goto next;
2339 }
2340 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002341 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002342 if (appctx->ctx.errors.flag & 4) // skip resp
2343 goto next;
2344 }
2345
Willy Tarreauc55015e2018-09-07 19:02:32 +02002346 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002347 goto next;
2348
2349 if (appctx->ctx.errors.iid >= 0 &&
2350 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
2351 es->oe->uuid != appctx->ctx.errors.iid)
2352 goto next;
2353
2354 if (appctx->ctx.errors.ptr < 0) {
2355 /* just print headers now */
2356
2357 char pn[INET6_ADDRSTRLEN];
2358 struct tm tm;
2359 int port;
2360
2361 get_localtime(es->when.tv_sec, &tm);
2362 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2363 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2364 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2365
2366 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2367 case AF_INET:
2368 case AF_INET6:
2369 port = get_host_port(&es->src);
2370 break;
2371 default:
2372 port = 0;
2373 }
2374
2375 switch (appctx->ctx.errors.flag & 1) {
2376 case 0:
2377 chunk_appendf(&trash,
2378 " frontend %s (#%d): invalid request\n"
2379 " backend %s (#%d)",
2380 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2381 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2382 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
2383 break;
2384 case 1:
2385 chunk_appendf(&trash,
2386 " backend %s (#%d): invalid response\n"
2387 " frontend %s (#%d)",
2388 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
2389 es->oe->id, es->oe->uuid);
2390 break;
2391 }
2392
2393 chunk_appendf(&trash,
2394 ", server %s (#%d), event #%u, src %s:%d\n"
2395 " buffer starts at %llu (including %u out), %u free,\n"
2396 " len %u, wraps at %u, error at position %u\n",
2397 es->srv ? es->srv->id : "<NONE>",
2398 es->srv ? es->srv->puid : -1,
2399 es->ev_id, pn, port,
2400 es->buf_ofs, es->buf_out,
2401 global.tune.bufsize - es->buf_out - es->buf_len,
2402 es->buf_len, es->buf_wrap, es->buf_err);
2403
2404 if (es->show)
2405 es->show(&trash, es);
2406
2407 chunk_appendf(&trash, " \n");
2408
Willy Tarreau36b27362018-09-07 19:55:44 +02002409 if (ci_putchk(si_ic(si), &trash) == -1)
2410 goto cant_send_unlock;
2411
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002412 appctx->ctx.errors.ptr = 0;
2413 appctx->ctx.errors.ev_id = es->ev_id;
2414 }
2415
2416 if (appctx->ctx.errors.ev_id != es->ev_id) {
2417 /* the snapshot changed while we were dumping it */
2418 chunk_appendf(&trash,
2419 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002420 if (ci_putchk(si_ic(si), &trash) == -1)
2421 goto cant_send_unlock;
2422
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002423 goto next;
2424 }
2425
2426 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002427 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002428 int newptr;
2429 int newline;
2430
2431 newline = appctx->ctx.errors.bol;
2432 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2433 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002434 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002435
Willy Tarreau36b27362018-09-07 19:55:44 +02002436 if (ci_putchk(si_ic(si), &trash) == -1)
2437 goto cant_send_unlock;
2438
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002439 appctx->ctx.errors.ptr = newptr;
2440 appctx->ctx.errors.bol = newline;
2441 };
2442 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002443 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002444 appctx->ctx.errors.bol = 0;
2445 appctx->ctx.errors.ptr = -1;
2446 appctx->ctx.errors.flag ^= 1;
2447 if (!(appctx->ctx.errors.flag & 1))
2448 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2449 }
2450
2451 /* dump complete */
2452 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002453
2454 cant_send_unlock:
2455 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2456 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002457 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002458 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002459}
2460
William Lallemanda6c5f332016-11-19 02:25:36 +01002461/* register cli keywords */
2462static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002463 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2464 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002465 { { "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 +01002466 { { "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 +01002467 { { "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 +01002468 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002469 { { "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 },
2470 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2471 { { "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 +02002472 { { "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 +01002473 {{},}
2474}};
2475
Willy Tarreau0108d902018-11-25 19:14:37 +01002476INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002477
2478/*
2479 * Local variables:
2480 * c-indent-level: 8
2481 * c-basic-offset: 8
2482 * End:
2483 */