blob: 12cbd465177ada8581df5a41a5e6a305c8b0bc5e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <fcntl.h>
14#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020020#include <haproxy/applet-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020021#include <haproxy/api.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020022#include <common/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020023#include <haproxy/cli.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020024#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020025#include <haproxy/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020026#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020027#include <haproxy/http_ana.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020028#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020029#include <haproxy/log.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020030#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020031#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020032#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020033#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020034#include <haproxy/server-t.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020035#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020036#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020037#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020038#include <haproxy/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039
Willy Tarreau8d2b7772020-05-27 10:58:19 +020040#include <import/eb32tree.h>
41#include <import/ebistree.h>
Willy Tarreaucfd837f2014-03-15 07:43:51 +010042
Willy Tarreau278161c2020-06-04 11:18:28 +020043#include <haproxy/capture-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020045#include <haproxy/fd.h>
Willy Tarreaufc774542020-06-04 17:31:04 +020046#include <haproxy/proto_tcp.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020047#include <haproxy/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020048#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049
50
Willy Tarreau918ff602011-07-25 16:33:49 +020051int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010052struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020053struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010054struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010055unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010057/* proxy->options */
58const struct cfg_opt cfg_opts[] =
59{
60 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
61 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
62 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
63 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
64 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
65 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
66 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
67 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
68 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
69 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
70 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
71 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
72 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
73 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020074#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010075 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
76#else
77 { "transparent", 0, 0, 0, 0 },
78#endif
79
80 { NULL, 0, 0, 0, 0 }
81};
82
83/* proxy->options2 */
84const struct cfg_opt cfg_opts2[] =
85{
Willy Tarreaue5733232019-05-22 19:24:06 +020086#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010087 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
88 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
89 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
90#else
91 { "splice-request", 0, 0, 0, 0 },
92 { "splice-response", 0, 0, 0, 0 },
93 { "splice-auto", 0, 0, 0, 0 },
94#endif
95 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
96 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
97 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
98 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
99 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
100 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
101 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
102 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100103 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
104 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
105 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
106 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200107 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Christopher Faulet98fbe952019-07-22 16:18:24 +0200108
109 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
110 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet89aed322020-06-02 17:33:56 +0200111 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100112 { NULL, 0, 0, 0 }
113};
114
Willy Tarreau977b8e42006-12-29 14:19:17 +0100115/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100116 * This function returns a string containing a name describing capabilities to
117 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200118 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100119 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100120 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100121const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100122{
Willy Tarreau816eb542007-11-04 07:04:43 +0100123 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
124 if (cap & PR_CAP_FE)
125 return "frontend";
126 else if (cap & PR_CAP_BE)
127 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100128 }
129 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100130}
131
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100132/*
133 * This function returns a string containing the mode of the proxy in a format
134 * suitable for error messages.
135 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100136const char *proxy_mode_str(int mode) {
137
138 if (mode == PR_MODE_TCP)
139 return "tcp";
140 else if (mode == PR_MODE_HTTP)
141 return "http";
142 else if (mode == PR_MODE_HEALTH)
143 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200144 else if (mode == PR_MODE_CLI)
145 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100146 else
147 return "unknown";
148}
149
Willy Tarreauf3950172009-10-10 18:35:51 +0200150/*
151 * This function scans the list of backends and servers to retrieve the first
152 * backend and the first server with the given names, and sets them in both
153 * parameters. It returns zero if either is not found, or non-zero and sets
154 * the ones it did not found to NULL. If a NULL pointer is passed for the
155 * backend, only the pointer to the server will be updated.
156 */
157int get_backend_server(const char *bk_name, const char *sv_name,
158 struct proxy **bk, struct server **sv)
159{
160 struct proxy *p;
161 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100162 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200163
164 *sv = NULL;
165
Willy Tarreau050536d2012-10-04 08:47:34 +0200166 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200167 if (*sv_name == '#')
168 sid = atoi(sv_name + 1);
169
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200170 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200171 if (bk)
172 *bk = p;
173 if (!p)
174 return 0;
175
176 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100177 if ((sid >= 0 && s->puid == sid) ||
178 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200179 break;
180 *sv = s;
181 if (!s)
182 return 0;
183 return 1;
184}
185
Willy Tarreaue219db72007-12-03 01:30:13 +0100186/* This function parses a "timeout" statement in a proxy section. It returns
187 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200188 * return zero, it will write an error or warning message into a preallocated
189 * buffer returned at <err>. The trailing is not be written. The function must
190 * be called with <args> pointing to the first command line word, with <proxy>
191 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
192 * As a special case for compatibility with older configs, it also accepts
193 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100194 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200195static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200196 struct proxy *defpx, const char *file, int line,
197 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100198{
199 unsigned timeout;
200 int retval, cap;
201 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200202 int *tv = NULL;
203 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100204
205 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200206
207 /* simply skip "timeout" but remain compatible with old form */
208 if (strcmp(args[0], "timeout") == 0)
209 args++;
210
Willy Tarreaue219db72007-12-03 01:30:13 +0100211 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200212 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100213 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100214 tv = &proxy->timeout.client;
215 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100216 cap = PR_CAP_FE;
217 } else if (!strcmp(args[0], "tarpit")) {
218 tv = &proxy->timeout.tarpit;
219 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100220 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100221 } else if (!strcmp(args[0], "http-keep-alive")) {
222 tv = &proxy->timeout.httpka;
223 td = &defpx->timeout.httpka;
224 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100225 } else if (!strcmp(args[0], "http-request")) {
226 tv = &proxy->timeout.httpreq;
227 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200228 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200229 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100230 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100231 tv = &proxy->timeout.server;
232 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100233 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200234 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100235 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100236 tv = &proxy->timeout.connect;
237 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100238 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100239 } else if (!strcmp(args[0], "check")) {
240 tv = &proxy->timeout.check;
241 td = &defpx->timeout.check;
242 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100243 } else if (!strcmp(args[0], "queue")) {
244 tv = &proxy->timeout.queue;
245 td = &defpx->timeout.queue;
246 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200247 } else if (!strcmp(args[0], "tunnel")) {
248 tv = &proxy->timeout.tunnel;
249 td = &defpx->timeout.tunnel;
250 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200251 } else if (!strcmp(args[0], "client-fin")) {
252 tv = &proxy->timeout.clientfin;
253 td = &defpx->timeout.clientfin;
254 cap = PR_CAP_FE;
255 } else if (!strcmp(args[0], "server-fin")) {
256 tv = &proxy->timeout.serverfin;
257 td = &defpx->timeout.serverfin;
258 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200259 } else if (!strcmp(args[0], "clitimeout")) {
260 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
261 return -1;
262 } else if (!strcmp(args[0], "srvtimeout")) {
263 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
264 return -1;
265 } else if (!strcmp(args[0], "contimeout")) {
266 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
267 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100268 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200269 memprintf(err,
270 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200271 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
272 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200273 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100274 return -1;
275 }
276
277 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200278 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100279 return -1;
280 }
281
282 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200283 if (res == PARSE_TIME_OVER) {
284 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
285 args[1], name);
286 return -1;
287 }
288 else if (res == PARSE_TIME_UNDER) {
289 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
290 args[1], name);
291 return -1;
292 }
293 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200294 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100295 return -1;
296 }
297
298 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200299 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
300 name, proxy_type_str(proxy), proxy->id,
301 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100302 retval = 1;
303 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200304 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200305 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100306 retval = 1;
307 }
308
Willy Tarreaufac5b592014-05-22 08:24:46 +0200309 if (*args[2] != 0) {
310 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
311 retval = -1;
312 }
313
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200314 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100315 return retval;
316}
317
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100318/* This function parses a "rate-limit" statement in a proxy section. It returns
319 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200320 * return zero, it will write an error or warning message into a preallocated
321 * buffer returned at <err>. The function must be called with <args> pointing
322 * to the first command line word, with <proxy> pointing to the proxy being
323 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100324 */
325static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200326 struct proxy *defpx, const char *file, int line,
327 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100328{
William Dauchybb9da0b2020-01-16 01:34:27 +0100329 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200330 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100331 unsigned int *tv = NULL;
332 unsigned int *td = NULL;
333 unsigned int val;
334
335 retval = 0;
336
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200337 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200338 tv = &proxy->fe_sps_lim;
339 td = &defpx->fe_sps_lim;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200340 }
341 else {
342 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100343 return -1;
344 }
345
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200346 if (*args[2] == 0) {
347 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100348 return -1;
349 }
350
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100352 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200353 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 +0100354 return -1;
355 }
356
William Dauchybb9da0b2020-01-16 01:34:27 +0100357 if (!(proxy->cap & PR_CAP_FE)) {
358 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
359 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100360 retval = 1;
361 }
362 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200363 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100364 retval = 1;
365 }
366
367 *tv = val;
368 return retval;
369}
370
Willy Tarreauc35362a2014-04-25 13:58:37 +0200371/* This function parses a "max-keep-alive-queue" statement in a proxy section.
372 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
373 * does not return zero, it will write an error or warning message into a
374 * preallocated buffer returned at <err>. The function must be called with
375 * <args> pointing to the first command line word, with <proxy> pointing to
376 * the proxy being parsed, and <defpx> to the default proxy or NULL.
377 */
378static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
379 struct proxy *defpx, const char *file, int line,
380 char **err)
381{
382 int retval;
383 char *res;
384 unsigned int val;
385
386 retval = 0;
387
388 if (*args[1] == 0) {
389 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
390 return -1;
391 }
392
393 val = strtol(args[1], &res, 0);
394 if (*res) {
395 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
396 return -1;
397 }
398
399 if (!(proxy->cap & PR_CAP_BE)) {
400 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
401 args[0], proxy_type_str(proxy), proxy->id);
402 retval = 1;
403 }
404
405 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
406 proxy->max_ka_queue = val + 1;
407 return retval;
408}
409
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200410/* This function parses a "declare" statement in a proxy section. It returns -1
411 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
412 * it will write an error or warning message into a preallocated buffer returned
413 * at <err>. The function must be called with <args> pointing to the first command
414 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
415 * default proxy or NULL.
416 */
417static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
418 struct proxy *defpx, const char *file, int line,
419 char **err)
420{
421 /* Capture keyword wannot be declared in a default proxy. */
422 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800423 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200424 return -1;
425 }
426
Joseph Herlant59dd2952018-11-15 11:46:55 -0800427 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200428 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800429 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200430 return -1;
431 }
432
433 /* Check mandatory second keyword. */
434 if (!args[1] || !*args[1]) {
435 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
436 return -1;
437 }
438
Joseph Herlant59dd2952018-11-15 11:46:55 -0800439 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200440 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800441 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200442 * the second keyword.
443 */
444 if (strcmp(args[1], "capture") == 0) {
445 char *error = NULL;
446 long len;
447 struct cap_hdr *hdr;
448
449 /* Check the next keyword. */
450 if (!args[2] || !*args[2] ||
451 (strcmp(args[2], "response") != 0 &&
452 strcmp(args[2], "request") != 0)) {
453 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
454 return -1;
455 }
456
457 /* Check the 'len' keyword. */
458 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
459 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
460 return -1;
461 }
462
463 /* Check the length value. */
464 if (!args[4] || !*args[4]) {
465 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
466 "capture length",
467 args[0], args[1]);
468 return -1;
469 }
470
471 /* convert the length value. */
472 len = strtol(args[4], &error, 10);
473 if (*error != '\0') {
474 memprintf(err, "'%s %s': cannot parse the length '%s'.",
475 args[0], args[1], args[3]);
476 return -1;
477 }
478
479 /* check length. */
480 if (len <= 0) {
481 memprintf(err, "length must be > 0");
482 return -1;
483 }
484
485 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200486 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200487 hdr->name = NULL; /* not a header capture */
488 hdr->namelen = 0;
489 hdr->len = len;
490 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
491
492 if (strcmp(args[2], "request") == 0) {
493 hdr->next = curpx->req_cap;
494 hdr->index = curpx->nb_req_cap++;
495 curpx->req_cap = hdr;
496 }
497 if (strcmp(args[2], "response") == 0) {
498 hdr->next = curpx->rsp_cap;
499 hdr->index = curpx->nb_rsp_cap++;
500 curpx->rsp_cap = hdr;
501 }
502 return 0;
503 }
504 else {
505 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
506 return -1;
507 }
508}
509
Olivier Houcharda254a372019-04-05 15:30:12 +0200510/* This function parses a "retry-on" statement */
511static int
512proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
513 struct proxy *defpx, const char *file, int line,
514 char **err)
515{
516 int i;
517
518 if (!(*args[1])) {
519 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
520 return -1;
521 }
522 if (!(curpx->cap & PR_CAP_BE)) {
523 memprintf(err, "'%s' only available in backend or listen section", args[0]);
524 return -1;
525 }
526 curpx->retry_type = 0;
527 for (i = 1; *(args[i]); i++) {
528 if (!strcmp(args[i], "conn-failure"))
529 curpx->retry_type |= PR_RE_CONN_FAILED;
530 else if (!strcmp(args[i], "empty-response"))
531 curpx->retry_type |= PR_RE_DISCONNECTED;
532 else if (!strcmp(args[i], "response-timeout"))
533 curpx->retry_type |= PR_RE_TIMEOUT;
534 else if (!strcmp(args[i], "404"))
535 curpx->retry_type |= PR_RE_404;
536 else if (!strcmp(args[i], "408"))
537 curpx->retry_type |= PR_RE_408;
538 else if (!strcmp(args[i], "425"))
539 curpx->retry_type |= PR_RE_425;
540 else if (!strcmp(args[i], "500"))
541 curpx->retry_type |= PR_RE_500;
542 else if (!strcmp(args[i], "501"))
543 curpx->retry_type |= PR_RE_501;
544 else if (!strcmp(args[i], "502"))
545 curpx->retry_type |= PR_RE_502;
546 else if (!strcmp(args[i], "503"))
547 curpx->retry_type |= PR_RE_503;
548 else if (!strcmp(args[i], "504"))
549 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200550 else if (!strcmp(args[i], "0rtt-rejected"))
551 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200552 else if (!strcmp(args[i], "junk-response"))
553 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200554 else if (!(strcmp(args[i], "all-retryable-errors")))
555 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
556 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
557 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
558 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200559 else if (!strcmp(args[i], "none")) {
560 if (i != 1 || *args[i + 1]) {
561 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
562 return -1;
563 }
564 } else {
565 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
566 return -1;
567 }
568
569 }
570
571
572 return 0;
573}
574
Willy Tarreauf79d9502014-03-15 07:22:35 +0100575/* This function inserts proxy <px> into the tree of known proxies. The proxy's
576 * name is used as the storing key so it must already have been initialized.
577 */
578void proxy_store_name(struct proxy *px)
579{
580 px->conf.by_name.key = px->id;
581 ebis_insert(&proxy_by_name, &px->conf.by_name);
582}
583
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200584/* Returns a pointer to the first proxy matching capabilities <cap> and id
585 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
586 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200587 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200588struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200589{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200590 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200591
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200592 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
593 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100594
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200595 if (px->uuid != id)
596 break;
Alex Williams96532db2009-11-01 21:27:13 -0500597
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200598 if ((px->cap & cap) != cap)
599 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500600
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100601 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200602 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100603
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200604 return px;
605 }
606 return NULL;
607}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100608
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200609/* Returns a pointer to the first proxy matching either name <name>, or id
610 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
611 * If <table> is non-zero, it only considers proxies having a table.
612 */
613struct proxy *proxy_find_by_name(const char *name, int cap, int table)
614{
615 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200616
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200617 if (*name == '#') {
618 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
619 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200620 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500621 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100622 else {
623 struct ebpt_node *node;
624
625 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
626 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500627
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100628 if (strcmp(curproxy->id, name) != 0)
629 break;
630
631 if ((curproxy->cap & cap) != cap)
632 continue;
633
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100634 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200635 continue;
636
Willy Tarreauc739aa82015-05-26 11:35:41 +0200637 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100638 }
639 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200640 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500641}
642
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200643/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
644 * <id>. At most one of <id> or <name> may be different provided that <cap> is
645 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
646 * find a proxy based on some information from a previous configuration, across
647 * reloads or during information exchange between peers.
648 *
649 * Names are looked up first if present, then IDs are compared if present. In
650 * case of an inexact match whatever is forced in the configuration has
651 * precedence in the following order :
652 * - 1) forced ID (proves a renaming / change of proxy type)
653 * - 2) proxy name+type (may indicate a move if ID differs)
654 * - 3) automatic ID+type (may indicate a renaming)
655 *
656 * Depending on what is found, we can end up in the following situations :
657 *
658 * name id cap | possible causes
659 * -------------+-----------------
660 * -- -- -- | nothing found
661 * -- -- ok | nothing found
662 * -- ok -- | proxy deleted, ID points to next one
663 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
664 * ok -- -- | proxy deleted, but other half with same name still here (before)
665 * ok -- ok | proxy's ID changed (proxy moved in the config file)
666 * ok ok -- | proxy deleted, but other half with same name still here (after)
667 * ok ok ok | perfect match
668 *
669 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200670 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
671 * (and ID was not zero)
672 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
673 * (and name was not NULL)
674 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
675 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200676 *
677 * Only a valid proxy is returned. If capabilities do not match, NULL is
678 * returned. The caller can check <diff> to report detailed warnings / errors,
679 * and decide whether or not to use what was found.
680 */
681struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
682{
683 struct proxy *byname;
684 struct proxy *byid;
685
686 if (!name && !id)
687 return NULL;
688
689 if (diff)
690 *diff = 0;
691
692 byname = byid = NULL;
693
694 if (name) {
695 byname = proxy_find_by_name(name, cap, 0);
696 if (byname && (!id || byname->uuid == id))
697 return byname;
698 }
699
Joseph Herlant59dd2952018-11-15 11:46:55 -0800700 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200701 * - name not set
702 * - name set but not found
703 * - name found, but ID doesn't match.
704 */
705 if (id) {
706 byid = proxy_find_by_id(id, cap, 0);
707 if (byid) {
708 if (byname) {
709 /* id+type found, name+type found, but not all 3.
710 * ID wins only if forced, otherwise name wins.
711 */
712 if (byid->options & PR_O_FORCED_ID) {
713 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200714 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200715 return byid;
716 }
717 else {
718 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200719 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200720 return byname;
721 }
722 }
723
Joseph Herlant59dd2952018-11-15 11:46:55 -0800724 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200725 * - name not set
726 * - name set but not found
727 */
728 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200729 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200730 return byid;
731 }
732
733 /* ID not found */
734 if (byname) {
735 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200736 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200737 return byname;
738 }
739 }
740
Joseph Herlant59dd2952018-11-15 11:46:55 -0800741 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200742 * detailed information to the caller about changed types and/or name,
743 * we'll do it. For example, we could detect that "listen foo" was
744 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
745 * - name not set, ID not found
746 * - name not found, ID not set
747 * - name not found, ID not found
748 */
749 if (!diff)
750 return NULL;
751
752 if (name) {
753 byname = proxy_find_by_name(name, 0, 0);
754 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200755 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200756 }
757
758 if (id) {
759 byid = proxy_find_by_id(id, 0, 0);
760 if (byid) {
761 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200762 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200763 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200764 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200765 /* otherwise it's a different proxy that was returned */
766 }
767 }
768 return NULL;
769}
770
Willy Tarreaubaaee002006-06-26 02:48:02 +0200771/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100772 * This function finds a server with matching name within selected proxy.
773 * It also checks if there are more matching servers with
774 * requested name as this often leads into unexpected situations.
775 */
776
777struct server *findserver(const struct proxy *px, const char *name) {
778
779 struct server *cursrv, *target = NULL;
780
781 if (!px)
782 return NULL;
783
784 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
785 if (strcmp(cursrv->id, name))
786 continue;
787
788 if (!target) {
789 target = cursrv;
790 continue;
791 }
792
Christopher Faulet767a84b2017-11-24 16:50:31 +0100793 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
794 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100795
796 return NULL;
797 }
798
799 return target;
800}
801
Willy Tarreauff01a212009-03-15 13:46:16 +0100802/* This function checks that the designated proxy has no http directives
803 * enabled. It will output a warning if there are, and will fix some of them.
804 * It returns the number of fatal errors encountered. This should be called
805 * at the end of the configuration parsing if the proxy is not in http mode.
806 * The <file> argument is used to construct the error message.
807 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200808int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100809{
810 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100811 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
812 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100813 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100814 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100815 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
816 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100817 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200818 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100819 curproxy->lbprm.algo &= ~BE_LB_ALGO;
820 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100821 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
822 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100823 }
Willy Tarreau17804162009-11-09 21:27:51 +0100824 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
825 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100826 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
827 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
828 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100829 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200830 if (curproxy->conf.logformat_string == default_http_log_format ||
831 curproxy->conf.logformat_string == clf_http_log_format) {
832 /* Note: we don't change the directive's file:line number */
833 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100834 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
835 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
836 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200837 }
838
Willy Tarreauff01a212009-03-15 13:46:16 +0100839 return 0;
840}
841
Willy Tarreau237250c2011-07-29 01:49:03 +0200842/* Perform the most basic initialization of a proxy :
843 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200844 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200845 */
846void init_new_proxy(struct proxy *p)
847{
848 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100849 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400850 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +0200851 LIST_INIT(&p->acl);
852 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200853 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +0100854 LIST_INIT(&p->http_after_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200855 LIST_INIT(&p->redirect_rules);
856 LIST_INIT(&p->mon_fail_cond);
857 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200858 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200859 LIST_INIT(&p->persist_rules);
860 LIST_INIT(&p->sticking_rules);
861 LIST_INIT(&p->storersp_rules);
862 LIST_INIT(&p->tcp_req.inspect_rules);
863 LIST_INIT(&p->tcp_rep.inspect_rules);
864 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +0200865 LIST_INIT(&p->tcp_req.l5_rules);
Olivier Houchard859dc802019-08-08 15:47:21 +0200866 MT_LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200867 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100868 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200869 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +0100870 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200871 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200872 LIST_INIT(&p->conf.listeners);
Christopher Faulet76edc0f2020-01-13 15:52:01 +0100873 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200874 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100875 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +0200876 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +0200877
878 /* Timeouts are defined as -1 */
879 proxy_reset_timeouts(p);
880 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200881
882 /* initial uuid is unassigned (-1) */
883 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200884
Olivier Houcharda254a372019-04-05 15:30:12 +0200885 /* Default to only allow L4 retries */
886 p->retry_type = PR_RE_CONN_FAILED;
887
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100888 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +0200889}
890
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100891/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200892 * This function creates all proxy sockets. It should be done very early,
893 * typically before privileges are dropped. The sockets will be registered
894 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200895 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200896 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200897 *
898 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
899 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200900 */
901int start_proxies(int verbose)
902{
903 struct proxy *curproxy;
904 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100905 int lerr, err = ERR_NONE;
906 int pxerr;
907 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200908
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100909 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200910 if (curproxy->state != PR_STNEW)
911 continue; /* already initialized */
912
913 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200914 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100915 if (listener->state != LI_ASSIGNED)
916 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917
Emeric Bruncf20bf12010-10-22 16:06:11 +0200918 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919
Willy Tarreaue6b98942007-10-29 01:09:36 +0100920 /* errors are reported if <verbose> is set or if they are fatal */
921 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
922 if (lerr & ERR_ALERT)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100923 ha_alert("Starting %s %s: %s\n",
924 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100925 else if (lerr & ERR_WARN)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100926 ha_warning("Starting %s %s: %s\n",
927 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 }
929
Willy Tarreaue6b98942007-10-29 01:09:36 +0100930 err |= lerr;
931 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100933 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100935 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936 pxerr |= 1;
937 continue;
938 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200939 }
940
941 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200942 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
944 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100945
946 if (err & ERR_ABORT)
947 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948 }
949
950 return err;
951}
952
953
954/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200955 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200956 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200957 * called as a task which is woken up upon stopping or when rate limiting must
958 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200960struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200962 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +0200963 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100964 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965
Willy Tarreau918ff602011-07-25 16:33:49 +0200966 /* We should periodically try to enable listeners waiting for a
967 * global resource here.
968 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200969
Willy Tarreau918ff602011-07-25 16:33:49 +0200970 /* first, let's check if we need to stop the proxy */
971 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
972 int t;
973 t = tick_remain(now_ms, p->stop_time);
974 if (t == 0) {
William Dauchy1e2256d2020-01-25 23:45:18 +0100975 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +0100976 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +0100977 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau918ff602011-07-25 16:33:49 +0200978 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
979 stop_proxy(p);
980 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100981 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +0200982 }
983 else {
984 next = tick_first(next, p->stop_time);
985 }
986 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200987
Willy Tarreau3a925c12013-09-04 17:54:01 +0200988 /* If the proxy holds a stick table, we need to purge all unused
989 * entries. These are all the ones in the table with ref_cnt == 0
990 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200991 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200992 * be in neither list. Any entry being dumped will have ref_cnt > 0.
993 * However we protect tables that are being synced to peers.
994 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100995 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
996 if (!p->table->syncing) {
997 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100998 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +0200999 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001000 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001001 /* some entries still remain, let's recheck in one second */
1002 next = tick_first(next, tick_add(now_ms, 1000));
1003 }
1004 }
1005
Willy Tarreau918ff602011-07-25 16:33:49 +02001006 /* the rest below is just for frontends */
1007 if (!(p->cap & PR_CAP_FE))
1008 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001009
Willy Tarreau918ff602011-07-25 16:33:49 +02001010 /* check the various reasons we may find to block the frontend */
1011 if (unlikely(p->feconn >= p->maxconn)) {
1012 if (p->state == PR_STREADY)
1013 p->state = PR_STFULL;
1014 goto out;
1015 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001016
Willy Tarreau918ff602011-07-25 16:33:49 +02001017 /* OK we have no reason to block, so let's unblock if we were blocking */
1018 if (p->state == PR_STFULL)
1019 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001020
Willy Tarreau918ff602011-07-25 16:33:49 +02001021 if (p->fe_sps_lim &&
1022 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1023 /* we're blocking because a limit was reached on the number of
1024 * requests/s on the frontend. We want to re-check ASAP, which
1025 * means in 1 ms before estimated expiration date, because the
1026 * timer will have settled down.
1027 */
1028 next = tick_first(next, tick_add(now_ms, wait));
1029 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001030 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001031
1032 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01001033 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02001034 out:
1035 t->expire = next;
1036 task_queue(t);
1037 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001038}
1039
1040
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001041static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1042 struct proxy *defpx, const char *file, int line,
1043 char **err)
1044{
1045 const char *res;
1046
1047 if (!*args[1]) {
1048 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1049 return -1;
1050 }
1051 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001052 if (res == PARSE_TIME_OVER) {
1053 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1054 args[1], args[0]);
1055 return -1;
1056 }
1057 else if (res == PARSE_TIME_UNDER) {
1058 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1059 args[1], args[0]);
1060 return -1;
1061 }
1062 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001063 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1064 return -1;
1065 }
1066 return 0;
1067}
1068
Olivier Houchard9f6af332018-05-25 14:04:04 +02001069struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001070{
1071 struct proxy *p;
1072 struct stream *s;
1073
1074 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001075 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001076 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001077 killed = 2;
1078 t->expire = TICK_ETERNITY;
1079 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001080 }
1081
Christopher Faulet767a84b2017-11-24 16:50:31 +01001082 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001083 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001084 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001085 while (p) {
1086 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001087 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1088 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001089 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1090 p->id, p->feconn);
1091 }
1092 p = p->next;
1093 }
1094 list_for_each_entry(s, &streams, list) {
1095 stream_shutdown(s, SF_ERR_KILLED);
1096 }
1097
1098 killed = 1;
1099 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1100 return t;
1101}
1102
Willy Tarreaubaaee002006-06-26 02:48:02 +02001103/*
1104 * this function disables health-check servers so that the process will quickly be ignored
1105 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1106 * time will not be used since it would already not listen anymore to the socket.
1107 */
1108void soft_stop(void)
1109{
1110 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001111 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001112 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001113
1114 stopping = 1;
William Dauchy3894d972019-12-28 15:36:02 +01001115 /* disable busy polling to avoid cpu eating for the new process */
1116 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001117 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001118 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001119 if (task) {
1120 task->process = hard_stop;
1121 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1122 }
1123 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001124 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001125 }
1126 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001127 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001128 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001129 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001130 /* Zombie proxy, let's close the file descriptors */
1131 if (p->state == PR_STSTOPPED &&
1132 !LIST_ISEMPTY(&p->conf.listeners) &&
1133 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau67878d72019-12-10 07:11:35 +01001134 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001135 struct listener *l;
1136 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau67878d72019-12-10 07:11:35 +01001137 if (l->state > LI_ASSIGNED)
Olivier Houchard1fc05162017-04-06 01:05:05 +02001138 close(l->fd);
1139 l->state = LI_INIT;
1140 }
1141 }
1142
Willy Tarreaubaaee002006-06-26 02:48:02 +02001143 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 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 +02001145 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 +02001146 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001147
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001148 /* Note: do not wake up stopped proxies' task nor their tables'
1149 * tasks as these ones might point to already released entries.
1150 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001151 if (p->table && p->table->size && p->table->sync_task)
1152 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001153
1154 if (p->task)
1155 task_wakeup(p->task, TASK_WOKEN_MSG);
1156 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001157 p = p->next;
1158 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001159
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001160 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001161 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001162 if (prs->peers_fe)
1163 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001164 prs = prs->next;
1165 }
Willy Tarreaud0807c32010-08-27 18:26:11 +02001166 /* signal zero is used to broadcast the "stopping" event */
1167 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168}
1169
1170
Willy Tarreaube58c382011-07-24 18:28:10 +02001171/* Temporarily disables listening on all of the proxy's listeners. Upon
1172 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1173 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001174 * because we don't know how to resume from this. The function returns 0
1175 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001176 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001177int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178{
1179 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001180
1181 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1182 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1183 return 1;
1184
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001186 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1187
Willy Tarreau4348fad2012-09-20 16:48:07 +02001188 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001189 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001190 p->state = PR_STERROR;
1191 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001192
1193 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001194 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001195 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1196 return 0;
1197 }
1198
1199 p->state = PR_STPAUSED;
1200 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001201}
1202
Olivier Houchard1fc05162017-04-06 01:05:05 +02001203/* This function makes the proxy unusable, but keeps the listening sockets
1204 * opened, so that if any process requests them, we are able to serve them.
1205 * This should only be called early, before we started accepting requests.
1206 */
1207void zombify_proxy(struct proxy *p)
1208{
1209 struct listener *l;
1210 struct listener *first_to_listen = NULL;
1211
1212 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1213 enum li_state oldstate = l->state;
1214
1215 unbind_listener_no_close(l);
1216 if (l->state >= LI_ASSIGNED) {
1217 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001218 }
1219 /*
1220 * Pretend we're still up and running so that the fd
1221 * will be sent if asked.
1222 */
1223 l->state = LI_ZOMBIE;
1224 if (!first_to_listen && oldstate >= LI_LISTEN)
1225 first_to_listen = l;
1226 }
1227 /* Quick hack : at stop time, to know we have to close the sockets
1228 * despite the proxy being marked as stopped, make the first listener
1229 * of the listener list an active one, so that we don't have to
1230 * parse the whole list to be sure.
1231 */
1232 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1233 struct listener *, by_fe) != first_to_listen) {
1234 LIST_DEL(&l->by_fe);
1235 LIST_ADD(&p->conf.listeners, &l->by_fe);
1236 }
1237
1238 p->state = PR_STSTOPPED;
1239}
Willy Tarreauda250db2008-10-12 12:07:48 +02001240
1241/*
1242 * This function completely stops a proxy and releases its listeners. It has
1243 * to be called when going down in order to release the ports so that another
1244 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001245 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001246 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1247 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001248 */
1249void stop_proxy(struct proxy *p)
1250{
1251 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001252 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001253
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001254 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1255
Willy Tarreau4348fad2012-09-20 16:48:07 +02001256 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001257 if (l->options & LI_O_NOSTOP) {
1258 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1259 nostop = 1;
1260 continue;
1261 }
William Lallemandf7f488d2019-10-18 21:16:39 +02001262 /* The master should not close an inherited FD */
1263 if (master && (l->options & LI_O_INHERITED))
1264 unbind_listener_no_close(l);
1265 else
1266 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001267 if (l->state >= LI_ASSIGNED) {
1268 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001269 }
1270 }
William Lallemandc59f9882018-11-16 16:57:21 +01001271 if (!nostop)
1272 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001273
1274 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001275}
1276
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001277/* This function resumes listening on the specified proxy. It scans all of its
1278 * listeners and tries to enable them all. If any of them fails, the proxy is
1279 * put back to the paused state. It returns 1 upon success, or zero if an error
1280 * is encountered.
1281 */
1282int resume_proxy(struct proxy *p)
1283{
1284 struct listener *l;
1285 int fail;
1286
1287 if (p->state != PR_STPAUSED)
1288 return 1;
1289
Christopher Faulet767a84b2017-11-24 16:50:31 +01001290 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001291 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1292
1293 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001294 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001295 if (!resume_listener(l)) {
1296 int port;
1297
1298 port = get_host_port(&l->addr);
1299 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001300 ha_warning("Port %d busy while trying to enable %s %s.\n",
1301 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001302 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1303 port, proxy_cap_str(p->cap), p->id);
1304 }
1305 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1307 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001308 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1309 l->luid, proxy_cap_str(p->cap), p->id);
1310 }
1311
1312 /* Another port might have been enabled. Let's stop everything. */
1313 fail = 1;
1314 break;
1315 }
1316 }
1317
1318 p->state = PR_STREADY;
1319 if (fail) {
1320 pause_proxy(p);
1321 return 0;
1322 }
1323 return 1;
1324}
1325
Willy Tarreaubaaee002006-06-26 02:48:02 +02001326/*
1327 * This function temporarily disables listening so that another new instance
1328 * can start listening. It is designed to be called upon reception of a
1329 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1330 * the proxy, or a SIGTTIN can be sent to listen again.
1331 */
1332void pause_proxies(void)
1333{
1334 int err;
1335 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001336 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001337
1338 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001339 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001340 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001341 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001342 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001343 p = p->next;
1344 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001345
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001346 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001347 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001348 if (prs->peers_fe)
1349 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001350 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001351 }
1352
Willy Tarreaubaaee002006-06-26 02:48:02 +02001353 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001355 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1356 soft_stop();
1357 }
1358}
1359
1360
1361/*
1362 * This function reactivates listening. This can be used after a call to
1363 * sig_pause(), for example when a new instance has failed starting up.
1364 * It is designed to be called upon reception of a SIGTTIN.
1365 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001366void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001367{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001368 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001369 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001370 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001372 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001373 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001374 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001375 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001376 err |= !resume_proxy(p);
1377 p = p->next;
1378 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001379
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001380 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001381 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001382 if (prs->peers_fe)
1383 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001384 prs = prs->next;
1385 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001386
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001387 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001388 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001389 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 +02001390 }
1391}
1392
Willy Tarreau87b09662015-04-03 00:22:06 +02001393/* Set current stream's backend to <be>. Nothing is done if the
1394 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001395 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001396 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001397 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001398 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001399int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001400{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001401 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001402 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001403
1404 if (flt_set_stream_backend(s, be) < 0)
1405 return 0;
1406
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001407 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001408 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1409 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001410 proxy_inc_be_ctr(be);
1411
Willy Tarreau87b09662015-04-03 00:22:06 +02001412 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001413 s->si[1].flags &= ~SI_FL_INDEP_STR;
1414 if (be->options2 & PR_O2_INDEPSTR)
1415 s->si[1].flags |= SI_FL_INDEP_STR;
1416
Hongbo Longe39683c2017-03-10 18:41:51 +01001417 if (tick_isset(be->timeout.serverfin))
1418 s->si[1].hcto = be->timeout.serverfin;
1419
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001420 /* We want to enable the backend-specific analysers except those which
1421 * were already run as part of the frontend/listener. Note that it would
1422 * be more reliable to store the list of analysers that have been run,
1423 * but what we do here is OK for now.
1424 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001425 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001426
Willy Tarreau51aecc72009-07-12 09:47:04 +02001427 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001428 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001429 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001430 if (unlikely(!s->txn && be->http_needed)) {
1431 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001432 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001433
1434 /* and now initialize the HTTP transaction state */
1435 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001436 }
1437
Christopher Faulet309c6412015-12-02 09:57:32 +01001438 /* Be sure to filter request headers if the backend is an HTTP proxy and
1439 * if there are filters attached to the stream. */
1440 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001441 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001442
Willy Tarreaueee5b512015-04-03 23:46:31 +02001443 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001444 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1445 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001446 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001447 struct connection *conn = objt_conn(strm_sess(s)->origin);
1448 struct conn_stream *cs = objt_cs(s->si[0].end);
1449
1450 if (conn && cs) {
1451 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001452 /* Make sure we're unsubscribed, the the new
1453 * mux will probably want to subscribe to
1454 * the underlying XPRT
1455 */
1456 if (s->si[0].wait_event.events)
1457 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1458 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001459 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001460 return 0;
Olivier Houchard4c18f942019-07-31 18:05:26 +02001461 if (!strcmp(conn->mux->name, "H2")) {
1462 /* For HTTP/2, destroy the conn_stream,
1463 * disable logging, and pretend that we
1464 * failed, to that the stream is
1465 * silently destroyed. The new mux
1466 * will create new streams.
1467 */
Olivier Houchard59dd06d2019-08-09 18:01:15 +02001468 cs_free(cs);
Olivier Houchard4c18f942019-07-31 18:05:26 +02001469 si_detach_endpoint(&s->si[0]);
1470 s->logs.logwait = 0;
1471 s->logs.level = 0;
1472 s->flags |= SF_IGNORE;
1473 return 0;
1474 }
Olivier Houchard71b20c22019-08-09 17:50:05 +02001475 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001476 }
1477 }
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001478 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1479 /* If a TCP backend is assgiend to an HTX stream, return
1480 * an error. It may happens for a new stream on a
1481 * previously upgraded connnections. */
1482 if (!(s->flags & SF_ERR_MASK))
1483 s->flags |= SF_ERR_INTERNAL;
1484 return 0;
1485 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001486
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001487 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001488 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001489 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001490 }
1491
1492 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001493 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001494 s->req.flags |= CF_NEVER_WAIT;
1495 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001496 }
1497
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001498 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001499}
1500
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001501/* Capture a bad request or response and archive it in the proxy's structure.
1502 * It is relatively protocol-agnostic so it requires that a number of elements
1503 * are passed :
1504 * - <proxy> is the proxy where the error was detected and where the snapshot
1505 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001506 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001507 * - <other_end> is a pointer to the proxy on the other side when known
1508 * - <target> is the target of the connection, usually a server or a proxy
1509 * - <sess> is the session which experienced the error
1510 * - <ctx> may be NULL or should contain any info relevant to the protocol
1511 * - <buf> is the buffer containing the offending data
1512 * - <buf_ofs> is the position of this buffer's input data in the input
1513 * stream, starting at zero. It may be passed as zero if unknown.
1514 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1515 * which precedes the buffer's input. The buffer's input starts at
1516 * buf->head + buf_out.
1517 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1518 * - <show> is the callback to use to display <ctx>. It may be NULL.
1519 */
1520void proxy_capture_error(struct proxy *proxy, int is_back,
1521 struct proxy *other_end, enum obj_type *target,
1522 const struct session *sess,
1523 const struct buffer *buf, long buf_ofs,
1524 unsigned int buf_out, unsigned int err_pos,
1525 const union error_snapshot_ctx *ctx,
1526 void (*show)(struct buffer *, const struct error_snapshot *))
1527{
1528 struct error_snapshot *es;
1529 unsigned int buf_len;
1530 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001531 unsigned int ev_id;
1532
1533 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1534
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001535 buf_len = b_data(buf) - buf_out;
1536
1537 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001538 if (!es)
1539 return;
1540
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001541 es->buf_len = buf_len;
1542 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001543
Christopher Faulet47a72102020-01-06 11:37:00 +01001544 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001545 if (len1 > buf_len)
1546 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001547
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001548 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001549 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001550 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001551 if (len2)
1552 memcpy(es->buf + len1, b_orig(buf), len2);
1553 }
1554
1555 es->buf_err = err_pos;
1556 es->when = date; // user-visible date
1557 es->srv = objt_server(target);
1558 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001559 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02001560 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001561 else
1562 memset(&es->src, 0, sizeof(es->src));
1563
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001564 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1565 es->buf_out = buf_out;
1566 es->buf_ofs = buf_ofs;
1567
1568 /* be sure to indicate the offset of the first IN byte */
1569 if (es->buf_ofs >= es->buf_len)
1570 es->buf_ofs -= es->buf_len;
1571 else
1572 es->buf_ofs = 0;
1573
1574 /* protocol-specific part now */
1575 if (ctx)
1576 es->ctx = *ctx;
1577 else
1578 memset(&es->ctx, 0, sizeof(es->ctx));
1579 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001580
1581 /* note: we still lock since we have to be certain that nobody is
1582 * dumping the output while we free.
1583 */
1584 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1585 if (is_back) {
1586 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1587 } else {
1588 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1589 }
1590 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001591 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1592}
1593
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001594/* Configure all proxies which lack a maxconn setting to use the global one by
1595 * default. This avoids the common mistake consisting in setting maxconn only
1596 * in the global section and discovering the hard way that it doesn't propagate
1597 * through the frontends. These values are also propagated through the various
1598 * targetted backends, whose fullconn is finally calculated if not yet set.
1599 */
1600void proxy_adjust_all_maxconn()
1601{
1602 struct proxy *curproxy;
1603 struct switching_rule *swrule1, *swrule2;
1604
1605 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1606 if (curproxy->state == PR_STSTOPPED)
1607 continue;
1608
1609 if (!(curproxy->cap & PR_CAP_FE))
1610 continue;
1611
1612 if (!curproxy->maxconn)
1613 curproxy->maxconn = global.maxconn;
1614
1615 /* update the target backend's fullconn count : default_backend */
1616 if (curproxy->defbe.be)
1617 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1618 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1619 curproxy->tot_fe_maxconn += curproxy->maxconn;
1620
1621 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1622 /* For each target of switching rules, we update their
1623 * tot_fe_maxconn, except if a previous rule points to
1624 * the same backend or to the default backend.
1625 */
1626 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001627 /* note: swrule1->be.backend isn't a backend if the rule
1628 * is dynamic, it's an expression instead, so it must not
1629 * be dereferenced as a backend before being certain it is.
1630 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001631 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1632 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001633 if (!swrule1->dynamic)
1634 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001635 break;
1636 }
1637 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1638 /* there are multiple refs of this backend */
1639 break;
1640 }
1641 }
1642 }
1643 }
1644 }
1645
1646 /* automatically compute fullconn if not set. We must not do it in the
1647 * loop above because cross-references are not yet fully resolved.
1648 */
1649 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1650 if (curproxy->state == PR_STSTOPPED)
1651 continue;
1652
1653 /* If <fullconn> is not set, let's set it to 10% of the sum of
1654 * the possible incoming frontend's maxconns.
1655 */
1656 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1657 /* we have the sum of the maxconns in <total>. We only
1658 * keep 10% of that sum to set the default fullconn, with
1659 * a hard minimum of 1 (to avoid a divide by zero).
1660 */
1661 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1662 if (!curproxy->fullconn)
1663 curproxy->fullconn = 1;
1664 }
1665 }
1666}
1667
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001668/* Config keywords below */
1669
Willy Tarreaudc13c112013-06-21 23:16:39 +02001670static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001671 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001672 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001673 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1674 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1675 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001676 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001677 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001678 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001679 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001680 { 0, NULL, NULL },
1681}};
1682
Willy Tarreau0108d902018-11-25 19:14:37 +01001683INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1684
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001685/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1686 * adequate error messages and returns NULL. This function is designed to be used by
1687 * functions requiring a frontend on the CLI.
1688 */
1689struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1690{
1691 struct proxy *px;
1692
1693 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001694 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001695 return NULL;
1696 }
1697
1698 px = proxy_fe_by_name(arg);
1699 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001700 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001701 return NULL;
1702 }
1703 return px;
1704}
1705
Olivier Houchard614f8d72017-03-14 20:08:46 +01001706/* Expects to find a backend named <arg> and returns it, otherwise displays various
1707 * adequate error messages and returns NULL. This function is designed to be used by
1708 * functions requiring a frontend on the CLI.
1709 */
1710struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1711{
1712 struct proxy *px;
1713
1714 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001715 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001716 return NULL;
1717 }
1718
1719 px = proxy_be_by_name(arg);
1720 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001721 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001722 return NULL;
1723 }
1724 return px;
1725}
1726
1727
William Lallemanda6c5f332016-11-19 02:25:36 +01001728/* parse a "show servers" CLI line, returns 0 if it wants to start the dump or
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001729 * 1 if it stops immediately. If an argument is specified, it will set the proxy
1730 * pointer into cli.p0 and its ID into cli.i0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001731 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001732static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001733{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001734 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001735
1736 /* check if a backend name has been provided */
1737 if (*args[3]) {
1738 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001739 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001740
Willy Tarreau9d008692019-08-09 11:21:01 +02001741 if (!px)
1742 return cli_err(appctx, "Can't find backend.\n");
1743
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001744 appctx->ctx.cli.p0 = px;
1745 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001746 }
1747 return 0;
1748}
1749
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001750/* dumps server state information into <buf> for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001751 * These information are all the parameters which may change during HAProxy runtime.
1752 * By default, we only export to the last known server state file format.
1753 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001754 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1755 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001756 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001757static int dump_servers_state(struct stream_interface *si, struct buffer *buf)
William Lallemanda6c5f332016-11-19 02:25:36 +01001758{
1759 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001760 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001761 struct server *srv;
1762 char srv_addr[INET6_ADDRSTRLEN + 1];
1763 time_t srv_time_since_last_change;
1764 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001765 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001766
William Lallemanda6c5f332016-11-19 02:25:36 +01001767 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001768 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001769 return 1;
1770
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001771 if (!appctx->ctx.cli.p1)
1772 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001773
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001774 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1775 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001776 srv_addr[0] = '\0';
1777
1778 switch (srv->addr.ss_family) {
1779 case AF_INET:
1780 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1781 srv_addr, INET_ADDRSTRLEN + 1);
1782 break;
1783 case AF_INET6:
1784 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1785 srv_addr, INET6_ADDRSTRLEN + 1);
1786 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001787 default:
1788 memcpy(srv_addr, "-\0", 2);
1789 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001790 }
1791 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001792 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001793 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1794
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001795 srvrecord = NULL;
1796 if (srv->srvrq && srv->srvrq->name)
1797 srvrecord = srv->srvrq->name;
1798
William Lallemanda6c5f332016-11-19 02:25:36 +01001799 chunk_appendf(buf,
1800 "%d %s "
1801 "%d %s %s "
1802 "%d %d %d %d %ld "
1803 "%d %d %d %d %d "
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001804 "%d %d %s %u %s"
William Lallemanda6c5f332016-11-19 02:25:36 +01001805 "\n",
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001806 px->uuid, px->id,
William Lallemanda6c5f332016-11-19 02:25:36 +01001807 srv->puid, srv->id, srv_addr,
Emeric Brun52a91d32017-08-31 14:41:55 +02001808 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
William Lallemanda6c5f332016-11-19 02:25:36 +01001809 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001810 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1811 srvrecord ? srvrecord : "-");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001812 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001813 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001814 return 0;
1815 }
1816 }
1817 return 1;
1818}
1819
1820/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001821 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1822 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001823 */
1824static int cli_io_handler_servers_state(struct appctx *appctx)
1825{
1826 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001827 struct proxy *curproxy;
1828
1829 chunk_reset(&trash);
1830
1831 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001832 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001833 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01001834 appctx->st2 = STAT_ST_HEAD;
1835 }
1836
1837 if (appctx->st2 == STAT_ST_HEAD) {
1838 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001839 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001840 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001841 return 0;
1842 }
1843 appctx->st2 = STAT_ST_INFO;
1844 }
1845
1846 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001847 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1848 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001849 /* servers are only in backends */
1850 if (curproxy->cap & PR_CAP_BE) {
1851 if (!dump_servers_state(si, &trash))
1852 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001853 }
1854 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001855 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01001856 break;
1857 }
1858
1859 return 1;
1860}
1861
Willy Tarreau608ea592016-12-16 18:01:15 +01001862/* Parses backend list and simply report backend names. It keeps the proxy
1863 * pointer in cli.p0.
1864 */
William Lallemand933efcd2016-11-22 12:34:16 +01001865static int cli_io_handler_show_backend(struct appctx *appctx)
1866{
William Lallemand933efcd2016-11-22 12:34:16 +01001867 struct stream_interface *si = appctx->owner;
1868 struct proxy *curproxy;
1869
1870 chunk_reset(&trash);
1871
Willy Tarreau608ea592016-12-16 18:01:15 +01001872 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01001873 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001874 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001875 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001876 return 0;
1877 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001878 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01001879 }
1880
Willy Tarreau608ea592016-12-16 18:01:15 +01001881 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
1882 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01001883
1884 /* looking for backends only */
1885 if (!(curproxy->cap & PR_CAP_BE))
1886 continue;
1887
1888 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001889 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01001890 continue;
1891
1892 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001893 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001894 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01001895 return 0;
1896 }
1897 }
1898
1899 return 1;
1900}
William Lallemanda6c5f332016-11-19 02:25:36 +01001901
Willy Tarreaua275a372018-08-21 14:50:44 +02001902/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
1903 *
1904 * Grabs the proxy lock and each server's lock.
1905 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001906static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001907{
1908 struct proxy *px;
1909 struct server *s;
1910
1911 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1912 return 1;
1913
1914 px = cli_find_backend(appctx, args[3]);
1915 if (!px)
1916 return 1;
1917
Willy Tarreau5e83d992019-07-30 11:59:34 +02001918 /* Note: this lock is to make sure this doesn't change while another
1919 * thread is in srv_set_dyncookie().
1920 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001921 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001922 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001923 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001924
Willy Tarreaua275a372018-08-21 14:50:44 +02001925 for (s = px->srv; s != NULL; s = s->next) {
1926 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001927 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02001928 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1929 }
1930
Olivier Houchard614f8d72017-03-14 20:08:46 +01001931 return 1;
1932}
1933
Willy Tarreaua275a372018-08-21 14:50:44 +02001934/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
1935 *
1936 * Grabs the proxy lock and each server's lock.
1937 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001938static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001939{
1940 struct proxy *px;
1941 struct server *s;
1942
1943 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1944 return 1;
1945
1946 px = cli_find_backend(appctx, args[3]);
1947 if (!px)
1948 return 1;
1949
Willy Tarreau5e83d992019-07-30 11:59:34 +02001950 /* Note: this lock is to make sure this doesn't change while another
1951 * thread is in srv_set_dyncookie().
1952 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001953 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001954 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001955 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001956
1957 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02001958 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001959 if (!(s->flags & SRV_F_COOKIESET)) {
1960 free(s->cookie);
1961 s->cookie = NULL;
1962 }
Willy Tarreaua275a372018-08-21 14:50:44 +02001963 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001964 }
1965
1966 return 1;
1967}
1968
Willy Tarreaua275a372018-08-21 14:50:44 +02001969/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
1970 *
1971 * Grabs the proxy lock and each server's lock.
1972 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001973static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01001974{
1975 struct proxy *px;
1976 struct server *s;
1977 char *newkey;
1978
1979 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1980 return 1;
1981
1982 px = cli_find_backend(appctx, args[3]);
1983 if (!px)
1984 return 1;
1985
Willy Tarreau9d008692019-08-09 11:21:01 +02001986 if (!*args[4])
1987 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001988
1989 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001990 if (!newkey)
1991 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02001992
Willy Tarreau5e83d992019-07-30 11:59:34 +02001993 /* Note: this lock is to make sure this doesn't change while another
1994 * thread is in srv_set_dyncookie().
1995 */
Willy Tarreaua275a372018-08-21 14:50:44 +02001996 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01001997 free(px->dyncookie_key);
1998 px->dyncookie_key = newkey;
Willy Tarreau5e83d992019-07-30 11:59:34 +02001999 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002000
Willy Tarreaua275a372018-08-21 14:50:44 +02002001 for (s = px->srv; s != NULL; s = s->next) {
2002 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002003 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002004 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2005 }
2006
Olivier Houchard614f8d72017-03-14 20:08:46 +01002007 return 1;
2008}
2009
Willy Tarreaua275a372018-08-21 14:50:44 +02002010/* Parses the "set maxconn frontend" directive, it always returns 1.
2011 *
2012 * Grabs the proxy lock.
2013 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002014static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002015{
2016 struct proxy *px;
2017 struct listener *l;
2018 int v;
2019
2020 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2021 return 1;
2022
2023 px = cli_find_frontend(appctx, args[3]);
2024 if (!px)
2025 return 1;
2026
Willy Tarreau9d008692019-08-09 11:21:01 +02002027 if (!*args[4])
2028 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002029
2030 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002031 if (v < 0)
2032 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002033
2034 /* OK, the value is fine, so we assign it to the proxy and to all of
2035 * its listeners. The blocked ones will be dequeued.
2036 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002037 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2038
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002039 px->maxconn = v;
2040 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002041 if (l->state == LI_FULL)
2042 resume_listener(l);
2043 }
2044
Willy Tarreau241797a2019-12-10 14:10:52 +01002045 if (px->maxconn > px->feconn)
2046 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002047
Willy Tarreaua275a372018-08-21 14:50:44 +02002048 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2049
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002050 return 1;
2051}
2052
Willy Tarreaua275a372018-08-21 14:50:44 +02002053/* Parses the "shutdown frontend" directive, it always returns 1.
2054 *
2055 * Grabs the proxy lock.
2056 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002057static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002058{
2059 struct proxy *px;
2060
2061 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2062 return 1;
2063
2064 px = cli_find_frontend(appctx, args[2]);
2065 if (!px)
2066 return 1;
2067
Willy Tarreau9d008692019-08-09 11:21:01 +02002068 if (px->state == PR_STSTOPPED)
2069 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002070
William Dauchy1e2256d2020-01-25 23:45:18 +01002071 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002072 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01002073 send_log(px, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002074 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002075
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002076 stop_proxy(px);
2077 return 1;
2078}
2079
Willy Tarreaua275a372018-08-21 14:50:44 +02002080/* Parses the "disable frontend" directive, it always returns 1.
2081 *
2082 * Grabs the proxy lock.
2083 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002084static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002085{
2086 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002087 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002088
2089 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2090 return 1;
2091
2092 px = cli_find_frontend(appctx, args[2]);
2093 if (!px)
2094 return 1;
2095
Willy Tarreau9d008692019-08-09 11:21:01 +02002096 if (px->state == PR_STSTOPPED)
2097 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002098
Willy Tarreau9d008692019-08-09 11:21:01 +02002099 if (px->state == PR_STPAUSED)
2100 return cli_msg(appctx, LOG_NOTICE, "Frontend is already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002101
Willy Tarreaua275a372018-08-21 14:50:44 +02002102 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2103 ret = pause_proxy(px);
2104 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2105
Willy Tarreau9d008692019-08-09 11:21:01 +02002106 if (!ret)
2107 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
2108
Willy Tarreau15b9e682016-11-24 11:55:28 +01002109 return 1;
2110}
2111
Willy Tarreaua275a372018-08-21 14:50:44 +02002112/* Parses the "enable frontend" directive, it always returns 1.
2113 *
2114 * Grabs the proxy lock.
2115 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002116static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002117{
2118 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002119 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002120
2121 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2122 return 1;
2123
2124 px = cli_find_frontend(appctx, args[2]);
2125 if (!px)
2126 return 1;
2127
Willy Tarreau9d008692019-08-09 11:21:01 +02002128 if (px->state == PR_STSTOPPED)
2129 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002130
Willy Tarreau9d008692019-08-09 11:21:01 +02002131 if (px->state != PR_STPAUSED)
2132 return cli_msg(appctx, LOG_NOTICE, "Frontend is already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002133
Willy Tarreaua275a372018-08-21 14:50:44 +02002134 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2135 ret = resume_proxy(px);
2136 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2137
Willy Tarreau9d008692019-08-09 11:21:01 +02002138 if (!ret)
2139 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002140 return 1;
2141}
2142
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002143/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2144 * now.
2145 */
2146static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2147{
2148 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2149 return 1;
2150
2151 if (*args[2]) {
2152 struct proxy *px;
2153
2154 px = proxy_find_by_name(args[2], 0, 0);
2155 if (px)
2156 appctx->ctx.errors.iid = px->uuid;
2157 else
2158 appctx->ctx.errors.iid = atoi(args[2]);
2159
Willy Tarreau9d008692019-08-09 11:21:01 +02002160 if (!appctx->ctx.errors.iid)
2161 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002162 }
2163 else
2164 appctx->ctx.errors.iid = -1; // dump all proxies
2165
2166 appctx->ctx.errors.flag = 0;
2167 if (strcmp(args[3], "request") == 0)
2168 appctx->ctx.errors.flag |= 4; // ignore response
2169 else if (strcmp(args[3], "response") == 0)
2170 appctx->ctx.errors.flag |= 2; // ignore request
2171 appctx->ctx.errors.px = NULL;
2172 return 0;
2173}
2174
2175/* This function dumps all captured errors onto the stream interface's
2176 * read buffer. It returns 0 if the output buffer is full and it needs
2177 * to be called again, otherwise non-zero.
2178 */
2179static int cli_io_handler_show_errors(struct appctx *appctx)
2180{
2181 struct stream_interface *si = appctx->owner;
2182 extern const char *monthname[12];
2183
2184 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2185 return 1;
2186
2187 chunk_reset(&trash);
2188
2189 if (!appctx->ctx.errors.px) {
2190 /* the function had not been called yet, let's prepare the
2191 * buffer for a response.
2192 */
2193 struct tm tm;
2194
2195 get_localtime(date.tv_sec, &tm);
2196 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2197 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2198 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2199 error_snapshot_id);
2200
Willy Tarreau36b27362018-09-07 19:55:44 +02002201 if (ci_putchk(si_ic(si), &trash) == -1)
2202 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002203
2204 appctx->ctx.errors.px = proxies_list;
2205 appctx->ctx.errors.bol = 0;
2206 appctx->ctx.errors.ptr = -1;
2207 }
2208
2209 /* we have two inner loops here, one for the proxy, the other one for
2210 * the buffer.
2211 */
2212 while (appctx->ctx.errors.px) {
2213 struct error_snapshot *es;
2214
Willy Tarreau36b27362018-09-07 19:55:44 +02002215 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2216
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002217 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002218 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002219 if (appctx->ctx.errors.flag & 2) // skip req
2220 goto next;
2221 }
2222 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002223 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002224 if (appctx->ctx.errors.flag & 4) // skip resp
2225 goto next;
2226 }
2227
Willy Tarreauc55015e2018-09-07 19:02:32 +02002228 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002229 goto next;
2230
2231 if (appctx->ctx.errors.iid >= 0 &&
2232 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002233 (!es->oe || es->oe->uuid != appctx->ctx.errors.iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002234 goto next;
2235
2236 if (appctx->ctx.errors.ptr < 0) {
2237 /* just print headers now */
2238
2239 char pn[INET6_ADDRSTRLEN];
2240 struct tm tm;
2241 int port;
2242
2243 get_localtime(es->when.tv_sec, &tm);
2244 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2245 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2246 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2247
2248 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2249 case AF_INET:
2250 case AF_INET6:
2251 port = get_host_port(&es->src);
2252 break;
2253 default:
2254 port = 0;
2255 }
2256
2257 switch (appctx->ctx.errors.flag & 1) {
2258 case 0:
2259 chunk_appendf(&trash,
2260 " frontend %s (#%d): invalid request\n"
2261 " backend %s (#%d)",
2262 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002263 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2264 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002265 break;
2266 case 1:
2267 chunk_appendf(&trash,
2268 " backend %s (#%d): invalid response\n"
2269 " frontend %s (#%d)",
2270 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002271 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002272 break;
2273 }
2274
2275 chunk_appendf(&trash,
2276 ", server %s (#%d), event #%u, src %s:%d\n"
2277 " buffer starts at %llu (including %u out), %u free,\n"
2278 " len %u, wraps at %u, error at position %u\n",
2279 es->srv ? es->srv->id : "<NONE>",
2280 es->srv ? es->srv->puid : -1,
2281 es->ev_id, pn, port,
2282 es->buf_ofs, es->buf_out,
2283 global.tune.bufsize - es->buf_out - es->buf_len,
2284 es->buf_len, es->buf_wrap, es->buf_err);
2285
2286 if (es->show)
2287 es->show(&trash, es);
2288
2289 chunk_appendf(&trash, " \n");
2290
Willy Tarreau36b27362018-09-07 19:55:44 +02002291 if (ci_putchk(si_ic(si), &trash) == -1)
2292 goto cant_send_unlock;
2293
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002294 appctx->ctx.errors.ptr = 0;
2295 appctx->ctx.errors.ev_id = es->ev_id;
2296 }
2297
2298 if (appctx->ctx.errors.ev_id != es->ev_id) {
2299 /* the snapshot changed while we were dumping it */
2300 chunk_appendf(&trash,
2301 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002302 if (ci_putchk(si_ic(si), &trash) == -1)
2303 goto cant_send_unlock;
2304
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002305 goto next;
2306 }
2307
2308 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002309 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002310 int newptr;
2311 int newline;
2312
2313 newline = appctx->ctx.errors.bol;
2314 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2315 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002316 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002317
Willy Tarreau36b27362018-09-07 19:55:44 +02002318 if (ci_putchk(si_ic(si), &trash) == -1)
2319 goto cant_send_unlock;
2320
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002321 appctx->ctx.errors.ptr = newptr;
2322 appctx->ctx.errors.bol = newline;
2323 };
2324 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002325 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002326 appctx->ctx.errors.bol = 0;
2327 appctx->ctx.errors.ptr = -1;
2328 appctx->ctx.errors.flag ^= 1;
2329 if (!(appctx->ctx.errors.flag & 1))
2330 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2331 }
2332
2333 /* dump complete */
2334 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002335
2336 cant_send_unlock:
2337 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2338 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002339 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002340 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002341}
2342
William Lallemanda6c5f332016-11-19 02:25:36 +01002343/* register cli keywords */
2344static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002345 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2346 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002347 { { "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 +01002348 { { "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 +01002349 { { "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 +01002350 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002351 { { "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 },
2352 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2353 { { "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 +02002354 { { "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 +01002355 {{},}
2356}};
2357
Willy Tarreau0108d902018-11-25 19:14:37 +01002358INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002359
2360/*
2361 * Local variables:
2362 * c-indent-level: 8
2363 * c-basic-offset: 8
2364 * End:
2365 */