blob: eeb492e534b7d9aed8088f4ea5462f314a68d6b8 [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 Tarreaub2551052020-06-09 09:07:15 +020020#include <import/eb32tree.h>
21#include <import/ebistree.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/applet-t.h>
25#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020026#include <haproxy/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020028#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020030#include <haproxy/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020032#include <haproxy/http_ana.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020033#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020034#include <haproxy/log.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020035#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020036#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020037#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020039#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/signal.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020042#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020043#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020044#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
Willy Tarreau918ff602011-07-25 16:33:49 +020049int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010050struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020051struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010052struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010053unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010055/* proxy->options */
56const struct cfg_opt cfg_opts[] =
57{
58 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
59 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
60 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
61 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
62 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
63 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
64 { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
65 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
66 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
67 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
68 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
69 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
70 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
71 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020072#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010073 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
74#else
75 { "transparent", 0, 0, 0, 0 },
76#endif
77
78 { NULL, 0, 0, 0, 0 }
79};
80
81/* proxy->options2 */
82const struct cfg_opt cfg_opts2[] =
83{
Willy Tarreaue5733232019-05-22 19:24:06 +020084#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010085 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
86 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
87 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
88#else
89 { "splice-request", 0, 0, 0, 0 },
90 { "splice-response", 0, 0, 0, 0 },
91 { "splice-auto", 0, 0, 0, 0 },
92#endif
93 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
94 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
95 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
96 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
97 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
98 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
99 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
100 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100101 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
102 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
103 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
104 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet31930372019-07-15 10:16:58 +0200105 { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated
Christopher Faulet98fbe952019-07-22 16:18:24 +0200106
107 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, PR_MODE_HTTP },
108 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet89aed322020-06-02 17:33:56 +0200109 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100110 { NULL, 0, 0, 0 }
111};
112
Willy Tarreau977b8e42006-12-29 14:19:17 +0100113/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100114 * This function returns a string containing a name describing capabilities to
115 * report comprehensible error messages. Specifically, it will return the words
Christopher Faulet898566e2016-10-26 11:06:28 +0200116 * "frontend", "backend" when appropriate, or "proxy" for all other
Willy Tarreau816eb542007-11-04 07:04:43 +0100117 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100118 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100119const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100120{
Willy Tarreau816eb542007-11-04 07:04:43 +0100121 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
122 if (cap & PR_CAP_FE)
123 return "frontend";
124 else if (cap & PR_CAP_BE)
125 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100126 }
127 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100128}
129
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100130/*
131 * This function returns a string containing the mode of the proxy in a format
132 * suitable for error messages.
133 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100134const char *proxy_mode_str(int mode) {
135
136 if (mode == PR_MODE_TCP)
137 return "tcp";
138 else if (mode == PR_MODE_HTTP)
139 return "http";
140 else if (mode == PR_MODE_HEALTH)
141 return "health";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200142 else if (mode == PR_MODE_CLI)
143 return "cli";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100144 else
145 return "unknown";
146}
147
Willy Tarreauf3950172009-10-10 18:35:51 +0200148/*
149 * This function scans the list of backends and servers to retrieve the first
150 * backend and the first server with the given names, and sets them in both
151 * parameters. It returns zero if either is not found, or non-zero and sets
152 * the ones it did not found to NULL. If a NULL pointer is passed for the
153 * backend, only the pointer to the server will be updated.
154 */
155int get_backend_server(const char *bk_name, const char *sv_name,
156 struct proxy **bk, struct server **sv)
157{
158 struct proxy *p;
159 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100160 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200161
162 *sv = NULL;
163
Willy Tarreau050536d2012-10-04 08:47:34 +0200164 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200165 if (*sv_name == '#')
166 sid = atoi(sv_name + 1);
167
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200168 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200169 if (bk)
170 *bk = p;
171 if (!p)
172 return 0;
173
174 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100175 if ((sid >= 0 && s->puid == sid) ||
176 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200177 break;
178 *sv = s;
179 if (!s)
180 return 0;
181 return 1;
182}
183
Willy Tarreaue219db72007-12-03 01:30:13 +0100184/* This function parses a "timeout" statement in a proxy section. It returns
185 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200186 * return zero, it will write an error or warning message into a preallocated
187 * buffer returned at <err>. The trailing is not be written. The function must
188 * be called with <args> pointing to the first command line word, with <proxy>
189 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
190 * As a special case for compatibility with older configs, it also accepts
191 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100192 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200193static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200194 struct proxy *defpx, const char *file, int line,
195 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100196{
197 unsigned timeout;
198 int retval, cap;
199 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200200 int *tv = NULL;
201 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100202
203 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200204
205 /* simply skip "timeout" but remain compatible with old form */
206 if (strcmp(args[0], "timeout") == 0)
207 args++;
208
Willy Tarreaue219db72007-12-03 01:30:13 +0100209 name = args[0];
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200210 if (!strcmp(args[0], "client")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100211 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100212 tv = &proxy->timeout.client;
213 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100214 cap = PR_CAP_FE;
215 } else if (!strcmp(args[0], "tarpit")) {
216 tv = &proxy->timeout.tarpit;
217 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100218 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100219 } else if (!strcmp(args[0], "http-keep-alive")) {
220 tv = &proxy->timeout.httpka;
221 td = &defpx->timeout.httpka;
222 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100223 } else if (!strcmp(args[0], "http-request")) {
224 tv = &proxy->timeout.httpreq;
225 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200226 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200227 } else if (!strcmp(args[0], "server")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100228 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100229 tv = &proxy->timeout.server;
230 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100231 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200232 } else if (!strcmp(args[0], "connect")) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100233 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100234 tv = &proxy->timeout.connect;
235 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100236 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100237 } else if (!strcmp(args[0], "check")) {
238 tv = &proxy->timeout.check;
239 td = &defpx->timeout.check;
240 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100241 } else if (!strcmp(args[0], "queue")) {
242 tv = &proxy->timeout.queue;
243 td = &defpx->timeout.queue;
244 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200245 } else if (!strcmp(args[0], "tunnel")) {
246 tv = &proxy->timeout.tunnel;
247 td = &defpx->timeout.tunnel;
248 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200249 } else if (!strcmp(args[0], "client-fin")) {
250 tv = &proxy->timeout.clientfin;
251 td = &defpx->timeout.clientfin;
252 cap = PR_CAP_FE;
253 } else if (!strcmp(args[0], "server-fin")) {
254 tv = &proxy->timeout.serverfin;
255 td = &defpx->timeout.serverfin;
256 cap = PR_CAP_BE;
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200257 } else if (!strcmp(args[0], "clitimeout")) {
258 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
259 return -1;
260 } else if (!strcmp(args[0], "srvtimeout")) {
261 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
262 return -1;
263 } else if (!strcmp(args[0], "contimeout")) {
264 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
265 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100266 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200267 memprintf(err,
268 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200269 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
270 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200271 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100272 return -1;
273 }
274
275 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200276 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100277 return -1;
278 }
279
280 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200281 if (res == PARSE_TIME_OVER) {
282 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
283 args[1], name);
284 return -1;
285 }
286 else if (res == PARSE_TIME_UNDER) {
287 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
288 args[1], name);
289 return -1;
290 }
291 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200292 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100293 return -1;
294 }
295
296 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200297 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
298 name, proxy_type_str(proxy), proxy->id,
299 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100300 retval = 1;
301 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200302 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200303 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100304 retval = 1;
305 }
306
Willy Tarreaufac5b592014-05-22 08:24:46 +0200307 if (*args[2] != 0) {
308 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
309 retval = -1;
310 }
311
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200312 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100313 return retval;
314}
315
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100316/* This function parses a "rate-limit" statement in a proxy section. It returns
317 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200318 * return zero, it will write an error or warning message into a preallocated
319 * buffer returned at <err>. The function must be called with <args> pointing
320 * to the first command line word, with <proxy> pointing to the proxy being
321 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100322 */
323static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200324 struct proxy *defpx, const char *file, int line,
325 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100326{
William Dauchybb9da0b2020-01-16 01:34:27 +0100327 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200328 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100329 unsigned int *tv = NULL;
330 unsigned int *td = NULL;
331 unsigned int val;
332
333 retval = 0;
334
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200335 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200336 tv = &proxy->fe_sps_lim;
337 td = &defpx->fe_sps_lim;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200338 }
339 else {
340 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100341 return -1;
342 }
343
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200344 if (*args[2] == 0) {
345 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100346 return -1;
347 }
348
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200349 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100350 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 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 +0100352 return -1;
353 }
354
William Dauchybb9da0b2020-01-16 01:34:27 +0100355 if (!(proxy->cap & PR_CAP_FE)) {
356 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
357 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100358 retval = 1;
359 }
360 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200361 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100362 retval = 1;
363 }
364
365 *tv = val;
366 return retval;
367}
368
Willy Tarreauc35362a2014-04-25 13:58:37 +0200369/* This function parses a "max-keep-alive-queue" statement in a proxy section.
370 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
371 * does not return zero, it will write an error or warning message into a
372 * preallocated buffer returned at <err>. The function must be called with
373 * <args> pointing to the first command line word, with <proxy> pointing to
374 * the proxy being parsed, and <defpx> to the default proxy or NULL.
375 */
376static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
377 struct proxy *defpx, const char *file, int line,
378 char **err)
379{
380 int retval;
381 char *res;
382 unsigned int val;
383
384 retval = 0;
385
386 if (*args[1] == 0) {
387 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
388 return -1;
389 }
390
391 val = strtol(args[1], &res, 0);
392 if (*res) {
393 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
394 return -1;
395 }
396
397 if (!(proxy->cap & PR_CAP_BE)) {
398 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
399 args[0], proxy_type_str(proxy), proxy->id);
400 retval = 1;
401 }
402
403 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
404 proxy->max_ka_queue = val + 1;
405 return retval;
406}
407
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200408/* This function parses a "declare" statement in a proxy section. It returns -1
409 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
410 * it will write an error or warning message into a preallocated buffer returned
411 * at <err>. The function must be called with <args> pointing to the first command
412 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
413 * default proxy or NULL.
414 */
415static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
416 struct proxy *defpx, const char *file, int line,
417 char **err)
418{
419 /* Capture keyword wannot be declared in a default proxy. */
420 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800421 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200422 return -1;
423 }
424
Joseph Herlant59dd2952018-11-15 11:46:55 -0800425 /* Capture keywork is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200426 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800427 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200428 return -1;
429 }
430
431 /* Check mandatory second keyword. */
432 if (!args[1] || !*args[1]) {
433 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
434 return -1;
435 }
436
Joseph Herlant59dd2952018-11-15 11:46:55 -0800437 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200438 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800439 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200440 * the second keyword.
441 */
442 if (strcmp(args[1], "capture") == 0) {
443 char *error = NULL;
444 long len;
445 struct cap_hdr *hdr;
446
447 /* Check the next keyword. */
448 if (!args[2] || !*args[2] ||
449 (strcmp(args[2], "response") != 0 &&
450 strcmp(args[2], "request") != 0)) {
451 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
452 return -1;
453 }
454
455 /* Check the 'len' keyword. */
456 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
457 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
458 return -1;
459 }
460
461 /* Check the length value. */
462 if (!args[4] || !*args[4]) {
463 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
464 "capture length",
465 args[0], args[1]);
466 return -1;
467 }
468
469 /* convert the length value. */
470 len = strtol(args[4], &error, 10);
471 if (*error != '\0') {
472 memprintf(err, "'%s %s': cannot parse the length '%s'.",
473 args[0], args[1], args[3]);
474 return -1;
475 }
476
477 /* check length. */
478 if (len <= 0) {
479 memprintf(err, "length must be > 0");
480 return -1;
481 }
482
483 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200484 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200485 hdr->name = NULL; /* not a header capture */
486 hdr->namelen = 0;
487 hdr->len = len;
488 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
489
490 if (strcmp(args[2], "request") == 0) {
491 hdr->next = curpx->req_cap;
492 hdr->index = curpx->nb_req_cap++;
493 curpx->req_cap = hdr;
494 }
495 if (strcmp(args[2], "response") == 0) {
496 hdr->next = curpx->rsp_cap;
497 hdr->index = curpx->nb_rsp_cap++;
498 curpx->rsp_cap = hdr;
499 }
500 return 0;
501 }
502 else {
503 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
504 return -1;
505 }
506}
507
Olivier Houcharda254a372019-04-05 15:30:12 +0200508/* This function parses a "retry-on" statement */
509static int
510proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
511 struct proxy *defpx, const char *file, int line,
512 char **err)
513{
514 int i;
515
516 if (!(*args[1])) {
517 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
518 return -1;
519 }
520 if (!(curpx->cap & PR_CAP_BE)) {
521 memprintf(err, "'%s' only available in backend or listen section", args[0]);
522 return -1;
523 }
524 curpx->retry_type = 0;
525 for (i = 1; *(args[i]); i++) {
526 if (!strcmp(args[i], "conn-failure"))
527 curpx->retry_type |= PR_RE_CONN_FAILED;
528 else if (!strcmp(args[i], "empty-response"))
529 curpx->retry_type |= PR_RE_DISCONNECTED;
530 else if (!strcmp(args[i], "response-timeout"))
531 curpx->retry_type |= PR_RE_TIMEOUT;
532 else if (!strcmp(args[i], "404"))
533 curpx->retry_type |= PR_RE_404;
534 else if (!strcmp(args[i], "408"))
535 curpx->retry_type |= PR_RE_408;
536 else if (!strcmp(args[i], "425"))
537 curpx->retry_type |= PR_RE_425;
538 else if (!strcmp(args[i], "500"))
539 curpx->retry_type |= PR_RE_500;
540 else if (!strcmp(args[i], "501"))
541 curpx->retry_type |= PR_RE_501;
542 else if (!strcmp(args[i], "502"))
543 curpx->retry_type |= PR_RE_502;
544 else if (!strcmp(args[i], "503"))
545 curpx->retry_type |= PR_RE_503;
546 else if (!strcmp(args[i], "504"))
547 curpx->retry_type |= PR_RE_504;
Olivier Houchard865d8392019-05-03 22:46:27 +0200548 else if (!strcmp(args[i], "0rtt-rejected"))
549 curpx->retry_type |= PR_RE_EARLY_ERROR;
Olivier Houcharde3249a92019-05-03 23:01:47 +0200550 else if (!strcmp(args[i], "junk-response"))
551 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200552 else if (!(strcmp(args[i], "all-retryable-errors")))
553 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
554 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
555 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
556 PR_RE_JUNK_REQUEST;
Olivier Houcharda254a372019-04-05 15:30:12 +0200557 else if (!strcmp(args[i], "none")) {
558 if (i != 1 || *args[i + 1]) {
559 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
560 return -1;
561 }
562 } else {
563 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
564 return -1;
565 }
566
567 }
568
569
570 return 0;
571}
572
Willy Tarreau52543212020-07-09 05:58:51 +0200573#ifdef TCP_KEEPCNT
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900574/* This function parses "{cli|srv}tcpka-cnt" statements */
575static int proxy_parse_tcpka_cnt(char **args, int section, struct proxy *proxy,
576 struct proxy *defpx, const char *file, int line,
577 char **err)
578{
579 int retval;
580 char *res;
581 unsigned int tcpka_cnt;
582
583 retval = 0;
584
585 if (*args[1] == 0) {
586 memprintf(err, "'%s' expects an integer value", args[0]);
587 return -1;
588 }
589
590 tcpka_cnt = strtol(args[1], &res, 0);
591 if (*res) {
592 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
593 return -1;
594 }
595
596 if (!strcmp(args[0], "clitcpka-cnt")) {
597 if (!(proxy->cap & PR_CAP_FE)) {
598 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
599 args[0], proxy_type_str(proxy), proxy->id);
600 retval = 1;
601 }
602 proxy->clitcpka_cnt = tcpka_cnt;
603 } else if (!strcmp(args[0], "srvtcpka-cnt")) {
604 if (!(proxy->cap & PR_CAP_BE)) {
605 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
606 args[0], proxy_type_str(proxy), proxy->id);
607 retval = 1;
608 }
609 proxy->srvtcpka_cnt = tcpka_cnt;
610 } else {
611 /* unreachable */
612 memprintf(err, "'%s': unknown keyword", args[0]);
613 return -1;
614 }
615
616 return retval;
617}
Willy Tarreau52543212020-07-09 05:58:51 +0200618#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900619
Willy Tarreau52543212020-07-09 05:58:51 +0200620#ifdef TCP_KEEPIDLE
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900621/* This function parses "{cli|srv}tcpka-idle" statements */
622static int proxy_parse_tcpka_idle(char **args, int section, struct proxy *proxy,
623 struct proxy *defpx, const char *file, int line,
624 char **err)
625{
626 int retval;
627 const char *res;
628 unsigned int tcpka_idle;
629
630 retval = 0;
631
632 if (*args[1] == 0) {
633 memprintf(err, "'%s' expects an integer value", args[0]);
634 return -1;
635 }
636 res = parse_time_err(args[1], &tcpka_idle, TIME_UNIT_S);
637 if (res == PARSE_TIME_OVER) {
638 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
639 args[1], args[0]);
640 return -1;
641 }
642 else if (res == PARSE_TIME_UNDER) {
643 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
644 args[1], args[0]);
645 return -1;
646 }
647 else if (res) {
648 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
649 return -1;
650 }
651
652 if (!strcmp(args[0], "clitcpka-idle")) {
653 if (!(proxy->cap & PR_CAP_FE)) {
654 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
655 args[0], proxy_type_str(proxy), proxy->id);
656 retval = 1;
657 }
658 proxy->clitcpka_idle = tcpka_idle;
659 } else if (!strcmp(args[0], "srvtcpka-idle")) {
660 if (!(proxy->cap & PR_CAP_BE)) {
661 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
662 args[0], proxy_type_str(proxy), proxy->id);
663 retval = 1;
664 }
665 proxy->srvtcpka_idle = tcpka_idle;
666 } else {
667 /* unreachable */
668 memprintf(err, "'%s': unknown keyword", args[0]);
669 return -1;
670 }
671
672 return retval;
673}
Willy Tarreau52543212020-07-09 05:58:51 +0200674#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900675
Willy Tarreau52543212020-07-09 05:58:51 +0200676#ifdef TCP_KEEPINTVL
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900677/* This function parses "{cli|srv}tcpka-intvl" statements */
678static int proxy_parse_tcpka_intvl(char **args, int section, struct proxy *proxy,
679 struct proxy *defpx, const char *file, int line,
680 char **err)
681{
682 int retval;
683 const char *res;
684 unsigned int tcpka_intvl;
685
686 retval = 0;
687
688 if (*args[1] == 0) {
689 memprintf(err, "'%s' expects an integer value", args[0]);
690 return -1;
691 }
692 res = parse_time_err(args[1], &tcpka_intvl, TIME_UNIT_S);
693 if (res == PARSE_TIME_OVER) {
694 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
695 args[1], args[0]);
696 return -1;
697 }
698 else if (res == PARSE_TIME_UNDER) {
699 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
700 args[1], args[0]);
701 return -1;
702 }
703 else if (res) {
704 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
705 return -1;
706 }
707
708 if (!strcmp(args[0], "clitcpka-intvl")) {
709 if (!(proxy->cap & PR_CAP_FE)) {
710 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
711 args[0], proxy_type_str(proxy), proxy->id);
712 retval = 1;
713 }
714 proxy->clitcpka_intvl = tcpka_intvl;
715 } else if (!strcmp(args[0], "srvtcpka-intvl")) {
716 if (!(proxy->cap & PR_CAP_BE)) {
717 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
718 args[0], proxy_type_str(proxy), proxy->id);
719 retval = 1;
720 }
721 proxy->srvtcpka_intvl = tcpka_intvl;
722 } else {
723 /* unreachable */
724 memprintf(err, "'%s': unknown keyword", args[0]);
725 return -1;
726 }
727
728 return retval;
729}
Willy Tarreau52543212020-07-09 05:58:51 +0200730#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900731
Willy Tarreauf79d9502014-03-15 07:22:35 +0100732/* This function inserts proxy <px> into the tree of known proxies. The proxy's
733 * name is used as the storing key so it must already have been initialized.
734 */
735void proxy_store_name(struct proxy *px)
736{
737 px->conf.by_name.key = px->id;
738 ebis_insert(&proxy_by_name, &px->conf.by_name);
739}
740
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200741/* Returns a pointer to the first proxy matching capabilities <cap> and id
742 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
743 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200744 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200745struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200746{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200747 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200748
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200749 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
750 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100751
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200752 if (px->uuid != id)
753 break;
Alex Williams96532db2009-11-01 21:27:13 -0500754
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200755 if ((px->cap & cap) != cap)
756 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500757
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100758 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200759 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100760
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200761 return px;
762 }
763 return NULL;
764}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100765
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200766/* Returns a pointer to the first proxy matching either name <name>, or id
767 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
768 * If <table> is non-zero, it only considers proxies having a table.
769 */
770struct proxy *proxy_find_by_name(const char *name, int cap, int table)
771{
772 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200773
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200774 if (*name == '#') {
775 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
776 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200777 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500778 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100779 else {
780 struct ebpt_node *node;
781
782 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
783 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500784
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100785 if (strcmp(curproxy->id, name) != 0)
786 break;
787
788 if ((curproxy->cap & cap) != cap)
789 continue;
790
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100791 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200792 continue;
793
Willy Tarreauc739aa82015-05-26 11:35:41 +0200794 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100795 }
796 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200797 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500798}
799
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200800/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
801 * <id>. At most one of <id> or <name> may be different provided that <cap> is
802 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
803 * find a proxy based on some information from a previous configuration, across
804 * reloads or during information exchange between peers.
805 *
806 * Names are looked up first if present, then IDs are compared if present. In
807 * case of an inexact match whatever is forced in the configuration has
808 * precedence in the following order :
809 * - 1) forced ID (proves a renaming / change of proxy type)
810 * - 2) proxy name+type (may indicate a move if ID differs)
811 * - 3) automatic ID+type (may indicate a renaming)
812 *
813 * Depending on what is found, we can end up in the following situations :
814 *
815 * name id cap | possible causes
816 * -------------+-----------------
817 * -- -- -- | nothing found
818 * -- -- ok | nothing found
819 * -- ok -- | proxy deleted, ID points to next one
820 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
821 * ok -- -- | proxy deleted, but other half with same name still here (before)
822 * ok -- ok | proxy's ID changed (proxy moved in the config file)
823 * ok ok -- | proxy deleted, but other half with same name still here (after)
824 * ok ok ok | perfect match
825 *
826 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200827 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
828 * (and ID was not zero)
829 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
830 * (and name was not NULL)
831 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
832 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200833 *
834 * Only a valid proxy is returned. If capabilities do not match, NULL is
835 * returned. The caller can check <diff> to report detailed warnings / errors,
836 * and decide whether or not to use what was found.
837 */
838struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
839{
840 struct proxy *byname;
841 struct proxy *byid;
842
843 if (!name && !id)
844 return NULL;
845
846 if (diff)
847 *diff = 0;
848
849 byname = byid = NULL;
850
851 if (name) {
852 byname = proxy_find_by_name(name, cap, 0);
853 if (byname && (!id || byname->uuid == id))
854 return byname;
855 }
856
Joseph Herlant59dd2952018-11-15 11:46:55 -0800857 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200858 * - name not set
859 * - name set but not found
860 * - name found, but ID doesn't match.
861 */
862 if (id) {
863 byid = proxy_find_by_id(id, cap, 0);
864 if (byid) {
865 if (byname) {
866 /* id+type found, name+type found, but not all 3.
867 * ID wins only if forced, otherwise name wins.
868 */
869 if (byid->options & PR_O_FORCED_ID) {
870 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200871 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200872 return byid;
873 }
874 else {
875 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200876 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200877 return byname;
878 }
879 }
880
Joseph Herlant59dd2952018-11-15 11:46:55 -0800881 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200882 * - name not set
883 * - name set but not found
884 */
885 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200886 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200887 return byid;
888 }
889
890 /* ID not found */
891 if (byname) {
892 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200893 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200894 return byname;
895 }
896 }
897
Joseph Herlant59dd2952018-11-15 11:46:55 -0800898 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200899 * detailed information to the caller about changed types and/or name,
900 * we'll do it. For example, we could detect that "listen foo" was
901 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
902 * - name not set, ID not found
903 * - name not found, ID not set
904 * - name not found, ID not found
905 */
906 if (!diff)
907 return NULL;
908
909 if (name) {
910 byname = proxy_find_by_name(name, 0, 0);
911 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200912 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200913 }
914
915 if (id) {
916 byid = proxy_find_by_id(id, 0, 0);
917 if (byid) {
918 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200919 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200920 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +0200921 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200922 /* otherwise it's a different proxy that was returned */
923 }
924 }
925 return NULL;
926}
927
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100929 * This function finds a server with matching name within selected proxy.
930 * It also checks if there are more matching servers with
931 * requested name as this often leads into unexpected situations.
932 */
933
934struct server *findserver(const struct proxy *px, const char *name) {
935
936 struct server *cursrv, *target = NULL;
937
938 if (!px)
939 return NULL;
940
941 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
942 if (strcmp(cursrv->id, name))
943 continue;
944
945 if (!target) {
946 target = cursrv;
947 continue;
948 }
949
Christopher Faulet767a84b2017-11-24 16:50:31 +0100950 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
951 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100952
953 return NULL;
954 }
955
956 return target;
957}
958
Willy Tarreauff01a212009-03-15 13:46:16 +0100959/* This function checks that the designated proxy has no http directives
960 * enabled. It will output a warning if there are, and will fix some of them.
961 * It returns the number of fatal errors encountered. This should be called
962 * at the end of the configuration parsing if the proxy is not in http mode.
963 * The <file> argument is used to construct the error message.
964 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200965int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100966{
967 if (curproxy->cookie_name != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100968 ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
969 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100970 }
Willy Tarreauff01a212009-03-15 13:46:16 +0100971 if (curproxy->monitor_uri != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100972 ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
973 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100974 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200975 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100976 curproxy->lbprm.algo &= ~BE_LB_ALGO;
977 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100978 ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
979 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100980 }
Willy Tarreau17804162009-11-09 21:27:51 +0100981 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
982 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100983 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
984 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
985 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +0100986 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200987 if (curproxy->conf.logformat_string == default_http_log_format ||
988 curproxy->conf.logformat_string == clf_http_log_format) {
989 /* Note: we don't change the directive's file:line number */
990 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +0100991 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
992 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
993 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +0200994 }
995
Willy Tarreauff01a212009-03-15 13:46:16 +0100996 return 0;
997}
998
Willy Tarreau237250c2011-07-29 01:49:03 +0200999/* Perform the most basic initialization of a proxy :
1000 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +02001001 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +02001002 */
1003void init_new_proxy(struct proxy *p)
1004{
1005 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001006 p->obj_type = OBJ_TYPE_PROXY;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001007 p->pendconns = EB_ROOT;
Willy Tarreau237250c2011-07-29 01:49:03 +02001008 LIST_INIT(&p->acl);
1009 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001010 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01001011 LIST_INIT(&p->http_after_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +02001012 LIST_INIT(&p->redirect_rules);
1013 LIST_INIT(&p->mon_fail_cond);
1014 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001015 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +02001016 LIST_INIT(&p->persist_rules);
1017 LIST_INIT(&p->sticking_rules);
1018 LIST_INIT(&p->storersp_rules);
1019 LIST_INIT(&p->tcp_req.inspect_rules);
1020 LIST_INIT(&p->tcp_rep.inspect_rules);
1021 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +02001022 LIST_INIT(&p->tcp_req.l5_rules);
Olivier Houchard859dc802019-08-08 15:47:21 +02001023 MT_LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +02001024 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +01001025 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001026 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +01001027 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001028 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001029 LIST_INIT(&p->conf.listeners);
Christopher Faulet76edc0f2020-01-13 15:52:01 +01001030 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001031 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +01001032 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02001033 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +02001034
1035 /* Timeouts are defined as -1 */
1036 proxy_reset_timeouts(p);
1037 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +02001038
1039 /* initial uuid is unassigned (-1) */
1040 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001041
Olivier Houcharda254a372019-04-05 15:30:12 +02001042 /* Default to only allow L4 retries */
1043 p->retry_type = PR_RE_CONN_FAILED;
1044
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001045 HA_SPIN_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +02001046}
1047
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001048/*
Willy Tarreaue91bff22020-09-02 11:11:43 +02001049 * This function finishes the startup of proxies by marking them ready. */
1050void start_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001051{
1052 struct proxy *curproxy;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001053
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001054 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001055 if (curproxy->state != PR_STNEW)
1056 continue; /* already initialized */
1057
Willy Tarreaue91bff22020-09-02 11:11:43 +02001058 curproxy->state = PR_STREADY;
1059 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001060 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001061}
1062
1063
1064/*
Willy Tarreau918ff602011-07-25 16:33:49 +02001065 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +02001066 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +02001067 * called as a task which is woken up upon stopping or when rate limiting must
1068 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001069 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001070struct task *manage_proxy(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001071{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001072 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +02001073 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +01001074 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001075
Willy Tarreau918ff602011-07-25 16:33:49 +02001076 /* We should periodically try to enable listeners waiting for a
1077 * global resource here.
1078 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001079
Willy Tarreau918ff602011-07-25 16:33:49 +02001080 /* first, let's check if we need to stop the proxy */
1081 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
1082 int t;
1083 t = tick_remain(now_ms, p->stop_time);
1084 if (t == 0) {
William Dauchy1e2256d2020-01-25 23:45:18 +01001085 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001086 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01001087 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau918ff602011-07-25 16:33:49 +02001088 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
1089 stop_proxy(p);
1090 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001091 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +02001092 }
1093 else {
1094 next = tick_first(next, p->stop_time);
1095 }
1096 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001097
Willy Tarreau3a925c12013-09-04 17:54:01 +02001098 /* If the proxy holds a stick table, we need to purge all unused
1099 * entries. These are all the ones in the table with ref_cnt == 0
1100 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +02001101 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +02001102 * be in neither list. Any entry being dumped will have ref_cnt > 0.
1103 * However we protect tables that are being synced to peers.
1104 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001105 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) {
1106 if (!p->table->syncing) {
1107 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001108 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02001109 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001110 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02001111 /* some entries still remain, let's recheck in one second */
1112 next = tick_first(next, tick_add(now_ms, 1000));
1113 }
1114 }
1115
Willy Tarreau918ff602011-07-25 16:33:49 +02001116 /* the rest below is just for frontends */
1117 if (!(p->cap & PR_CAP_FE))
1118 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02001119
Willy Tarreau918ff602011-07-25 16:33:49 +02001120 /* check the various reasons we may find to block the frontend */
1121 if (unlikely(p->feconn >= p->maxconn)) {
1122 if (p->state == PR_STREADY)
1123 p->state = PR_STFULL;
1124 goto out;
1125 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001126
Willy Tarreau918ff602011-07-25 16:33:49 +02001127 /* OK we have no reason to block, so let's unblock if we were blocking */
1128 if (p->state == PR_STFULL)
1129 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001130
Willy Tarreau918ff602011-07-25 16:33:49 +02001131 if (p->fe_sps_lim &&
1132 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
1133 /* we're blocking because a limit was reached on the number of
1134 * requests/s on the frontend. We want to re-check ASAP, which
1135 * means in 1 ms before estimated expiration date, because the
1136 * timer will have settled down.
1137 */
1138 next = tick_first(next, tick_add(now_ms, wait));
1139 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001140 }
Willy Tarreau918ff602011-07-25 16:33:49 +02001141
1142 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01001143 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02001144 out:
1145 t->expire = next;
1146 task_queue(t);
1147 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001148}
1149
1150
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001151static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
1152 struct proxy *defpx, const char *file, int line,
1153 char **err)
1154{
1155 const char *res;
1156
1157 if (!*args[1]) {
1158 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
1159 return -1;
1160 }
1161 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001162 if (res == PARSE_TIME_OVER) {
1163 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1164 args[1], args[0]);
1165 return -1;
1166 }
1167 else if (res == PARSE_TIME_UNDER) {
1168 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1169 args[1], args[0]);
1170 return -1;
1171 }
1172 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001173 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1174 return -1;
1175 }
1176 return 0;
1177}
1178
Olivier Houchard9f6af332018-05-25 14:04:04 +02001179struct task *hard_stop(struct task *t, void *context, unsigned short state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001180{
1181 struct proxy *p;
1182 struct stream *s;
1183
1184 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001186 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02001187 killed = 2;
1188 t->expire = TICK_ETERNITY;
1189 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001190 }
1191
Christopher Faulet767a84b2017-11-24 16:50:31 +01001192 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001193 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001194 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001195 while (p) {
1196 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001197 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1198 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001199 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
1200 p->id, p->feconn);
1201 }
1202 p = p->next;
1203 }
1204 list_for_each_entry(s, &streams, list) {
1205 stream_shutdown(s, SF_ERR_KILLED);
1206 }
1207
1208 killed = 1;
1209 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
1210 return t;
1211}
1212
Willy Tarreaubaaee002006-06-26 02:48:02 +02001213/*
1214 * this function disables health-check servers so that the process will quickly be ignored
1215 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
1216 * time will not be used since it would already not listen anymore to the socket.
1217 */
1218void soft_stop(void)
1219{
1220 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001221 struct peers *prs;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001222 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001223
1224 stopping = 1;
William Dauchy3894d972019-12-28 15:36:02 +01001225 /* disable busy polling to avoid cpu eating for the new process */
1226 global.tune.options &= ~GTUNE_BUSY_POLLING;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001227 if (tick_isset(global.hard_stop_after)) {
Emeric Brunc60def82017-09-27 14:59:38 +02001228 task = task_new(MAX_THREADS_MASK);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001229 if (task) {
1230 task->process = hard_stop;
1231 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
1232 }
1233 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001234 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001235 }
1236 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001237 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001238 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001239 while (p) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001240 /* Zombie proxy, let's close the file descriptors */
1241 if (p->state == PR_STSTOPPED &&
1242 !LIST_ISEMPTY(&p->conf.listeners) &&
1243 LIST_ELEM(p->conf.listeners.n,
Willy Tarreau67878d72019-12-10 07:11:35 +01001244 struct listener *, by_fe)->state > LI_ASSIGNED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001245 struct listener *l;
1246 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreau82cd0282020-09-23 16:33:00 +02001247 if (l->state > LI_ASSIGNED) {
1248 fd_delete(l->rx.fd);
1249 l->rx.fd = -1;
1250 }
Olivier Houchard1fc05162017-04-06 01:05:05 +02001251 l->state = LI_INIT;
1252 }
1253 }
1254
Willy Tarreaubaaee002006-06-26 02:48:02 +02001255 if (p->state != PR_STSTOPPED) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 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 +02001257 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 +02001258 p->stop_time = tick_add(now_ms, p->grace);
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001259
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001260 /* Note: do not wake up stopped proxies' task nor their tables'
1261 * tasks as these ones might point to already released entries.
1262 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001263 if (p->table && p->table->size && p->table->sync_task)
1264 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
Willy Tarreau20b7afb2015-09-28 16:35:04 +02001265
1266 if (p->task)
1267 task_wakeup(p->task, TASK_WOKEN_MSG);
1268 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001269 p = p->next;
1270 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001271
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001272 prs = cfg_peers;
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001273 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001274 if (prs->peers_fe)
1275 stop_proxy(prs->peers_fe);
Willy Tarreaubbe11b12011-07-25 11:16:24 +02001276 prs = prs->next;
1277 }
Emeric Brunc47ba592020-10-07 10:13:10 +02001278
1279 p = cfg_log_forward;
1280 while (p) {
1281 /* Zombie proxy, let's close the file descriptors */
1282 if (p->state == PR_STSTOPPED &&
1283 !LIST_ISEMPTY(&p->conf.listeners) &&
1284 LIST_ELEM(p->conf.listeners.n,
1285 struct listener *, by_fe)->state > LI_ASSIGNED) {
1286 struct listener *l;
1287 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1288 if (l->state > LI_ASSIGNED)
1289 close(l->rx.fd);
1290 l->state = LI_INIT;
1291 }
1292 }
1293
1294 if (p->state != PR_STSTOPPED) {
1295 stop_proxy(p);
1296 }
1297 p = p->next;
1298 }
1299
Willy Tarreaud0807c32010-08-27 18:26:11 +02001300 /* signal zero is used to broadcast the "stopping" event */
1301 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001302}
1303
1304
Willy Tarreaube58c382011-07-24 18:28:10 +02001305/* Temporarily disables listening on all of the proxy's listeners. Upon
1306 * success, the proxy enters the PR_PAUSED state. If disabling at least one
1307 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +02001308 * because we don't know how to resume from this. The function returns 0
1309 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001310 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02001311int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001312{
1313 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02001314
1315 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
1316 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
1317 return 1;
1318
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001320 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
1321
Willy Tarreau4348fad2012-09-20 16:48:07 +02001322 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +02001323 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001324 p->state = PR_STERROR;
1325 }
Willy Tarreauce8fe252011-09-07 19:14:57 +02001326
1327 if (p->state == PR_STERROR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001328 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001329 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
1330 return 0;
1331 }
1332
1333 p->state = PR_STPAUSED;
1334 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02001335}
1336
Olivier Houchard1fc05162017-04-06 01:05:05 +02001337/* This function makes the proxy unusable, but keeps the listening sockets
1338 * opened, so that if any process requests them, we are able to serve them.
1339 * This should only be called early, before we started accepting requests.
1340 */
1341void zombify_proxy(struct proxy *p)
1342{
1343 struct listener *l;
1344 struct listener *first_to_listen = NULL;
1345
1346 list_for_each_entry(l, &p->conf.listeners, by_fe) {
1347 enum li_state oldstate = l->state;
1348
1349 unbind_listener_no_close(l);
1350 if (l->state >= LI_ASSIGNED) {
1351 delete_listener(l);
Olivier Houchard1fc05162017-04-06 01:05:05 +02001352 }
1353 /*
1354 * Pretend we're still up and running so that the fd
1355 * will be sent if asked.
1356 */
1357 l->state = LI_ZOMBIE;
1358 if (!first_to_listen && oldstate >= LI_LISTEN)
1359 first_to_listen = l;
1360 }
1361 /* Quick hack : at stop time, to know we have to close the sockets
1362 * despite the proxy being marked as stopped, make the first listener
1363 * of the listener list an active one, so that we don't have to
1364 * parse the whole list to be sure.
1365 */
1366 if (first_to_listen && LIST_ELEM(p->conf.listeners.n,
1367 struct listener *, by_fe) != first_to_listen) {
1368 LIST_DEL(&l->by_fe);
1369 LIST_ADD(&p->conf.listeners, &l->by_fe);
1370 }
1371
1372 p->state = PR_STSTOPPED;
1373}
Willy Tarreauda250db2008-10-12 12:07:48 +02001374
1375/*
1376 * This function completely stops a proxy and releases its listeners. It has
1377 * to be called when going down in order to release the ports so that another
1378 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01001379 * end of start-up. If all listeners are closed, the proxy is set to the
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001380 * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to
1381 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02001382 */
1383void stop_proxy(struct proxy *p)
1384{
1385 struct listener *l;
William Lallemandc59f9882018-11-16 16:57:21 +01001386 int nostop = 0;
Willy Tarreauda250db2008-10-12 12:07:48 +02001387
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001388 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
1389
Willy Tarreau4348fad2012-09-20 16:48:07 +02001390 list_for_each_entry(l, &p->conf.listeners, by_fe) {
William Lallemandc59f9882018-11-16 16:57:21 +01001391 if (l->options & LI_O_NOSTOP) {
1392 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
1393 nostop = 1;
1394 continue;
1395 }
William Lallemandf7f488d2019-10-18 21:16:39 +02001396 /* The master should not close an inherited FD */
Willy Tarreau43046fa2020-09-01 15:41:59 +02001397 if (master && (l->rx.flags & RX_F_INHERITED))
William Lallemandf7f488d2019-10-18 21:16:39 +02001398 unbind_listener_no_close(l);
1399 else
1400 unbind_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001401 if (l->state >= LI_ASSIGNED) {
1402 delete_listener(l);
Willy Tarreauda250db2008-10-12 12:07:48 +02001403 }
1404 }
William Lallemandc59f9882018-11-16 16:57:21 +01001405 if (!nostop)
1406 p->state = PR_STSTOPPED;
Willy Tarreau3de3cd42019-07-24 17:42:44 +02001407
1408 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001409}
1410
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001411/* This function resumes listening on the specified proxy. It scans all of its
1412 * listeners and tries to enable them all. If any of them fails, the proxy is
1413 * put back to the paused state. It returns 1 upon success, or zero if an error
1414 * is encountered.
1415 */
1416int resume_proxy(struct proxy *p)
1417{
1418 struct listener *l;
1419 int fail;
1420
1421 if (p->state != PR_STPAUSED)
1422 return 1;
1423
Christopher Faulet767a84b2017-11-24 16:50:31 +01001424 ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001425 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
1426
1427 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02001428 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001429 if (!resume_listener(l)) {
1430 int port;
1431
Willy Tarreau37159062020-08-27 07:48:42 +02001432 port = get_host_port(&l->rx.addr);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001433 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001434 ha_warning("Port %d busy while trying to enable %s %s.\n",
1435 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001436 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
1437 port, proxy_cap_str(p->cap), p->id);
1438 }
1439 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001440 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
1441 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001442 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
1443 l->luid, proxy_cap_str(p->cap), p->id);
1444 }
1445
1446 /* Another port might have been enabled. Let's stop everything. */
1447 fail = 1;
1448 break;
1449 }
1450 }
1451
1452 p->state = PR_STREADY;
1453 if (fail) {
1454 pause_proxy(p);
1455 return 0;
1456 }
1457 return 1;
1458}
1459
Willy Tarreaubaaee002006-06-26 02:48:02 +02001460/*
1461 * This function temporarily disables listening so that another new instance
1462 * can start listening. It is designed to be called upon reception of a
1463 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
1464 * the proxy, or a SIGTTIN can be sent to listen again.
1465 */
1466void pause_proxies(void)
1467{
1468 int err;
1469 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001470 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001471
1472 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001473 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001474 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001475 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +02001476 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001477 p = p->next;
1478 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001479
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001480 prs = cfg_peers;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001481 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001482 if (prs->peers_fe)
1483 err |= !pause_proxy(prs->peers_fe);
Willy Tarreauce8fe252011-09-07 19:14:57 +02001484 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +02001485 }
1486
Willy Tarreaubaaee002006-06-26 02:48:02 +02001487 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001488 ha_warning("Some proxies refused to pause, performing soft stop now.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001489 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
1490 soft_stop();
1491 }
1492}
1493
1494
1495/*
1496 * This function reactivates listening. This can be used after a call to
1497 * sig_pause(), for example when a new instance has failed starting up.
1498 * It is designed to be called upon reception of a SIGTTIN.
1499 */
Willy Tarreaube58c382011-07-24 18:28:10 +02001500void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001501{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001502 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001503 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001504 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001505
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001506 err = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001507 p = proxies_list;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001508 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001509 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001510 err |= !resume_proxy(p);
1511 p = p->next;
1512 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001513
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001514 prs = cfg_peers;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001515 while (prs) {
Willy Tarreau337a6662015-09-28 16:27:44 +02001516 if (prs->peers_fe)
1517 err |= !resume_proxy(prs->peers_fe);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001518 prs = prs->next;
1519 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001520
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001521 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001522 ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001523 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 +02001524 }
1525}
1526
Willy Tarreau87b09662015-04-03 00:22:06 +02001527/* Set current stream's backend to <be>. Nothing is done if the
1528 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001529 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001530 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001531 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001532 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001533int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001534{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001535 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001536 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02001537
1538 if (flt_set_stream_backend(s, be) < 0)
1539 return 0;
1540
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001541 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001542 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
1543 HA_ATOMIC_ADD(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001544 proxy_inc_be_ctr(be);
1545
Willy Tarreau87b09662015-04-03 00:22:06 +02001546 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001547 s->si[1].flags &= ~SI_FL_INDEP_STR;
1548 if (be->options2 & PR_O2_INDEPSTR)
1549 s->si[1].flags |= SI_FL_INDEP_STR;
1550
Hongbo Longe39683c2017-03-10 18:41:51 +01001551 if (tick_isset(be->timeout.serverfin))
1552 s->si[1].hcto = be->timeout.serverfin;
1553
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001554 /* We want to enable the backend-specific analysers except those which
1555 * were already run as part of the frontend/listener. Note that it would
1556 * be more reliable to store the list of analysers that have been run,
1557 * but what we do here is OK for now.
1558 */
Christopher Faulet70e2f272017-01-09 16:33:19 +01001559 s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001560
Willy Tarreau51aecc72009-07-12 09:47:04 +02001561 /* If the target backend requires HTTP processing, we have to allocate
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001562 * the HTTP transaction if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001563 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001564 if (unlikely(!s->txn && be->http_needed)) {
1565 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001566 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001567
1568 /* and now initialize the HTTP transaction state */
1569 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001570 }
1571
Christopher Faulet309c6412015-12-02 09:57:32 +01001572 /* Be sure to filter request headers if the backend is an HTTP proxy and
1573 * if there are filters attached to the stream. */
1574 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01001575 s->req.analysers |= AN_REQ_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001576
Willy Tarreaueee5b512015-04-03 23:46:31 +02001577 if (s->txn) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001578 /* If we chain a TCP frontend to an HTX backend, we must upgrade
1579 * the client mux */
Christopher Faulet60d29b32019-07-15 15:00:25 +02001580 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02001581 struct connection *conn = objt_conn(strm_sess(s)->origin);
1582 struct conn_stream *cs = objt_cs(s->si[0].end);
1583
1584 if (conn && cs) {
1585 si_rx_endp_more(&s->si[0]);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001586 /* Make sure we're unsubscribed, the the new
1587 * mux will probably want to subscribe to
1588 * the underlying XPRT
1589 */
1590 if (s->si[0].wait_event.events)
1591 conn->mux->unsubscribe(cs, s->si[0].wait_event.events,
1592 &s->si[0].wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001593 if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1)
Christopher Fauletbbe68542019-04-08 10:53:51 +02001594 return 0;
Olivier Houchard4c18f942019-07-31 18:05:26 +02001595 if (!strcmp(conn->mux->name, "H2")) {
1596 /* For HTTP/2, destroy the conn_stream,
1597 * disable logging, and pretend that we
1598 * failed, to that the stream is
1599 * silently destroyed. The new mux
1600 * will create new streams.
1601 */
Olivier Houchard59dd06d2019-08-09 18:01:15 +02001602 cs_free(cs);
Olivier Houchard4c18f942019-07-31 18:05:26 +02001603 si_detach_endpoint(&s->si[0]);
1604 s->logs.logwait = 0;
1605 s->logs.level = 0;
1606 s->flags |= SF_IGNORE;
1607 return 0;
1608 }
Olivier Houchard71b20c22019-08-09 17:50:05 +02001609 s->flags |= SF_HTX;
Christopher Fauletbbe68542019-04-08 10:53:51 +02001610 }
1611 }
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001612 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
1613 /* If a TCP backend is assgiend to an HTX stream, return
1614 * an error. It may happens for a new stream on a
Ilya Shipitsin47d17182020-06-21 21:42:57 +05001615 * previously upgraded connections. */
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01001616 if (!(s->flags & SF_ERR_MASK))
1617 s->flags |= SF_ERR_INTERNAL;
1618 return 0;
1619 }
Christopher Fauletbbe68542019-04-08 10:53:51 +02001620
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001621 /* we may request to parse a request body */
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001622 if (be->options & PR_O_WREQ_BODY)
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001623 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001624 }
1625
1626 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001627 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001628 s->req.flags |= CF_NEVER_WAIT;
1629 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001630 }
1631
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001632 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001633}
1634
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001635/* Capture a bad request or response and archive it in the proxy's structure.
1636 * It is relatively protocol-agnostic so it requires that a number of elements
1637 * are passed :
1638 * - <proxy> is the proxy where the error was detected and where the snapshot
1639 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08001640 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001641 * - <other_end> is a pointer to the proxy on the other side when known
1642 * - <target> is the target of the connection, usually a server or a proxy
1643 * - <sess> is the session which experienced the error
1644 * - <ctx> may be NULL or should contain any info relevant to the protocol
1645 * - <buf> is the buffer containing the offending data
1646 * - <buf_ofs> is the position of this buffer's input data in the input
1647 * stream, starting at zero. It may be passed as zero if unknown.
1648 * - <buf_out> is the portion of <buf->data> which was already forwarded and
1649 * which precedes the buffer's input. The buffer's input starts at
1650 * buf->head + buf_out.
1651 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
1652 * - <show> is the callback to use to display <ctx>. It may be NULL.
1653 */
1654void proxy_capture_error(struct proxy *proxy, int is_back,
1655 struct proxy *other_end, enum obj_type *target,
1656 const struct session *sess,
1657 const struct buffer *buf, long buf_ofs,
1658 unsigned int buf_out, unsigned int err_pos,
1659 const union error_snapshot_ctx *ctx,
1660 void (*show)(struct buffer *, const struct error_snapshot *))
1661{
1662 struct error_snapshot *es;
1663 unsigned int buf_len;
1664 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001665 unsigned int ev_id;
1666
1667 ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1);
1668
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001669 buf_len = b_data(buf) - buf_out;
1670
1671 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02001672 if (!es)
1673 return;
1674
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001675 es->buf_len = buf_len;
1676 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001677
Christopher Faulet47a72102020-01-06 11:37:00 +01001678 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001679 if (len1 > buf_len)
1680 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001681
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001682 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001683 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02001684 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001685 if (len2)
1686 memcpy(es->buf + len1, b_orig(buf), len2);
1687 }
1688
1689 es->buf_err = err_pos;
1690 es->when = date; // user-visible date
1691 es->srv = objt_server(target);
1692 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001693 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02001694 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001695 else
1696 memset(&es->src, 0, sizeof(es->src));
1697
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001698 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
1699 es->buf_out = buf_out;
1700 es->buf_ofs = buf_ofs;
1701
1702 /* be sure to indicate the offset of the first IN byte */
1703 if (es->buf_ofs >= es->buf_len)
1704 es->buf_ofs -= es->buf_len;
1705 else
1706 es->buf_ofs = 0;
1707
1708 /* protocol-specific part now */
1709 if (ctx)
1710 es->ctx = *ctx;
1711 else
1712 memset(&es->ctx, 0, sizeof(es->ctx));
1713 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02001714
1715 /* note: we still lock since we have to be certain that nobody is
1716 * dumping the output while we free.
1717 */
1718 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
1719 if (is_back) {
1720 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
1721 } else {
1722 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
1723 }
1724 free(es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001725 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
1726}
1727
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001728/* Configure all proxies which lack a maxconn setting to use the global one by
1729 * default. This avoids the common mistake consisting in setting maxconn only
1730 * in the global section and discovering the hard way that it doesn't propagate
1731 * through the frontends. These values are also propagated through the various
Ilya Shipitsin47d17182020-06-21 21:42:57 +05001732 * targeted backends, whose fullconn is finally calculated if not yet set.
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001733 */
1734void proxy_adjust_all_maxconn()
1735{
1736 struct proxy *curproxy;
1737 struct switching_rule *swrule1, *swrule2;
1738
1739 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1740 if (curproxy->state == PR_STSTOPPED)
1741 continue;
1742
1743 if (!(curproxy->cap & PR_CAP_FE))
1744 continue;
1745
1746 if (!curproxy->maxconn)
1747 curproxy->maxconn = global.maxconn;
1748
1749 /* update the target backend's fullconn count : default_backend */
1750 if (curproxy->defbe.be)
1751 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
1752 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
1753 curproxy->tot_fe_maxconn += curproxy->maxconn;
1754
1755 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
1756 /* For each target of switching rules, we update their
1757 * tot_fe_maxconn, except if a previous rule points to
1758 * the same backend or to the default backend.
1759 */
1760 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001761 /* note: swrule1->be.backend isn't a backend if the rule
1762 * is dynamic, it's an expression instead, so it must not
1763 * be dereferenced as a backend before being certain it is.
1764 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001765 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
1766 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01001767 if (!swrule1->dynamic)
1768 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01001769 break;
1770 }
1771 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
1772 /* there are multiple refs of this backend */
1773 break;
1774 }
1775 }
1776 }
1777 }
1778 }
1779
1780 /* automatically compute fullconn if not set. We must not do it in the
1781 * loop above because cross-references are not yet fully resolved.
1782 */
1783 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
1784 if (curproxy->state == PR_STSTOPPED)
1785 continue;
1786
1787 /* If <fullconn> is not set, let's set it to 10% of the sum of
1788 * the possible incoming frontend's maxconns.
1789 */
1790 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
1791 /* we have the sum of the maxconns in <total>. We only
1792 * keep 10% of that sum to set the default fullconn, with
1793 * a hard minimum of 1 (to avoid a divide by zero).
1794 */
1795 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
1796 if (!curproxy->fullconn)
1797 curproxy->fullconn = 1;
1798 }
1799 }
1800}
1801
Willy Tarreau75fb65a2018-09-07 17:43:26 +02001802/* Config keywords below */
1803
Willy Tarreaudc13c112013-06-21 23:16:39 +02001804static struct cfg_kw_list cfg_kws = {ILH, {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001805 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001806 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02001807 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1808 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
1809 { 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 +01001810 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001811 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02001812 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02001813 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau52543212020-07-09 05:58:51 +02001814#ifdef TCP_KEEPCNT
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001815 { CFG_LISTEN, "clitcpka-cnt", proxy_parse_tcpka_cnt },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001816 { CFG_LISTEN, "srvtcpka-cnt", proxy_parse_tcpka_cnt },
Willy Tarreau52543212020-07-09 05:58:51 +02001817#endif
1818#ifdef TCP_KEEPIDLE
1819 { CFG_LISTEN, "clitcpka-idle", proxy_parse_tcpka_idle },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001820 { CFG_LISTEN, "srvtcpka-idle", proxy_parse_tcpka_idle },
Willy Tarreau52543212020-07-09 05:58:51 +02001821#endif
1822#ifdef TCP_KEEPINTVL
1823 { CFG_LISTEN, "clitcpka-intvl", proxy_parse_tcpka_intvl },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001824 { CFG_LISTEN, "srvtcpka-intvl", proxy_parse_tcpka_intvl },
Willy Tarreau52543212020-07-09 05:58:51 +02001825#endif
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001826 { 0, NULL, NULL },
1827}};
1828
Willy Tarreau0108d902018-11-25 19:14:37 +01001829INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1830
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001831/* Expects to find a frontend named <arg> and returns it, otherwise displays various
1832 * adequate error messages and returns NULL. This function is designed to be used by
1833 * functions requiring a frontend on the CLI.
1834 */
1835struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
1836{
1837 struct proxy *px;
1838
1839 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001840 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001841 return NULL;
1842 }
1843
1844 px = proxy_fe_by_name(arg);
1845 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001846 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01001847 return NULL;
1848 }
1849 return px;
1850}
1851
Olivier Houchard614f8d72017-03-14 20:08:46 +01001852/* Expects to find a backend named <arg> and returns it, otherwise displays various
1853 * adequate error messages and returns NULL. This function is designed to be used by
1854 * functions requiring a frontend on the CLI.
1855 */
1856struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
1857{
1858 struct proxy *px;
1859
1860 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001861 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001862 return NULL;
1863 }
1864
1865 px = proxy_be_by_name(arg);
1866 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02001867 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01001868 return NULL;
1869 }
1870 return px;
1871}
1872
1873
Willy Tarreau69f591e2020-07-01 07:00:59 +02001874/* parse a "show servers [state|conn]" CLI line, returns 0 if it wants to start
1875 * the dump or 1 if it stops immediately. If an argument is specified, it will
1876 * set the proxy pointer into cli.p0 and its ID into cli.i0. It sets cli.o0 to
1877 * 0 for "state", or 1 for "conn".
William Lallemanda6c5f332016-11-19 02:25:36 +01001878 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001879static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01001880{
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001881 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01001882
Willy Tarreau69f591e2020-07-01 07:00:59 +02001883 appctx->ctx.cli.o0 = *args[2] == 'c'; // "conn" vs "state"
1884
William Lallemanda6c5f332016-11-19 02:25:36 +01001885 /* check if a backend name has been provided */
1886 if (*args[3]) {
1887 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001888 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01001889
Willy Tarreau9d008692019-08-09 11:21:01 +02001890 if (!px)
1891 return cli_err(appctx, "Can't find backend.\n");
1892
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001893 appctx->ctx.cli.p0 = px;
1894 appctx->ctx.cli.i0 = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01001895 }
1896 return 0;
1897}
1898
Willy Tarreau6ff81432020-07-01 07:02:42 +02001899/* dumps server state information for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01001900 * These information are all the parameters which may change during HAProxy runtime.
1901 * By default, we only export to the last known server state file format.
1902 * These information can be used at next startup to recover same level of server state.
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001903 * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's
1904 * pointer from cli.p1.
William Lallemanda6c5f332016-11-19 02:25:36 +01001905 */
Willy Tarreau6ff81432020-07-01 07:02:42 +02001906static int dump_servers_state(struct stream_interface *si)
William Lallemanda6c5f332016-11-19 02:25:36 +01001907{
1908 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001909 struct proxy *px = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001910 struct server *srv;
1911 char srv_addr[INET6_ADDRSTRLEN + 1];
1912 time_t srv_time_since_last_change;
1913 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001914 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01001915
William Lallemanda6c5f332016-11-19 02:25:36 +01001916 /* we don't want to report any state if the backend is not enabled on this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01001917 if (!(proc_mask(px->bind_proc) & pid_bit))
William Lallemanda6c5f332016-11-19 02:25:36 +01001918 return 1;
1919
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001920 if (!appctx->ctx.cli.p1)
1921 appctx->ctx.cli.p1 = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01001922
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001923 for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) {
1924 srv = appctx->ctx.cli.p1;
William Lallemanda6c5f332016-11-19 02:25:36 +01001925 srv_addr[0] = '\0';
1926
1927 switch (srv->addr.ss_family) {
1928 case AF_INET:
1929 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr,
1930 srv_addr, INET_ADDRSTRLEN + 1);
1931 break;
1932 case AF_INET6:
1933 inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
1934 srv_addr, INET6_ADDRSTRLEN + 1);
1935 break;
Daniel Corbett9215ffa2018-05-19 19:43:24 -04001936 default:
1937 memcpy(srv_addr, "-\0", 2);
1938 break;
William Lallemanda6c5f332016-11-19 02:25:36 +01001939 }
1940 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001941 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01001942 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
1943
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02001944 srvrecord = NULL;
1945 if (srv->srvrq && srv->srvrq->name)
1946 srvrecord = srv->srvrq->name;
1947
Willy Tarreau69f591e2020-07-01 07:00:59 +02001948 if (appctx->ctx.cli.o0 == 0) {
1949 /* show servers state */
1950 chunk_printf(&trash,
1951 "%d %s "
1952 "%d %s %s "
1953 "%d %d %d %d %ld "
1954 "%d %d %d %d %d "
1955 "%d %d %s %u %s"
1956 "\n",
1957 px->uuid, px->id,
1958 srv->puid, srv->id, srv_addr,
1959 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change,
1960 srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state,
1961 bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port,
1962 srvrecord ? srvrecord : "-");
1963 } else {
1964 /* show servers conn */
1965 int thr;
1966
1967 chunk_printf(&trash,
1968 "%s/%s %d/%d %s %u - %u %u %u %u %u %u %d %u",
1969 px->id, srv->id, px->uuid, srv->puid, srv_addr,srv->svc_port,
1970 srv->pool_purge_delay,
1971 srv->curr_used_conns, srv->max_used_conns, srv->est_need_conns,
1972 srv->curr_idle_nb, srv->curr_safe_nb, (int)srv->max_idle_conns, srv->curr_idle_conns);
1973
Willy Tarreau42abe682020-07-02 15:19:57 +02001974 for (thr = 0; thr < global.nbthread && srv->curr_idle_thr; thr++)
Willy Tarreau69f591e2020-07-01 07:00:59 +02001975 chunk_appendf(&trash, " %u", srv->curr_idle_thr[thr]);
1976
1977 chunk_appendf(&trash, "\n");
1978 }
1979
Willy Tarreau06d80a92017-10-19 14:32:15 +02001980 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001981 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01001982 return 0;
1983 }
1984 }
1985 return 1;
1986}
1987
1988/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01001989 * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is
1990 * non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01001991 */
1992static int cli_io_handler_servers_state(struct appctx *appctx)
1993{
1994 struct stream_interface *si = appctx->owner;
William Lallemanda6c5f332016-11-19 02:25:36 +01001995 struct proxy *curproxy;
1996
1997 chunk_reset(&trash);
1998
1999 if (appctx->st2 == STAT_ST_INIT) {
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002000 if (!appctx->ctx.cli.p0)
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002001 appctx->ctx.cli.p0 = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01002002 appctx->st2 = STAT_ST_HEAD;
2003 }
2004
2005 if (appctx->st2 == STAT_ST_HEAD) {
Willy Tarreau69f591e2020-07-01 07:00:59 +02002006 if (appctx->ctx.cli.o0 == 0)
2007 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
2008 else
2009 chunk_printf(&trash,
2010 "# bkname/svname bkid/svid addr port - purge_delay used_cur used_max need_est unsafe_nb safe_nb idle_lim idle_cur idle_per_thr[%d]\n",
2011 global.nbthread);
2012
Willy Tarreau06d80a92017-10-19 14:32:15 +02002013 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01002014 si_rx_room_blk(si);
William Lallemanda6c5f332016-11-19 02:25:36 +01002015 return 0;
2016 }
2017 appctx->st2 = STAT_ST_INFO;
2018 }
2019
2020 /* STAT_ST_INFO */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002021 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
2022 curproxy = appctx->ctx.cli.p0;
William Lallemanda6c5f332016-11-19 02:25:36 +01002023 /* servers are only in backends */
2024 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreau6ff81432020-07-01 07:02:42 +02002025 if (!dump_servers_state(si))
William Lallemanda6c5f332016-11-19 02:25:36 +01002026 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01002027 }
2028 /* only the selected proxy is dumped */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002029 if (appctx->ctx.cli.i0)
William Lallemanda6c5f332016-11-19 02:25:36 +01002030 break;
2031 }
2032
2033 return 1;
2034}
2035
Willy Tarreau608ea592016-12-16 18:01:15 +01002036/* Parses backend list and simply report backend names. It keeps the proxy
2037 * pointer in cli.p0.
2038 */
William Lallemand933efcd2016-11-22 12:34:16 +01002039static int cli_io_handler_show_backend(struct appctx *appctx)
2040{
William Lallemand933efcd2016-11-22 12:34:16 +01002041 struct stream_interface *si = appctx->owner;
2042 struct proxy *curproxy;
2043
2044 chunk_reset(&trash);
2045
Willy Tarreau608ea592016-12-16 18:01:15 +01002046 if (!appctx->ctx.cli.p0) {
William Lallemand933efcd2016-11-22 12:34:16 +01002047 chunk_printf(&trash, "# name\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02002048 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01002049 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01002050 return 0;
2051 }
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002052 appctx->ctx.cli.p0 = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01002053 }
2054
Willy Tarreau608ea592016-12-16 18:01:15 +01002055 for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) {
2056 curproxy = appctx->ctx.cli.p0;
William Lallemand933efcd2016-11-22 12:34:16 +01002057
2058 /* looking for backends only */
2059 if (!(curproxy->cap & PR_CAP_BE))
2060 continue;
2061
2062 /* we don't want to list a backend which is bound to this process */
Willy Tarreau6daac192019-02-02 17:39:53 +01002063 if (!(proc_mask(curproxy->bind_proc) & pid_bit))
William Lallemand933efcd2016-11-22 12:34:16 +01002064 continue;
2065
2066 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreau06d80a92017-10-19 14:32:15 +02002067 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01002068 si_rx_room_blk(si);
William Lallemand933efcd2016-11-22 12:34:16 +01002069 return 0;
2070 }
2071 }
2072
2073 return 1;
2074}
William Lallemanda6c5f332016-11-19 02:25:36 +01002075
Willy Tarreaua275a372018-08-21 14:50:44 +02002076/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
2077 *
2078 * Grabs the proxy lock and each server's lock.
2079 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002080static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002081{
2082 struct proxy *px;
2083 struct server *s;
2084
2085 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2086 return 1;
2087
2088 px = cli_find_backend(appctx, args[3]);
2089 if (!px)
2090 return 1;
2091
Willy Tarreau5e83d992019-07-30 11:59:34 +02002092 /* Note: this lock is to make sure this doesn't change while another
2093 * thread is in srv_set_dyncookie().
2094 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002095 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002096 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002097 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002098
Willy Tarreaua275a372018-08-21 14:50:44 +02002099 for (s = px->srv; s != NULL; s = s->next) {
2100 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002101 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002102 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2103 }
2104
Olivier Houchard614f8d72017-03-14 20:08:46 +01002105 return 1;
2106}
2107
Willy Tarreaua275a372018-08-21 14:50:44 +02002108/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
2109 *
2110 * Grabs the proxy lock and each server's lock.
2111 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002112static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002113{
2114 struct proxy *px;
2115 struct server *s;
2116
2117 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2118 return 1;
2119
2120 px = cli_find_backend(appctx, args[3]);
2121 if (!px)
2122 return 1;
2123
Willy Tarreau5e83d992019-07-30 11:59:34 +02002124 /* Note: this lock is to make sure this doesn't change while another
2125 * thread is in srv_set_dyncookie().
2126 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002127 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002128 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002129 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002130
2131 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02002132 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002133 if (!(s->flags & SRV_F_COOKIESET)) {
2134 free(s->cookie);
2135 s->cookie = NULL;
2136 }
Willy Tarreaua275a372018-08-21 14:50:44 +02002137 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002138 }
2139
2140 return 1;
2141}
2142
Willy Tarreaua275a372018-08-21 14:50:44 +02002143/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
2144 *
2145 * Grabs the proxy lock and each server's lock.
2146 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002147static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002148{
2149 struct proxy *px;
2150 struct server *s;
2151 char *newkey;
2152
2153 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2154 return 1;
2155
2156 px = cli_find_backend(appctx, args[3]);
2157 if (!px)
2158 return 1;
2159
Willy Tarreau9d008692019-08-09 11:21:01 +02002160 if (!*args[4])
2161 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01002162
2163 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002164 if (!newkey)
2165 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02002166
Willy Tarreau5e83d992019-07-30 11:59:34 +02002167 /* Note: this lock is to make sure this doesn't change while another
2168 * thread is in srv_set_dyncookie().
2169 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002170 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002171 free(px->dyncookie_key);
2172 px->dyncookie_key = newkey;
Willy Tarreau5e83d992019-07-30 11:59:34 +02002173 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002174
Willy Tarreaua275a372018-08-21 14:50:44 +02002175 for (s = px->srv; s != NULL; s = s->next) {
2176 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002177 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002178 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2179 }
2180
Olivier Houchard614f8d72017-03-14 20:08:46 +01002181 return 1;
2182}
2183
Willy Tarreaua275a372018-08-21 14:50:44 +02002184/* Parses the "set maxconn frontend" directive, it always returns 1.
2185 *
2186 * Grabs the proxy lock.
2187 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002188static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002189{
2190 struct proxy *px;
2191 struct listener *l;
2192 int v;
2193
2194 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2195 return 1;
2196
2197 px = cli_find_frontend(appctx, args[3]);
2198 if (!px)
2199 return 1;
2200
Willy Tarreau9d008692019-08-09 11:21:01 +02002201 if (!*args[4])
2202 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002203
2204 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002205 if (v < 0)
2206 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002207
2208 /* OK, the value is fine, so we assign it to the proxy and to all of
2209 * its listeners. The blocked ones will be dequeued.
2210 */
Willy Tarreaua275a372018-08-21 14:50:44 +02002211 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2212
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002213 px->maxconn = v;
2214 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002215 if (l->state == LI_FULL)
2216 resume_listener(l);
2217 }
2218
Willy Tarreau241797a2019-12-10 14:10:52 +01002219 if (px->maxconn > px->feconn)
2220 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002221
Willy Tarreaua275a372018-08-21 14:50:44 +02002222 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2223
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002224 return 1;
2225}
2226
Willy Tarreaua275a372018-08-21 14:50:44 +02002227/* Parses the "shutdown frontend" directive, it always returns 1.
2228 *
2229 * Grabs the proxy lock.
2230 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002231static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002232{
2233 struct proxy *px;
2234
2235 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2236 return 1;
2237
2238 px = cli_find_frontend(appctx, args[2]);
2239 if (!px)
2240 return 1;
2241
Willy Tarreau9d008692019-08-09 11:21:01 +02002242 if (px->state == PR_STSTOPPED)
2243 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002244
William Dauchy1e2256d2020-01-25 23:45:18 +01002245 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002246 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
William Dauchy1e2256d2020-01-25 23:45:18 +01002247 send_log(px, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002248 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
Willy Tarreaua275a372018-08-21 14:50:44 +02002249
Willy Tarreau5212d7f2016-11-24 11:13:06 +01002250 stop_proxy(px);
2251 return 1;
2252}
2253
Willy Tarreaua275a372018-08-21 14:50:44 +02002254/* Parses the "disable frontend" directive, it always returns 1.
2255 *
2256 * Grabs the proxy lock.
2257 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002258static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002259{
2260 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002261 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002262
2263 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2264 return 1;
2265
2266 px = cli_find_frontend(appctx, args[2]);
2267 if (!px)
2268 return 1;
2269
Willy Tarreau9d008692019-08-09 11:21:01 +02002270 if (px->state == PR_STSTOPPED)
2271 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002272
Willy Tarreau9d008692019-08-09 11:21:01 +02002273 if (px->state == PR_STPAUSED)
2274 return cli_msg(appctx, LOG_NOTICE, "Frontend is already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002275
Willy Tarreaua275a372018-08-21 14:50:44 +02002276 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2277 ret = pause_proxy(px);
2278 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2279
Willy Tarreau9d008692019-08-09 11:21:01 +02002280 if (!ret)
2281 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
2282
Willy Tarreau15b9e682016-11-24 11:55:28 +01002283 return 1;
2284}
2285
Willy Tarreaua275a372018-08-21 14:50:44 +02002286/* Parses the "enable frontend" directive, it always returns 1.
2287 *
2288 * Grabs the proxy lock.
2289 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002290static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01002291{
2292 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02002293 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01002294
2295 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2296 return 1;
2297
2298 px = cli_find_frontend(appctx, args[2]);
2299 if (!px)
2300 return 1;
2301
Willy Tarreau9d008692019-08-09 11:21:01 +02002302 if (px->state == PR_STSTOPPED)
2303 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002304
Willy Tarreau9d008692019-08-09 11:21:01 +02002305 if (px->state != PR_STPAUSED)
2306 return cli_msg(appctx, LOG_NOTICE, "Frontend is already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002307
Willy Tarreaua275a372018-08-21 14:50:44 +02002308 HA_SPIN_LOCK(PROXY_LOCK, &px->lock);
2309 ret = resume_proxy(px);
2310 HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock);
2311
Willy Tarreau9d008692019-08-09 11:21:01 +02002312 if (!ret)
2313 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01002314 return 1;
2315}
2316
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002317/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
2318 * now.
2319 */
2320static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
2321{
2322 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
2323 return 1;
2324
2325 if (*args[2]) {
2326 struct proxy *px;
2327
2328 px = proxy_find_by_name(args[2], 0, 0);
2329 if (px)
2330 appctx->ctx.errors.iid = px->uuid;
2331 else
2332 appctx->ctx.errors.iid = atoi(args[2]);
2333
Willy Tarreau9d008692019-08-09 11:21:01 +02002334 if (!appctx->ctx.errors.iid)
2335 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002336 }
2337 else
2338 appctx->ctx.errors.iid = -1; // dump all proxies
2339
2340 appctx->ctx.errors.flag = 0;
2341 if (strcmp(args[3], "request") == 0)
2342 appctx->ctx.errors.flag |= 4; // ignore response
2343 else if (strcmp(args[3], "response") == 0)
2344 appctx->ctx.errors.flag |= 2; // ignore request
2345 appctx->ctx.errors.px = NULL;
2346 return 0;
2347}
2348
2349/* This function dumps all captured errors onto the stream interface's
2350 * read buffer. It returns 0 if the output buffer is full and it needs
2351 * to be called again, otherwise non-zero.
2352 */
2353static int cli_io_handler_show_errors(struct appctx *appctx)
2354{
2355 struct stream_interface *si = appctx->owner;
2356 extern const char *monthname[12];
2357
2358 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
2359 return 1;
2360
2361 chunk_reset(&trash);
2362
2363 if (!appctx->ctx.errors.px) {
2364 /* the function had not been called yet, let's prepare the
2365 * buffer for a response.
2366 */
2367 struct tm tm;
2368
2369 get_localtime(date.tv_sec, &tm);
2370 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
2371 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2372 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
2373 error_snapshot_id);
2374
Willy Tarreau36b27362018-09-07 19:55:44 +02002375 if (ci_putchk(si_ic(si), &trash) == -1)
2376 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002377
2378 appctx->ctx.errors.px = proxies_list;
2379 appctx->ctx.errors.bol = 0;
2380 appctx->ctx.errors.ptr = -1;
2381 }
2382
2383 /* we have two inner loops here, one for the proxy, the other one for
2384 * the buffer.
2385 */
2386 while (appctx->ctx.errors.px) {
2387 struct error_snapshot *es;
2388
Willy Tarreau36b27362018-09-07 19:55:44 +02002389 HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2390
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002391 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002392 es = appctx->ctx.errors.px->invalid_req;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002393 if (appctx->ctx.errors.flag & 2) // skip req
2394 goto next;
2395 }
2396 else {
Willy Tarreauc55015e2018-09-07 19:02:32 +02002397 es = appctx->ctx.errors.px->invalid_rep;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002398 if (appctx->ctx.errors.flag & 4) // skip resp
2399 goto next;
2400 }
2401
Willy Tarreauc55015e2018-09-07 19:02:32 +02002402 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002403 goto next;
2404
2405 if (appctx->ctx.errors.iid >= 0 &&
2406 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002407 (!es->oe || es->oe->uuid != appctx->ctx.errors.iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002408 goto next;
2409
2410 if (appctx->ctx.errors.ptr < 0) {
2411 /* just print headers now */
2412
2413 char pn[INET6_ADDRSTRLEN];
2414 struct tm tm;
2415 int port;
2416
2417 get_localtime(es->when.tv_sec, &tm);
2418 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
2419 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2420 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
2421
2422 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
2423 case AF_INET:
2424 case AF_INET6:
2425 port = get_host_port(&es->src);
2426 break;
2427 default:
2428 port = 0;
2429 }
2430
2431 switch (appctx->ctx.errors.flag & 1) {
2432 case 0:
2433 chunk_appendf(&trash,
2434 " frontend %s (#%d): invalid request\n"
2435 " backend %s (#%d)",
2436 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002437 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
2438 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002439 break;
2440 case 1:
2441 chunk_appendf(&trash,
2442 " backend %s (#%d): invalid response\n"
2443 " frontend %s (#%d)",
2444 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002445 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002446 break;
2447 }
2448
2449 chunk_appendf(&trash,
2450 ", server %s (#%d), event #%u, src %s:%d\n"
2451 " buffer starts at %llu (including %u out), %u free,\n"
2452 " len %u, wraps at %u, error at position %u\n",
2453 es->srv ? es->srv->id : "<NONE>",
2454 es->srv ? es->srv->puid : -1,
2455 es->ev_id, pn, port,
2456 es->buf_ofs, es->buf_out,
2457 global.tune.bufsize - es->buf_out - es->buf_len,
2458 es->buf_len, es->buf_wrap, es->buf_err);
2459
2460 if (es->show)
2461 es->show(&trash, es);
2462
2463 chunk_appendf(&trash, " \n");
2464
Willy Tarreau36b27362018-09-07 19:55:44 +02002465 if (ci_putchk(si_ic(si), &trash) == -1)
2466 goto cant_send_unlock;
2467
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002468 appctx->ctx.errors.ptr = 0;
2469 appctx->ctx.errors.ev_id = es->ev_id;
2470 }
2471
2472 if (appctx->ctx.errors.ev_id != es->ev_id) {
2473 /* the snapshot changed while we were dumping it */
2474 chunk_appendf(&trash,
2475 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau36b27362018-09-07 19:55:44 +02002476 if (ci_putchk(si_ic(si), &trash) == -1)
2477 goto cant_send_unlock;
2478
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002479 goto next;
2480 }
2481
2482 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002483 while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002484 int newptr;
2485 int newline;
2486
2487 newline = appctx->ctx.errors.bol;
2488 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr);
2489 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02002490 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002491
Willy Tarreau36b27362018-09-07 19:55:44 +02002492 if (ci_putchk(si_ic(si), &trash) == -1)
2493 goto cant_send_unlock;
2494
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002495 appctx->ctx.errors.ptr = newptr;
2496 appctx->ctx.errors.bol = newline;
2497 };
2498 next:
Willy Tarreau36b27362018-09-07 19:55:44 +02002499 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002500 appctx->ctx.errors.bol = 0;
2501 appctx->ctx.errors.ptr = -1;
2502 appctx->ctx.errors.flag ^= 1;
2503 if (!(appctx->ctx.errors.flag & 1))
2504 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
2505 }
2506
2507 /* dump complete */
2508 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02002509
2510 cant_send_unlock:
2511 HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock);
2512 cant_send:
Willy Tarreaudb398432018-11-15 11:08:52 +01002513 si_rx_room_blk(si);
Willy Tarreau36b27362018-09-07 19:55:44 +02002514 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02002515}
2516
William Lallemanda6c5f332016-11-19 02:25:36 +01002517/* register cli keywords */
2518static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau15b9e682016-11-24 11:55:28 +01002519 { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
2520 { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
Willy Tarreauc429a1f2016-11-23 16:22:04 +01002521 { { "set", "maxconn", "frontend", NULL }, "set maxconn frontend : change a frontend's maxconn setting", cli_parse_set_maxconn_frontend, NULL },
Willy Tarreau69f591e2020-07-01 07:00:59 +02002522 { { "show","servers", "conn", NULL }, "show servers conn [id]: dump server connections status (for backend <id>)", cli_parse_show_servers, cli_io_handler_servers_state },
William Lallemanda6c5f332016-11-19 02:25:36 +01002523 { { "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 +01002524 { { "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 +01002525 { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
Olivier Houchard614f8d72017-03-14 20:08:46 +01002526 { { "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 },
2527 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
2528 { { "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 +02002529 { { "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 +01002530 {{},}
2531}};
2532
Willy Tarreau0108d902018-11-25 19:14:37 +01002533INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002534
2535/*
2536 * Local variables:
2537 * c-indent-level: 8
2538 * c-basic-offset: 8
2539 * End:
2540 */