blob: c3d117ec62d0a79b9fa8cdc163d65f74105707b1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Health-checks functions.
3 *
Willy Tarreau26c25062009-03-08 09:38:41 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02005 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreaub8816082008-01-18 12:18:15 +010014#include <assert.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020015#include <ctype.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <errno.h>
17#include <fcntl.h>
Willy Tarreau9b39dc52014-07-08 00:54:10 +020018#include <signal.h>
Simon Horman0ba0e4a2015-01-30 11:23:00 +090019#include <stdarg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020#include <stdio.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020021#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <string.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020023#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <unistd.h>
Willy Tarreau9f6dc722019-03-01 11:15:10 +010025#include <sys/resource.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026#include <sys/socket.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040027#include <sys/types.h>
Simon Horman98637e52014-06-20 12:30:16 +090028#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <netinet/in.h>
Willy Tarreau1274bc42009-07-15 07:16:31 +020030#include <netinet/tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <arpa/inet.h>
32
Christopher Fauletfd6c2292020-03-25 18:20:15 +010033#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020034#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020035#include <common/compat.h>
36#include <common/config.h>
37#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020038#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020039#include <common/time.h>
Christopher Fauletcfda8472017-10-20 15:40:23 +020040#include <common/hathreads.h>
Christopher Faulete5870d82020-04-15 11:32:03 +020041#include <common/http.h>
42#include <common/h1.h>
Christopher Faulet14cd3162020-04-16 14:50:06 +020043#include <common/htx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
45#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020046#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010047#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
Gaetan Rivet707b52f2020-02-21 18:14:59 +010049#include <proto/action.h>
Christopher Fauletba3c68f2020-04-01 16:27:05 +020050#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/backend.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020052#include <proto/checks.h>
William Lallemand9ed62032016-11-21 17:49:11 +010053#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/fd.h>
Christopher Faulet14cd3162020-04-16 14:50:06 +020055#include <proto/http_htx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020057#include <proto/mux_pt.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/queue.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020059#include <proto/port_range.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010060#include <proto/proto_tcp.h>
Baptiste Assmann69e273f2013-12-11 00:52:19 +010061#include <proto/protocol.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010062#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020063#include <proto/server.h>
Willy Tarreau48d6bf22016-06-21 16:27:34 +020064#include <proto/signal.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010065#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/task.h>
Gaetan Rivet13a50432020-02-21 18:13:44 +010067#include <proto/vars.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020068#include <proto/log.h>
69#include <proto/dns.h>
70#include <proto/proto_udp.h>
Olivier Houchard9130a962017-10-17 17:33:43 +020071#include <proto/ssl_sock.h>
Christopher Fauletb7d30092020-03-30 15:19:03 +020072#include <proto/sample.h>
Olivier Houchard9130a962017-10-17 17:33:43 +020073
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +020074static int tcpcheck_get_step_id(struct check *, struct tcpcheck_rule *);
Christopher Faulet31c30fd2020-03-26 21:10:03 +010075
Christopher Faulet61cc8522020-04-20 14:54:42 +020076static int wake_srv_chk(struct conn_stream *cs);
77struct data_cb check_conn_cb = {
78 .wake = wake_srv_chk,
79 .name = "CHCK",
80};
Christopher Fauletd7e63962020-04-17 20:15:59 +020081
Christopher Fauletd7cee712020-04-21 13:45:00 +020082/* Global tree to share all tcp-checks */
83struct eb_root shared_tcpchecks = EB_ROOT;
Christopher Faulet5d503fc2020-03-30 20:34:34 +020084
85
Willy Tarreau8ceae722018-11-26 11:58:30 +010086DECLARE_STATIC_POOL(pool_head_email_alert, "email_alert", sizeof(struct email_alert));
87DECLARE_STATIC_POOL(pool_head_tcpcheck_rule, "tcpcheck_rule", sizeof(struct tcpcheck_rule));
Christopher Faulet31dff9b2017-10-23 15:45:20 +020088
Gaetan Rivet05d692d2020-02-14 17:42:54 +010089/* Dummy frontend used to create all checks sessions. */
90static struct proxy checks_fe;
Christopher Faulet31dff9b2017-10-23 15:45:20 +020091
Christopher Faulet61cc8522020-04-20 14:54:42 +020092/**************************************************************************/
93/************************ Handle check results ****************************/
94/**************************************************************************/
95struct check_status {
96 short result; /* one of SRV_CHK_* */
97 char *info; /* human readable short info */
98 char *desc; /* long description */
99};
100
101struct analyze_status {
102 char *desc; /* description */
103 unsigned char lr[HANA_OBS_SIZE]; /* result for l4/l7: 0 = ignore, 1 - error, 2 - OK */
104};
105
Simon Horman63a4a822012-03-19 07:24:41 +0900106static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100107 [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" },
108 [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" },
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200109 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200110
Willy Tarreau23964182014-05-20 20:56:30 +0200111 /* Below we have finished checks */
112 [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" },
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100113 [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100114
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100115 [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200116
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100117 [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" },
118 [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" },
119 [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200120
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100121 [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" },
122 [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" },
123 [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200124
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100125 [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" },
126 [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200127
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200128 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200129
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100130 [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" },
131 [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" },
132 [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" },
Simon Horman98637e52014-06-20 12:30:16 +0900133
134 [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" },
135 [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" },
Cyril Bonté77010d82014-08-07 01:55:37 +0200136 [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200137};
138
Simon Horman63a4a822012-03-19 07:24:41 +0900139static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100140 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
141
142 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
143 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
144
145 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
146 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
147 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
148 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
149
150 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
151 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
152 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
153};
154
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100155/* checks if <err> is a real error for errno or one that can be ignored, and
156 * return 0 for these ones or <err> for real ones.
157 */
158static inline int unclean_errno(int err)
159{
160 if (err == EAGAIN || err == EINPROGRESS ||
161 err == EISCONN || err == EALREADY)
162 return 0;
163 return err;
164}
165
Christopher Faulet61cc8522020-04-20 14:54:42 +0200166/* Converts check_status code to description */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200167const char *get_check_status_description(short check_status) {
168
169 const char *desc;
170
171 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200172 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200173 else
174 desc = NULL;
175
176 if (desc && *desc)
177 return desc;
178 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200179 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200180}
181
Christopher Faulet61cc8522020-04-20 14:54:42 +0200182/* Converts check_status code to short info */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200183const char *get_check_status_info(short check_status) {
184
185 const char *info;
186
187 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200188 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200189 else
190 info = NULL;
191
192 if (info && *info)
193 return info;
194 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200195 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200196}
197
Christopher Faulet61cc8522020-04-20 14:54:42 +0200198/* Convert analyze_status to description */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100199const char *get_analyze_status(short analyze_status) {
200
201 const char *desc;
202
203 if (analyze_status < HANA_STATUS_SIZE)
204 desc = analyze_statuses[analyze_status].desc;
205 else
206 desc = NULL;
207
208 if (desc && *desc)
209 return desc;
210 else
211 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
212}
213
Christopher Faulet61cc8522020-04-20 14:54:42 +0200214/* Sets check->status, update check->duration and fill check->result with an
215 * adequate CHK_RES_* value. The new check->health is computed based on the
216 * result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200217 *
Christopher Faulet61cc8522020-04-20 14:54:42 +0200218 * Shows information in logs about failed health check if server is UP or
219 * succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200220 */
Simon Horman4a741432013-02-23 15:35:38 +0900221static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100222{
Simon Horman4a741432013-02-23 15:35:38 +0900223 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200224 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200225 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900226
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200227 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100228 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900229 check->desc[0] = '\0';
230 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200231 return;
232 }
233
Simon Horman4a741432013-02-23 15:35:38 +0900234 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200235 return;
236
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200237 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900238 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
239 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200240 } else
Simon Horman4a741432013-02-23 15:35:38 +0900241 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200242
Simon Horman4a741432013-02-23 15:35:38 +0900243 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200244 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900245 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200246
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100247 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900248 check->duration = -1;
249 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200250 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900251 check->duration = tv_ms_elapsed(&check->start, &now);
252 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200253 }
254
Willy Tarreau23964182014-05-20 20:56:30 +0200255 /* no change is expected if no state change occurred */
256 if (check->result == CHK_RES_NEUTRAL)
257 return;
258
Olivier Houchard0923fa42019-01-11 18:43:04 +0100259 /* If the check was really just sending a mail, it won't have an
260 * associated server, so we're done now.
261 */
262 if (!s)
263 return;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200264 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200265
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200266 switch (check->result) {
267 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200268 /* Failure to connect to the agent as a secondary check should not
269 * cause the server to be marked down.
270 */
271 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900272 (check->status >= HCHK_STATUS_L57DATA)) &&
Christopher Fauletb119a792018-05-02 12:12:45 +0200273 (check->health > 0)) {
Olivier Houchard7059c552019-03-08 18:49:32 +0100274 _HA_ATOMIC_ADD(&s->counters.failed_checks, 1);
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200275 report = 1;
276 check->health--;
277 if (check->health < check->rise)
278 check->health = 0;
279 }
280 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200281
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200282 case CHK_RES_PASSED:
283 case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */
284 if ((check->health < check->rise + check->fall - 1) &&
285 (check->result == CHK_RES_PASSED || check->health > 0)) {
286 report = 1;
287 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200288
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200289 if (check->health >= check->rise)
290 check->health = check->rise + check->fall - 1; /* OK now */
291 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200292
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200293 /* clear consecutive_errors if observing is enabled */
294 if (s->onerror)
295 s->consecutive_errors = 0;
296 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100297
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200298 default:
299 break;
300 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200301
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200302 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
303 (status != prev_status || report)) {
304 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200305 "%s check for %sserver %s/%s %s%s",
306 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200307 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100308 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100309 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200310 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200311
Emeric Brun5a133512017-10-19 14:42:30 +0200312 srv_append_status(&trash, s, check, -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200313
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100314 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200315 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
316 (check->health >= check->rise) ? check->fall : check->rise,
317 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200318
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200319 ha_warning("%s.\n", trash.area);
320 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
321 send_email_alert(s, LOG_INFO, "%s", trash.area);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200322 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200323}
324
Willy Tarreau4eec5472014-05-20 22:32:27 +0200325/* Marks the check <check>'s server down if the current check is already failed
326 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200327 */
Willy Tarreau4eec5472014-05-20 22:32:27 +0200328static void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200329{
Simon Horman4a741432013-02-23 15:35:38 +0900330 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900331
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200332 /* The agent secondary check should only cause a server to be marked
333 * as down if check->status is HCHK_STATUS_L7STS, which indicates
334 * that the agent returned "fail", "stopped" or "down".
335 * The implication here is that failure to connect to the agent
336 * as a secondary check should not cause the server to be marked
337 * down. */
338 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
339 return;
340
Willy Tarreau4eec5472014-05-20 22:32:27 +0200341 if (check->health > 0)
342 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100343
Willy Tarreau4eec5472014-05-20 22:32:27 +0200344 /* We only report a reason for the check if we did not do so previously */
Emeric Brun5a133512017-10-19 14:42:30 +0200345 srv_set_stopped(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346}
347
Willy Tarreauaf549582014-05-16 17:37:50 +0200348/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200349 * it isn't in maintenance, it is not tracking a down server and other checks
350 * comply. The rule is simple : by default, a server is up, unless any of the
351 * following conditions is true :
352 * - health check failed (check->health < rise)
353 * - agent check failed (agent->health < rise)
354 * - the server tracks a down server (track && track->state == STOPPED)
355 * Note that if the server has a slowstart, it will switch to STARTING instead
356 * of RUNNING. Also, only the health checks support the nolb mode, so the
357 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200358 */
Willy Tarreau3e048382014-05-21 10:30:54 +0200359static void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200360{
Simon Horman4a741432013-02-23 15:35:38 +0900361 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100362
Emeric Brun52a91d32017-08-31 14:41:55 +0200363 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200364 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100365
Emeric Brun52a91d32017-08-31 14:41:55 +0200366 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200367 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100368
Willy Tarreau3e048382014-05-21 10:30:54 +0200369 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
370 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100371
Willy Tarreau3e048382014-05-21 10:30:54 +0200372 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
373 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200374
Emeric Brun52a91d32017-08-31 14:41:55 +0200375 if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING)
Willy Tarreau3e048382014-05-21 10:30:54 +0200376 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100377
Emeric Brun5a133512017-10-19 14:42:30 +0200378 srv_set_running(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100379}
380
Willy Tarreaudb58b792014-05-21 13:57:23 +0200381/* Marks the check <check> as valid and tries to set its server into stopping mode
382 * if it was running or starting, and provided it isn't in maintenance and other
383 * checks comply. The conditions for the server to be marked in stopping mode are
384 * the same as for it to be turned up. Also, only the health checks support the
385 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200386 */
Willy Tarreaudb58b792014-05-21 13:57:23 +0200387static void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200388{
Simon Horman4a741432013-02-23 15:35:38 +0900389 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100390
Emeric Brun52a91d32017-08-31 14:41:55 +0200391 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200392 return;
393
Willy Tarreaudb58b792014-05-21 13:57:23 +0200394 if (check->state & CHK_ST_AGENT)
395 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100396
Emeric Brun52a91d32017-08-31 14:41:55 +0200397 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreaudb58b792014-05-21 13:57:23 +0200398 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100399
Willy Tarreaudb58b792014-05-21 13:57:23 +0200400 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
401 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100402
Willy Tarreaudb58b792014-05-21 13:57:23 +0200403 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
404 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100405
Willy Tarreaub26881a2017-12-23 11:16:49 +0100406 srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100407}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200408
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100409/* note: use health_adjust() only, which first checks that the observe mode is
410 * enabled.
411 */
412void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100413{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100414 int failed;
415 int expire;
416
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100417 if (s->observe >= HANA_OBS_SIZE)
418 return;
419
Willy Tarreaubb956662013-01-24 00:37:39 +0100420 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100421 return;
422
423 switch (analyze_statuses[status].lr[s->observe - 1]) {
424 case 1:
425 failed = 1;
426 break;
427
428 case 2:
429 failed = 0;
430 break;
431
432 default:
433 return;
434 }
435
436 if (!failed) {
437 /* good: clear consecutive_errors */
438 s->consecutive_errors = 0;
439 return;
440 }
441
Olivier Houchard7059c552019-03-08 18:49:32 +0100442 _HA_ATOMIC_ADD(&s->consecutive_errors, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100443
444 if (s->consecutive_errors < s->consecutive_errors_limit)
445 return;
446
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100447 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
448 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100449
450 switch (s->onerror) {
451 case HANA_ONERR_FASTINTER:
452 /* force fastinter - nothing to do here as all modes force it */
453 break;
454
455 case HANA_ONERR_SUDDTH:
456 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900457 if (s->check.health > s->check.rise)
458 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100459
460 /* no break - fall through */
461
462 case HANA_ONERR_FAILCHK:
463 /* simulate a failed health check */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200464 set_server_check_status(&s->check, HCHK_STATUS_HANA,
465 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200466 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100467 break;
468
469 case HANA_ONERR_MARKDWN:
470 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900471 s->check.health = s->check.rise;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200472 set_server_check_status(&s->check, HCHK_STATUS_HANA,
473 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200474 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100475 break;
476
477 default:
478 /* write a warning? */
479 break;
480 }
481
482 s->consecutive_errors = 0;
Olivier Houchard7059c552019-03-08 18:49:32 +0100483 _HA_ATOMIC_ADD(&s->counters.failed_hana, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100484
Simon Horman66183002013-02-23 10:16:43 +0900485 if (s->check.fastinter) {
486 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300487 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200488 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300489 /* requeue check task with new expire */
490 task_queue(s->check.task);
491 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100492 }
Willy Tarreauef781042010-01-27 11:53:01 +0100493}
494
Christopher Faulet61cc8522020-04-20 14:54:42 +0200495/* Checks the connection. If an error has already been reported or the socket is
Willy Tarreau20a18342013-12-05 00:31:46 +0100496 * closed, keep errno intact as it is supposed to contain the valid error code.
497 * If no error is reported, check the socket's error queue using getsockopt().
498 * Warning, this must be done only once when returning from poll, and never
499 * after an I/O error was attempted, otherwise the error queue might contain
500 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
501 * socket. Returns non-zero if an error was reported, zero if everything is
502 * clean (including a properly closed socket).
503 */
504static int retrieve_errno_from_socket(struct connection *conn)
505{
506 int skerr;
507 socklen_t lskerr = sizeof(skerr);
508
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100509 if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl))
Willy Tarreau20a18342013-12-05 00:31:46 +0100510 return 1;
511
Willy Tarreau3c728722014-01-23 13:50:42 +0100512 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100513 return 0;
514
Willy Tarreau585744b2017-08-24 14:31:19 +0200515 if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
Willy Tarreau20a18342013-12-05 00:31:46 +0100516 errno = skerr;
517
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100518 errno = unclean_errno(errno);
Willy Tarreau20a18342013-12-05 00:31:46 +0100519
520 if (!errno) {
521 /* we could not retrieve an error, that does not mean there is
522 * none. Just don't change anything and only report the prior
523 * error if any.
524 */
525 if (conn->flags & CO_FL_ERROR)
526 return 1;
527 else
528 return 0;
529 }
530
531 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
532 return 1;
533}
534
Christopher Faulet61cc8522020-04-20 14:54:42 +0200535/* Tries to collect as much information as possible on the connection status,
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100536 * and adjust the server status accordingly. It may make use of <errno_bck>
537 * if non-null when the caller is absolutely certain of its validity (eg:
538 * checked just after a syscall). If the caller doesn't have a valid errno,
539 * it can pass zero, and retrieve_errno_from_socket() will be called to try
540 * to extract errno from the socket. If no error is reported, it will consider
541 * the <expired> flag. This is intended to be used when a connection error was
542 * reported in conn->flags or when a timeout was reported in <expired>. The
543 * function takes care of not updating a server status which was already set.
544 * All situations where at least one of <expired> or CO_FL_ERROR are set
545 * produce a status.
546 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200547static void chk_report_conn_err(struct check *check, int errno_bck, int expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100548{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200549 struct conn_stream *cs = check->cs;
550 struct connection *conn = cs_conn(cs);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100551 const char *err_msg;
Willy Tarreau83061a82018-07-13 11:56:34 +0200552 struct buffer *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200553 int step;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100554
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100555 if (check->result != CHK_RES_UNKNOWN)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100556 return;
557
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100558 errno = unclean_errno(errno_bck);
559 if (conn && errno)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100560 retrieve_errno_from_socket(conn);
561
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200562 if (conn && !(conn->flags & CO_FL_ERROR) &&
563 !(cs->flags & CS_FL_ERROR) && !expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100564 return;
565
566 /* we'll try to build a meaningful error message depending on the
567 * context of the error possibly present in conn->err_code, and the
568 * socket error possibly collected above. This is useful to know the
569 * exact step of the L6 layer (eg: SSL handshake).
570 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200571 chk = get_trash_chunk();
572
Christopher Faulet799f3a42020-04-07 12:06:14 +0200573 if (check->type == PR_O2_TCPCHK_CHK &&
Christopher Fauletd7e63962020-04-17 20:15:59 +0200574 (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) {
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200575 step = tcpcheck_get_step_id(check, NULL);
Willy Tarreau213c6782014-10-02 14:51:02 +0200576 if (!step)
577 chunk_printf(chk, " at initial connection step of tcp-check");
578 else {
579 chunk_printf(chk, " at step %d of tcp-check", step);
580 /* we were looking for a string */
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200581 if (check->current_step && check->current_step->action == TCPCHK_ACT_CONNECT) {
582 if (check->current_step->connect.port)
583 chunk_appendf(chk, " (connect port %d)" ,check->current_step->connect.port);
Willy Tarreau213c6782014-10-02 14:51:02 +0200584 else
585 chunk_appendf(chk, " (connect)");
586 }
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200587 else if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT) {
588 struct tcpcheck_expect *expect = &check->current_step->expect;
Gaetan Rivetb616add2020-02-07 15:37:17 +0100589
590 switch (expect->type) {
591 case TCPCHK_EXPECT_STRING:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200592 chunk_appendf(chk, " (expect string '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Gaetan Rivetb616add2020-02-07 15:37:17 +0100593 break;
594 case TCPCHK_EXPECT_BINARY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200595 chunk_appendf(chk, " (expect binary '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Gaetan Rivetb616add2020-02-07 15:37:17 +0100596 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200597 case TCPCHK_EXPECT_STRING_REGEX:
Willy Tarreau213c6782014-10-02 14:51:02 +0200598 chunk_appendf(chk, " (expect regex)");
Gaetan Rivetb616add2020-02-07 15:37:17 +0100599 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200600 case TCPCHK_EXPECT_BINARY_REGEX:
Gaetan Rivetefab6c62020-02-07 15:37:17 +0100601 chunk_appendf(chk, " (expect binary regex)");
602 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +0200603 case TCPCHK_EXPECT_STRING_LF:
604 chunk_appendf(chk, " (expect log-format string)");
605 break;
606 case TCPCHK_EXPECT_BINARY_LF:
607 chunk_appendf(chk, " (expect log-format binary)");
608 break;
Christopher Faulete5870d82020-04-15 11:32:03 +0200609 case TCPCHK_EXPECT_HTTP_STATUS:
Christopher Faulet8021a5f2020-04-24 13:53:12 +0200610 chunk_appendf(chk, " (expect HTTP status codes)");
Christopher Faulete5870d82020-04-15 11:32:03 +0200611 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200612 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
Christopher Faulete5870d82020-04-15 11:32:03 +0200613 chunk_appendf(chk, " (expect HTTP status regex)");
614 break;
Christopher Faulet39708192020-05-05 10:47:36 +0200615 case TCPCHK_EXPECT_HTTP_HEADER:
616 chunk_appendf(chk, " (expect HTTP header pattern)");
617 break;
Christopher Faulete5870d82020-04-15 11:32:03 +0200618 case TCPCHK_EXPECT_HTTP_BODY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200619 chunk_appendf(chk, " (expect HTTP body content '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Christopher Faulete5870d82020-04-15 11:32:03 +0200620 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200621 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Faulete5870d82020-04-15 11:32:03 +0200622 chunk_appendf(chk, " (expect HTTP body regex)");
623 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +0200624 case TCPCHK_EXPECT_HTTP_BODY_LF:
625 chunk_appendf(chk, " (expect log-format HTTP body)");
626 break;
Christopher Faulet9e6ed152020-04-03 15:24:06 +0200627 case TCPCHK_EXPECT_CUSTOM:
628 chunk_appendf(chk, " (expect custom function)");
629 break;
Gaetan Rivetb616add2020-02-07 15:37:17 +0100630 case TCPCHK_EXPECT_UNDEF:
631 chunk_appendf(chk, " (undefined expect!)");
632 break;
633 }
Willy Tarreau213c6782014-10-02 14:51:02 +0200634 }
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200635 else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) {
Willy Tarreau213c6782014-10-02 14:51:02 +0200636 chunk_appendf(chk, " (send)");
637 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200638
Christopher Faulet6f2a5e42020-04-01 13:11:41 +0200639 if (check->current_step && check->current_step->comment)
640 chunk_appendf(chk, " comment: '%s'", check->current_step->comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200641 }
642 }
643
Willy Tarreau00149122017-10-04 18:05:01 +0200644 if (conn && conn->err_code) {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100645 if (unclean_errno(errno))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200646 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno),
647 chk->area);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100648 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200649 chunk_printf(&trash, "%s%s", conn_err_code_str(conn),
650 chk->area);
651 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100652 }
653 else {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100654 if (unclean_errno(errno)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200655 chunk_printf(&trash, "%s%s", strerror(errno),
656 chk->area);
657 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100658 }
659 else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200660 err_msg = chk->area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100661 }
662 }
663
Willy Tarreau00149122017-10-04 18:05:01 +0200664 if (check->state & CHK_ST_PORT_MISS) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200665 /* NOTE: this is reported after <fall> tries */
666 chunk_printf(chk, "No port available for the TCP connection");
667 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
668 }
669
Willy Tarreau00149122017-10-04 18:05:01 +0200670 if (!conn) {
671 /* connection allocation error before the connection was established */
672 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
673 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100674 else if (conn->flags & CO_FL_WAIT_L4_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100675 /* L4 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200676 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100677 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
678 else if (expired)
679 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200680
681 /*
682 * might be due to a server IP change.
683 * Let's trigger a DNS resolution if none are currently running.
684 */
Olivier Houchard0923fa42019-01-11 18:43:04 +0100685 if (check->server)
686 dns_trigger_resolution(check->server->dns_requester);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200687
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100688 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100689 else if (conn->flags & CO_FL_WAIT_L6_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100690 /* L6 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200691 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100692 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
693 else if (expired)
694 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
695 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200696 else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100697 /* I/O error after connection was established and before we could diagnose */
698 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
699 }
700 else if (expired) {
Christopher Fauletcf80f2f2020-04-01 11:04:52 +0200701 enum healthcheck_status tout = HCHK_STATUS_L7TOUT;
702
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100703 /* connection established but expired check */
Christopher Faulet1941bab2020-05-05 07:55:50 +0200704 if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT &&
705 check->current_step->expect.tout_status != HCHK_STATUS_UNKNOWN)
Christopher Faulet811f78c2020-04-01 11:10:27 +0200706 tout = check->current_step->expect.tout_status;
707 set_server_check_status(check, tout, err_msg);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100708 }
709
710 return;
711}
712
Willy Tarreaubaaee002006-06-26 02:48:02 +0200713
Christopher Faulet61cc8522020-04-20 14:54:42 +0200714/**************************************************************************/
715/*************** Init/deinit tcp-check rules and ruleset ******************/
716/**************************************************************************/
717/* Releases memory allocated for a log-format string */
718static void free_tcpcheck_fmt(struct list *fmt)
Willy Tarreau20bea422012-07-06 12:00:49 +0200719{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200720 struct logformat_node *lf, *lfb;
Willy Tarreau2d351b62013-12-05 02:36:25 +0100721
Christopher Faulet61cc8522020-04-20 14:54:42 +0200722 list_for_each_entry_safe(lf, lfb, fmt, list) {
723 LIST_DEL(&lf->list);
724 release_sample_expr(lf->expr);
725 free(lf->arg);
726 free(lf);
Willy Tarreau2d351b62013-12-05 02:36:25 +0100727 }
Willy Tarreau20bea422012-07-06 12:00:49 +0200728}
729
Christopher Faulet61cc8522020-04-20 14:54:42 +0200730/* Releases memory allocated for an HTTP header used in a tcp-check send rule */
731static void free_tcpcheck_http_hdr(struct tcpcheck_http_hdr *hdr)
Willy Tarreau2e993902011-10-31 11:53:20 +0100732{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200733 if (!hdr)
734 return;
Willy Tarreau4fc49a92019-05-05 06:54:22 +0200735
Christopher Faulet61cc8522020-04-20 14:54:42 +0200736 free_tcpcheck_fmt(&hdr->value);
Christopher Fauletb61caf42020-04-21 10:57:42 +0200737 istfree(&hdr->name);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200738 free(hdr);
Willy Tarreau2e993902011-10-31 11:53:20 +0100739}
740
Christopher Faulet61cc8522020-04-20 14:54:42 +0200741/* Releases memory allocated for an HTTP header list used in a tcp-check send
742 * rule
Willy Tarreau894c6422017-10-04 15:58:52 +0200743 */
Christopher Faulet61cc8522020-04-20 14:54:42 +0200744static void free_tcpcheck_http_hdrs(struct list *hdrs)
Willy Tarreau894c6422017-10-04 15:58:52 +0200745{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200746 struct tcpcheck_http_hdr *hdr, *bhdr;
Willy Tarreau894c6422017-10-04 15:58:52 +0200747
Christopher Faulet61cc8522020-04-20 14:54:42 +0200748 list_for_each_entry_safe(hdr, bhdr, hdrs, list) {
749 LIST_DEL(&hdr->list);
750 free_tcpcheck_http_hdr(hdr);
Willy Tarreau894c6422017-10-04 15:58:52 +0200751 }
Willy Tarreau894c6422017-10-04 15:58:52 +0200752}
753
Christopher Faulet61cc8522020-04-20 14:54:42 +0200754/* Releases memory allocated for a tcp-check. If in_pool is set, it means the
755 * tcp-check was allocated using a memory pool (it is used to instantiate email
756 * alerts).
Christopher Faulet95226db2020-04-15 11:34:04 +0200757 */
Christopher Faulet61cc8522020-04-20 14:54:42 +0200758static void free_tcpcheck(struct tcpcheck_rule *rule, int in_pool)
Christopher Faulet95226db2020-04-15 11:34:04 +0200759{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200760 if (!rule)
761 return;
Christopher Faulet95226db2020-04-15 11:34:04 +0200762
Christopher Faulet61cc8522020-04-20 14:54:42 +0200763 free(rule->comment);
764 switch (rule->action) {
765 case TCPCHK_ACT_SEND:
766 switch (rule->send.type) {
767 case TCPCHK_SEND_STRING:
768 case TCPCHK_SEND_BINARY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200769 istfree(&rule->send.data);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200770 break;
771 case TCPCHK_SEND_STRING_LF:
772 case TCPCHK_SEND_BINARY_LF:
773 free_tcpcheck_fmt(&rule->send.fmt);
774 break;
775 case TCPCHK_SEND_HTTP:
776 free(rule->send.http.meth.str.area);
777 if (!(rule->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +0200778 istfree(&rule->send.http.uri);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200779 else
780 free_tcpcheck_fmt(&rule->send.http.uri_fmt);
Christopher Fauletb61caf42020-04-21 10:57:42 +0200781 istfree(&rule->send.http.vsn);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200782 free_tcpcheck_http_hdrs(&rule->send.http.hdrs);
783 if (!(rule->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +0200784 istfree(&rule->send.http.body);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200785 else
786 free_tcpcheck_fmt(&rule->send.http.body_fmt);
787 break;
788 case TCPCHK_SEND_UNDEF:
789 break;
790 }
791 break;
792 case TCPCHK_ACT_EXPECT:
793 free_tcpcheck_fmt(&rule->expect.onerror_fmt);
794 free_tcpcheck_fmt(&rule->expect.onsuccess_fmt);
795 release_sample_expr(rule->expect.status_expr);
796 switch (rule->expect.type) {
Christopher Faulet8021a5f2020-04-24 13:53:12 +0200797 case TCPCHK_EXPECT_HTTP_STATUS:
798 free(rule->expect.codes.codes);
799 break;
Christopher Faulet61cc8522020-04-20 14:54:42 +0200800 case TCPCHK_EXPECT_STRING:
801 case TCPCHK_EXPECT_BINARY:
Christopher Faulet61cc8522020-04-20 14:54:42 +0200802 case TCPCHK_EXPECT_HTTP_BODY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200803 istfree(&rule->expect.data);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200804 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200805 case TCPCHK_EXPECT_STRING_REGEX:
806 case TCPCHK_EXPECT_BINARY_REGEX:
807 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
808 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Faulet61cc8522020-04-20 14:54:42 +0200809 regex_free(rule->expect.regex);
810 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +0200811 case TCPCHK_EXPECT_STRING_LF:
812 case TCPCHK_EXPECT_BINARY_LF:
813 case TCPCHK_EXPECT_HTTP_BODY_LF:
814 free_tcpcheck_fmt(&rule->expect.fmt);
815 break;
Christopher Faulet39708192020-05-05 10:47:36 +0200816 case TCPCHK_EXPECT_HTTP_HEADER:
817 if (rule->expect.flags & TCPCHK_EXPT_FL_HTTP_HNAME_REG)
818 regex_free(rule->expect.hdr.name_re);
819 else if (rule->expect.flags & TCPCHK_EXPT_FL_HTTP_HNAME_FMT)
820 free_tcpcheck_fmt(&rule->expect.hdr.name_fmt);
821 else
822 istfree(&rule->expect.hdr.name);
823
824 if (rule->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_REG)
825 regex_free(rule->expect.hdr.value_re);
826 else if (rule->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_FMT)
827 free_tcpcheck_fmt(&rule->expect.hdr.value_fmt);
828 else if (!(rule->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_NONE))
829 istfree(&rule->expect.hdr.value);
830 break;
Christopher Faulet61cc8522020-04-20 14:54:42 +0200831 case TCPCHK_EXPECT_CUSTOM:
832 case TCPCHK_EXPECT_UNDEF:
833 break;
834 }
835 break;
836 case TCPCHK_ACT_CONNECT:
837 free(rule->connect.sni);
838 free(rule->connect.alpn);
839 release_sample_expr(rule->connect.port_expr);
840 break;
841 case TCPCHK_ACT_COMMENT:
842 break;
843 case TCPCHK_ACT_ACTION_KW:
844 free(rule->action_kw.rule);
845 break;
Christopher Faulet95226db2020-04-15 11:34:04 +0200846 }
Christopher Faulet61cc8522020-04-20 14:54:42 +0200847
848 if (in_pool)
849 pool_free(pool_head_tcpcheck_rule, rule);
850 else
851 free(rule);
Christopher Faulet95226db2020-04-15 11:34:04 +0200852}
853
Christopher Faulet61cc8522020-04-20 14:54:42 +0200854/* Creates a tcp-check variable used in preset variables before executing a
855 * tcp-check ruleset.
Gaetan Rivet1d22d7e2020-02-14 17:47:08 +0100856 */
Christopher Fauletb61caf42020-04-21 10:57:42 +0200857static struct tcpcheck_var *create_tcpcheck_var(const struct ist name)
Gaetan Rivet1d22d7e2020-02-14 17:47:08 +0100858{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200859 struct tcpcheck_var *var = NULL;
Gaetan Rivet1d22d7e2020-02-14 17:47:08 +0100860
Christopher Faulet61cc8522020-04-20 14:54:42 +0200861 var = calloc(1, sizeof(*var));
862 if (var == NULL)
863 return NULL;
Gaetan Rivet1d22d7e2020-02-14 17:47:08 +0100864
Christopher Fauletb61caf42020-04-21 10:57:42 +0200865 var->name = istdup(name);
866 if (!isttest(var->name)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +0200867 free(var);
868 return NULL;
Gaetan Rivet1d22d7e2020-02-14 17:47:08 +0100869 }
Simon Horman98637e52014-06-20 12:30:16 +0900870
Christopher Faulet61cc8522020-04-20 14:54:42 +0200871 LIST_INIT(&var->list);
872 return var;
Simon Horman98637e52014-06-20 12:30:16 +0900873}
874
Christopher Faulet61cc8522020-04-20 14:54:42 +0200875/* Releases memory allocated for a preset tcp-check variable */
876static void free_tcpcheck_var(struct tcpcheck_var *var)
Simon Horman98637e52014-06-20 12:30:16 +0900877{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200878 if (!var)
879 return;
880
Christopher Fauletb61caf42020-04-21 10:57:42 +0200881 istfree(&var->name);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200882 if (var->data.type == SMP_T_STR || var->data.type == SMP_T_BIN)
883 free(var->data.u.str.area);
884 else if (var->data.type == SMP_T_METH && var->data.u.meth.meth == HTTP_METH_OTHER)
885 free(var->data.u.meth.str.area);
886 free(var);
Simon Horman98637e52014-06-20 12:30:16 +0900887}
888
Christopher Faulet61cc8522020-04-20 14:54:42 +0200889/* Releases a list of preset tcp-check variables */
890static void free_tcpcheck_vars(struct list *vars)
Simon Horman98637e52014-06-20 12:30:16 +0900891{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200892 struct tcpcheck_var *var, *back;
Christopher Fauletcfda8472017-10-20 15:40:23 +0200893
Christopher Faulet61cc8522020-04-20 14:54:42 +0200894 list_for_each_entry_safe(var, back, vars, list) {
895 LIST_DEL(&var->list);
896 free_tcpcheck_var(var);
897 }
Simon Horman98637e52014-06-20 12:30:16 +0900898}
899
Christopher Faulet61cc8522020-04-20 14:54:42 +0200900/* Duplicate a list of preset tcp-check variables */
901int dup_tcpcheck_vars(struct list *dst, struct list *src)
Simon Horman98637e52014-06-20 12:30:16 +0900902{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200903 struct tcpcheck_var *var, *new = NULL;
Simon Horman98637e52014-06-20 12:30:16 +0900904
Christopher Faulet61cc8522020-04-20 14:54:42 +0200905 list_for_each_entry(var, src, list) {
Christopher Fauletb61caf42020-04-21 10:57:42 +0200906 new = create_tcpcheck_var(var->name);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200907 if (!new)
908 goto error;
909 new->data.type = var->data.type;
910 if (var->data.type == SMP_T_STR || var->data.type == SMP_T_BIN) {
911 if (chunk_dup(&new->data.u.str, &var->data.u.str) == NULL)
912 goto error;
913 if (var->data.type == SMP_T_STR)
914 new->data.u.str.area[new->data.u.str.data] = 0;
915 }
916 else if (var->data.type == SMP_T_METH && var->data.u.meth.meth == HTTP_METH_OTHER) {
917 if (chunk_dup(&new->data.u.str, &var->data.u.str) == NULL)
918 goto error;
919 new->data.u.str.area[new->data.u.str.data] = 0;
920 new->data.u.meth.meth = var->data.u.meth.meth;
921 }
922 else
923 new->data.u = var->data.u;
924 LIST_ADDQ(dst, &new->list);
925 }
926 return 1;
Simon Horman98637e52014-06-20 12:30:16 +0900927
Christopher Faulet61cc8522020-04-20 14:54:42 +0200928 error:
929 free(new);
930 return 0;
931}
Christopher Fauletcfda8472017-10-20 15:40:23 +0200932
Christopher Faulet61cc8522020-04-20 14:54:42 +0200933/* Looks for a shared tcp-check ruleset given its name. */
934static struct tcpcheck_ruleset *find_tcpcheck_ruleset(const char *name)
935{
936 struct tcpcheck_ruleset *rs;
Christopher Fauletd7cee712020-04-21 13:45:00 +0200937 struct ebpt_node *node;
Simon Horman98637e52014-06-20 12:30:16 +0900938
Christopher Fauletd7cee712020-04-21 13:45:00 +0200939 node = ebis_lookup_len(&shared_tcpchecks, name, strlen(name));
940 if (node) {
941 rs = container_of(node, typeof(*rs), node);
942 return rs;
Christopher Faulet61cc8522020-04-20 14:54:42 +0200943 }
944 return NULL;
Simon Horman98637e52014-06-20 12:30:16 +0900945}
946
Christopher Faulet61cc8522020-04-20 14:54:42 +0200947/* Creates a new shared tcp-check ruleset */
948static struct tcpcheck_ruleset *create_tcpcheck_ruleset(const char *name)
Simon Horman98637e52014-06-20 12:30:16 +0900949{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200950 struct tcpcheck_ruleset *rs;
Simon Horman98637e52014-06-20 12:30:16 +0900951
Christopher Faulet61cc8522020-04-20 14:54:42 +0200952 rs = calloc(1, sizeof(*rs));
953 if (rs == NULL)
954 return NULL;
955
Christopher Fauletd7cee712020-04-21 13:45:00 +0200956 rs->node.key = strdup(name);
957 if (rs->node.key == NULL) {
Christopher Faulet61cc8522020-04-20 14:54:42 +0200958 free(rs);
959 return NULL;
Simon Horman98637e52014-06-20 12:30:16 +0900960 }
Christopher Faulet61cc8522020-04-20 14:54:42 +0200961
Christopher Faulet61cc8522020-04-20 14:54:42 +0200962 LIST_INIT(&rs->rules);
Christopher Fauletd7cee712020-04-21 13:45:00 +0200963 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200964 return rs;
Simon Horman98637e52014-06-20 12:30:16 +0900965}
966
Christopher Faulet61cc8522020-04-20 14:54:42 +0200967/* Releases memory allocated by a tcp-check ruleset. */
968static void free_tcpcheck_ruleset(struct tcpcheck_ruleset *rs)
Simon Horman98637e52014-06-20 12:30:16 +0900969{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200970 struct tcpcheck_rule *r, *rb;
971 if (!rs)
972 return;
Willy Tarreau48d6bf22016-06-21 16:27:34 +0200973
Christopher Fauletd7cee712020-04-21 13:45:00 +0200974 ebpt_delete(&rs->node);
975 free(rs->node.key);
Christopher Faulet61cc8522020-04-20 14:54:42 +0200976 list_for_each_entry_safe(r, rb, &rs->rules, list) {
977 LIST_DEL(&r->list);
978 free_tcpcheck(r, 0);
979 }
Christopher Faulet61cc8522020-04-20 14:54:42 +0200980 free(rs);
Simon Horman98637e52014-06-20 12:30:16 +0900981}
982
Christopher Faulet61cc8522020-04-20 14:54:42 +0200983
984/**************************************************************************/
985/**************** Everything about tcp-checks execution *******************/
986/**************************************************************************/
987/* Returns the id of a step in a tcp-check ruleset */
988static int tcpcheck_get_step_id(struct check *check, struct tcpcheck_rule *rule)
Willy Tarreau48d6bf22016-06-21 16:27:34 +0200989{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200990 if (!rule)
991 rule = check->current_step;
Simon Horman98637e52014-06-20 12:30:16 +0900992
Christopher Faulet61cc8522020-04-20 14:54:42 +0200993 /* no last started step => first step */
994 if (!rule)
Simon Horman98637e52014-06-20 12:30:16 +0900995 return 1;
Simon Horman98637e52014-06-20 12:30:16 +0900996
Christopher Faulet61cc8522020-04-20 14:54:42 +0200997 /* last step is the first implicit connect */
998 if (rule->index == 0 &&
999 rule->action == TCPCHK_ACT_CONNECT &&
1000 (rule->connect.options & TCPCHK_OPT_IMPLICIT))
1001 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09001002
Christopher Faulet61cc8522020-04-20 14:54:42 +02001003 return rule->index + 1;
Simon Horman98637e52014-06-20 12:30:16 +09001004}
1005
Christopher Faulet61cc8522020-04-20 14:54:42 +02001006/* Returns the first non COMMENT/ACTION_KW tcp-check rule from list <list> or
1007 * NULL if none was found.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001008 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001009static struct tcpcheck_rule *get_first_tcpcheck_rule(struct tcpcheck_rules *rules)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001010{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001011 struct tcpcheck_rule *r;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001012
Christopher Faulet61cc8522020-04-20 14:54:42 +02001013 list_for_each_entry(r, rules->list, list) {
1014 if (r->action != TCPCHK_ACT_COMMENT && r->action != TCPCHK_ACT_ACTION_KW)
1015 return r;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001016 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001017 return NULL;
1018}
Cyril Bontéac92a062014-12-27 22:28:38 +01001019
Christopher Faulet61cc8522020-04-20 14:54:42 +02001020/* Returns the last non COMMENT/ACTION_KW tcp-check rule from list <list> or
1021 * NULL if none was found.
1022 */
1023static struct tcpcheck_rule *get_last_tcpcheck_rule(struct tcpcheck_rules *rules)
1024{
1025 struct tcpcheck_rule *r;
Cyril Bontéac92a062014-12-27 22:28:38 +01001026
Christopher Faulet61cc8522020-04-20 14:54:42 +02001027 list_for_each_entry_rev(r, rules->list, list) {
1028 if (r->action != TCPCHK_ACT_COMMENT && r->action != TCPCHK_ACT_ACTION_KW)
1029 return r;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001030 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001031 return NULL;
1032}
Cyril Bontéac92a062014-12-27 22:28:38 +01001033
Christopher Faulet61cc8522020-04-20 14:54:42 +02001034/* Returns the non COMMENT/ACTION_KW tcp-check rule from list <list> following
1035 * <start> or NULL if non was found. If <start> is NULL, it relies on
1036 * get_first_tcpcheck_rule().
1037 */
1038static struct tcpcheck_rule *get_next_tcpcheck_rule(struct tcpcheck_rules *rules, struct tcpcheck_rule *start)
1039{
1040 struct tcpcheck_rule *r;
Cyril Bontéac92a062014-12-27 22:28:38 +01001041
Christopher Faulet61cc8522020-04-20 14:54:42 +02001042 if (!start)
1043 return get_first_tcpcheck_rule(rules);
Cyril Bontéac92a062014-12-27 22:28:38 +01001044
Christopher Faulet61cc8522020-04-20 14:54:42 +02001045 r = LIST_NEXT(&start->list, typeof(r), list);
1046 list_for_each_entry_from(r, rules->list, list) {
1047 if (r->action != TCPCHK_ACT_COMMENT && r->action != TCPCHK_ACT_ACTION_KW)
1048 return r;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001049 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001050 return NULL;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001051}
Simon Horman98637e52014-06-20 12:30:16 +09001052
Simon Horman98637e52014-06-20 12:30:16 +09001053
Christopher Faulet61cc8522020-04-20 14:54:42 +02001054/* Creates info message when a tcp-check healthcheck fails on an expect rule */
1055static void tcpcheck_expect_onerror_message(struct buffer *msg, struct check *check, struct tcpcheck_rule *rule,
1056 int match, struct ist info)
1057{
1058 struct sample *smp;
Simon Horman98637e52014-06-20 12:30:16 +09001059
Christopher Faulet61cc8522020-04-20 14:54:42 +02001060 /* Follows these step to produce the info message:
1061 * 1. if info field is already provided, copy it
1062 * 2. if the expect rule provides an onerror log-format string,
1063 * use it to produce the message
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001064 * 3. the expect rule is part of a protocol check (http, redis, mysql...), do nothing
Christopher Faulet61cc8522020-04-20 14:54:42 +02001065 * 4. Otherwise produce the generic tcp-check info message
1066 */
1067 if (istlen(info)) {
Christopher Fauletb61caf42020-04-21 10:57:42 +02001068 chunk_strncat(msg, istptr(info), istlen(info));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001069 goto comment;
Cyril Bontéac92a062014-12-27 22:28:38 +01001070 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001071 else if (!LIST_ISEMPTY(&rule->expect.onerror_fmt)) {
1072 msg->data += sess_build_logline(check->sess, NULL, b_tail(msg), b_room(msg), &rule->expect.onerror_fmt);
1073 goto comment;
Cyril Bontéac92a062014-12-27 22:28:38 +01001074 }
Simon Horman98637e52014-06-20 12:30:16 +09001075
Christopher Faulet61cc8522020-04-20 14:54:42 +02001076 if (check->type == PR_O2_TCPCHK_CHK &&
1077 (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_TCP_CHK)
1078 goto comment;
Simon Horman98637e52014-06-20 12:30:16 +09001079
Christopher Faulet61cc8522020-04-20 14:54:42 +02001080 chunk_strcat(msg, (match ? "TCPCHK matched unwanted content" : "TCPCHK did not match content"));
1081 switch (rule->expect.type) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001082 case TCPCHK_EXPECT_HTTP_STATUS:
Christopher Faulet8021a5f2020-04-24 13:53:12 +02001083 chunk_appendf(msg, "(status codes) at step %d", tcpcheck_get_step_id(check, rule));
1084 break;
1085 case TCPCHK_EXPECT_STRING:
Christopher Faulet61cc8522020-04-20 14:54:42 +02001086 case TCPCHK_EXPECT_HTTP_BODY:
Christopher Fauletb61caf42020-04-21 10:57:42 +02001087 chunk_appendf(msg, " '%.*s' at step %d", (unsigned int)istlen(rule->expect.data), istptr(rule->expect.data),
Christopher Faulet61cc8522020-04-20 14:54:42 +02001088 tcpcheck_get_step_id(check, rule));
1089 break;
1090 case TCPCHK_EXPECT_BINARY:
1091 chunk_appendf(msg, " (binary) at step %d", tcpcheck_get_step_id(check, rule));
1092 break;
Christopher Faulet67a23452020-05-05 18:10:01 +02001093 case TCPCHK_EXPECT_STRING_REGEX:
1094 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
1095 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Faulet61cc8522020-04-20 14:54:42 +02001096 chunk_appendf(msg, " (regex) at step %d", tcpcheck_get_step_id(check, rule));
1097 break;
Christopher Faulet67a23452020-05-05 18:10:01 +02001098 case TCPCHK_EXPECT_BINARY_REGEX:
Christopher Faulet61cc8522020-04-20 14:54:42 +02001099 chunk_appendf(msg, " (binary regex) at step %d", tcpcheck_get_step_id(check, rule));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001100 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +02001101 case TCPCHK_EXPECT_STRING_LF:
1102 case TCPCHK_EXPECT_HTTP_BODY_LF:
1103 chunk_appendf(msg, " (log-format string) at step %d", tcpcheck_get_step_id(check, rule));
1104 break;
1105 case TCPCHK_EXPECT_BINARY_LF:
1106 chunk_appendf(msg, " (log-format binary) at step %d", tcpcheck_get_step_id(check, rule));
1107 break;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001108 case TCPCHK_EXPECT_CUSTOM:
1109 chunk_appendf(msg, " (custom function) at step %d", tcpcheck_get_step_id(check, rule));
1110 break;
Christopher Faulet39708192020-05-05 10:47:36 +02001111 case TCPCHK_EXPECT_HTTP_HEADER:
1112 chunk_appendf(msg, " (header pattern) at step %d", tcpcheck_get_step_id(check, rule));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001113 case TCPCHK_EXPECT_UNDEF:
1114 /* Should never happen. */
1115 return;
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001116 }
1117
Christopher Faulet61cc8522020-04-20 14:54:42 +02001118 comment:
1119 /* If the failing expect rule provides a comment, it is concatenated to
1120 * the info message.
1121 */
1122 if (rule->comment) {
1123 chunk_strcat(msg, " comment: ");
Christopher Faulet88d939c2020-04-22 15:32:11 +02001124 chunk_strcat(msg, rule->comment);
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001125 }
Willy Tarreau04276f32017-01-06 17:41:29 +01001126
Christopher Faulet61cc8522020-04-20 14:54:42 +02001127 /* Finally, the check status code is set if the failing expect rule
1128 * defines a status expression.
1129 */
1130 if (rule->expect.status_expr) {
1131 smp = sample_fetch_as_type(check->proxy, check->sess, NULL, SMP_OPT_DIR_RES | SMP_OPT_FINAL,
Christopher Faulet78f371e2020-04-30 09:38:08 +02001132 rule->expect.status_expr, SMP_T_STR);
1133
1134 if (smp && sample_casts[smp->data.type][SMP_T_SINT] &&
1135 sample_casts[smp->data.type][SMP_T_SINT](smp))
Christopher Faulet61cc8522020-04-20 14:54:42 +02001136 check->code = smp->data.u.sint;
Cyril Bontéac92a062014-12-27 22:28:38 +01001137 }
Simon Horman98637e52014-06-20 12:30:16 +09001138
Christopher Faulet61cc8522020-04-20 14:54:42 +02001139 *(b_tail(msg)) = '\0';
1140}
Cyril Bontéac92a062014-12-27 22:28:38 +01001141
Christopher Faulet61cc8522020-04-20 14:54:42 +02001142/* Creates info message when a tcp-check healthcheck succeeds on an expect rule */
1143static void tcpcheck_expect_onsuccess_message(struct buffer *msg, struct check *check, struct tcpcheck_rule *rule,
1144 struct ist info)
1145{
1146 struct sample *smp;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001147
Christopher Faulet61cc8522020-04-20 14:54:42 +02001148 /* Follows these step to produce the info message:
1149 * 1. if info field is already provided, copy it
1150 * 2. if the expect rule provides an onsucces log-format string,
1151 * use it to produce the message
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001152 * 3. the expect rule is part of a protocol check (http, redis, mysql...), do nothing
Christopher Faulet61cc8522020-04-20 14:54:42 +02001153 * 4. Otherwise produce the generic tcp-check info message
1154 */
1155 if (istlen(info))
Christopher Fauletb61caf42020-04-21 10:57:42 +02001156 chunk_strncat(msg, istptr(info), istlen(info));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001157 if (!LIST_ISEMPTY(&rule->expect.onsuccess_fmt))
1158 msg->data += sess_build_logline(check->sess, NULL, b_tail(msg), b_room(msg),
1159 &rule->expect.onsuccess_fmt);
1160 else if (check->type == PR_O2_TCPCHK_CHK &&
1161 (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK)
1162 chunk_strcat(msg, "(tcp-check)");
Simon Horman98637e52014-06-20 12:30:16 +09001163
Christopher Faulet61cc8522020-04-20 14:54:42 +02001164 /* Finally, the check status code is set if the expect rule defines a
1165 * status expression.
1166 */
1167 if (rule->expect.status_expr) {
1168 smp = sample_fetch_as_type(check->proxy, check->sess, NULL, SMP_OPT_DIR_RES | SMP_OPT_FINAL,
Christopher Faulet78f371e2020-04-30 09:38:08 +02001169 rule->expect.status_expr, SMP_T_STR);
1170
1171 if (smp && sample_casts[smp->data.type][SMP_T_SINT] &&
1172 sample_casts[smp->data.type][SMP_T_SINT](smp))
Christopher Faulet61cc8522020-04-20 14:54:42 +02001173 check->code = smp->data.u.sint;
Simon Horman98637e52014-06-20 12:30:16 +09001174 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001175
1176 *(b_tail(msg)) = '\0';
Simon Horman98637e52014-06-20 12:30:16 +09001177}
1178
Christopher Faulet61cc8522020-04-20 14:54:42 +02001179/* Builds the server state header used by HTTP health-checks */
1180static int httpchk_build_status_header(struct server *s, struct buffer *buf)
Simon Horman98637e52014-06-20 12:30:16 +09001181{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001182 int sv_state;
1183 int ratio;
1184 char addr[46];
1185 char port[6];
1186 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
1187 "UP %d/%d", "UP",
1188 "NOLB %d/%d", "NOLB",
1189 "no check" };
Simon Horman98637e52014-06-20 12:30:16 +09001190
Christopher Faulet61cc8522020-04-20 14:54:42 +02001191 if (!(s->check.state & CHK_ST_ENABLED))
1192 sv_state = 6;
1193 else if (s->cur_state != SRV_ST_STOPPED) {
1194 if (s->check.health == s->check.rise + s->check.fall - 1)
1195 sv_state = 3; /* UP */
1196 else
1197 sv_state = 2; /* going down */
Simon Horman98637e52014-06-20 12:30:16 +09001198
Christopher Faulet61cc8522020-04-20 14:54:42 +02001199 if (s->cur_state == SRV_ST_STOPPING)
1200 sv_state += 2;
1201 } else {
1202 if (s->check.health)
1203 sv_state = 1; /* going up */
1204 else
1205 sv_state = 0; /* DOWN */
Simon Horman98637e52014-06-20 12:30:16 +09001206 }
Willy Tarreaub7b24782016-06-21 15:32:29 +02001207
Christopher Faulet61cc8522020-04-20 14:54:42 +02001208 chunk_appendf(buf, srv_hlt_st[sv_state],
1209 (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
1210 (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreaub7b24782016-06-21 15:32:29 +02001211
Christopher Faulet61cc8522020-04-20 14:54:42 +02001212 addr_to_str(&s->addr, addr, sizeof(addr));
1213 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
1214 snprintf(port, sizeof(port), "%u", s->svc_port);
1215 else
1216 *port = 0;
Willy Tarreaub7b24782016-06-21 15:32:29 +02001217
Christopher Faulet61cc8522020-04-20 14:54:42 +02001218 chunk_appendf(buf, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
1219 addr, port, s->proxy->id, s->id,
1220 global.node,
1221 (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
1222 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
1223 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
1224 s->nbpend);
Willy Tarreau9f6dc722019-03-01 11:15:10 +01001225
Christopher Faulet61cc8522020-04-20 14:54:42 +02001226 if ((s->cur_state == SRV_ST_STARTING) &&
1227 now.tv_sec < s->last_change + s->slowstart &&
1228 now.tv_sec >= s->last_change) {
1229 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
1230 chunk_appendf(buf, "; throttle=%d%%", ratio);
1231 }
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001232
Christopher Faulet61cc8522020-04-20 14:54:42 +02001233 return b_data(buf);
1234}
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001235
Christopher Faulet61cc8522020-04-20 14:54:42 +02001236/* Internal functions to parse and validate a MySQL packet in the context of an
1237 * expect rule. It start to parse the input buffer at the offset <offset>. If
1238 * <last_read> is set, no more data are expected.
1239 */
1240static enum tcpcheck_eval_ret tcpcheck_mysql_expect_packet(struct check *check, struct tcpcheck_rule *rule,
1241 unsigned int offset, int last_read)
1242{
1243 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
1244 enum healthcheck_status status;
1245 struct buffer *msg = NULL;
Christopher Fauletb61caf42020-04-21 10:57:42 +02001246 struct ist desc = IST_NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001247 unsigned int err = 0, plen = 0;
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001248
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001249
Christopher Faulet61cc8522020-04-20 14:54:42 +02001250 /* 3 Bytes for the packet length and 1 byte for the sequence id */
Christopher Faulet733dd732020-04-28 10:24:23 +02001251 if (b_data(&check->bi) < offset+4) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001252 if (!last_read)
1253 goto wait_more_data;
1254
1255 /* invalid length or truncated response */
1256 status = HCHK_STATUS_L7RSP;
1257 goto error;
Simon Horman98637e52014-06-20 12:30:16 +09001258 }
1259
Christopher Faulet61cc8522020-04-20 14:54:42 +02001260 plen = ((unsigned char) *b_peek(&check->bi, offset)) +
1261 (((unsigned char) *(b_peek(&check->bi, offset+1))) << 8) +
1262 (((unsigned char) *(b_peek(&check->bi, offset+2))) << 16);
Simon Horman98637e52014-06-20 12:30:16 +09001263
Christopher Faulet61cc8522020-04-20 14:54:42 +02001264 if (b_data(&check->bi) < offset+plen+4) {
1265 if (!last_read)
1266 goto wait_more_data;
1267
1268 /* invalid length or truncated response */
1269 status = HCHK_STATUS_L7RSP;
1270 goto error;
Simon Horman98637e52014-06-20 12:30:16 +09001271 }
Simon Horman98637e52014-06-20 12:30:16 +09001272
Christopher Faulet61cc8522020-04-20 14:54:42 +02001273 if (*b_peek(&check->bi, offset+4) == '\xff') {
1274 /* MySQL Error packet always begin with field_count = 0xff */
1275 status = HCHK_STATUS_L7STS;
1276 err = ((unsigned char) *b_peek(&check->bi, offset+5)) +
1277 (((unsigned char) *(b_peek(&check->bi, offset+6))) << 8);
1278 desc = ist2(b_peek(&check->bi, offset+7), b_data(&check->bi) - offset - 7);
1279 goto error;
1280 }
Simon Horman98637e52014-06-20 12:30:16 +09001281
Christopher Faulet61cc8522020-04-20 14:54:42 +02001282 if (get_next_tcpcheck_rule(check->tcpcheck_rules, rule) != NULL) {
1283 /* Not the last rule, continue */
1284 goto out;
1285 }
Simon Horman98637e52014-06-20 12:30:16 +09001286
Christopher Faulet61cc8522020-04-20 14:54:42 +02001287 /* We set the MySQL Version in description for information purpose
1288 * FIXME : it can be cool to use MySQL Version for other purpose,
1289 * like mark as down old MySQL server.
1290 */
Christopher Faulet1941bab2020-05-05 07:55:50 +02001291 status = ((rule->expect.ok_status != HCHK_STATUS_UNKNOWN) ? rule->expect.ok_status : HCHK_STATUS_L7OKD);
1292 set_server_check_status(check, status, b_peek(&check->bi, 5));
Simon Horman98637e52014-06-20 12:30:16 +09001293
Christopher Faulet61cc8522020-04-20 14:54:42 +02001294 out:
1295 free_trash_chunk(msg);
1296 return ret;
Simon Horman98637e52014-06-20 12:30:16 +09001297
Christopher Faulet61cc8522020-04-20 14:54:42 +02001298 error:
1299 ret = TCPCHK_EVAL_STOP;
1300 check->code = err;
1301 msg = alloc_trash_chunk();
1302 if (msg)
1303 tcpcheck_expect_onerror_message(msg, check, rule, 0, desc);
1304 set_server_check_status(check, status, (msg ? b_head(msg) : NULL));
1305 goto out;
Simon Horman98637e52014-06-20 12:30:16 +09001306
Christopher Faulet61cc8522020-04-20 14:54:42 +02001307 wait_more_data:
1308 ret = TCPCHK_EVAL_WAIT;
1309 goto out;
1310}
Simon Horman98637e52014-06-20 12:30:16 +09001311
Christopher Faulet61cc8522020-04-20 14:54:42 +02001312/* Custom tcp-check expect function to parse and validate the MySQL initial
1313 * handshake packet. Returns TCPCHK_EVAL_WAIT to wait for more data,
1314 * TCPCHK_EVAL_CONTINUE to evaluate the next rule or TCPCHK_EVAL_STOP if an
1315 * error occurred.
1316 */
1317static enum tcpcheck_eval_ret tcpcheck_mysql_expect_iniths(struct check *check, struct tcpcheck_rule *rule, int last_read)
1318{
1319 return tcpcheck_mysql_expect_packet(check, rule, 0, last_read);
1320}
Simon Horman98637e52014-06-20 12:30:16 +09001321
Christopher Faulet61cc8522020-04-20 14:54:42 +02001322/* Custom tcp-check expect function to parse and validate the MySQL OK packet
1323 * following the initial handshake. Returns TCPCHK_EVAL_WAIT to wait for more
1324 * data, TCPCHK_EVAL_CONTINUE to evaluate the next rule or TCPCHK_EVAL_STOP if
1325 * an error occurred.
1326 */
1327static enum tcpcheck_eval_ret tcpcheck_mysql_expect_ok(struct check *check, struct tcpcheck_rule *rule, int last_read)
1328{
1329 unsigned int hslen = 0;
Simon Horman98637e52014-06-20 12:30:16 +09001330
Christopher Faulet61cc8522020-04-20 14:54:42 +02001331 hslen = 4 + ((unsigned char) *b_head(&check->bi)) +
1332 (((unsigned char) *(b_peek(&check->bi, 1))) << 8) +
1333 (((unsigned char) *(b_peek(&check->bi, 2))) << 16);
Simon Horman98637e52014-06-20 12:30:16 +09001334
Christopher Faulet61cc8522020-04-20 14:54:42 +02001335 return tcpcheck_mysql_expect_packet(check, rule, hslen, last_read);
1336}
Simon Horman98637e52014-06-20 12:30:16 +09001337
Christopher Faulet61cc8522020-04-20 14:54:42 +02001338/* Custom tcp-check expect function to parse and validate the LDAP bind response
1339 * package packet. Returns TCPCHK_EVAL_WAIT to wait for more data,
1340 * TCPCHK_EVAL_CONTINUE to evaluate the next rule or TCPCHK_EVAL_STOP if an
1341 * error occurred.
1342 */
1343static enum tcpcheck_eval_ret tcpcheck_ldap_expect_bindrsp(struct check *check, struct tcpcheck_rule *rule, int last_read)
1344{
1345 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
1346 enum healthcheck_status status;
1347 struct buffer *msg = NULL;
Christopher Fauletb61caf42020-04-21 10:57:42 +02001348 struct ist desc = IST_NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001349 unsigned short msglen = 0;
Simon Horman98637e52014-06-20 12:30:16 +09001350
Christopher Faulet61cc8522020-04-20 14:54:42 +02001351 /* Check if the server speaks LDAP (ASN.1/BER)
1352 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1353 * http://tools.ietf.org/html/rfc4511
1354 */
1355 /* size of LDAPMessage */
1356 msglen = (*(b_head(&check->bi) + 1) & 0x80) ? (*(b_head(&check->bi) + 1) & 0x7f) : 0;
Simon Horman98637e52014-06-20 12:30:16 +09001357
Christopher Faulet61cc8522020-04-20 14:54:42 +02001358 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1359 * messageID: 0x02 0x01 0x01: INTEGER 1
1360 * protocolOp: 0x61: bindResponse
1361 */
1362 if ((msglen > 2) || (memcmp(b_head(&check->bi) + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
1363 status = HCHK_STATUS_L7RSP;
1364 desc = ist("Not LDAPv3 protocol");
1365 goto error;
Simon Horman98637e52014-06-20 12:30:16 +09001366 }
Simon Horman98637e52014-06-20 12:30:16 +09001367
Christopher Faulet61cc8522020-04-20 14:54:42 +02001368 /* size of bindResponse */
1369 msglen += (*(b_head(&check->bi) + msglen + 6) & 0x80) ? (*(b_head(&check->bi) + msglen + 6) & 0x7f) : 0;
Simon Horman98637e52014-06-20 12:30:16 +09001370
Christopher Faulet61cc8522020-04-20 14:54:42 +02001371 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1372 * ldapResult: 0x0a 0x01: ENUMERATION
1373 */
1374 if ((msglen > 4) || (memcmp(b_head(&check->bi) + 7 + msglen, "\x0a\x01", 2) != 0)) {
1375 status = HCHK_STATUS_L7RSP;
1376 desc = ist("Not LDAPv3 protocol");
1377 goto error;
1378 }
Simon Horman98637e52014-06-20 12:30:16 +09001379
Christopher Faulet61cc8522020-04-20 14:54:42 +02001380 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1381 * resultCode
1382 */
1383 check->code = *(b_head(&check->bi) + msglen + 9);
1384 if (check->code) {
1385 status = HCHK_STATUS_L7STS;
1386 desc = ist("See RFC: http://tools.ietf.org/html/rfc4511#section-4.1.9");
1387 goto error;
Simon Horman98637e52014-06-20 12:30:16 +09001388 }
1389
Christopher Faulet1941bab2020-05-05 07:55:50 +02001390 status = ((rule->expect.ok_status != HCHK_STATUS_UNKNOWN) ? rule->expect.ok_status : HCHK_STATUS_L7OKD);
1391 set_server_check_status(check, status, "Success");
Willy Tarreau62ac84f2017-11-05 10:11:13 +01001392
Christopher Faulet61cc8522020-04-20 14:54:42 +02001393 out:
1394 free_trash_chunk(msg);
1395 return ret;
1396
1397 error:
1398 ret = TCPCHK_EVAL_STOP;
1399 msg = alloc_trash_chunk();
1400 if (msg)
1401 tcpcheck_expect_onerror_message(msg, check, rule, 0, desc);
1402 set_server_check_status(check, status, (msg ? b_head(msg) : NULL));
1403 goto out;
Simon Horman98637e52014-06-20 12:30:16 +09001404}
1405
Christopher Faulet61cc8522020-04-20 14:54:42 +02001406/* Custom tcp-check expect function to parse and validate the SPOP hello agent
1407 * frame. Returns TCPCHK_EVAL_WAIT to wait for more data, TCPCHK_EVAL_CONTINUE
1408 * to evaluate the next rule or TCPCHK_EVAL_STOP if an error occurred.
Simon Horman98637e52014-06-20 12:30:16 +09001409 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001410static enum tcpcheck_eval_ret tcpcheck_spop_expect_agenthello(struct check *check, struct tcpcheck_rule *rule, int last_read)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001411{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001412 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
1413 enum healthcheck_status status;
1414 struct buffer *msg = NULL;
Christopher Fauletb61caf42020-04-21 10:57:42 +02001415 struct ist desc = IST_NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001416 unsigned int framesz;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001417
Willy Tarreaubaaee002006-06-26 02:48:02 +02001418
Christopher Faulet61cc8522020-04-20 14:54:42 +02001419 memcpy(&framesz, b_head(&check->bi), 4);
1420 framesz = ntohl(framesz);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001421
Christopher Faulet61cc8522020-04-20 14:54:42 +02001422 if (!last_read && b_data(&check->bi) < (4+framesz))
1423 goto wait_more_data;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001424
Christopher Faulet61cc8522020-04-20 14:54:42 +02001425 memset(b_orig(&trash), 0, b_size(&trash));
1426 if (spoe_handle_healthcheck_response(b_peek(&check->bi, 4), framesz, b_orig(&trash), HCHK_DESC_LEN) == -1) {
1427 status = HCHK_STATUS_L7RSP;
1428 desc = ist2(b_orig(&trash), strlen(b_orig(&trash)));
1429 goto error;
1430 }
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001431
Christopher Faulet1941bab2020-05-05 07:55:50 +02001432 status = ((rule->expect.ok_status != HCHK_STATUS_UNKNOWN) ? rule->expect.ok_status : HCHK_STATUS_L7OKD);
1433 set_server_check_status(check, status, "SPOA server is ok");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001434
Christopher Faulet61cc8522020-04-20 14:54:42 +02001435 out:
1436 free_trash_chunk(msg);
1437 return ret;
Christopher Fauleta32a2502020-04-20 09:04:37 +02001438
Christopher Faulet61cc8522020-04-20 14:54:42 +02001439 error:
1440 ret = TCPCHK_EVAL_STOP;
1441 msg = alloc_trash_chunk();
1442 if (msg)
1443 tcpcheck_expect_onerror_message(msg, check, rule, 0, desc);
1444 set_server_check_status(check, status, (msg ? b_head(msg) : NULL));
1445 goto out;
Willy Tarreau6b0a8502012-11-23 08:51:32 +01001446
Christopher Faulet61cc8522020-04-20 14:54:42 +02001447 wait_more_data:
1448 ret = TCPCHK_EVAL_WAIT;
1449 goto out;
1450}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001451
Christopher Faulet61cc8522020-04-20 14:54:42 +02001452/* Custom tcp-check expect function to parse and validate the agent-check
1453 * reply. Returns TCPCHK_EVAL_WAIT to wait for more data, TCPCHK_EVAL_CONTINUE
1454 * to evaluate the next rule or TCPCHK_EVAL_STOP if an error occurred.
1455 */
1456static enum tcpcheck_eval_ret tcpcheck_agent_expect_reply(struct check *check, struct tcpcheck_rule *rule, int last_read)
1457{
1458 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_STOP;
1459 enum healthcheck_status status = HCHK_STATUS_CHECKED;
1460 const char *hs = NULL; /* health status */
1461 const char *as = NULL; /* admin status */
1462 const char *ps = NULL; /* performance status */
1463 const char *cs = NULL; /* maxconn */
1464 const char *err = NULL; /* first error to report */
1465 const char *wrn = NULL; /* first warning to report */
1466 char *cmd, *p;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01001467
Christopher Faulet61cc8522020-04-20 14:54:42 +02001468 /* We're getting an agent check response. The agent could
1469 * have been disabled in the mean time with a long check
1470 * still pending. It is important that we ignore the whole
1471 * response.
1472 */
1473 if (!(check->state & CHK_ST_ENABLED))
1474 goto out;
Willy Tarreauf1503172012-09-28 19:39:36 +02001475
Christopher Faulet61cc8522020-04-20 14:54:42 +02001476 /* The agent supports strings made of a single line ended by the
1477 * first CR ('\r') or LF ('\n'). This line is composed of words
1478 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
1479 * line may optionally contained a description of a state change
1480 * after a sharp ('#'), which is only considered if a health state
1481 * is announced.
1482 *
1483 * Words may be composed of :
1484 * - a numeric weight suffixed by the percent character ('%').
1485 * - a health status among "up", "down", "stopped", and "fail".
1486 * - an admin status among "ready", "drain", "maint".
1487 *
1488 * These words may appear in any order. If multiple words of the
1489 * same category appear, the last one wins.
1490 */
Gaetan Rivet05d692d2020-02-14 17:42:54 +01001491
Christopher Faulet61cc8522020-04-20 14:54:42 +02001492 p = b_head(&check->bi);
1493 while (*p && *p != '\n' && *p != '\r')
1494 p++;
Gaetan Rivet05d692d2020-02-14 17:42:54 +01001495
Christopher Faulet61cc8522020-04-20 14:54:42 +02001496 if (!*p) {
1497 if (!last_read)
1498 goto wait_more_data;
1499
1500 /* at least inform the admin that the agent is mis-behaving */
1501 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
1502 goto out;
1503 }
1504
1505 *p = 0;
1506 cmd = b_head(&check->bi);
1507
1508 while (*cmd) {
1509 /* look for next word */
1510 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
1511 cmd++;
1512 continue;
Willy Tarreau5ba04f62013-02-12 15:23:12 +01001513 }
1514
Christopher Faulet61cc8522020-04-20 14:54:42 +02001515 if (*cmd == '#') {
1516 /* this is the beginning of a health status description,
1517 * skip the sharp and blanks.
Willy Tarreau86eded62019-06-14 14:47:49 +02001518 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001519 cmd++;
1520 while (*cmd == '\t' || *cmd == ' ')
1521 cmd++;
1522 break;
Willy Tarreau00149122017-10-04 18:05:01 +02001523 }
1524
Christopher Faulet61cc8522020-04-20 14:54:42 +02001525 /* find the end of the word so that we have a null-terminated
1526 * word between <cmd> and <p>.
1527 */
1528 p = cmd + 1;
1529 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1530 p++;
1531 if (*p)
1532 *p++ = 0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001533
Christopher Faulet61cc8522020-04-20 14:54:42 +02001534 /* first, health statuses */
1535 if (strcasecmp(cmd, "up") == 0) {
1536 check->server->check.health = check->server->check.rise + check->server->check.fall - 1;
1537 status = HCHK_STATUS_L7OKD;
1538 hs = cmd;
1539 }
1540 else if (strcasecmp(cmd, "down") == 0) {
1541 check->server->check.health = 0;
1542 status = HCHK_STATUS_L7STS;
1543 hs = cmd;
1544 }
1545 else if (strcasecmp(cmd, "stopped") == 0) {
1546 check->server->check.health = 0;
1547 status = HCHK_STATUS_L7STS;
1548 hs = cmd;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001549 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001550 else if (strcasecmp(cmd, "fail") == 0) {
1551 check->server->check.health = 0;
1552 status = HCHK_STATUS_L7STS;
1553 hs = cmd;
1554 }
1555 /* admin statuses */
1556 else if (strcasecmp(cmd, "ready") == 0) {
1557 as = cmd;
1558 }
1559 else if (strcasecmp(cmd, "drain") == 0) {
1560 as = cmd;
1561 }
1562 else if (strcasecmp(cmd, "maint") == 0) {
1563 as = cmd;
1564 }
1565 /* try to parse a weight here and keep the last one */
1566 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1567 ps = cmd;
1568 }
1569 /* try to parse a maxconn here */
1570 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1571 cs = cmd;
1572 }
1573 else {
1574 /* keep a copy of the first error */
1575 if (!err)
1576 err = cmd;
1577 }
1578 /* skip to next word */
1579 cmd = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001580 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001581 /* here, cmd points either to \0 or to the beginning of a
1582 * description. Skip possible leading spaces.
1583 */
1584 while (*cmd == ' ' || *cmd == '\n')
1585 cmd++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001586
Christopher Faulet61cc8522020-04-20 14:54:42 +02001587 /* First, update the admin status so that we avoid sending other
1588 * possibly useless warnings and can also update the health if
1589 * present after going back up.
1590 */
1591 if (as) {
1592 if (strcasecmp(as, "drain") == 0)
1593 srv_adm_set_drain(check->server);
1594 else if (strcasecmp(as, "maint") == 0)
1595 srv_adm_set_maint(check->server);
1596 else
1597 srv_adm_set_ready(check->server);
1598 }
Simon Horman98637e52014-06-20 12:30:16 +09001599
Christopher Faulet61cc8522020-04-20 14:54:42 +02001600 /* now change weights */
1601 if (ps) {
1602 const char *msg;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001603
Christopher Faulet61cc8522020-04-20 14:54:42 +02001604 msg = server_parse_weight_change_request(check->server, ps);
1605 if (!wrn || !*wrn)
1606 wrn = msg;
1607 }
Simon Horman98637e52014-06-20 12:30:16 +09001608
Christopher Faulet61cc8522020-04-20 14:54:42 +02001609 if (cs) {
1610 const char *msg;
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02001611
Christopher Faulet61cc8522020-04-20 14:54:42 +02001612 cs += strlen("maxconn:");
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02001613
Christopher Faulet61cc8522020-04-20 14:54:42 +02001614 msg = server_parse_maxconn_change_request(check->server, cs);
1615 if (!wrn || !*wrn)
1616 wrn = msg;
Simon Horman5c942422013-11-25 10:46:32 +09001617 }
1618
Christopher Faulet61cc8522020-04-20 14:54:42 +02001619 /* and finally health status */
1620 if (hs) {
1621 /* We'll report some of the warnings and errors we have
1622 * here. Down reports are critical, we leave them untouched.
1623 * Lack of report, or report of 'UP' leaves the room for
1624 * ERR first, then WARN.
1625 */
1626 const char *msg = cmd;
1627 struct buffer *t;
Simon Horman5c942422013-11-25 10:46:32 +09001628
Christopher Faulet61cc8522020-04-20 14:54:42 +02001629 if (!*msg || status == HCHK_STATUS_L7OKD) {
1630 if (err && *err)
1631 msg = err;
1632 else if (wrn && *wrn)
1633 msg = wrn;
1634 }
Willy Tarreau1746eec2014-04-25 10:46:47 +02001635
Christopher Faulet61cc8522020-04-20 14:54:42 +02001636 t = get_trash_chunk();
1637 chunk_printf(t, "via agent : %s%s%s%s",
1638 hs, *msg ? " (" : "",
1639 msg, *msg ? ")" : "");
1640 set_server_check_status(check, status, t->area);
1641 }
1642 else if (err && *err) {
1643 /* No status change but we'd like to report something odd.
1644 * Just report the current state and copy the message.
1645 */
1646 chunk_printf(&trash, "agent reports an error : %s", err);
1647 set_server_check_status(check, status/*check->status*/, trash.area);
1648 }
1649 else if (wrn && *wrn) {
1650 /* No status change but we'd like to report something odd.
1651 * Just report the current state and copy the message.
1652 */
1653 chunk_printf(&trash, "agent warns : %s", wrn);
1654 set_server_check_status(check, status/*check->status*/, trash.area);
1655 }
1656 else
1657 set_server_check_status(check, status, NULL);
Willy Tarreau1746eec2014-04-25 10:46:47 +02001658
Christopher Faulet61cc8522020-04-20 14:54:42 +02001659 out:
1660 return ret;
Simon Horman5c942422013-11-25 10:46:32 +09001661
Christopher Faulet61cc8522020-04-20 14:54:42 +02001662 wait_more_data:
1663 ret = TCPCHK_EVAL_WAIT;
1664 goto out;
Simon Horman5c942422013-11-25 10:46:32 +09001665}
1666
Christopher Faulet61cc8522020-04-20 14:54:42 +02001667/* Evaluates a TCPCHK_ACT_CONNECT rule. Returns TCPCHK_EVAL_WAIT to wait the
1668 * connection establishment, TCPCHK_EVAL_CONTINUE to evaluate the next rule or
1669 * TCPCHK_EVAL_STOP if an error occurred.
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001670 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001671static enum tcpcheck_eval_ret tcpcheck_eval_connect(struct check *check, struct tcpcheck_rule *rule)
Willy Tarreau865c5142016-12-21 20:04:48 +01001672{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001673 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
1674 struct tcpcheck_connect *connect = &rule->connect;
1675 struct proxy *proxy = check->proxy;
1676 struct server *s = check->server;
1677 struct task *t = check->task;
1678 struct conn_stream *cs;
1679 struct connection *conn = NULL;
1680 struct protocol *proto;
1681 struct xprt_ops *xprt;
Christopher Faulet2fabd9d2020-05-09 14:46:43 +02001682 struct tcpcheck_rule *next;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001683 int status, port;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001684
Christopher Faulet61cc8522020-04-20 14:54:42 +02001685 /* For a connect action we'll create a new connection. We may also have
1686 * to kill a previous one. But we don't want to leave *without* a
1687 * connection if we came here from the connection layer, hence with a
1688 * connection. Thus we'll proceed in the following order :
1689 * 1: close but not release previous connection (handled by the caller)
1690 * 2: try to get a new connection
1691 * 3: release and replace the old one on success
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02001692 */
Willy Tarreaue7b73482013-11-21 11:50:50 +01001693
Christopher Faulet61cc8522020-04-20 14:54:42 +02001694 /* 2- prepare new connection */
1695 cs = cs_new(NULL);
1696 if (!cs) {
1697 chunk_printf(&trash, "TCPCHK error allocating connection at step %d",
1698 tcpcheck_get_step_id(check, rule));
1699 if (rule->comment)
1700 chunk_appendf(&trash, " comment: '%s'", rule->comment);
1701 set_server_check_status(check, HCHK_STATUS_SOCKERR, trash.area);
1702 ret = TCPCHK_EVAL_STOP;
1703 goto out;
1704 }
Willy Tarreau15f39102013-12-11 20:41:18 +01001705
Christopher Faulet61cc8522020-04-20 14:54:42 +02001706 /* 3- release and replace the old one on success */
1707 if (check->cs) {
1708 if (check->wait_list.events)
Christopher Faulet06150e42020-04-27 11:22:56 +02001709 check->cs->conn->mux->unsubscribe(check->cs, check->wait_list.events,
1710 &check->wait_list);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001711
1712 /* We may have been scheduled to run, and the I/O handler
1713 * expects to have a cs, so remove the tasklet
1714 */
1715 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
1716 cs_destroy(check->cs);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001717 }
1718
Christopher Faulet61cc8522020-04-20 14:54:42 +02001719 tasklet_set_tid(check->wait_list.tasklet, tid);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001720
Christopher Faulet61cc8522020-04-20 14:54:42 +02001721 check->cs = cs;
1722 conn = cs->conn;
1723 conn_set_owner(conn, check->sess, NULL);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001724
Christopher Faulet61cc8522020-04-20 14:54:42 +02001725 /* Maybe there were an older connection we were waiting on */
1726 check->wait_list.events = 0;
1727 conn->target = s ? &s->obj_type : &proxy->obj_type;
1728
1729 /* no client address */
1730 if (!sockaddr_alloc(&conn->dst)) {
1731 status = SF_ERR_RESOURCE;
1732 goto fail_check;
1733 }
1734
1735 /* connect to the connect rule addr if specified, otherwise the check
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001736 * addr if specified on the server. otherwise, use the server addr (it
1737 * MUST exist at this step).
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001738 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001739 *conn->dst = (is_addr(&connect->addr)
1740 ? connect->addr
1741 : (is_addr(&check->addr) ? check->addr : s->addr));
1742 proto = protocol_by_family(conn->dst->ss_family);
Simon Horman98637e52014-06-20 12:30:16 +09001743
Christopher Faulet61cc8522020-04-20 14:54:42 +02001744 port = 0;
1745 if (!port && connect->port)
1746 port = connect->port;
1747 if (!port && connect->port_expr) {
1748 struct sample *smp;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001749
Christopher Faulet61cc8522020-04-20 14:54:42 +02001750 smp = sample_fetch_as_type(check->proxy, check->sess, NULL,
1751 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1752 connect->port_expr, SMP_T_SINT);
1753 if (smp)
1754 port = smp->data.u.sint;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001755 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001756 if (!port && is_inet_addr(&connect->addr))
1757 port = get_host_port(&connect->addr);
1758 if (!port && check->port)
1759 port = check->port;
1760 if (!port && is_inet_addr(&check->addr))
1761 port = get_host_port(&check->addr);
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001762 if (!port) {
1763 /* The server MUST exist here */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001764 port = s->svc_port;
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001765 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001766 set_host_port(conn->dst, port);
Willy Tarreau213c6782014-10-02 14:51:02 +02001767
Christopher Faulet61cc8522020-04-20 14:54:42 +02001768 xprt = ((connect->options & TCPCHK_OPT_SSL)
1769 ? xprt_get(XPRT_SSL)
1770 : ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) ? check->xprt : xprt_get(XPRT_RAW)));
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001771
Christopher Faulet61cc8522020-04-20 14:54:42 +02001772 conn_prepare(conn, proto, xprt);
1773 cs_attach(cs, check, &check_conn_cb);
Christopher Fauleta202d1d2020-03-26 17:38:49 +01001774
Christopher Faulet61cc8522020-04-20 14:54:42 +02001775 status = SF_ERR_INTERNAL;
Christopher Faulet2fabd9d2020-05-09 14:46:43 +02001776 next = get_next_tcpcheck_rule(check->tcpcheck_rules, rule);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001777 if (proto && proto->connect) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001778 int flags = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001779
Christopher Faulet61cc8522020-04-20 14:54:42 +02001780 if (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK)
1781 flags |= CONNECT_HAS_DATA;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001782 if (!next || next->action != TCPCHK_ACT_EXPECT)
1783 flags |= CONNECT_DELACK_ALWAYS;
1784 status = proto->connect(conn, flags);
Christopher Faulet206368d2020-04-03 14:51:06 +02001785 }
1786
Christopher Faulet61cc8522020-04-20 14:54:42 +02001787 if (status != SF_ERR_NONE)
1788 goto fail_check;
Christopher Faulet799f3a42020-04-07 12:06:14 +02001789
Christopher Faulet61cc8522020-04-20 14:54:42 +02001790 conn->flags |= CO_FL_PRIVATE;
1791 conn->ctx = cs;
Christopher Faulet206368d2020-04-03 14:51:06 +02001792
Christopher Faulet61cc8522020-04-20 14:54:42 +02001793 /* The mux may be initialized now if there isn't server attached to the
1794 * check (email alerts) or if there is a mux proto specified or if there
1795 * is no alpn.
1796 */
Christopher Faulet12882cf2020-04-23 15:50:18 +02001797 if (!s || ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && check->mux_proto) ||
1798 connect->mux_proto || (!connect->alpn && !check->alpn_str)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001799 const struct mux_ops *mux_ops;
Christopher Faulet206368d2020-04-03 14:51:06 +02001800
Christopher Faulet61cc8522020-04-20 14:54:42 +02001801 if (connect->mux_proto)
1802 mux_ops = connect->mux_proto->mux;
Christopher Faulet12882cf2020-04-23 15:50:18 +02001803 else if ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && check->mux_proto)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001804 mux_ops = check->mux_proto->mux;
1805 else {
1806 int mode = ((check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK
1807 ? PROTO_MODE_HTTP
1808 : PROTO_MODE_TCP);
1809
1810 mux_ops = conn_get_best_mux(conn, IST_NULL, PROTO_SIDE_BE, mode);
Christopher Faulet206368d2020-04-03 14:51:06 +02001811 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001812 if (mux_ops && conn_install_mux(conn, mux_ops, cs, proxy, check->sess) < 0) {
1813 status = SF_ERR_INTERNAL;
1814 goto fail_check;
1815 }
Christopher Faulet206368d2020-04-03 14:51:06 +02001816 }
1817
Christopher Faulet61cc8522020-04-20 14:54:42 +02001818#ifdef USE_OPENSSL
1819 if (connect->sni)
1820 ssl_sock_set_servername(conn, connect->sni);
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001821 else if ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && s && s->check.sni)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001822 ssl_sock_set_servername(conn, s->check.sni);
1823
1824 if (connect->alpn)
1825 ssl_sock_set_alpn(conn, (unsigned char *)connect->alpn, connect->alpn_len);
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001826 else if ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && s && s->check.alpn_str)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001827 ssl_sock_set_alpn(conn, (unsigned char *)s->check.alpn_str, s->check.alpn_len);
1828#endif
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001829 if ((connect->options & TCPCHK_OPT_SOCKS4) && s && (s->flags & SRV_F_SOCKS4_PROXY)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001830 conn->send_proxy_ofs = 1;
1831 conn->flags |= CO_FL_SOCKS4;
1832 }
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001833 else if ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && s && s->check.via_socks4 && (s->flags & SRV_F_SOCKS4_PROXY)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001834 conn->send_proxy_ofs = 1;
1835 conn->flags |= CO_FL_SOCKS4;
Christopher Faulet206368d2020-04-03 14:51:06 +02001836 }
1837
Christopher Faulet61cc8522020-04-20 14:54:42 +02001838 if (connect->options & TCPCHK_OPT_SEND_PROXY) {
1839 conn->send_proxy_ofs = 1;
1840 conn->flags |= CO_FL_SEND_PROXY;
1841 }
Christopher Faulet931ae5b2020-04-28 10:31:53 +02001842 else if ((connect->options & TCPCHK_OPT_DEFAULT_CONNECT) && s && s->check.send_proxy && !(check->state & CHK_ST_AGENT)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001843 conn->send_proxy_ofs = 1;
1844 conn->flags |= CO_FL_SEND_PROXY;
Christopher Faulet206368d2020-04-03 14:51:06 +02001845 }
1846
Christopher Faulet61cc8522020-04-20 14:54:42 +02001847 if (conn_ctrl_ready(conn) && (connect->options & TCPCHK_OPT_LINGER)) {
1848 /* Some servers don't like reset on close */
1849 fdtab[cs->conn->handle.fd].linger_risk = 0;
1850 }
Christopher Faulet206368d2020-04-03 14:51:06 +02001851
Christopher Faulet61cc8522020-04-20 14:54:42 +02001852 if (conn_ctrl_ready(conn) && (conn->flags & (CO_FL_SEND_PROXY | CO_FL_SOCKS4))) {
1853 if (xprt_add_hs(conn) < 0)
1854 status = SF_ERR_RESOURCE;
1855 }
Christopher Faulet206368d2020-04-03 14:51:06 +02001856
Christopher Faulet61cc8522020-04-20 14:54:42 +02001857 fail_check:
1858 /* It can return one of :
1859 * - SF_ERR_NONE if everything's OK
1860 * - SF_ERR_SRVTO if there are no more servers
1861 * - SF_ERR_SRVCL if the connection was refused by the server
1862 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1863 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1864 * - SF_ERR_INTERNAL for any other purely internal errors
1865 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
1866 * Note that we try to prevent the network stack from sending the ACK during the
1867 * connect() when a pure TCP check is used (without PROXY protocol).
1868 */
1869 switch (status) {
1870 case SF_ERR_NONE:
1871 /* we allow up to min(inter, timeout.connect) for a connection
1872 * to establish but only when timeout.check is set as it may be
1873 * to short for a full check otherwise
1874 */
1875 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Christopher Faulet206368d2020-04-03 14:51:06 +02001876
Christopher Faulet61cc8522020-04-20 14:54:42 +02001877 if (proxy->timeout.check && proxy->timeout.connect) {
1878 int t_con = tick_add(now_ms, proxy->timeout.connect);
1879 t->expire = tick_first(t->expire, t_con);
1880 }
1881 break;
1882 case SF_ERR_SRVTO: /* ETIMEDOUT */
1883 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
1884 case SF_ERR_PRXCOND:
1885 case SF_ERR_RESOURCE:
1886 case SF_ERR_INTERNAL:
1887 chk_report_conn_err(check, errno, 0);
1888 ret = TCPCHK_EVAL_STOP;
1889 goto out;
Christopher Faulet206368d2020-04-03 14:51:06 +02001890 }
1891
Christopher Faulet61cc8522020-04-20 14:54:42 +02001892 /* don't do anything until the connection is established */
1893 if (conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet4b3a2df2020-05-12 15:05:43 +02001894 if (conn->mux) {
1895 if (next && next->action == TCPCHK_ACT_SEND)
1896 conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
1897 else
1898 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
1899 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001900 ret = TCPCHK_EVAL_WAIT;
1901 goto out;
1902 }
1903
1904 out:
1905 if (conn && check->result == CHK_RES_FAILED)
1906 conn->flags |= CO_FL_ERROR;
1907 return ret;
Christopher Faulet206368d2020-04-03 14:51:06 +02001908}
1909
Christopher Faulet61cc8522020-04-20 14:54:42 +02001910/* Evaluates a TCPCHK_ACT_SEND rule. Returns TCPCHK_EVAL_WAIT if outgoing data
1911 * were not fully sent, TCPCHK_EVAL_CONTINUE to evaluate the next rule or
1912 * TCPCHK_EVAL_STOP if an error occurred.
1913 */
1914static enum tcpcheck_eval_ret tcpcheck_eval_send(struct check *check, struct tcpcheck_rule *rule)
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001915{
1916 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001917 struct tcpcheck_send *send = &rule->send;
1918 struct conn_stream *cs = check->cs;
1919 struct connection *conn = cs_conn(cs);
1920 struct buffer *tmp = NULL;
1921 struct htx *htx = NULL;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001922
Christopher Faulet61cc8522020-04-20 14:54:42 +02001923 /* reset the read & write buffer */
1924 b_reset(&check->bi);
1925 b_reset(&check->bo);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001926
Christopher Faulet61cc8522020-04-20 14:54:42 +02001927 switch (send->type) {
1928 case TCPCHK_SEND_STRING:
1929 case TCPCHK_SEND_BINARY:
1930 if (istlen(send->data) >= b_size(&check->bo)) {
1931 chunk_printf(&trash, "tcp-check send : string too large (%u) for buffer size (%u) at step %d",
1932 (unsigned int)istlen(send->data), (unsigned int)b_size(&check->bo),
1933 tcpcheck_get_step_id(check, rule));
1934 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.area);
1935 ret = TCPCHK_EVAL_STOP;
1936 goto out;
1937 }
1938 b_putist(&check->bo, send->data);
1939 break;
1940 case TCPCHK_SEND_STRING_LF:
1941 check->bo.data = sess_build_logline(check->sess, NULL, b_orig(&check->bo), b_size(&check->bo), &rule->send.fmt);
1942 if (!b_data(&check->bo))
1943 goto out;
1944 break;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02001945 case TCPCHK_SEND_BINARY_LF: {
Christopher Faulet9c2cb2d2020-04-28 16:40:41 +02001946 int len = b_size(&check->bo);
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02001947
Christopher Faulet61cc8522020-04-20 14:54:42 +02001948 tmp = alloc_trash_chunk();
1949 if (!tmp)
1950 goto error_lf;
1951 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &rule->send.fmt);
1952 if (!b_data(tmp))
1953 goto out;
1954 tmp->area[tmp->data] = '\0';
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02001955 if (parse_binary(b_orig(tmp), &check->bo.area, &len, NULL) == 0)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001956 goto error_lf;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02001957 check->bo.data = len;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001958 break;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02001959 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001960 case TCPCHK_SEND_HTTP: {
1961 struct htx_sl *sl;
1962 struct ist meth, uri, vsn, clen, body;
1963 unsigned int slflags = 0;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001964
Christopher Faulet61cc8522020-04-20 14:54:42 +02001965 tmp = alloc_trash_chunk();
1966 if (!tmp)
1967 goto error_htx;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001968
Christopher Faulet61cc8522020-04-20 14:54:42 +02001969 meth = ((send->http.meth.meth == HTTP_METH_OTHER)
1970 ? ist2(send->http.meth.str.area, send->http.meth.str.data)
1971 : http_known_methods[send->http.meth.meth]);
Christopher Faulet7c95f5f2020-05-06 15:06:34 +02001972 if (send->http.flags & TCPCHK_SND_HTTP_FL_URI_FMT) {
1973 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &send->http.uri_fmt);
1974 uri = (b_data(tmp) ? ist2(b_orig(tmp), b_data(tmp)) : ist("/"));
1975 }
1976 else
1977 uri = (isttest(send->http.uri) ? send->http.uri : ist("/"));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001978 vsn = (isttest(send->http.vsn) ? send->http.vsn : ist("HTTP/1.0"));
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001979
Christopher Faulet8bf8fda2020-04-28 09:10:19 +02001980 if ((istlen(vsn) == 6 && *(vsn.ptr+5) == '2') ||
1981 (istlen(vsn) == 8 && (*(vsn.ptr+5) > '1' || (*(vsn.ptr+5) == '1' && *(vsn.ptr+7) >= '1'))))
Christopher Faulet61cc8522020-04-20 14:54:42 +02001982 slflags |= HTX_SL_F_VER_11;
1983 slflags |= (HTX_SL_F_XFER_LEN|HTX_SL_F_CLEN);
1984 if (!isttest(send->http.body))
1985 slflags |= HTX_SL_F_BODYLESS;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001986
Christopher Faulet61cc8522020-04-20 14:54:42 +02001987 htx = htx_from_buf(&check->bo);
1988 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, slflags, meth, uri, vsn);
1989 if (!sl)
1990 goto error_htx;
1991 sl->info.req.meth = send->http.meth.meth;
Christopher Faulet39959a72020-04-29 13:21:37 +02001992 if (!http_update_host(htx, sl, uri))
1993 goto error_htx;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001994
Christopher Faulet61cc8522020-04-20 14:54:42 +02001995 if (!LIST_ISEMPTY(&send->http.hdrs)) {
1996 struct tcpcheck_http_hdr *hdr;
Christopher Faulet39959a72020-04-29 13:21:37 +02001997 struct ist hdr_value;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02001998
Christopher Faulet61cc8522020-04-20 14:54:42 +02001999 list_for_each_entry(hdr, &send->http.hdrs, list) {
2000 chunk_reset(tmp);
2001 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &hdr->value);
2002 if (!b_data(tmp))
2003 continue;
Christopher Faulet39959a72020-04-29 13:21:37 +02002004 hdr_value = ist2(b_orig(tmp), b_data(tmp));
2005 if (!htx_add_header(htx, hdr->name, hdr_value))
Christopher Faulet61cc8522020-04-20 14:54:42 +02002006 goto error_htx;
Christopher Faulet39959a72020-04-29 13:21:37 +02002007 if ((sl->flags & HTX_SL_F_HAS_AUTHORITY) && isteqi(hdr->name, ist("host"))) {
2008 if (!http_update_authority(htx, sl, hdr_value))
2009 goto error_htx;
2010 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002011 }
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002012
Christopher Faulet61cc8522020-04-20 14:54:42 +02002013 }
2014 if (check->proxy->options2 & PR_O2_CHK_SNDST) {
2015 chunk_reset(tmp);
2016 httpchk_build_status_header(check->server, tmp);
2017 if (!htx_add_header(htx, ist("X-Haproxy-Server-State"), ist2(b_orig(tmp), b_data(tmp))))
2018 goto error_htx;
2019 }
Christopher Faulet574e7bd2020-05-06 15:38:58 +02002020
2021
2022 if (send->http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT) {
2023 chunk_reset(tmp);
2024 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &send->http.body_fmt);
2025 body = ist2(b_orig(tmp), b_data(tmp));
2026 }
2027 else
2028 body = send->http.body;
2029 clen = ist((!istlen(body) ? "0" : ultoa(istlen(body))));
2030
2031 if (!htx_add_header(htx, ist("Connection"), ist("close")) ||
2032 !htx_add_header(htx, ist("Content-length"), clen))
2033 goto error_htx;
2034
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002035
Christopher Faulet61cc8522020-04-20 14:54:42 +02002036 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Faulet574e7bd2020-05-06 15:38:58 +02002037 (istlen(body) && !htx_add_data_atonce(htx, body)) ||
Christopher Faulet61cc8522020-04-20 14:54:42 +02002038 !htx_add_endof(htx, HTX_BLK_EOM))
2039 goto error_htx;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002040
Christopher Faulet61cc8522020-04-20 14:54:42 +02002041 htx_to_buf(htx, &check->bo);
2042 break;
2043 }
2044 case TCPCHK_SEND_UNDEF:
2045 /* Should never happen. */
2046 ret = TCPCHK_EVAL_STOP;
2047 goto out;
2048 };
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002049
Christopher Faulet6d471212020-04-22 11:09:25 +02002050
2051 if (conn->mux->snd_buf(cs, &check->bo,
2052 (IS_HTX_CONN(conn) ? (htxbuf(&check->bo))->data: b_data(&check->bo)), 0) <= 0) {
Christopher Faulet815516d2020-04-21 13:02:14 +02002053 if ((conn->flags & CO_FL_ERROR) || (cs->flags & CS_FL_ERROR)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02002054 ret = TCPCHK_EVAL_STOP;
Christopher Faulet815516d2020-04-21 13:02:14 +02002055 goto out;
2056 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002057 }
Christopher Faulet6d471212020-04-22 11:09:25 +02002058 if ((IS_HTX_CONN(conn) && !htx_is_empty(htxbuf(&check->bo))) || b_data(&check->bo)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02002059 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
2060 ret = TCPCHK_EVAL_WAIT;
2061 goto out;
2062 }
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002063
Christopher Faulet61cc8522020-04-20 14:54:42 +02002064 out:
2065 free_trash_chunk(tmp);
2066 return ret;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002067
Christopher Faulet61cc8522020-04-20 14:54:42 +02002068 error_htx:
2069 if (htx) {
2070 htx_reset(htx);
2071 htx_to_buf(htx, &check->bo);
2072 }
2073 chunk_printf(&trash, "tcp-check send : failed to build HTTP request at step %d",
2074 tcpcheck_get_step_id(check, rule));
2075 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.area);
2076 ret = TCPCHK_EVAL_STOP;
2077 goto out;
2078
2079 error_lf:
2080 chunk_printf(&trash, "tcp-check send : failed to build log-format string at step %d",
2081 tcpcheck_get_step_id(check, rule));
2082 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.area);
2083 ret = TCPCHK_EVAL_STOP;
2084 goto out;
2085
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002086}
2087
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002088/* Try to receive data before evaluating a tcp-check expect rule. Returns
2089 * TCPCHK_EVAL_WAIT if it is already subscribed on receive events or if nothing
Christopher Faulet61cc8522020-04-20 14:54:42 +02002090 * was received, TCPCHK_EVAL_CONTINUE to evaluate the expect rule or
2091 * TCPCHK_EVAL_STOP if an error occurred.
2092 */
2093static enum tcpcheck_eval_ret tcpcheck_eval_recv(struct check *check, struct tcpcheck_rule *rule)
Christopher Faulet1997eca2020-04-03 23:13:50 +02002094{
Christopher Faulet61cc8522020-04-20 14:54:42 +02002095 struct conn_stream *cs = check->cs;
2096 struct connection *conn = cs_conn(cs);
Christopher Faulet1997eca2020-04-03 23:13:50 +02002097 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002098 size_t max, read, cur_read = 0;
2099 int is_empty;
2100 int read_poll = MAX_READ_POLL_LOOPS;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002101
Christopher Faulet61cc8522020-04-20 14:54:42 +02002102 if (check->wait_list.events & SUB_RETRY_RECV)
2103 goto wait_more_data;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002104
Christopher Faulet61cc8522020-04-20 14:54:42 +02002105 if (cs->flags & CS_FL_EOS)
2106 goto end_recv;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002107
Christopher Faulet61cc8522020-04-20 14:54:42 +02002108 /* errors on the connection and the conn-stream were already checked */
Christopher Faulet1997eca2020-04-03 23:13:50 +02002109
Christopher Faulet61cc8522020-04-20 14:54:42 +02002110 /* prepare to detect if the mux needs more room */
2111 cs->flags &= ~CS_FL_WANT_ROOM;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002112
Christopher Faulet61cc8522020-04-20 14:54:42 +02002113 while ((cs->flags & CS_FL_RCV_MORE) ||
2114 (!(conn->flags & CO_FL_ERROR) && !(cs->flags & (CS_FL_ERROR|CS_FL_EOS)))) {
2115 max = (IS_HTX_CS(cs) ? htx_free_space(htxbuf(&check->bi)) : b_room(&check->bi));
2116 read = conn->mux->rcv_buf(cs, &check->bi, max, 0);
2117 cur_read += read;
2118 if (!read ||
2119 (cs->flags & CS_FL_WANT_ROOM) ||
2120 (--read_poll <= 0) ||
2121 (read < max && read >= global.tune.recv_enough))
2122 break;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002123 }
2124
Christopher Faulet61cc8522020-04-20 14:54:42 +02002125 end_recv:
2126 is_empty = (IS_HTX_CS(cs) ? htx_is_empty(htxbuf(&check->bi)) : !b_data(&check->bi));
2127 if (is_empty && ((conn->flags & CO_FL_ERROR) || (cs->flags & CS_FL_ERROR))) {
2128 /* Report network errors only if we got no other data. Otherwise
2129 * we'll let the upper layers decide whether the response is OK
2130 * or not. It is very common that an RST sent by the server is
2131 * reported as an error just after the last data chunk.
2132 */
2133 goto stop;
2134 }
2135 if (!cur_read) {
2136 if (!(cs->flags & (CS_FL_WANT_ROOM|CS_FL_ERROR|CS_FL_EOS))) {
2137 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
2138 goto wait_more_data;
2139 }
2140 if (is_empty) {
Christopher Faulet1941bab2020-05-05 07:55:50 +02002141 int status;
2142
Christopher Faulet61cc8522020-04-20 14:54:42 +02002143 chunk_printf(&trash, "TCPCHK got an empty response at step %d",
2144 tcpcheck_get_step_id(check, rule));
2145 if (rule->comment)
2146 chunk_appendf(&trash, " comment: '%s'", rule->comment);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002147
2148 status = ((rule->expect.err_status != HCHK_STATUS_UNKNOWN) ? rule->expect.err_status : HCHK_STATUS_L7RSP);
2149 set_server_check_status(check, status, trash.area);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002150 goto stop;
2151 }
2152 }
Christopher Faulet1997eca2020-04-03 23:13:50 +02002153
2154 out:
Christopher Faulet1997eca2020-04-03 23:13:50 +02002155 return ret;
2156
Christopher Faulet61cc8522020-04-20 14:54:42 +02002157 stop:
Christopher Faulet1997eca2020-04-03 23:13:50 +02002158 ret = TCPCHK_EVAL_STOP;
Christopher Faulet1997eca2020-04-03 23:13:50 +02002159 goto out;
2160
2161 wait_more_data:
2162 ret = TCPCHK_EVAL_WAIT;
2163 goto out;
2164}
Christopher Fauletf2b3be52020-04-02 18:07:37 +02002165
Christopher Faulet61cc8522020-04-20 14:54:42 +02002166/* Evaluates an HTTP TCPCHK_ACT_EXPECT rule. If <last_read> is set , no more data
2167 * are expected. Returns TCPCHK_EVAL_WAIT to wait for more data,
2168 * TCPCHK_EVAL_CONTINUE to evaluate the next rule or TCPCHK_EVAL_STOP if an
2169 * error occurred.
2170 */
2171static enum tcpcheck_eval_ret tcpcheck_eval_expect_http(struct check *check, struct tcpcheck_rule *rule, int last_read)
Christopher Faulet267b01b2020-04-04 10:27:09 +02002172{
Christopher Faulet61cc8522020-04-20 14:54:42 +02002173 struct htx *htx = htxbuf(&check->bi);
2174 struct htx_sl *sl;
2175 struct htx_blk *blk;
Christopher Faulet267b01b2020-04-04 10:27:09 +02002176 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002177 struct tcpcheck_expect *expect = &rule->expect;
Christopher Fauletaaab0832020-05-05 15:54:22 +02002178 struct buffer *msg = NULL, *tmp = NULL, *nbuf = NULL, *vbuf = NULL;
Christopher Faulet39708192020-05-05 10:47:36 +02002179 enum healthcheck_status status = HCHK_STATUS_L7RSP;
Christopher Fauletb61caf42020-04-21 10:57:42 +02002180 struct ist desc = IST_NULL;
Christopher Faulet8021a5f2020-04-24 13:53:12 +02002181 int i, match, inverse;
Christopher Faulet267b01b2020-04-04 10:27:09 +02002182
Christopher Faulet61cc8522020-04-20 14:54:42 +02002183 last_read |= (!htx_free_space(htx) || (htx_get_tail_type(htx) == HTX_BLK_EOM));
Christopher Faulet267b01b2020-04-04 10:27:09 +02002184
Christopher Faulet61cc8522020-04-20 14:54:42 +02002185 if (htx->flags & HTX_FL_PARSING_ERROR) {
2186 status = HCHK_STATUS_L7RSP;
2187 goto error;
2188 }
Christopher Faulet267b01b2020-04-04 10:27:09 +02002189
Christopher Faulet61cc8522020-04-20 14:54:42 +02002190 if (htx_is_empty(htx)) {
2191 if (last_read) {
2192 status = HCHK_STATUS_L7RSP;
2193 goto error;
2194 }
Christopher Faulet267b01b2020-04-04 10:27:09 +02002195 goto wait_more_data;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002196 }
Christopher Faulet267b01b2020-04-04 10:27:09 +02002197
Christopher Faulet61cc8522020-04-20 14:54:42 +02002198 sl = http_get_stline(htx);
2199 check->code = sl->info.res.status;
2200
2201 if (check->server &&
2202 (check->server->proxy->options & PR_O_DISABLE404) &&
2203 (check->server->next_state != SRV_ST_STOPPED) &&
2204 (check->code == 404)) {
2205 /* 404 may be accepted as "stopping" only if the server was up */
2206 goto out;
2207 }
2208
2209 inverse = !!(expect->flags & TCPCHK_EXPT_FL_INV);
2210 /* Make GCC happy ; initialize match to a failure state. */
2211 match = inverse;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002212 status = expect->err_status;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002213
2214 switch (expect->type) {
2215 case TCPCHK_EXPECT_HTTP_STATUS:
Christopher Faulet8021a5f2020-04-24 13:53:12 +02002216 match = 0;
2217 for (i = 0; i < expect->codes.num; i++) {
2218 if (sl->info.res.status >= expect->codes.codes[i][0] &&
2219 sl->info.res.status <= expect->codes.codes[i][1]) {
2220 match = 1;
2221 break;
2222 }
2223 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002224
2225 /* Set status and description in case of error */
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002226 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7STS);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002227 if (LIST_ISEMPTY(&expect->onerror_fmt))
2228 desc = htx_sl_res_reason(sl);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002229 break;
Christopher Faulet67a23452020-05-05 18:10:01 +02002230 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
Christopher Faulet61cc8522020-04-20 14:54:42 +02002231 match = regex_exec2(expect->regex, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
2232
2233 /* Set status and description in case of error */
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002234 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7STS);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002235 if (LIST_ISEMPTY(&expect->onerror_fmt))
2236 desc = htx_sl_res_reason(sl);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002237 break;
2238
Christopher Faulet39708192020-05-05 10:47:36 +02002239 case TCPCHK_EXPECT_HTTP_HEADER: {
2240 struct http_hdr_ctx ctx;
2241 struct ist npat, vpat, value;
2242 int full = (expect->flags & (TCPCHK_EXPT_FL_HTTP_HVAL_NONE|TCPCHK_EXPT_FL_HTTP_HVAL_FULL));
2243
2244 if (expect->flags & TCPCHK_EXPT_FL_HTTP_HNAME_FMT) {
2245 nbuf = alloc_trash_chunk();
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002246 if (!nbuf) {
2247 status = HCHK_STATUS_L7RSP;
2248 desc = ist("Failed to allocate buffer to eval log-format string");
Christopher Faulet39708192020-05-05 10:47:36 +02002249 goto error;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002250 }
Christopher Faulet39708192020-05-05 10:47:36 +02002251 nbuf->data = sess_build_logline(check->sess, NULL, b_orig(nbuf), b_size(nbuf), &expect->hdr.name_fmt);
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002252 if (!b_data(nbuf)) {
2253 status = HCHK_STATUS_L7RSP;
2254 desc = ist("log-format string evaluated to an empty string");
2255 goto error;
2256 }
Christopher Faulet39708192020-05-05 10:47:36 +02002257 npat = ist2(b_orig(nbuf), b_data(nbuf));
2258 }
2259 else if (!(expect->flags & TCPCHK_EXPT_FL_HTTP_HNAME_REG))
2260 npat = expect->hdr.name;
2261
2262 if (expect->flags & TCPCHK_EXPT_FL_HTTP_HVAL_FMT) {
2263 vbuf = alloc_trash_chunk();
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002264 if (!vbuf) {
2265 status = HCHK_STATUS_L7RSP;
2266 desc = ist("Failed to allocate buffer to eval log-format string");
Christopher Faulet39708192020-05-05 10:47:36 +02002267 goto error;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002268 }
Christopher Faulet39708192020-05-05 10:47:36 +02002269 vbuf->data = sess_build_logline(check->sess, NULL, b_orig(vbuf), b_size(vbuf), &expect->hdr.value_fmt);
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002270 if (!b_data(vbuf)) {
2271 status = HCHK_STATUS_L7RSP;
2272 desc = ist("log-format string evaluated to an empty string");
2273 goto error;
2274 }
Christopher Faulet39708192020-05-05 10:47:36 +02002275 vpat = ist2(b_orig(vbuf), b_data(vbuf));
2276 }
2277 else if (!(expect->flags & TCPCHK_EXPT_FL_HTTP_HVAL_REG))
2278 vpat = expect->hdr.value;
2279
2280 match = 0;
2281 ctx.blk = NULL;
2282 while (1) {
2283 switch (expect->flags & TCPCHK_EXPT_FL_HTTP_HNAME_TYPE) {
2284 case TCPCHK_EXPT_FL_HTTP_HNAME_STR:
2285 if (!http_find_str_header(htx, npat, &ctx, full))
2286 goto end_of_match;
2287 break;
2288 case TCPCHK_EXPT_FL_HTTP_HNAME_BEG:
2289 if (!http_find_pfx_header(htx, npat, &ctx, full))
2290 goto end_of_match;
2291 break;
2292 case TCPCHK_EXPT_FL_HTTP_HNAME_END:
2293 if (!http_find_sfx_header(htx, npat, &ctx, full))
2294 goto end_of_match;
2295 break;
2296 case TCPCHK_EXPT_FL_HTTP_HNAME_SUB:
2297 if (!http_find_sub_header(htx, npat, &ctx, full))
2298 goto end_of_match;
2299 break;
2300 case TCPCHK_EXPT_FL_HTTP_HNAME_REG:
2301 if (!http_match_header(htx, expect->hdr.name_re, &ctx, full))
2302 goto end_of_match;
2303 break;
Christopher Faulet083eff32020-05-07 15:41:39 +02002304 default:
2305 /* should never happen */
2306 goto end_of_match;
Christopher Faulet39708192020-05-05 10:47:36 +02002307 }
2308
Christopher Faulet083eff32020-05-07 15:41:39 +02002309 /* A header has matched the name pattern, let's test its
2310 * value now (always defined from there). If there is no
2311 * value pattern, it is a good match.
2312 */
2313
Christopher Faulet39708192020-05-05 10:47:36 +02002314 if (expect->flags & TCPCHK_EXPT_FL_HTTP_HVAL_NONE) {
2315 match = 1;
2316 goto end_of_match;
2317 }
2318
2319 value = ctx.value;
2320 switch (expect->flags & TCPCHK_EXPT_FL_HTTP_HVAL_TYPE) {
2321 case TCPCHK_EXPT_FL_HTTP_HVAL_STR:
2322 if (isteq(value, vpat)) {
2323 match = 1;
2324 goto end_of_match;
2325 }
2326 break;
2327 case TCPCHK_EXPT_FL_HTTP_HVAL_BEG:
2328 if (istlen(value) < istlen(vpat))
2329 break;
2330 value = ist2(istptr(value), istlen(vpat));
2331 if (isteq(value, vpat)) {
2332 match = 1;
2333 goto end_of_match;
2334 }
2335 break;
2336 case TCPCHK_EXPT_FL_HTTP_HVAL_END:
2337 if (istlen(value) < istlen(vpat))
2338 break;
2339 value = ist2(istptr(value) + istlen(value) - istlen(vpat), istlen(vpat));
2340 if (isteq(value, vpat)) {
2341 match = 1;
2342 goto end_of_match;
2343 }
2344 break;
2345 case TCPCHK_EXPT_FL_HTTP_HVAL_SUB:
2346 if (isttest(istist(value, vpat))) {
2347 match = 1;
2348 goto end_of_match;
2349 }
2350 break;
2351 case TCPCHK_EXPT_FL_HTTP_HVAL_REG:
2352 if (regex_exec2(expect->hdr.value_re, istptr(value), istlen(value))) {
2353 match = 1;
2354 goto end_of_match;
2355 }
2356 break;
2357 }
2358 }
2359
2360 end_of_match:
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002361 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7STS);
Christopher Faulet39708192020-05-05 10:47:36 +02002362 if (LIST_ISEMPTY(&expect->onerror_fmt))
2363 desc = htx_sl_res_reason(sl);
2364 break;
2365 }
2366
Christopher Faulet61cc8522020-04-20 14:54:42 +02002367 case TCPCHK_EXPECT_HTTP_BODY:
Christopher Faulet67a23452020-05-05 18:10:01 +02002368 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Fauletaaab0832020-05-05 15:54:22 +02002369 case TCPCHK_EXPECT_HTTP_BODY_LF:
2370 match = 0;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002371 chunk_reset(&trash);
2372 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
2373 enum htx_blk_type type = htx_get_blk_type(blk);
2374
2375 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
2376 break;
2377 if (type == HTX_BLK_DATA) {
2378 if (!chunk_istcat(&trash, htx_get_blk_value(htx, blk)))
2379 break;
2380 }
2381 }
2382
2383 if (!b_data(&trash)) {
2384 if (!last_read)
2385 goto wait_more_data;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002386 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7RSP);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002387 if (LIST_ISEMPTY(&expect->onerror_fmt))
2388 desc = ist("HTTP content check could not find a response body");
Christopher Faulet61cc8522020-04-20 14:54:42 +02002389 goto error;
2390 }
2391
Christopher Fauletaaab0832020-05-05 15:54:22 +02002392 if (expect->type == TCPCHK_EXPECT_HTTP_BODY_LF) {
2393 tmp = alloc_trash_chunk();
2394 if (!tmp) {
2395 status = HCHK_STATUS_L7RSP;
2396 desc = ist("Failed to allocate buffer to eval log-format string");
2397 goto error;
2398 }
2399 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &expect->fmt);
2400 if (!b_data(tmp)) {
2401 status = HCHK_STATUS_L7RSP;
2402 desc = ist("log-format string evaluated to an empty string");
2403 goto error;
2404 }
2405 }
2406
Christopher Faulet61cc8522020-04-20 14:54:42 +02002407 if (!last_read &&
2408 ((expect->type == TCPCHK_EXPECT_HTTP_BODY && b_data(&trash) < istlen(expect->data)) ||
Christopher Fauletaaab0832020-05-05 15:54:22 +02002409 ((expect->type == TCPCHK_EXPECT_HTTP_BODY_LF && b_data(&trash) < b_data(tmp))) ||
Christopher Faulet61cc8522020-04-20 14:54:42 +02002410 (expect->min_recv > 0 && b_data(&trash) < expect->min_recv))) {
2411 ret = TCPCHK_EVAL_WAIT;
2412 goto out;
2413 }
2414
2415 if (expect->type ==TCPCHK_EXPECT_HTTP_BODY)
Christopher Fauletb61caf42020-04-21 10:57:42 +02002416 match = my_memmem(b_orig(&trash), b_data(&trash), istptr(expect->data), istlen(expect->data)) != NULL;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002417 else if (expect->type ==TCPCHK_EXPECT_HTTP_BODY_LF)
2418 match = my_memmem(b_orig(&trash), b_data(&trash), b_orig(tmp), b_data(tmp)) != NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002419 else
2420 match = regex_exec2(expect->regex, b_orig(&trash), b_data(&trash));
2421
2422 /* Set status and description in case of error */
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002423 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7RSP);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002424 if (LIST_ISEMPTY(&expect->onerror_fmt))
2425 desc = (inverse
2426 ? ist("HTTP check matched unwanted content")
2427 : ist("HTTP content check did not match"));
Christopher Faulet61cc8522020-04-20 14:54:42 +02002428 break;
2429
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002430
Christopher Faulet61cc8522020-04-20 14:54:42 +02002431 default:
2432 /* should never happen */
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002433 status = ((status != HCHK_STATUS_UNKNOWN) ? status : HCHK_STATUS_L7RSP);
Christopher Faulet267b01b2020-04-04 10:27:09 +02002434 goto error;
2435 }
2436
Christopher Faulet61cc8522020-04-20 14:54:42 +02002437 /* Wait for more data on mismatch only if no minimum is defined (-1),
2438 * otherwise the absence of match is already conclusive.
2439 */
2440 if (!match && !last_read && (expect->min_recv == -1)) {
2441 ret = TCPCHK_EVAL_WAIT;
2442 goto out;
2443 }
2444
2445 if (!(match ^ inverse))
2446 goto error;
Christopher Faulet267b01b2020-04-04 10:27:09 +02002447
2448 out:
Christopher Fauletaaab0832020-05-05 15:54:22 +02002449 free_trash_chunk(tmp);
Christopher Faulet39708192020-05-05 10:47:36 +02002450 free_trash_chunk(nbuf);
2451 free_trash_chunk(vbuf);
Christopher Faulet267b01b2020-04-04 10:27:09 +02002452 free_trash_chunk(msg);
2453 return ret;
2454
2455 error:
2456 ret = TCPCHK_EVAL_STOP;
2457 msg = alloc_trash_chunk();
2458 if (msg)
Christopher Faulet61cc8522020-04-20 14:54:42 +02002459 tcpcheck_expect_onerror_message(msg, check, rule, 0, desc);
Christopher Faulet267b01b2020-04-04 10:27:09 +02002460 set_server_check_status(check, status, (msg ? b_head(msg) : NULL));
2461 goto out;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002462
2463 wait_more_data:
2464 ret = TCPCHK_EVAL_WAIT;
2465 goto out;
2466}
2467
Christopher Faulet61cc8522020-04-20 14:54:42 +02002468/* Evaluates a TCP TCPCHK_ACT_EXPECT rule. Returns TCPCHK_EVAL_WAIT to wait for
2469 * more data, TCPCHK_EVAL_CONTINUE to evaluate the next rule or TCPCHK_EVAL_STOP
2470 * if an error occurred.
2471 */
2472static enum tcpcheck_eval_ret tcpcheck_eval_expect(struct check *check, struct tcpcheck_rule *rule, int last_read)
2473{
2474 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
2475 struct tcpcheck_expect *expect = &rule->expect;
Christopher Fauletaaab0832020-05-05 15:54:22 +02002476 struct buffer *msg = NULL, *tmp = NULL;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002477 struct ist desc = IST_NULL;
Christopher Faulet1941bab2020-05-05 07:55:50 +02002478 enum healthcheck_status status;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002479 int match, inverse;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002480
Christopher Faulet61cc8522020-04-20 14:54:42 +02002481 last_read |= b_full(&check->bi);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002482
Christopher Faulet61cc8522020-04-20 14:54:42 +02002483 /* The current expect might need more data than the previous one, check again
2484 * that the minimum amount data required to match is respected.
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002485 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02002486 if (!last_read) {
2487 if ((expect->type == TCPCHK_EXPECT_STRING || expect->type == TCPCHK_EXPECT_BINARY) &&
2488 (b_data(&check->bi) < istlen(expect->data))) {
2489 ret = TCPCHK_EVAL_WAIT;
2490 goto out;
2491 }
2492 if (expect->min_recv > 0 && (b_data(&check->bi) < expect->min_recv)) {
2493 ret = TCPCHK_EVAL_WAIT;
2494 goto out;
2495 }
2496 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002497
Christopher Faulet61cc8522020-04-20 14:54:42 +02002498 inverse = !!(expect->flags & TCPCHK_EXPT_FL_INV);
2499 /* Make GCC happy ; initialize match to a failure state. */
2500 match = inverse;
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002501 status = ((expect->err_status != HCHK_STATUS_UNKNOWN) ? expect->err_status : HCHK_STATUS_L7RSP);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002502
Christopher Faulet61cc8522020-04-20 14:54:42 +02002503 switch (expect->type) {
2504 case TCPCHK_EXPECT_STRING:
2505 case TCPCHK_EXPECT_BINARY:
Christopher Fauletb61caf42020-04-21 10:57:42 +02002506 match = my_memmem(b_head(&check->bi), b_data(&check->bi), istptr(expect->data), istlen(expect->data)) != NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002507 break;
Christopher Faulet67a23452020-05-05 18:10:01 +02002508 case TCPCHK_EXPECT_STRING_REGEX:
Christopher Faulet88d939c2020-04-22 15:32:11 +02002509 match = regex_exec2(expect->regex, b_head(&check->bi), MIN(b_data(&check->bi), b_size(&check->bi)-1));
Christopher Faulet61cc8522020-04-20 14:54:42 +02002510 break;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002511
Christopher Faulet67a23452020-05-05 18:10:01 +02002512 case TCPCHK_EXPECT_BINARY_REGEX:
Christopher Faulet61cc8522020-04-20 14:54:42 +02002513 chunk_reset(&trash);
2514 dump_binary(&trash, b_head(&check->bi), b_data(&check->bi));
Christopher Faulet88d939c2020-04-22 15:32:11 +02002515 match = regex_exec2(expect->regex, b_head(&trash), MIN(b_data(&trash), b_size(&trash)-1));
Christopher Faulet61cc8522020-04-20 14:54:42 +02002516 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +02002517
2518 case TCPCHK_EXPECT_STRING_LF:
2519 case TCPCHK_EXPECT_BINARY_LF:
2520 match = 0;
2521 tmp = alloc_trash_chunk();
2522 if (!tmp) {
2523 status = HCHK_STATUS_L7RSP;
2524 desc = ist("Failed to allocate buffer to eval format string");
2525 goto error;
2526 }
2527 tmp->data = sess_build_logline(check->sess, NULL, b_orig(tmp), b_size(tmp), &expect->fmt);
2528 if (!b_data(tmp)) {
2529 status = HCHK_STATUS_L7RSP;
2530 desc = ist("log-format string evaluated to an empty string");
2531 goto error;
2532 }
2533 if (expect->type == TCPCHK_EXPECT_BINARY_LF) {
2534 int len = tmp->data;
2535 if (parse_binary(b_orig(tmp), &tmp->area, &len, NULL) == 0) {
2536 status = HCHK_STATUS_L7RSP;
2537 desc = ist("Failed to parse hexastring resulting of eval of a log-format string");
2538 goto error;
2539 }
2540 tmp->data = len;
2541 }
2542 if (b_data(&check->bi) < tmp->data) {
2543 if (!last_read) {
2544 ret = TCPCHK_EVAL_WAIT;
2545 goto out;
2546 }
2547 break;
2548 }
2549 match = my_memmem(b_head(&check->bi), b_data(&check->bi), b_orig(tmp), b_data(tmp)) != NULL;
2550 break;
2551
Christopher Faulet61cc8522020-04-20 14:54:42 +02002552 case TCPCHK_EXPECT_CUSTOM:
2553 if (expect->custom)
2554 ret = expect->custom(check, rule, last_read);
2555 goto out;
2556 default:
2557 /* Should never happen. */
2558 ret = TCPCHK_EVAL_STOP;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002559 goto out;
2560 }
2561
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002562
Christopher Faulet61cc8522020-04-20 14:54:42 +02002563 /* Wait for more data on mismatch only if no minimum is defined (-1),
2564 * otherwise the absence of match is already conclusive.
2565 */
2566 if (!match && !last_read && (expect->min_recv == -1)) {
2567 ret = TCPCHK_EVAL_WAIT;
2568 goto out;
2569 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002570
Christopher Faulet61cc8522020-04-20 14:54:42 +02002571 /* Result as expected, next rule. */
2572 if (match ^ inverse)
2573 goto out;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002574
Christopher Fauletaaab0832020-05-05 15:54:22 +02002575 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02002576 /* From this point on, we matched something we did not want, this is an error state. */
2577 ret = TCPCHK_EVAL_STOP;
2578 msg = alloc_trash_chunk();
2579 if (msg)
Christopher Faulet0d6909b2020-05-05 15:50:37 +02002580 tcpcheck_expect_onerror_message(msg, check, rule, match, desc);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002581 set_server_check_status(check, status, (msg ? b_head(msg) : NULL));
Christopher Faulet61cc8522020-04-20 14:54:42 +02002582 free_trash_chunk(msg);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002583
Christopher Faulet61cc8522020-04-20 14:54:42 +02002584 out:
Christopher Fauletaaab0832020-05-05 15:54:22 +02002585 free_trash_chunk(tmp);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002586 return ret;
2587}
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002588
Christopher Faulet61cc8522020-04-20 14:54:42 +02002589/* Evaluates a TCPCHK_ACT_ACTION_KW rule. Returns TCPCHK_EVAL_CONTINUE to
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002590 * evaluate the next rule or TCPCHK_EVAL_STOP if an error occurred. It never
Christopher Faulet61cc8522020-04-20 14:54:42 +02002591 * waits.
2592 */
2593static enum tcpcheck_eval_ret tcpcheck_eval_action_kw(struct check *check, struct tcpcheck_rule *rule)
2594{
2595 enum tcpcheck_eval_ret ret = TCPCHK_EVAL_CONTINUE;
2596 struct act_rule *act_rule;
2597 enum act_return act_ret;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002598
Christopher Faulet61cc8522020-04-20 14:54:42 +02002599 act_rule =rule->action_kw.rule;
2600 act_ret = act_rule->action_ptr(act_rule, check->proxy, check->sess, NULL, 0);
2601 if (act_ret != ACT_RET_CONT) {
2602 chunk_printf(&trash, "TCPCHK ACTION unexpected result at step %d\n",
2603 tcpcheck_get_step_id(check, rule));
2604 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.area);
2605 ret = TCPCHK_EVAL_STOP;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002606 }
2607
Christopher Faulet61cc8522020-04-20 14:54:42 +02002608 return ret;
2609}
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002610
Christopher Faulet61cc8522020-04-20 14:54:42 +02002611/* Executes a tcp-check ruleset. Note that this is called both from the
2612 * connection's wake() callback and from the check scheduling task. It returns
2613 * 0 on normal cases, or <0 if a close() has happened on an existing connection,
2614 * presenting the risk of an fd replacement.
2615 *
2616 * Please do NOT place any return statement in this function and only leave
2617 * via the out_end_tcpcheck label after setting retcode.
2618 */
2619static int tcpcheck_main(struct check *check)
2620{
2621 struct tcpcheck_rule *rule;
2622 struct conn_stream *cs = check->cs;
2623 struct connection *conn = cs_conn(cs);
2624 int must_read = 1, last_read = 0;
2625 int ret, retcode = 0;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002626
Christopher Faulet61cc8522020-04-20 14:54:42 +02002627 /* here, we know that the check is complete or that it failed */
2628 if (check->result != CHK_RES_UNKNOWN)
Christopher Fauletb693a0d2020-04-27 15:59:22 +02002629 goto out;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002630
Christopher Faulet61cc8522020-04-20 14:54:42 +02002631 /* 1- check for connection error, if any */
2632 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
2633 goto out_end_tcpcheck;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002634
Christopher Faulet61cc8522020-04-20 14:54:42 +02002635 /* 2- check if we are waiting for the connection establishment. It only
2636 * happens during TCPCHK_ACT_CONNECT. */
2637 if (check->current_step && check->current_step->action == TCPCHK_ACT_CONNECT) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02002638 if (conn && (conn->flags & CO_FL_WAIT_XPRT)) {
Christopher Faulet97b2a8b2020-05-09 17:34:43 +02002639 struct tcpcheck_rule *next;
2640
2641 next = get_next_tcpcheck_rule(check->tcpcheck_rules, check->current_step);
2642 if (next && next->action == TCPCHK_ACT_SEND) {
Christopher Fauleta2fb0c32020-05-09 17:27:43 +02002643 if (!(check->wait_list.events & SUB_RETRY_SEND))
2644 conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
2645 }
Christopher Faulet97b2a8b2020-05-09 17:34:43 +02002646 else {
Christopher Fauleta2fb0c32020-05-09 17:27:43 +02002647 if (!(check->wait_list.events & SUB_RETRY_RECV))
2648 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
2649 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002650 goto out;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002651 }
Christopher Faulet97b2a8b2020-05-09 17:34:43 +02002652 rule = LIST_NEXT(&check->current_step->list, typeof(rule), list);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002653 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002654
2655 /* 3- check for pending outgoing data. It only happens during
2656 * TCPCHK_ACT_SEND. */
2657 else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) {
2658 if (conn && b_data(&check->bo)) {
Christopher Faulet07321342020-05-09 17:37:43 +02002659 /* We're already waiting to be able to send, give up */
2660 if (check->wait_list.events & SUB_RETRY_SEND)
2661 goto out;
2662
Christopher Faulet6d471212020-04-22 11:09:25 +02002663 ret = conn->mux->snd_buf(cs, &check->bo,
2664 (IS_HTX_CONN(conn) ? (htxbuf(&check->bo))->data: b_data(&check->bo)), 0);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002665 if (ret <= 0) {
2666 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
2667 goto out_end_tcpcheck;
Christopher Faulet61cc8522020-04-20 14:54:42 +02002668 }
Christopher Faulet6d471212020-04-22 11:09:25 +02002669 if ((IS_HTX_CONN(conn) && !htx_is_empty(htxbuf(&check->bo))) || b_data(&check->bo)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02002670 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
2671 goto out;
2672 }
2673 }
2674 rule = LIST_NEXT(&check->current_step->list, typeof(rule), list);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002675 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002676
Christopher Faulet61cc8522020-04-20 14:54:42 +02002677 /* 4- check if a rule must be resume. It happens if check->current_step
2678 * is defined. */
2679 else if (check->current_step)
2680 rule = check->current_step;
Christopher Faulet267b01b2020-04-04 10:27:09 +02002681
Christopher Faulet61cc8522020-04-20 14:54:42 +02002682 /* 5- It is the first evaluation. We must create a session and preset
2683 * tcp-check variables */
2684 else {
2685 struct tcpcheck_var *var;
Christopher Faulet267b01b2020-04-04 10:27:09 +02002686
Christopher Faulet61cc8522020-04-20 14:54:42 +02002687 /* First evaluation, create a session */
2688 check->sess = session_new(&checks_fe, NULL, &check->obj_type);
2689 if (!check->sess) {
2690 chunk_printf(&trash, "TCPCHK error allocating check session");
2691 set_server_check_status(check, HCHK_STATUS_SOCKERR, trash.area);
2692 goto out_end_tcpcheck;
2693 }
2694 vars_init(&check->vars, SCOPE_CHECK);
2695 rule = LIST_NEXT(check->tcpcheck_rules->list, typeof(rule), list);
Willy Tarreauef953952014-10-02 14:30:14 +02002696
Christopher Faulet61cc8522020-04-20 14:54:42 +02002697 /* Preset tcp-check variables */
2698 list_for_each_entry(var, &check->tcpcheck_rules->preset_vars, list) {
2699 struct sample smp;
Willy Tarreau449f9522015-05-13 15:39:48 +02002700
Christopher Faulet61cc8522020-04-20 14:54:42 +02002701 memset(&smp, 0, sizeof(smp));
2702 smp_set_owner(&smp, check->proxy, check->sess, NULL, SMP_OPT_FINAL);
2703 smp.data = var->data;
Christopher Fauletb61caf42020-04-21 10:57:42 +02002704 vars_set_by_name_ifexist(istptr(var->name), istlen(var->name), &smp);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002705 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002706 }
2707
Christopher Faulet61cc8522020-04-20 14:54:42 +02002708 /* Now evaluate the tcp-check rules */
Willy Tarreaudeccd112018-06-14 18:38:55 +02002709
Christopher Faulet61cc8522020-04-20 14:54:42 +02002710 list_for_each_entry_from(rule, check->tcpcheck_rules->list, list) {
2711 enum tcpcheck_eval_ret eval_ret;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002712
Christopher Faulet61cc8522020-04-20 14:54:42 +02002713 check->code = 0;
2714 switch (rule->action) {
2715 case TCPCHK_ACT_CONNECT:
2716 check->current_step = rule;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002717
Christopher Faulet61cc8522020-04-20 14:54:42 +02002718 /* close but not release yet previous connection */
2719 if (check->cs) {
2720 cs_close(check->cs);
2721 retcode = -1; /* do not reuse the fd in the caller! */
2722 }
2723 eval_ret = tcpcheck_eval_connect(check, rule);
2724 must_read = 1; last_read = 0;
2725 break;
2726 case TCPCHK_ACT_SEND:
2727 check->current_step = rule;
2728 eval_ret = tcpcheck_eval_send(check, rule);
2729 must_read = 1;
2730 break;
2731 case TCPCHK_ACT_EXPECT:
2732 check->current_step = rule;
2733 if (must_read) {
2734 if (check->proxy->timeout.check)
2735 check->task->expire = tick_add_ifset(now_ms, check->proxy->timeout.check);
Willy Tarreauf3d34822014-12-08 12:11:28 +01002736
Christopher Faulet61cc8522020-04-20 14:54:42 +02002737 eval_ret = tcpcheck_eval_recv(check, rule);
2738 if (eval_ret == TCPCHK_EVAL_STOP)
2739 goto out_end_tcpcheck;
2740 else if (eval_ret == TCPCHK_EVAL_WAIT)
2741 goto out;
2742 last_read = ((conn->flags & CO_FL_ERROR) || (cs->flags & (CS_FL_ERROR|CS_FL_EOS)));
2743 must_read = 0;
2744 }
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002745
Christopher Faulet61cc8522020-04-20 14:54:42 +02002746 eval_ret = ((check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK
2747 ? tcpcheck_eval_expect_http(check, rule, last_read)
2748 : tcpcheck_eval_expect(check, rule, last_read));
Willy Tarreau00149122017-10-04 18:05:01 +02002749
Christopher Faulet61cc8522020-04-20 14:54:42 +02002750 if (eval_ret == TCPCHK_EVAL_WAIT) {
2751 check->current_step = rule->expect.head;
Christopher Fauleta2fb0c32020-05-09 17:27:43 +02002752 if (!(check->wait_list.events & SUB_RETRY_RECV))
2753 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Christopher Faulet61cc8522020-04-20 14:54:42 +02002754 }
2755 break;
2756 case TCPCHK_ACT_ACTION_KW:
2757 /* Don't update the current step */
2758 eval_ret = tcpcheck_eval_action_kw(check, rule);
2759 break;
2760 default:
2761 /* Otherwise, just go to the next one and don't update
2762 * the current step
2763 */
2764 eval_ret = TCPCHK_EVAL_CONTINUE;
2765 break;
2766 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02002767
Christopher Faulet61cc8522020-04-20 14:54:42 +02002768 switch (eval_ret) {
2769 case TCPCHK_EVAL_CONTINUE:
2770 break;
2771 case TCPCHK_EVAL_WAIT:
2772 goto out;
2773 case TCPCHK_EVAL_STOP:
2774 goto out_end_tcpcheck;
2775 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02002776 }
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002777
Christopher Faulet61cc8522020-04-20 14:54:42 +02002778 /* All rules was evaluated */
2779 if (check->current_step) {
2780 rule = check->current_step;
Willy Tarreau00149122017-10-04 18:05:01 +02002781
Christopher Faulet61cc8522020-04-20 14:54:42 +02002782 if (rule->action == TCPCHK_ACT_EXPECT) {
2783 struct buffer *msg;
Christopher Faulet1941bab2020-05-05 07:55:50 +02002784 enum healthcheck_status status;
Willy Tarreau00149122017-10-04 18:05:01 +02002785
Christopher Faulet61cc8522020-04-20 14:54:42 +02002786 if (check->server &&
2787 (check->server->proxy->options & PR_O_DISABLE404) &&
2788 (check->server->next_state != SRV_ST_STOPPED) &&
2789 (check->code == 404)) {
2790 set_server_check_status(check, HCHK_STATUS_L7OKCD, NULL);
2791 goto out_end_tcpcheck;
2792 }
Christopher Fauletd7e63962020-04-17 20:15:59 +02002793
Christopher Faulet61cc8522020-04-20 14:54:42 +02002794 msg = alloc_trash_chunk();
2795 if (msg)
Christopher Fauletb61caf42020-04-21 10:57:42 +02002796 tcpcheck_expect_onsuccess_message(msg, check, rule, IST_NULL);
Christopher Faulet1941bab2020-05-05 07:55:50 +02002797 status = ((rule->expect.ok_status != HCHK_STATUS_UNKNOWN) ? rule->expect.ok_status : HCHK_STATUS_L7OKD);
2798 set_server_check_status(check, status, (msg ? b_head(msg) : "(tcp-check)"));
Christopher Faulet61cc8522020-04-20 14:54:42 +02002799 free_trash_chunk(msg);
2800 }
2801 else if (rule->action == TCPCHK_ACT_CONNECT) {
2802 const char *msg = ((rule->connect.options & TCPCHK_OPT_IMPLICIT) ? NULL : "(tcp-check)");
Christopher Fauletf73f5cc2020-04-27 12:06:55 +02002803 enum healthcheck_status status = HCHK_STATUS_L4OK;
2804#ifdef USE_OPENSSL
2805 if (conn && ssl_sock_is_ssl(conn))
2806 status = HCHK_STATUS_L6OK;
2807#endif
Christopher Faulet61cc8522020-04-20 14:54:42 +02002808 set_server_check_status(check, status, msg);
2809 }
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02002810 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002811 else
2812 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
Christopher Faulet14cd3162020-04-16 14:50:06 +02002813
Christopher Faulet61cc8522020-04-20 14:54:42 +02002814 out_end_tcpcheck:
2815 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
2816 chk_report_conn_err(check, errno, 0);
Christopher Faulet14cd3162020-04-16 14:50:06 +02002817
Christopher Faulet61cc8522020-04-20 14:54:42 +02002818 out:
2819 return retcode;
2820}
Christopher Fauletbb591a12020-04-01 16:52:17 +02002821
Christopher Faulet14cd3162020-04-16 14:50:06 +02002822
Christopher Faulet61cc8522020-04-20 14:54:42 +02002823/**************************************************************************/
2824/************** Health-checks based on an external process ****************/
2825/**************************************************************************/
2826static struct list pid_list = LIST_HEAD_INIT(pid_list);
2827static struct pool_head *pool_head_pid_list;
2828__decl_spinlock(pid_list_lock);
Christopher Faulet14cd3162020-04-16 14:50:06 +02002829
Christopher Faulet61cc8522020-04-20 14:54:42 +02002830struct extcheck_env {
2831 char *name; /* environment variable name */
2832 int vmaxlen; /* value maximum length, used to determine the required memory allocation */
2833};
Christopher Faulet14cd3162020-04-16 14:50:06 +02002834
Christopher Faulet61cc8522020-04-20 14:54:42 +02002835/* environment variables memory requirement for different types of data */
2836#define EXTCHK_SIZE_EVAL_INIT 0 /* size determined during the init phase,
2837 * such environment variables are not updatable. */
2838#define EXTCHK_SIZE_ULONG 20 /* max string length for an unsigned long value */
2839#define EXTCHK_SIZE_UINT 11 /* max string length for an unsigned int value */
2840#define EXTCHK_SIZE_ADDR INET6_ADDRSTRLEN+1 /* max string length for an address */
Christopher Fauletbb591a12020-04-01 16:52:17 +02002841
Christopher Faulet61cc8522020-04-20 14:54:42 +02002842/* external checks environment variables */
2843enum {
2844 EXTCHK_PATH = 0,
Willy Tarreauca79f592019-07-17 19:04:47 +02002845
Christopher Faulet61cc8522020-04-20 14:54:42 +02002846 /* Proxy specific environment variables */
2847 EXTCHK_HAPROXY_PROXY_NAME, /* the backend name */
2848 EXTCHK_HAPROXY_PROXY_ID, /* the backend id */
2849 EXTCHK_HAPROXY_PROXY_ADDR, /* the first bind address if available (or empty) */
2850 EXTCHK_HAPROXY_PROXY_PORT, /* the first bind port if available (or empty) */
Christopher Fauletbb591a12020-04-01 16:52:17 +02002851
Christopher Faulet61cc8522020-04-20 14:54:42 +02002852 /* Server specific environment variables */
2853 EXTCHK_HAPROXY_SERVER_NAME, /* the server name */
2854 EXTCHK_HAPROXY_SERVER_ID, /* the server id */
2855 EXTCHK_HAPROXY_SERVER_ADDR, /* the server address */
2856 EXTCHK_HAPROXY_SERVER_PORT, /* the server port if available (or empty) */
2857 EXTCHK_HAPROXY_SERVER_MAXCONN, /* the server max connections */
2858 EXTCHK_HAPROXY_SERVER_CURCONN, /* the current number of connections on the server */
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002859
Christopher Faulet61cc8522020-04-20 14:54:42 +02002860 EXTCHK_SIZE
2861};
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002862
Christopher Faulet61cc8522020-04-20 14:54:42 +02002863const struct extcheck_env extcheck_envs[EXTCHK_SIZE] = {
2864 [EXTCHK_PATH] = { "PATH", EXTCHK_SIZE_EVAL_INIT },
2865 [EXTCHK_HAPROXY_PROXY_NAME] = { "HAPROXY_PROXY_NAME", EXTCHK_SIZE_EVAL_INIT },
2866 [EXTCHK_HAPROXY_PROXY_ID] = { "HAPROXY_PROXY_ID", EXTCHK_SIZE_EVAL_INIT },
2867 [EXTCHK_HAPROXY_PROXY_ADDR] = { "HAPROXY_PROXY_ADDR", EXTCHK_SIZE_EVAL_INIT },
2868 [EXTCHK_HAPROXY_PROXY_PORT] = { "HAPROXY_PROXY_PORT", EXTCHK_SIZE_EVAL_INIT },
2869 [EXTCHK_HAPROXY_SERVER_NAME] = { "HAPROXY_SERVER_NAME", EXTCHK_SIZE_EVAL_INIT },
2870 [EXTCHK_HAPROXY_SERVER_ID] = { "HAPROXY_SERVER_ID", EXTCHK_SIZE_EVAL_INIT },
2871 [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_ADDR },
2872 [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_UINT },
2873 [EXTCHK_HAPROXY_SERVER_MAXCONN] = { "HAPROXY_SERVER_MAXCONN", EXTCHK_SIZE_EVAL_INIT },
2874 [EXTCHK_HAPROXY_SERVER_CURCONN] = { "HAPROXY_SERVER_CURCONN", EXTCHK_SIZE_ULONG },
2875};
Christopher Fauleta202d1d2020-03-26 17:38:49 +01002876
Christopher Faulet61cc8522020-04-20 14:54:42 +02002877void block_sigchld(void)
2878{
2879 sigset_t set;
2880 sigemptyset(&set);
2881 sigaddset(&set, SIGCHLD);
2882 assert(ha_sigmask(SIG_BLOCK, &set, NULL) == 0);
2883}
Willy Tarreaube373152018-09-06 11:45:30 +02002884
Christopher Faulet61cc8522020-04-20 14:54:42 +02002885void unblock_sigchld(void)
2886{
2887 sigset_t set;
2888 sigemptyset(&set);
2889 sigaddset(&set, SIGCHLD);
2890 assert(ha_sigmask(SIG_UNBLOCK, &set, NULL) == 0);
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02002891}
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002892
Christopher Faulet61cc8522020-04-20 14:54:42 +02002893static struct pid_list *pid_list_add(pid_t pid, struct task *t)
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02002894{
Christopher Faulet61cc8522020-04-20 14:54:42 +02002895 struct pid_list *elem;
2896 struct check *check = t->context;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002897
Christopher Faulet61cc8522020-04-20 14:54:42 +02002898 elem = pool_alloc(pool_head_pid_list);
2899 if (!elem)
2900 return NULL;
2901 elem->pid = pid;
2902 elem->t = t;
2903 elem->exited = 0;
2904 check->curpid = elem;
2905 LIST_INIT(&elem->list);
Gaetan Rivet08fdcb32020-02-28 11:04:21 +01002906
Christopher Faulet61cc8522020-04-20 14:54:42 +02002907 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
2908 LIST_ADD(&pid_list, &elem->list);
2909 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Faulet14cd3162020-04-16 14:50:06 +02002910
Christopher Faulet61cc8522020-04-20 14:54:42 +02002911 return elem;
2912}
Christopher Faulete5870d82020-04-15 11:32:03 +02002913
Christopher Faulet61cc8522020-04-20 14:54:42 +02002914static void pid_list_del(struct pid_list *elem)
2915{
2916 struct check *check;
Christopher Faulete5870d82020-04-15 11:32:03 +02002917
Christopher Faulet61cc8522020-04-20 14:54:42 +02002918 if (!elem)
2919 return;
Christopher Faulet14cd3162020-04-16 14:50:06 +02002920
Christopher Faulet61cc8522020-04-20 14:54:42 +02002921 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
2922 LIST_DEL(&elem->list);
2923 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Faulet14cd3162020-04-16 14:50:06 +02002924
Christopher Faulet61cc8522020-04-20 14:54:42 +02002925 if (!elem->exited)
2926 kill(elem->pid, SIGTERM);
Christopher Faulet14cd3162020-04-16 14:50:06 +02002927
Christopher Faulet61cc8522020-04-20 14:54:42 +02002928 check = elem->t->context;
2929 check->curpid = NULL;
2930 pool_free(pool_head_pid_list, elem);
2931}
Christopher Faulet14cd3162020-04-16 14:50:06 +02002932
Christopher Faulet61cc8522020-04-20 14:54:42 +02002933/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
2934static void pid_list_expire(pid_t pid, int status)
2935{
2936 struct pid_list *elem;
Christopher Faulete5870d82020-04-15 11:32:03 +02002937
Christopher Faulet61cc8522020-04-20 14:54:42 +02002938 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
2939 list_for_each_entry(elem, &pid_list, list) {
2940 if (elem->pid == pid) {
2941 elem->t->expire = now_ms;
2942 elem->status = status;
2943 elem->exited = 1;
2944 task_wakeup(elem->t, TASK_WOKEN_IO);
2945 break;
Christopher Faulete5870d82020-04-15 11:32:03 +02002946 }
Christopher Faulete5870d82020-04-15 11:32:03 +02002947 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02002948 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
2949}
Christopher Fauleta202d1d2020-03-26 17:38:49 +01002950
Christopher Faulet61cc8522020-04-20 14:54:42 +02002951static void sigchld_handler(struct sig_handler *sh)
2952{
2953 pid_t pid;
2954 int status;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002955
Christopher Faulet61cc8522020-04-20 14:54:42 +02002956 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
2957 pid_list_expire(pid, status);
2958}
Christopher Fauletf50f4e92020-03-30 19:52:29 +02002959
Christopher Faulet61cc8522020-04-20 14:54:42 +02002960static int init_pid_list(void)
2961{
2962 if (pool_head_pid_list != NULL)
2963 /* Nothing to do */
2964 return 0;
2965
2966 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
2967 ha_alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
2968 strerror(errno));
2969 return 1;
Christopher Faulet14cd3162020-04-16 14:50:06 +02002970 }
Christopher Faulet14cd3162020-04-16 14:50:06 +02002971
Christopher Faulet61cc8522020-04-20 14:54:42 +02002972 pool_head_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
2973 if (pool_head_pid_list == NULL) {
2974 ha_alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
2975 strerror(errno));
2976 return 1;
2977 }
Christopher Faulete5870d82020-04-15 11:32:03 +02002978
Christopher Faulet61cc8522020-04-20 14:54:42 +02002979 return 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02002980}
2981
Christopher Faulet61cc8522020-04-20 14:54:42 +02002982/* helper macro to set an environment variable and jump to a specific label on failure. */
2983#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Christopher Fauletf9585d82020-04-16 13:25:58 +02002984
Christopher Faulet61cc8522020-04-20 14:54:42 +02002985/*
2986 * helper function to allocate enough memory to store an environment variable.
2987 * It will also check that the environment variable is updatable, and silently
2988 * fail if not.
2989 */
2990static int extchk_setenv(struct check *check, int idx, const char *value)
2991{
2992 int len, ret;
2993 char *envname;
2994 int vmaxlen;
Christopher Fauletf9585d82020-04-16 13:25:58 +02002995
Christopher Faulet61cc8522020-04-20 14:54:42 +02002996 if (idx < 0 || idx >= EXTCHK_SIZE) {
2997 ha_alert("Illegal environment variable index %d. Aborting.\n", idx);
2998 return 1;
2999 }
Christopher Fauletf9585d82020-04-16 13:25:58 +02003000
Christopher Faulet61cc8522020-04-20 14:54:42 +02003001 envname = extcheck_envs[idx].name;
3002 vmaxlen = extcheck_envs[idx].vmaxlen;
Christopher Fauletf9585d82020-04-16 13:25:58 +02003003
Christopher Faulet61cc8522020-04-20 14:54:42 +02003004 /* Check if the environment variable is already set, and silently reject
3005 * the update if this one is not updatable. */
3006 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
3007 return 0;
Christopher Fauletf9585d82020-04-16 13:25:58 +02003008
Christopher Faulet61cc8522020-04-20 14:54:42 +02003009 /* Instead of sending NOT_USED, sending an empty value is preferable */
3010 if (strcmp(value, "NOT_USED") == 0) {
3011 value = "";
Christopher Fauletf9585d82020-04-16 13:25:58 +02003012 }
3013
Christopher Faulet61cc8522020-04-20 14:54:42 +02003014 len = strlen(envname) + 1;
3015 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
3016 len += strlen(value);
3017 else
3018 len += vmaxlen;
Christopher Fauletf9585d82020-04-16 13:25:58 +02003019
Christopher Faulet61cc8522020-04-20 14:54:42 +02003020 if (!check->envp[idx])
3021 check->envp[idx] = malloc(len + 1);
Christopher Fauletf9585d82020-04-16 13:25:58 +02003022
Christopher Faulet61cc8522020-04-20 14:54:42 +02003023 if (!check->envp[idx]) {
3024 ha_alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
3025 return 1;
3026 }
3027 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
3028 if (ret < 0) {
3029 ha_alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
3030 return 1;
3031 }
3032 else if (ret > len) {
3033 ha_alert("Environment variable '%s' was truncated. Aborting.\n", envname);
3034 return 1;
3035 }
3036 return 0;
Christopher Fauletf9585d82020-04-16 13:25:58 +02003037}
3038
Christopher Faulet61cc8522020-04-20 14:54:42 +02003039static int prepare_external_check(struct check *check)
Christopher Faulete5870d82020-04-15 11:32:03 +02003040{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003041 struct server *s = check->server;
3042 struct proxy *px = s->proxy;
3043 struct listener *listener = NULL, *l;
3044 int i;
3045 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
3046 char buf[256];
Christopher Faulete5870d82020-04-15 11:32:03 +02003047
Christopher Faulet61cc8522020-04-20 14:54:42 +02003048 list_for_each_entry(l, &px->conf.listeners, by_fe)
3049 /* Use the first INET, INET6 or UNIX listener */
3050 if (l->addr.ss_family == AF_INET ||
3051 l->addr.ss_family == AF_INET6 ||
3052 l->addr.ss_family == AF_UNIX) {
3053 listener = l;
3054 break;
3055 }
Christopher Faulete5870d82020-04-15 11:32:03 +02003056
Christopher Faulet61cc8522020-04-20 14:54:42 +02003057 check->curpid = NULL;
3058 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
3059 if (!check->envp) {
3060 ha_alert("Failed to allocate memory for environment variables. Aborting\n");
3061 goto err;
Christopher Faulete5870d82020-04-15 11:32:03 +02003062 }
3063
Christopher Faulet61cc8522020-04-20 14:54:42 +02003064 check->argv = calloc(6, sizeof(char *));
3065 if (!check->argv) {
3066 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
3067 goto err;
Christopher Faulet14cd3162020-04-16 14:50:06 +02003068 }
3069
Christopher Faulet61cc8522020-04-20 14:54:42 +02003070 check->argv[0] = px->check_command;
Christopher Faulete5870d82020-04-15 11:32:03 +02003071
Christopher Faulet61cc8522020-04-20 14:54:42 +02003072 if (!listener) {
3073 check->argv[1] = strdup("NOT_USED");
3074 check->argv[2] = strdup("NOT_USED");
Christopher Faulete5870d82020-04-15 11:32:03 +02003075 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003076 else if (listener->addr.ss_family == AF_INET ||
3077 listener->addr.ss_family == AF_INET6) {
3078 addr_to_str(&listener->addr, buf, sizeof(buf));
3079 check->argv[1] = strdup(buf);
3080 port_to_str(&listener->addr, buf, sizeof(buf));
3081 check->argv[2] = strdup(buf);
3082 }
3083 else if (listener->addr.ss_family == AF_UNIX) {
3084 const struct sockaddr_un *un;
Christopher Faulete5870d82020-04-15 11:32:03 +02003085
Christopher Faulet61cc8522020-04-20 14:54:42 +02003086 un = (struct sockaddr_un *)&listener->addr;
3087 check->argv[1] = strdup(un->sun_path);
3088 check->argv[2] = strdup("NOT_USED");
3089 }
3090 else {
3091 ha_alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
3092 goto err;
3093 }
Christopher Faulet14cd3162020-04-16 14:50:06 +02003094
Christopher Faulet61cc8522020-04-20 14:54:42 +02003095 if (!check->argv[1] || !check->argv[2]) {
3096 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
3097 goto err;
3098 }
Christopher Faulet14cd3162020-04-16 14:50:06 +02003099
Christopher Faulet61cc8522020-04-20 14:54:42 +02003100 check->argv[3] = calloc(EXTCHK_SIZE_ADDR, sizeof(*check->argv[3]));
3101 check->argv[4] = calloc(EXTCHK_SIZE_UINT, sizeof(*check->argv[4]));
3102 if (!check->argv[3] || !check->argv[4]) {
3103 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
3104 goto err;
3105 }
Christopher Faulet14cd3162020-04-16 14:50:06 +02003106
Christopher Faulet61cc8522020-04-20 14:54:42 +02003107 addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR);
3108 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
3109 snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port);
Christopher Faulete5870d82020-04-15 11:32:03 +02003110
Christopher Faulet61cc8522020-04-20 14:54:42 +02003111 for (i = 0; i < 5; i++) {
3112 if (!check->argv[i]) {
3113 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
3114 goto err;
Christopher Faulete5870d82020-04-15 11:32:03 +02003115 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003116 }
Christopher Faulete5870d82020-04-15 11:32:03 +02003117
Christopher Faulet61cc8522020-04-20 14:54:42 +02003118 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
3119 /* Add proxy environment variables */
3120 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
3121 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
3122 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
3123 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
3124 /* Add server environment variables */
3125 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
3126 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
3127 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
3128 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
3129 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
3130 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
Christopher Faulete5870d82020-04-15 11:32:03 +02003131
Christopher Faulet61cc8522020-04-20 14:54:42 +02003132 /* Ensure that we don't leave any hole in check->envp */
3133 for (i = 0; i < EXTCHK_SIZE; i++)
3134 if (!check->envp[i])
3135 EXTCHK_SETENV(check, i, "", err);
Christopher Faulete5870d82020-04-15 11:32:03 +02003136
Christopher Faulet61cc8522020-04-20 14:54:42 +02003137 return 1;
3138err:
3139 if (check->envp) {
3140 for (i = 0; i < EXTCHK_SIZE; i++)
3141 free(check->envp[i]);
3142 free(check->envp);
3143 check->envp = NULL;
Christopher Faulete5870d82020-04-15 11:32:03 +02003144 }
3145
Christopher Faulet61cc8522020-04-20 14:54:42 +02003146 if (check->argv) {
3147 for (i = 1; i < 5; i++)
3148 free(check->argv[i]);
3149 free(check->argv);
3150 check->argv = NULL;
Christopher Faulete5870d82020-04-15 11:32:03 +02003151 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003152 return 0;
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003153}
Gaetan Rivetf8ba6772020-02-07 15:37:17 +01003154
Christopher Faulet61cc8522020-04-20 14:54:42 +02003155/*
3156 * establish a server health-check that makes use of a process.
3157 *
3158 * It can return one of :
3159 * - SF_ERR_NONE if everything's OK
3160 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
3161 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
3162 *
3163 * Blocks and then unblocks SIGCHLD
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003164 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02003165static int connect_proc_chk(struct task *t)
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003166{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003167 char buf[256];
3168 struct check *check = t->context;
3169 struct server *s = check->server;
3170 struct proxy *px = s->proxy;
3171 int status;
3172 pid_t pid;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003173
Christopher Faulet61cc8522020-04-20 14:54:42 +02003174 status = SF_ERR_RESOURCE;
Willy Tarreauf2c87352015-05-13 12:08:21 +02003175
Christopher Faulet61cc8522020-04-20 14:54:42 +02003176 block_sigchld();
Willy Tarreau7df8ca62019-07-15 10:57:51 +02003177
Christopher Faulet61cc8522020-04-20 14:54:42 +02003178 pid = fork();
3179 if (pid < 0) {
3180 ha_alert("Failed to fork process for external health check%s: %s. Aborting.\n",
3181 (global.tune.options & GTUNE_INSECURE_FORK) ?
3182 "" : " (likely caused by missing 'insecure-fork-wanted')",
3183 strerror(errno));
3184 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003185 goto out;
3186 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003187 if (pid == 0) {
3188 /* Child */
3189 extern char **environ;
3190 struct rlimit limit;
3191 int fd;
Gaetan Rivet48219dc2020-02-21 18:41:28 +01003192
Christopher Faulet61cc8522020-04-20 14:54:42 +02003193 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
3194 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003195
Christopher Faulet61cc8522020-04-20 14:54:42 +02003196 my_closefrom(fd);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003197
Christopher Faulet61cc8522020-04-20 14:54:42 +02003198 /* restore the initial FD limits */
3199 limit.rlim_cur = rlim_fd_cur_at_boot;
3200 limit.rlim_max = rlim_fd_max_at_boot;
3201 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
3202 getrlimit(RLIMIT_NOFILE, &limit);
3203 ha_warning("External check: failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
3204 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
3205 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
3206 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003207
Christopher Faulet61cc8522020-04-20 14:54:42 +02003208 environ = check->envp;
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003209
Christopher Faulet61cc8522020-04-20 14:54:42 +02003210 /* Update some environment variables and command args: curconn, server addr and server port */
3211 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003212
Christopher Faulet61cc8522020-04-20 14:54:42 +02003213 addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR);
3214 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3]);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003215
Christopher Faulet61cc8522020-04-20 14:54:42 +02003216 *check->argv[4] = 0;
3217 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
3218 snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port);
3219 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4]);
Gaetan Rivet0c39ecc2020-02-24 17:34:11 +01003220
Christopher Faulet61cc8522020-04-20 14:54:42 +02003221 haproxy_unblock_signals();
3222 execvp(px->check_command, check->argv);
3223 ha_alert("Failed to exec process for external health check: %s. Aborting.\n",
3224 strerror(errno));
3225 exit(-1);
Gaetan Rivet0c39ecc2020-02-24 17:34:11 +01003226 }
3227
Christopher Faulet61cc8522020-04-20 14:54:42 +02003228 /* Parent */
3229 if (check->result == CHK_RES_UNKNOWN) {
3230 if (pid_list_add(pid, t) != NULL) {
3231 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
3232
3233 if (px->timeout.check && px->timeout.connect) {
3234 int t_con = tick_add(now_ms, px->timeout.connect);
3235 t->expire = tick_first(t->expire, t_con);
3236 }
3237 status = SF_ERR_NONE;
3238 goto out;
3239 }
3240 else {
3241 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
3242 }
3243 kill(pid, SIGTERM); /* process creation error */
3244 }
3245 else
3246 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
3247
3248out:
3249 unblock_sigchld();
3250 return status;
Gaetan Rivet0c39ecc2020-02-24 17:34:11 +01003251}
3252
Christopher Faulet61cc8522020-04-20 14:54:42 +02003253/*
3254 * manages a server health-check that uses an external process. Returns
3255 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003256 *
3257 * Please do NOT place any return statement in this function and only leave
Christopher Faulet61cc8522020-04-20 14:54:42 +02003258 * via the out_unlock label.
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003259 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02003260static struct task *process_chk_proc(struct task *t, void *context, unsigned short state)
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003261{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003262 struct check *check = context;
3263 struct server *s = check->server;
3264 int rv;
3265 int ret;
3266 int expired = tick_is_expired(t->expire, now_ms);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003267
Christopher Faulet61cc8522020-04-20 14:54:42 +02003268 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
3269 if (!(check->state & CHK_ST_INPROGRESS)) {
3270 /* no check currently running */
3271 if (!expired) /* woke up too early */
3272 goto out_unlock;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003273
Christopher Faulet61cc8522020-04-20 14:54:42 +02003274 /* we don't send any health-checks when the proxy is
3275 * stopped, the server should not be checked or the check
3276 * is disabled.
3277 */
3278 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
3279 s->proxy->state == PR_STSTOPPED)
3280 goto reschedule;
Gaetan Rivetb616add2020-02-07 15:37:17 +01003281
Christopher Faulet61cc8522020-04-20 14:54:42 +02003282 /* we'll initiate a new check */
3283 set_server_check_status(check, HCHK_STATUS_START, NULL);
Christopher Faulet370e0f12020-04-16 09:52:42 +02003284
Christopher Faulet61cc8522020-04-20 14:54:42 +02003285 check->state |= CHK_ST_INPROGRESS;
3286
3287 ret = connect_proc_chk(t);
3288 if (ret == SF_ERR_NONE) {
3289 /* the process was forked, we allow up to min(inter,
3290 * timeout.connect) for it to report its status, but
3291 * only when timeout.check is set as it may be to short
3292 * for a full check otherwise.
3293 */
3294 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
3295
3296 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
3297 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
3298 t->expire = tick_first(t->expire, t_con);
Christopher Faulet370e0f12020-04-16 09:52:42 +02003299 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003300 task_set_affinity(t, tid_bit);
3301 goto reschedule;
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +02003302 }
Gaetan Rivetefab6c62020-02-07 15:37:17 +01003303
Christopher Faulet61cc8522020-04-20 14:54:42 +02003304 /* here, we failed to start the check */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003305
Christopher Faulet61cc8522020-04-20 14:54:42 +02003306 check->state &= ~CHK_ST_INPROGRESS;
3307 check_notify_failure(check);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003308
Christopher Faulet61cc8522020-04-20 14:54:42 +02003309 /* we allow up to min(inter, timeout.connect) for a connection
3310 * to establish but only when timeout.check is set
3311 * as it may be to short for a full check otherwise
3312 */
3313 while (tick_is_expired(t->expire, now_ms)) {
3314 int t_con;
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003315
Christopher Faulet61cc8522020-04-20 14:54:42 +02003316 t_con = tick_add(t->expire, s->proxy->timeout.connect);
3317 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003318
Christopher Faulet61cc8522020-04-20 14:54:42 +02003319 if (s->proxy->timeout.check)
3320 t->expire = tick_first(t->expire, t_con);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003321 }
Gaetan Rivet05d692d2020-02-14 17:42:54 +01003322 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003323 else {
3324 /* there was a test running.
3325 * First, let's check whether there was an uncaught error,
3326 * which can happen on connect timeout or error.
3327 */
3328 if (check->result == CHK_RES_UNKNOWN) {
3329 /* good connection is enough for pure TCP check */
3330 struct pid_list *elem = check->curpid;
3331 int status = HCHK_STATUS_UNKNOWN;
Christopher Faulet370e0f12020-04-16 09:52:42 +02003332
Christopher Faulet61cc8522020-04-20 14:54:42 +02003333 if (elem->exited) {
3334 status = elem->status; /* Save in case the process exits between use below */
3335 if (!WIFEXITED(status))
3336 check->code = -1;
3337 else
3338 check->code = WEXITSTATUS(status);
3339 if (!WIFEXITED(status) || WEXITSTATUS(status))
3340 status = HCHK_STATUS_PROCERR;
3341 else
3342 status = HCHK_STATUS_PROCOK;
3343 } else if (expired) {
3344 status = HCHK_STATUS_PROCTOUT;
3345 ha_warning("kill %d\n", (int)elem->pid);
3346 kill(elem->pid, SIGTERM);
3347 }
3348 set_server_check_status(check, status, NULL);
3349 }
Willy Tarreauf2c87352015-05-13 12:08:21 +02003350
Christopher Faulet61cc8522020-04-20 14:54:42 +02003351 if (check->result == CHK_RES_FAILED) {
3352 /* a failure or timeout detected */
3353 check_notify_failure(check);
3354 }
3355 else if (check->result == CHK_RES_CONDPASS) {
3356 /* check is OK but asks for stopping mode */
3357 check_notify_stopping(check);
3358 }
3359 else if (check->result == CHK_RES_PASSED) {
3360 /* a success was detected */
3361 check_notify_success(check);
3362 }
3363 task_set_affinity(t, 1);
3364 check->state &= ~CHK_ST_INPROGRESS;
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003365
Christopher Faulet61cc8522020-04-20 14:54:42 +02003366 pid_list_del(check->curpid);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003367
Christopher Faulet61cc8522020-04-20 14:54:42 +02003368 rv = 0;
3369 if (global.spread_checks > 0) {
3370 rv = srv_getinter(check) * global.spread_checks / 100;
3371 rv -= (int) (2 * rv * (ha_random32() / 4294967295.0));
3372 }
3373 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
3374 }
Gaetan Rivet0c39ecc2020-02-24 17:34:11 +01003375
Christopher Faulet61cc8522020-04-20 14:54:42 +02003376 reschedule:
3377 while (tick_is_expired(t->expire, now_ms))
3378 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Christopher Faulete5870d82020-04-15 11:32:03 +02003379
Christopher Faulet61cc8522020-04-20 14:54:42 +02003380 out_unlock:
3381 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
3382 return t;
3383}
Baptiste Assmann248f1172018-03-01 21:49:01 +01003384
Baptiste Assmann248f1172018-03-01 21:49:01 +01003385
Christopher Faulet61cc8522020-04-20 14:54:42 +02003386/**************************************************************************/
3387/***************** Health-checks based on connections *********************/
3388/**************************************************************************/
3389/* This function is used only for server health-checks. It handles connection
3390 * status updates including errors. If necessary, it wakes the check task up.
3391 * It returns 0 on normal cases, <0 if at least one close() has happened on the
3392 * connection (eg: reconnect). It relies on tcpcheck_main().
3393 */
3394static int wake_srv_chk(struct conn_stream *cs)
3395{
3396 struct connection *conn = cs->conn;
3397 struct check *check = cs->data;
3398 struct email_alertq *q = container_of(check, typeof(*q), check);
3399 int ret = 0;
Christopher Fauletdf38f882020-04-07 16:04:38 +02003400
Christopher Faulet61cc8522020-04-20 14:54:42 +02003401 if (check->server)
3402 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
3403 else
3404 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulete5870d82020-04-15 11:32:03 +02003405
Christopher Faulet61cc8522020-04-20 14:54:42 +02003406 /* we may have to make progress on the TCP checks */
3407 ret = tcpcheck_main(check);
Christopher Fauletdf38f882020-04-07 16:04:38 +02003408
Christopher Faulet61cc8522020-04-20 14:54:42 +02003409 cs = check->cs;
3410 conn = cs->conn;
Christopher Fauletdf38f882020-04-07 16:04:38 +02003411
Christopher Faulet61cc8522020-04-20 14:54:42 +02003412 if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) {
3413 /* We may get error reports bypassing the I/O handlers, typically
3414 * the case when sending a pure TCP check which fails, then the I/O
3415 * handlers above are not called. This is completely handled by the
3416 * main processing task so let's simply wake it up. If we get here,
3417 * we expect errno to still be valid.
3418 */
3419 chk_report_conn_err(check, errno, 0);
3420 task_wakeup(check->task, TASK_WOKEN_IO);
3421 }
3422
3423 if (check->result != CHK_RES_UNKNOWN) {
3424 /* Check complete or aborted. If connection not yet closed do it
3425 * now and wake the check task up to be sure the result is
3426 * handled ASAP. */
3427 conn_sock_drain(conn);
3428 cs_close(cs);
3429 ret = -1;
3430 /* We may have been scheduled to run, and the
3431 * I/O handler expects to have a cs, so remove
3432 * the tasklet
3433 */
3434 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
3435 task_wakeup(check->task, TASK_WOKEN_IO);
Christopher Fauletbe52b4d2020-04-01 16:30:22 +02003436 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003437
3438 if (check->server)
3439 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Christopher Fauletec07e382020-04-07 14:56:26 +02003440 else
Christopher Faulet61cc8522020-04-20 14:54:42 +02003441 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003442
Christopher Faulet61cc8522020-04-20 14:54:42 +02003443 /* if a connection got replaced, we must absolutely prevent the connection
3444 * handler from touching its fd, and perform the FD polling updates ourselves
3445 */
3446 if (ret < 0)
3447 conn_cond_update_polling(conn);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003448
Christopher Faulet61cc8522020-04-20 14:54:42 +02003449 return ret;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003450}
3451
Christopher Faulet61cc8522020-04-20 14:54:42 +02003452/* This function checks if any I/O is wanted, and if so, attempts to do so */
3453static struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned short state)
Simon Hormanb1900d52015-01-30 11:22:54 +09003454{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003455 struct check *check = ctx;
3456 struct conn_stream *cs = check->cs;
3457 struct email_alertq *q = container_of(check, typeof(*q), check);
3458 int ret = 0;
Simon Hormanb1900d52015-01-30 11:22:54 +09003459
Christopher Faulet61cc8522020-04-20 14:54:42 +02003460 if (!(check->wait_list.events & SUB_RETRY_SEND))
3461 ret = wake_srv_chk(cs);
3462 if (ret == 0 && !(check->wait_list.events & SUB_RETRY_RECV)) {
3463 if (check->server)
3464 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
3465 else
3466 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Hormanb1900d52015-01-30 11:22:54 +09003467
Christopher Faulet61cc8522020-04-20 14:54:42 +02003468 if (unlikely(check->result == CHK_RES_FAILED)) {
3469 /* collect possible new errors */
3470 if (cs->conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
3471 chk_report_conn_err(check, 0, 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003472
Christopher Faulet61cc8522020-04-20 14:54:42 +02003473 /* Reset the check buffer... */
3474 b_reset(&check->bi);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003475
Christopher Faulet61cc8522020-04-20 14:54:42 +02003476 /* Close the connection... We still attempt to nicely close if,
3477 * for instance, SSL needs to send a "close notify." Later, we perform
3478 * a hard close and reset the connection if some data are pending,
3479 * otherwise we end up with many TIME_WAITs and eat all the source port
3480 * range quickly. To avoid sending RSTs all the time, we first try to
3481 * drain pending data.
3482 */
3483 /* Call cs_shutr() first, to add the CO_FL_SOCK_RD_SH flag on the
3484 * connection, to make sure cs_shutw() will not lead to a shutdown()
3485 * that would provoke TIME_WAITs.
3486 */
3487 cs_shutr(cs, CS_SHR_DRAIN);
3488 cs_shutw(cs, CS_SHW_NORMAL);
Simon Hormanb1900d52015-01-30 11:22:54 +09003489
Christopher Faulet61cc8522020-04-20 14:54:42 +02003490 /* OK, let's not stay here forever */
3491 if (check->result == CHK_RES_FAILED)
3492 cs->conn->flags |= CO_FL_ERROR;
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003493
Christopher Faulet61cc8522020-04-20 14:54:42 +02003494 task_wakeup(t, TASK_WOKEN_IO);
3495 }
3496
3497 if (check->server)
3498 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
3499 else
3500 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet23d86d12018-01-25 11:36:35 +01003501 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003502 return NULL;
Simon Hormanbfb5d332015-01-30 11:22:55 +09003503}
3504
Christopher Faulet61cc8522020-04-20 14:54:42 +02003505/* manages a server health-check that uses a connection. Returns
3506 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
3507 *
3508 * Please do NOT place any return statement in this function and only leave
3509 * via the out_unlock label.
3510 */
3511static struct task *process_chk_conn(struct task *t, void *context, unsigned short state)
Christopher Fauletfd6c2292020-03-25 18:20:15 +01003512{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003513 struct check *check = context;
3514 struct proxy *proxy = check->proxy;
3515 struct conn_stream *cs = check->cs;
3516 struct connection *conn = cs_conn(cs);
3517 int rv;
3518 int expired = tick_is_expired(t->expire, now_ms);
Christopher Fauletf50f4e92020-03-30 19:52:29 +02003519
Christopher Faulet61cc8522020-04-20 14:54:42 +02003520 if (check->server)
3521 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
3522 if (!(check->state & CHK_ST_INPROGRESS)) {
3523 /* no check currently running */
3524 if (!expired) /* woke up too early */
3525 goto out_unlock;
Christopher Faulete5870d82020-04-15 11:32:03 +02003526
Christopher Faulet61cc8522020-04-20 14:54:42 +02003527 /* we don't send any health-checks when the proxy is
3528 * stopped, the server should not be checked or the check
3529 * is disabled.
3530 */
3531 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
3532 proxy->state == PR_STSTOPPED)
3533 goto reschedule;
Christopher Faulete5870d82020-04-15 11:32:03 +02003534
Christopher Faulet61cc8522020-04-20 14:54:42 +02003535 /* we'll initiate a new check */
3536 set_server_check_status(check, HCHK_STATUS_START, NULL);
Christopher Faulete5870d82020-04-15 11:32:03 +02003537
Christopher Faulet61cc8522020-04-20 14:54:42 +02003538 check->state |= CHK_ST_INPROGRESS;
3539 b_reset(&check->bi);
3540 b_reset(&check->bo);
Christopher Faulete5870d82020-04-15 11:32:03 +02003541
Christopher Faulet61cc8522020-04-20 14:54:42 +02003542 task_set_affinity(t, tid_bit);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003543
Christopher Faulet99ff1052020-05-25 07:32:01 +02003544 check->current_step = NULL;
3545 tcpcheck_main(check);
3546 goto out_unlock;
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003547 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003548 else {
3549 /* there was a test running.
3550 * First, let's check whether there was an uncaught error,
3551 * which can happen on connect timeout or error.
3552 */
3553 if (check->result == CHK_RES_UNKNOWN) {
3554 if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) {
3555 chk_report_conn_err(check, 0, expired);
3556 }
3557 else
3558 goto out_unlock; /* timeout not reached, wait again */
3559 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003560
Christopher Faulet61cc8522020-04-20 14:54:42 +02003561 /* check complete or aborted */
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003562
Christopher Faulet61cc8522020-04-20 14:54:42 +02003563 check->current_step = NULL;
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003564
Christopher Faulet61cc8522020-04-20 14:54:42 +02003565 if (conn && conn->xprt) {
3566 /* The check was aborted and the connection was not yet closed.
3567 * This can happen upon timeout, or when an external event such
3568 * as a failed response coupled with "observe layer7" caused the
3569 * server state to be suddenly changed.
3570 */
3571 conn_sock_drain(conn);
3572 cs_close(cs);
3573 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003574
Christopher Faulet61cc8522020-04-20 14:54:42 +02003575 if (cs) {
3576 if (check->wait_list.events)
Christopher Faulet0b9376a2020-04-24 16:20:49 +02003577 cs->conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list);
Christopher Faulet61cc8522020-04-20 14:54:42 +02003578 /* We may have been scheduled to run, and the
3579 * I/O handler expects to have a cs, so remove
3580 * the tasklet
3581 */
3582 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
3583 cs_destroy(cs);
3584 cs = check->cs = NULL;
3585 conn = NULL;
3586 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003587
Christopher Fauletb693a0d2020-04-27 15:59:22 +02003588 if (check->sess != NULL) {
3589 vars_prune(&check->vars, check->sess, NULL);
3590 session_free(check->sess);
3591 check->sess = NULL;
3592 }
3593
Christopher Faulet61cc8522020-04-20 14:54:42 +02003594 if (check->server) {
3595 if (check->result == CHK_RES_FAILED) {
3596 /* a failure or timeout detected */
3597 check_notify_failure(check);
3598 }
3599 else if (check->result == CHK_RES_CONDPASS) {
3600 /* check is OK but asks for stopping mode */
3601 check_notify_stopping(check);
3602 }
3603 else if (check->result == CHK_RES_PASSED) {
3604 /* a success was detected */
3605 check_notify_success(check);
3606 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003607 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003608 task_set_affinity(t, MAX_THREADS_MASK);
3609 check->state &= ~CHK_ST_INPROGRESS;
3610
3611 if (check->server) {
3612 rv = 0;
3613 if (global.spread_checks > 0) {
3614 rv = srv_getinter(check) * global.spread_checks / 100;
3615 rv -= (int) (2 * rv * (ha_random32() / 4294967295.0));
3616 }
3617 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003618 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003619 }
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003620
Christopher Faulet61cc8522020-04-20 14:54:42 +02003621 reschedule:
3622 while (tick_is_expired(t->expire, now_ms))
3623 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
3624 out_unlock:
3625 if (check->server)
3626 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
3627 return t;
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003628}
3629
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003630
Christopher Faulet61cc8522020-04-20 14:54:42 +02003631/**************************************************************************/
3632/******************* Internals to parse tcp-check rules *******************/
3633/**************************************************************************/
3634struct action_kw_list tcp_check_keywords = {
3635 .list = LIST_HEAD_INIT(tcp_check_keywords.list),
3636};
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02003637
Christopher Faulet61cc8522020-04-20 14:54:42 +02003638/* Return the struct action_kw associated to a keyword */
3639static struct action_kw *action_kw_tcp_check_lookup(const char *kw)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003640{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003641 return action_lookup(&tcp_check_keywords.list, kw);
3642}
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003643
Christopher Faulet61cc8522020-04-20 14:54:42 +02003644static void action_kw_tcp_check_build_list(struct buffer *chk)
3645{
3646 action_build_list(&tcp_check_keywords.list, chk);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003647}
3648
Christopher Faulet61cc8522020-04-20 14:54:42 +02003649/* Creates a tcp-check rule resulting from parsing a custom keyword. NULL is
3650 * returned on error.
3651 */
3652static struct tcpcheck_rule *parse_tcpcheck_action(char **args, int cur_arg, struct proxy *px,
3653 struct list *rules, struct action_kw *kw,
3654 const char *file, int line, char **errmsg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003655{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003656 struct tcpcheck_rule *chk = NULL;
3657 struct act_rule *actrule = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003658
Christopher Faulet61cc8522020-04-20 14:54:42 +02003659 actrule = calloc(1, sizeof(*actrule));
3660 if (!actrule) {
3661 memprintf(errmsg, "out of memory");
3662 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003663 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003664 actrule->kw = kw;
3665 actrule->from = ACT_F_TCP_CHK;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003666
Christopher Faulet61cc8522020-04-20 14:54:42 +02003667 cur_arg++;
3668 if (kw->parse((const char **)args, &cur_arg, px, actrule, errmsg) == ACT_RET_PRS_ERR) {
3669 memprintf(errmsg, "'%s' : %s", kw->kw, *errmsg);
3670 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003671 }
3672
Christopher Faulet61cc8522020-04-20 14:54:42 +02003673 chk = calloc(1, sizeof(*chk));
3674 if (!chk) {
3675 memprintf(errmsg, "out of memory");
3676 goto error;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003677 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003678 chk->action = TCPCHK_ACT_ACTION_KW;
3679 chk->action_kw.rule = actrule;
3680 return chk;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003681
3682 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02003683 free(actrule);
3684 return NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003685}
3686
Christopher Faulet61cc8522020-04-20 14:54:42 +02003687/* Parses and creates a tcp-check connect or an http-check connect rule. NULL is
3688 * returned on error.
3689 */
3690static struct tcpcheck_rule *parse_tcpcheck_connect(char **args, int cur_arg, struct proxy *px, struct list *rules,
3691 const char *file, int line, char **errmsg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003692{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003693 struct tcpcheck_rule *chk = NULL;
3694 struct sockaddr_storage *sk = NULL;
3695 char *comment = NULL, *sni = NULL, *alpn = NULL;
3696 struct sample_expr *port_expr = NULL;
Christopher Fauletedc6ed92020-04-23 16:27:59 +02003697 const struct mux_proto_list *mux_proto = NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003698 unsigned short conn_opts = 0;
3699 long port = 0;
3700 int alpn_len = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003701
Christopher Faulet61cc8522020-04-20 14:54:42 +02003702 list_for_each_entry(chk, rules, list) {
3703 if (chk->action == TCPCHK_ACT_CONNECT)
3704 break;
3705 if (chk->action == TCPCHK_ACT_COMMENT ||
3706 chk->action == TCPCHK_ACT_ACTION_KW ||
3707 (chk->action == TCPCHK_ACT_SEND && (chk->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)))
3708 continue;
Gaetan Rivetb616add2020-02-07 15:37:17 +01003709
Christopher Faulet61cc8522020-04-20 14:54:42 +02003710 memprintf(errmsg, "first step MUST also be a 'connect', "
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003711 "optionally preceded by a 'set-var', an 'unset-var' or a 'comment', "
Christopher Faulet61cc8522020-04-20 14:54:42 +02003712 "when there is a 'connect' step in the tcp-check ruleset");
3713 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003714 }
3715
Christopher Faulet61cc8522020-04-20 14:54:42 +02003716 cur_arg++;
3717 while (*(args[cur_arg])) {
3718 if (strcmp(args[cur_arg], "default") == 0)
3719 conn_opts |= TCPCHK_OPT_DEFAULT_CONNECT;
3720 else if (strcmp(args[cur_arg], "addr") == 0) {
3721 int port1, port2;
3722 struct protocol *proto;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003723
Christopher Faulet61cc8522020-04-20 14:54:42 +02003724 if (!*(args[cur_arg+1])) {
3725 memprintf(errmsg, "'%s' expects <ipv4|ipv6> as argument.", args[cur_arg]);
3726 goto error;
3727 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003728
Christopher Faulet61cc8522020-04-20 14:54:42 +02003729 sk = str2sa_range(args[cur_arg+1], NULL, &port1, &port2, errmsg, NULL, NULL, 1);
3730 if (!sk) {
3731 memprintf(errmsg, "'%s' : %s.", args[cur_arg], *errmsg);
3732 goto error;
3733 }
Gaetan Rivet48219dc2020-02-21 18:41:28 +01003734
Christopher Faulet61cc8522020-04-20 14:54:42 +02003735 proto = protocol_by_family(sk->ss_family);
3736 if (!proto || !proto->connect) {
3737 memprintf(errmsg, "'%s' : connect() not supported for this address family.\n",
3738 args[cur_arg]);
3739 goto error;
3740 }
Gaetan Rivet48219dc2020-02-21 18:41:28 +01003741
Christopher Faulet61cc8522020-04-20 14:54:42 +02003742 if (port1 != port2) {
3743 memprintf(errmsg, "'%s' : port ranges and offsets are not allowed in '%s'\n",
3744 args[cur_arg], args[cur_arg+1]);
3745 goto error;
3746 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003747
Christopher Faulet61cc8522020-04-20 14:54:42 +02003748 cur_arg++;
3749 }
3750 else if (strcmp(args[cur_arg], "port") == 0) {
3751 const char *p, *end;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003752
Christopher Faulet61cc8522020-04-20 14:54:42 +02003753 if (!*(args[cur_arg+1])) {
3754 memprintf(errmsg, "'%s' expects a port number or a sample expression as argument.", args[cur_arg]);
3755 goto error;
3756 }
3757 cur_arg++;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003758
Christopher Faulet61cc8522020-04-20 14:54:42 +02003759 port = 0;
3760 release_sample_expr(port_expr);
3761 p = args[cur_arg]; end = p + strlen(p);
3762 port = read_uint(&p, end);
3763 if (p != end) {
3764 int idx = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003765
Christopher Faulet61cc8522020-04-20 14:54:42 +02003766 px->conf.args.ctx = ARGC_SRV;
3767 port_expr = sample_parse_expr((char *[]){args[cur_arg], NULL}, &idx,
3768 file, line, errmsg, &px->conf.args, NULL);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003769
Christopher Faulet61cc8522020-04-20 14:54:42 +02003770 if (!port_expr) {
3771 memprintf(errmsg, "error detected while parsing port expression : %s", *errmsg);
3772 goto error;
3773 }
3774 if (!(port_expr->fetch->val & SMP_VAL_BE_CHK_RUL)) {
3775 memprintf(errmsg, "error detected while parsing port expression : "
3776 " fetch method '%s' extracts information from '%s', "
3777 "none of which is available here.\n",
3778 args[cur_arg], sample_src_names(port_expr->fetch->use));
3779 goto error;
3780 }
3781 px->http_needed |= !!(port_expr->fetch->use & SMP_USE_HTTP_ANY);
3782 }
3783 else if (port > 65535 || port < 1) {
3784 memprintf(errmsg, "expects a valid TCP port (from range 1 to 65535) or a sample expression, got %s.",
3785 args[cur_arg]);
3786 goto error;
3787 }
3788 }
Christopher Fauletedc6ed92020-04-23 16:27:59 +02003789 else if (strcmp(args[cur_arg], "proto") == 0) {
3790 if (!*(args[cur_arg+1])) {
3791 memprintf(errmsg, "'%s' expects a MUX protocol as argument.", args[cur_arg]);
3792 goto error;
3793 }
3794 mux_proto = get_mux_proto(ist2(args[cur_arg+1], strlen(args[cur_arg+1])));
3795 if (!mux_proto) {
3796 memprintf(errmsg, "'%s' : unknown MUX protocol '%s'.", args[cur_arg], args[cur_arg+1]);
3797 goto error;
3798 }
3799 cur_arg++;
3800 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003801 else if (strcmp(args[cur_arg], "comment") == 0) {
3802 if (!*(args[cur_arg+1])) {
3803 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
3804 goto error;
3805 }
3806 cur_arg++;
3807 free(comment);
3808 comment = strdup(args[cur_arg]);
3809 if (!comment) {
3810 memprintf(errmsg, "out of memory");
3811 goto error;
3812 }
3813 }
3814 else if (strcmp(args[cur_arg], "send-proxy") == 0)
3815 conn_opts |= TCPCHK_OPT_SEND_PROXY;
3816 else if (strcmp(args[cur_arg], "via-socks4") == 0)
3817 conn_opts |= TCPCHK_OPT_SOCKS4;
3818 else if (strcmp(args[cur_arg], "linger") == 0)
3819 conn_opts |= TCPCHK_OPT_LINGER;
3820#ifdef USE_OPENSSL
3821 else if (strcmp(args[cur_arg], "ssl") == 0) {
3822 px->options |= PR_O_TCPCHK_SSL;
3823 conn_opts |= TCPCHK_OPT_SSL;
3824 }
3825 else if (strcmp(args[cur_arg], "sni") == 0) {
3826 if (!*(args[cur_arg+1])) {
3827 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
3828 goto error;
3829 }
3830 cur_arg++;
3831 free(sni);
3832 sni = strdup(args[cur_arg]);
3833 if (!sni) {
3834 memprintf(errmsg, "out of memory");
3835 goto error;
3836 }
3837 }
3838 else if (strcmp(args[cur_arg], "alpn") == 0) {
3839#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
3840 free(alpn);
3841 if (ssl_sock_parse_alpn(args[cur_arg + 1], &alpn, &alpn_len, errmsg)) {
3842 memprintf(errmsg, "'%s' : %s", args[cur_arg], *errmsg);
3843 goto error;
3844 }
3845 cur_arg++;
3846#else
3847 memprintf(errmsg, "'%s' : library does not support TLS ALPN extension.", args[cur_arg]);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003848 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003849#endif
3850 }
3851#endif /* USE_OPENSSL */
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003852
Christopher Faulet61cc8522020-04-20 14:54:42 +02003853 else {
3854 memprintf(errmsg, "expects 'comment', 'port', 'addr', 'send-proxy'"
3855#ifdef USE_OPENSSL
3856 ", 'ssl', 'sni', 'alpn'"
3857#endif /* USE_OPENSSL */
3858 " or 'via-socks4', 'linger', 'default' but got '%s' as argument.",
3859 args[cur_arg]);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003860 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003861 }
3862 cur_arg++;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003863 }
3864
Christopher Faulet61cc8522020-04-20 14:54:42 +02003865 chk = calloc(1, sizeof(*chk));
3866 if (!chk) {
3867 memprintf(errmsg, "out of memory");
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003868 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003869 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003870 chk->action = TCPCHK_ACT_CONNECT;
3871 chk->comment = comment;
3872 chk->connect.port = port;
3873 chk->connect.options = conn_opts;
3874 chk->connect.sni = sni;
3875 chk->connect.alpn = alpn;
3876 chk->connect.alpn_len= alpn_len;
3877 chk->connect.port_expr= port_expr;
Christopher Fauletedc6ed92020-04-23 16:27:59 +02003878 chk->connect.mux_proto= mux_proto;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003879 if (sk)
3880 chk->connect.addr = *sk;
3881 return chk;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003882
Christopher Faulet61cc8522020-04-20 14:54:42 +02003883 error:
3884 free(alpn);
3885 free(sni);
3886 free(comment);
3887 release_sample_expr(port_expr);
3888 return NULL;
3889}
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003890
Christopher Faulet61cc8522020-04-20 14:54:42 +02003891/* Parses and creates a tcp-check send rule. NULL is returned on error */
3892static struct tcpcheck_rule *parse_tcpcheck_send(char **args, int cur_arg, struct proxy *px, struct list *rules,
3893 const char *file, int line, char **errmsg)
3894{
3895 struct tcpcheck_rule *chk = NULL;
3896 char *comment = NULL, *data = NULL;
3897 enum tcpcheck_send_type type = TCPCHK_SEND_UNDEF;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003898
Christopher Fauletb50b3e62020-05-05 18:43:43 +02003899 if (strcmp(args[cur_arg], "send-binary-lf") == 0)
3900 type = TCPCHK_SEND_BINARY_LF;
3901 else if (strcmp(args[cur_arg], "send-binary") == 0)
3902 type = TCPCHK_SEND_BINARY;
3903 else if (strcmp(args[cur_arg], "send-lf") == 0)
3904 type = TCPCHK_SEND_STRING_LF;
3905 else if (strcmp(args[cur_arg], "send") == 0)
3906 type = TCPCHK_SEND_STRING;
3907
Christopher Faulet61cc8522020-04-20 14:54:42 +02003908 if (!*(args[cur_arg+1])) {
3909 memprintf(errmsg, "'%s' expects a %s as argument",
3910 (type == TCPCHK_SEND_BINARY ? "binary string": "string"), args[cur_arg]);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003911 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003912 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003913
Christopher Faulet61cc8522020-04-20 14:54:42 +02003914 data = args[cur_arg+1];
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003915
Christopher Faulet61cc8522020-04-20 14:54:42 +02003916 cur_arg += 2;
3917 while (*(args[cur_arg])) {
3918 if (strcmp(args[cur_arg], "comment") == 0) {
3919 if (!*(args[cur_arg+1])) {
3920 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
3921 goto error;
3922 }
3923 cur_arg++;
3924 free(comment);
3925 comment = strdup(args[cur_arg]);
3926 if (!comment) {
3927 memprintf(errmsg, "out of memory");
3928 goto error;
3929 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003930 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003931 else {
Christopher Fauletb50b3e62020-05-05 18:43:43 +02003932 memprintf(errmsg, "expects 'comment' but got '%s' as argument.",
Christopher Faulet61cc8522020-04-20 14:54:42 +02003933 args[cur_arg]);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003934 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003935 }
3936 cur_arg++;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003937 }
3938
Christopher Faulet61cc8522020-04-20 14:54:42 +02003939 chk = calloc(1, sizeof(*chk));
3940 if (!chk) {
3941 memprintf(errmsg, "out of memory");
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003942 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003943 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003944 chk->action = TCPCHK_ACT_SEND;
3945 chk->comment = comment;
3946 chk->send.type = type;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003947
Christopher Faulet61cc8522020-04-20 14:54:42 +02003948 switch (chk->send.type) {
3949 case TCPCHK_SEND_STRING:
3950 chk->send.data = ist2(strdup(data), strlen(data));
3951 if (!isttest(chk->send.data)) {
3952 memprintf(errmsg, "out of memory");
3953 goto error;
3954 }
3955 break;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02003956 case TCPCHK_SEND_BINARY: {
Christopher Faulet9c2cb2d2020-04-28 16:40:41 +02003957 int len = chk->send.data.len;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02003958 if (parse_binary(data, &chk->send.data.ptr, &len, errmsg) == 0) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02003959 memprintf(errmsg, "'%s' invalid binary string (%s).\n", data, *errmsg);
3960 goto error;
3961 }
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02003962 chk->send.data.len = len;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003963 break;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02003964 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02003965 case TCPCHK_SEND_STRING_LF:
3966 case TCPCHK_SEND_BINARY_LF:
3967 LIST_INIT(&chk->send.fmt);
3968 px->conf.args.ctx = ARGC_SRV;
3969 if (!parse_logformat_string(data, px, &chk->send.fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
3970 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", data, *errmsg);
3971 goto error;
3972 }
3973 break;
3974 case TCPCHK_SEND_HTTP:
3975 case TCPCHK_SEND_UNDEF:
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003976 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003977 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003978
Christopher Faulet61cc8522020-04-20 14:54:42 +02003979 return chk;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003980
Christopher Faulet61cc8522020-04-20 14:54:42 +02003981 error:
3982 free(chk);
3983 free(comment);
3984 return NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003985}
3986
Christopher Faulet61cc8522020-04-20 14:54:42 +02003987/* Parses and creates a http-check send rule. NULL is returned on error */
3988static struct tcpcheck_rule *parse_tcpcheck_send_http(char **args, int cur_arg, struct proxy *px, struct list *rules,
3989 const char *file, int line, char **errmsg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003990{
Christopher Faulet61cc8522020-04-20 14:54:42 +02003991 struct tcpcheck_rule *chk = NULL;
3992 struct tcpcheck_http_hdr *hdr = NULL;
3993 struct http_hdr hdrs[global.tune.max_http_hdr];
3994 char *meth = NULL, *uri = NULL, *vsn = NULL;
3995 char *body = NULL, *comment = NULL;
3996 unsigned int flags = 0;
Christopher Faulet13ec87b2020-04-29 11:45:44 +02003997 int i = 0, host_hdr = -1;
Christopher Faulet61cc8522020-04-20 14:54:42 +02003998
3999 cur_arg++;
4000 while (*(args[cur_arg])) {
4001 if (strcmp(args[cur_arg], "meth") == 0) {
4002 if (!*(args[cur_arg+1])) {
4003 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
4004 goto error;
4005 }
4006 cur_arg++;
4007 meth = args[cur_arg];
4008 }
Christopher Faulet7c95f5f2020-05-06 15:06:34 +02004009 else if (strcmp(args[cur_arg], "uri") == 0 || strcmp(args[cur_arg], "uri-lf") == 0) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004010 if (!*(args[cur_arg+1])) {
4011 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
4012 goto error;
4013 }
Christopher Faulet7c95f5f2020-05-06 15:06:34 +02004014 flags &= ~TCPCHK_SND_HTTP_FL_URI_FMT;
4015 if (strcmp(args[cur_arg], "uri-lf") == 0)
4016 flags |= TCPCHK_SND_HTTP_FL_URI_FMT;
Christopher Faulet61cc8522020-04-20 14:54:42 +02004017 cur_arg++;
4018 uri = args[cur_arg];
Christopher Faulet61cc8522020-04-20 14:54:42 +02004019 }
Christopher Faulet907701b2020-04-28 09:37:00 +02004020 else if (strcmp(args[cur_arg], "ver") == 0) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004021 if (!*(args[cur_arg+1])) {
4022 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
4023 goto error;
4024 }
4025 cur_arg++;
4026 vsn = args[cur_arg];
4027 }
4028 else if (strcmp(args[cur_arg], "hdr") == 0) {
4029 if (!*args[cur_arg+1] || !*args[cur_arg+2]) {
4030 memprintf(errmsg, "'%s' expects <name> and <value> as arguments", args[cur_arg]);
4031 goto error;
4032 }
Christopher Faulet13ec87b2020-04-29 11:45:44 +02004033
4034 if (strcasecmp(args[cur_arg+1], "host") == 0) {
4035 if (host_hdr >= 0) {
4036 memprintf(errmsg, "'%s' header already defined (previous value is '%s')",
4037 args[cur_arg+1], istptr(hdrs[host_hdr].v));
4038 goto error;
4039 }
4040 host_hdr = i;
4041 }
Christopher Faulet7d765db2020-04-29 11:50:01 +02004042 else if (strcasecmp(args[cur_arg+1], "connection") == 0 ||
4043 strcasecmp(args[cur_arg+1], "content-length") == 0 ||
4044 strcasecmp(args[cur_arg+1], "transfer-encoding") == 0)
4045 goto skip_hdr;
Christopher Faulet13ec87b2020-04-29 11:45:44 +02004046
Christopher Faulet61cc8522020-04-20 14:54:42 +02004047 hdrs[i].n = ist2(args[cur_arg+1], strlen(args[cur_arg+1]));
4048 hdrs[i].v = ist2(args[cur_arg+2], strlen(args[cur_arg+2]));
4049 i++;
Christopher Faulet7d765db2020-04-29 11:50:01 +02004050 skip_hdr:
Christopher Faulet61cc8522020-04-20 14:54:42 +02004051 cur_arg += 2;
4052 }
Christopher Faulet574e7bd2020-05-06 15:38:58 +02004053 else if (strcmp(args[cur_arg], "body") == 0 || strcmp(args[cur_arg], "body-lf") == 0) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004054 if (!*(args[cur_arg+1])) {
4055 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
4056 goto error;
4057 }
Christopher Faulet574e7bd2020-05-06 15:38:58 +02004058 flags &= ~TCPCHK_SND_HTTP_FL_BODY_FMT;
4059 if (strcmp(args[cur_arg], "body-lf") == 0)
4060 flags |= TCPCHK_SND_HTTP_FL_BODY_FMT;
Christopher Faulet61cc8522020-04-20 14:54:42 +02004061 cur_arg++;
4062 body = args[cur_arg];
Christopher Faulet61cc8522020-04-20 14:54:42 +02004063 }
4064 else if (strcmp(args[cur_arg], "comment") == 0) {
4065 if (!*(args[cur_arg+1])) {
4066 memprintf(errmsg, "'%s' expects a string as argument.", args[cur_arg]);
4067 goto error;
4068 }
4069 cur_arg++;
4070 free(comment);
4071 comment = strdup(args[cur_arg]);
4072 if (!comment) {
4073 memprintf(errmsg, "out of memory");
4074 goto error;
4075 }
4076 }
4077 else {
Christopher Faulet574e7bd2020-05-06 15:38:58 +02004078 memprintf(errmsg, "expects 'comment', 'meth', 'uri', 'uri-lf', 'ver', 'hdr', 'body' or 'body-lf'"
Christopher Faulet7c95f5f2020-05-06 15:06:34 +02004079 " but got '%s' as argument.", args[cur_arg]);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004080 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004081 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004082 cur_arg++;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004083 }
4084
Christopher Faulet61cc8522020-04-20 14:54:42 +02004085 hdrs[i].n = hdrs[i].v = IST_NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004086
Christopher Faulet61cc8522020-04-20 14:54:42 +02004087 chk = calloc(1, sizeof(*chk));
4088 if (!chk) {
4089 memprintf(errmsg, "out of memory");
4090 goto error;
4091 }
4092 chk->action = TCPCHK_ACT_SEND;
4093 chk->comment = comment; comment = NULL;
4094 chk->send.type = TCPCHK_SEND_HTTP;
4095 chk->send.http.flags = flags;
4096 LIST_INIT(&chk->send.http.hdrs);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004097
Christopher Faulet61cc8522020-04-20 14:54:42 +02004098 if (meth) {
4099 chk->send.http.meth.meth = find_http_meth(meth, strlen(meth));
4100 chk->send.http.meth.str.area = strdup(meth);
4101 chk->send.http.meth.str.data = strlen(meth);
4102 if (!chk->send.http.meth.str.area) {
4103 memprintf(errmsg, "out of memory");
4104 goto error;
4105 }
4106 }
4107 if (uri) {
Christopher Faulet7c95f5f2020-05-06 15:06:34 +02004108 if (chk->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT) {
4109 LIST_INIT(&chk->send.http.uri_fmt);
4110 px->conf.args.ctx = ARGC_SRV;
4111 if (!parse_logformat_string(uri, px, &chk->send.http.uri_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4112 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", uri, *errmsg);
4113 goto error;
4114 }
4115 }
4116 else {
4117 chk->send.http.uri = ist2(strdup(uri), strlen(uri));
4118 if (!isttest(chk->send.http.uri)) {
4119 memprintf(errmsg, "out of memory");
4120 goto error;
4121 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004122 }
4123 }
4124 if (vsn) {
4125 chk->send.http.vsn = ist2(strdup(vsn), strlen(vsn));
4126 if (!isttest(chk->send.http.vsn)) {
4127 memprintf(errmsg, "out of memory");
4128 goto error;
4129 }
4130 }
Christopher Fauletb61caf42020-04-21 10:57:42 +02004131 for (i = 0; istlen(hdrs[i].n); i++) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004132 hdr = calloc(1, sizeof(*hdr));
4133 if (!hdr) {
4134 memprintf(errmsg, "out of memory");
4135 goto error;
4136 }
4137 LIST_INIT(&hdr->value);
Christopher Fauletb61caf42020-04-21 10:57:42 +02004138 hdr->name = istdup(hdrs[i].n);
4139 if (!isttest(hdr->name)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004140 memprintf(errmsg, "out of memory");
4141 goto error;
4142 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004143
Christopher Fauletb61caf42020-04-21 10:57:42 +02004144 ist0(hdrs[i].v);
4145 if (!parse_logformat_string(istptr(hdrs[i].v), px, &hdr->value, 0, SMP_VAL_BE_CHK_RUL, errmsg))
Christopher Faulet61cc8522020-04-20 14:54:42 +02004146 goto error;
4147 LIST_ADDQ(&chk->send.http.hdrs, &hdr->list);
4148 hdr = NULL;
4149 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004150
Christopher Faulet61cc8522020-04-20 14:54:42 +02004151 if (body) {
Christopher Faulet574e7bd2020-05-06 15:38:58 +02004152 if (chk->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT) {
4153 LIST_INIT(&chk->send.http.body_fmt);
4154 px->conf.args.ctx = ARGC_SRV;
4155 if (!parse_logformat_string(body, px, &chk->send.http.body_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4156 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", body, *errmsg);
4157 goto error;
4158 }
4159 }
4160 else {
4161 chk->send.http.body = ist2(strdup(body), strlen(body));
4162 if (!isttest(chk->send.http.body)) {
4163 memprintf(errmsg, "out of memory");
4164 goto error;
4165 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004166 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004167 }
4168
Christopher Faulet61cc8522020-04-20 14:54:42 +02004169 return chk;
4170
4171 error:
4172 free_tcpcheck_http_hdr(hdr);
4173 free_tcpcheck(chk, 0);
4174 free(comment);
4175 return NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09004176}
4177
Christopher Faulet61cc8522020-04-20 14:54:42 +02004178/* Parses and creates a http-check comment rule. NULL is returned on error */
4179static struct tcpcheck_rule *parse_tcpcheck_comment(char **args, int cur_arg, struct proxy *px, struct list *rules,
4180 const char *file, int line, char **errmsg)
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02004181{
Christopher Faulet61cc8522020-04-20 14:54:42 +02004182 struct tcpcheck_rule *chk = NULL;
4183 char *comment = NULL;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02004184
Christopher Faulet61cc8522020-04-20 14:54:42 +02004185 if (!*(args[cur_arg+1])) {
4186 memprintf(errmsg, "expects a string as argument");
4187 goto error;
4188 }
4189 cur_arg++;
4190 comment = strdup(args[cur_arg]);
4191 if (!comment) {
4192 memprintf(errmsg, "out of memory");
4193 goto error;
4194 }
Willy Tarreau04276f32017-01-06 17:41:29 +01004195
Christopher Faulet61cc8522020-04-20 14:54:42 +02004196 chk = calloc(1, sizeof(*chk));
4197 if (!chk) {
4198 memprintf(errmsg, "out of memory");
4199 goto error;
4200 }
4201 chk->action = TCPCHK_ACT_COMMENT;
4202 chk->comment = comment;
4203 return chk;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02004204
Christopher Faulet61cc8522020-04-20 14:54:42 +02004205 error:
4206 free(comment);
4207 return NULL;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02004208}
4209
Christopher Faulet61cc8522020-04-20 14:54:42 +02004210/* Parses and creates a tcp-check or an http-check expect rule. NULL is returned
4211 * on error. <proto> is set to the right protocol flags (covered by the
4212 * TCPCHK_RULES_PROTO_CHK mask).
4213 */
4214static struct tcpcheck_rule *parse_tcpcheck_expect(char **args, int cur_arg, struct proxy *px,
4215 struct list *rules, unsigned int proto,
4216 const char *file, int line, char **errmsg)
Christopher Fauleta202d1d2020-03-26 17:38:49 +01004217{
Christopher Faulet61cc8522020-04-20 14:54:42 +02004218 struct tcpcheck_rule *prev_check, *chk = NULL;
4219 struct sample_expr *status_expr = NULL;
Christopher Faulet39708192020-05-05 10:47:36 +02004220 char *on_success_msg, *on_error_msg, *comment, *pattern, *npat, *vpat;
Christopher Faulet61cc8522020-04-20 14:54:42 +02004221 enum tcpcheck_expect_type type = TCPCHK_EXPECT_UNDEF;
Christopher Faulet1941bab2020-05-05 07:55:50 +02004222 enum healthcheck_status ok_st = HCHK_STATUS_UNKNOWN;
4223 enum healthcheck_status err_st = HCHK_STATUS_UNKNOWN;
4224 enum healthcheck_status tout_st = HCHK_STATUS_UNKNOWN;
Christopher Faulet39708192020-05-05 10:47:36 +02004225 unsigned int flags = 0;
Christopher Faulet61cc8522020-04-20 14:54:42 +02004226 long min_recv = -1;
Christopher Faulet88d939c2020-04-22 15:32:11 +02004227 int inverse = 0;
Christopher Fauleta202d1d2020-03-26 17:38:49 +01004228
Christopher Faulet39708192020-05-05 10:47:36 +02004229 on_success_msg = on_error_msg = comment = pattern = npat = vpat = NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02004230 if (!*(args[cur_arg+1])) {
4231 memprintf(errmsg, "expects at least a matching pattern as arguments");
4232 goto error;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02004233 }
4234
Christopher Faulet61cc8522020-04-20 14:54:42 +02004235 cur_arg++;
4236 while (*(args[cur_arg])) {
4237 int in_pattern = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02004238
Christopher Faulet61cc8522020-04-20 14:54:42 +02004239 rescan:
4240 if (strcmp(args[cur_arg], "min-recv") == 0) {
4241 if (in_pattern) {
4242 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4243 goto error;
4244 }
4245 if (!*(args[cur_arg+1])) {
4246 memprintf(errmsg, "'%s' expects a integer as argument", args[cur_arg]);
4247 goto error;
4248 }
4249 /* Use an signed integer here because of chksize */
4250 cur_arg++;
4251 min_recv = atol(args[cur_arg]);
4252 if (min_recv < -1 || min_recv > INT_MAX) {
4253 memprintf(errmsg, "'%s' expects -1 or an integer from 0 to INT_MAX" , args[cur_arg-1]);
4254 goto error;
Christopher Faulete5870d82020-04-15 11:32:03 +02004255 }
4256 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004257 else if (*(args[cur_arg]) == '!') {
4258 in_pattern = 1;
4259 while (*(args[cur_arg]) == '!') {
4260 inverse = !inverse;
4261 args[cur_arg]++;
Christopher Faulete5870d82020-04-15 11:32:03 +02004262 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004263 if (!*(args[cur_arg]))
4264 cur_arg++;
4265 goto rescan;
Christopher Faulete5870d82020-04-15 11:32:03 +02004266 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004267 else if (strcmp(args[cur_arg], "string") == 0 || strcmp(args[cur_arg], "rstring") == 0) {
4268 if (type != TCPCHK_EXPECT_UNDEF) {
4269 memprintf(errmsg, "only on pattern expected");
4270 goto error;
4271 }
4272 if (proto != TCPCHK_RULES_HTTP_CHK)
Christopher Faulet67a23452020-05-05 18:10:01 +02004273 type = ((*(args[cur_arg]) == 's') ? TCPCHK_EXPECT_STRING : TCPCHK_EXPECT_STRING_REGEX);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004274 else
Christopher Faulet67a23452020-05-05 18:10:01 +02004275 type = ((*(args[cur_arg]) == 's') ? TCPCHK_EXPECT_HTTP_BODY : TCPCHK_EXPECT_HTTP_BODY_REGEX);
Christopher Faulete5870d82020-04-15 11:32:03 +02004276
Christopher Faulet61cc8522020-04-20 14:54:42 +02004277 if (!*(args[cur_arg+1])) {
4278 memprintf(errmsg, "'%s' expects a <pattern> as argument", args[cur_arg]);
4279 goto error;
4280 }
4281 cur_arg++;
4282 pattern = args[cur_arg];
Christopher Fauleta202d1d2020-03-26 17:38:49 +01004283 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004284 else if (strcmp(args[cur_arg], "binary") == 0 || strcmp(args[cur_arg], "rbinary") == 0) {
4285 if (proto == TCPCHK_RULES_HTTP_CHK)
4286 goto bad_http_kw;
4287 if (type != TCPCHK_EXPECT_UNDEF) {
4288 memprintf(errmsg, "only on pattern expected");
4289 goto error;
4290 }
Christopher Faulet67a23452020-05-05 18:10:01 +02004291 type = ((*(args[cur_arg]) == 'b') ? TCPCHK_EXPECT_BINARY : TCPCHK_EXPECT_BINARY_REGEX);
Christopher Faulet6f2a5e42020-04-01 13:11:41 +02004292
Christopher Faulet61cc8522020-04-20 14:54:42 +02004293 if (!*(args[cur_arg+1])) {
4294 memprintf(errmsg, "'%s' expects a <pattern> as argument", args[cur_arg]);
4295 goto error;
4296 }
4297 cur_arg++;
4298 pattern = args[cur_arg];
Christopher Faulet6f2a5e42020-04-01 13:11:41 +02004299 }
Christopher Fauletaaab0832020-05-05 15:54:22 +02004300 else if (strcmp(args[cur_arg], "string-lf") == 0 || strcmp(args[cur_arg], "binary-lf") == 0) {
4301 if (type != TCPCHK_EXPECT_UNDEF) {
4302 memprintf(errmsg, "only on pattern expected");
4303 goto error;
4304 }
4305 if (proto != TCPCHK_RULES_HTTP_CHK)
4306 type = ((*(args[cur_arg]) == 's') ? TCPCHK_EXPECT_STRING_LF : TCPCHK_EXPECT_BINARY_LF);
4307 else {
4308 if (*(args[cur_arg]) != 's')
4309 goto bad_http_kw;
4310 type = TCPCHK_EXPECT_HTTP_BODY_LF;
4311 }
4312
4313 if (!*(args[cur_arg+1])) {
4314 memprintf(errmsg, "'%s' expects a <pattern> as argument", args[cur_arg]);
4315 goto error;
4316 }
4317 cur_arg++;
4318 pattern = args[cur_arg];
4319 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004320 else if (strcmp(args[cur_arg], "status") == 0 || strcmp(args[cur_arg], "rstatus") == 0) {
4321 if (proto != TCPCHK_RULES_HTTP_CHK)
4322 goto bad_tcp_kw;
4323 if (type != TCPCHK_EXPECT_UNDEF) {
4324 memprintf(errmsg, "only on pattern expected");
4325 goto error;
4326 }
Christopher Faulet67a23452020-05-05 18:10:01 +02004327 type = ((*(args[cur_arg]) == 's') ? TCPCHK_EXPECT_HTTP_STATUS : TCPCHK_EXPECT_HTTP_STATUS_REGEX);
Christopher Faulet6f2a5e42020-04-01 13:11:41 +02004328
Christopher Faulet61cc8522020-04-20 14:54:42 +02004329 if (!*(args[cur_arg+1])) {
4330 memprintf(errmsg, "'%s' expects a <pattern> as argument", args[cur_arg]);
4331 goto error;
4332 }
4333 cur_arg++;
4334 pattern = args[cur_arg];
Christopher Faulet6f2a5e42020-04-01 13:11:41 +02004335 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004336 else if (strcmp(args[cur_arg], "custom") == 0) {
4337 if (in_pattern) {
4338 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4339 goto error;
4340 }
4341 if (type != TCPCHK_EXPECT_UNDEF) {
4342 memprintf(errmsg, "only on pattern expected");
4343 goto error;
4344 }
4345 type = TCPCHK_EXPECT_CUSTOM;
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004346 }
Christopher Fauletb5594262020-05-05 20:23:13 +02004347 else if (strcmp(args[cur_arg], "hdr") == 0 || strcmp(args[cur_arg], "fhdr") == 0) {
Christopher Faulet39708192020-05-05 10:47:36 +02004348 int orig_arg = cur_arg;
4349
4350 if (proto != TCPCHK_RULES_HTTP_CHK)
4351 goto bad_tcp_kw;
4352 if (type != TCPCHK_EXPECT_UNDEF) {
4353 memprintf(errmsg, "only on pattern expected");
4354 goto error;
4355 }
4356 type = TCPCHK_EXPECT_HTTP_HEADER;
4357
Christopher Fauletb5594262020-05-05 20:23:13 +02004358 if (strcmp(args[cur_arg], "fhdr") == 0)
4359 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_FULL;
4360
Christopher Faulet39708192020-05-05 10:47:36 +02004361 /* Parse the name pattern, mandatory */
Christopher Fauletb5594262020-05-05 20:23:13 +02004362 if (!*(args[cur_arg+1]) || !*(args[cur_arg+2]) ||
4363 (strcmp(args[cur_arg+1], "name") != 0 && strcmp(args[cur_arg+1], "name-lf") != 0)) {
4364 memprintf(errmsg, "'%s' expects at the name keyword as first argument followed by a pattern",
Christopher Faulet39708192020-05-05 10:47:36 +02004365 args[orig_arg]);
4366 goto error;
4367 }
Christopher Fauletb5594262020-05-05 20:23:13 +02004368
4369 if (strcmp(args[cur_arg+1], "name-lf") == 0)
4370 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_FMT;
4371
Christopher Faulet39708192020-05-05 10:47:36 +02004372 cur_arg += 2;
4373 if (strcmp(args[cur_arg], "-m") == 0) {
4374 if (!*(args[cur_arg+1])) {
4375 memprintf(errmsg, "'%s' : '%s' expects at a matching pattern ('str', 'beg', 'end', 'sub' or 'reg')",
4376 args[orig_arg], args[cur_arg]);
4377 goto error;
4378 }
4379 if (strcmp(args[cur_arg+1], "str") == 0)
4380 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_STR;
4381 else if (strcmp(args[cur_arg+1], "beg") == 0)
4382 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_BEG;
4383 else if (strcmp(args[cur_arg+1], "end") == 0)
4384 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_END;
4385 else if (strcmp(args[cur_arg+1], "sub") == 0)
4386 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_SUB;
Christopher Fauletb5594262020-05-05 20:23:13 +02004387 else if (strcmp(args[cur_arg+1], "reg") == 0) {
4388 if (flags & TCPCHK_EXPT_FL_HTTP_HNAME_FMT) {
4389 memprintf(errmsg, "'%s': log-format string is not supported with a regex matching method",
4390 args[orig_arg]);
4391 goto error;
4392 }
Christopher Faulet39708192020-05-05 10:47:36 +02004393 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_REG;
Christopher Fauletb5594262020-05-05 20:23:13 +02004394 }
Christopher Faulet39708192020-05-05 10:47:36 +02004395 else {
4396 memprintf(errmsg, "'%s' : '%s' only supports 'str', 'beg', 'end', 'sub' or 'reg' (got '%s')",
4397 args[orig_arg], args[cur_arg], args[cur_arg+1]);
4398 goto error;
4399 }
4400 cur_arg += 2;
4401 }
4402 else
4403 flags |= TCPCHK_EXPT_FL_HTTP_HNAME_STR;
4404 npat = args[cur_arg];
4405
Christopher Fauletb5594262020-05-05 20:23:13 +02004406 if (!*(args[cur_arg+1]) ||
4407 (strcmp(args[cur_arg+1], "value") != 0 && strcmp(args[cur_arg+1], "value-lf") != 0)) {
Christopher Faulet39708192020-05-05 10:47:36 +02004408 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_NONE;
4409 goto next;
4410 }
Christopher Fauletb5594262020-05-05 20:23:13 +02004411 if (strcmp(args[cur_arg+1], "value-lf") == 0)
4412 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_FMT;
Christopher Faulet39708192020-05-05 10:47:36 +02004413
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004414 /* Parse the value pattern, optional */
Christopher Fauletb5594262020-05-05 20:23:13 +02004415 if (strcmp(args[cur_arg+2], "-m") == 0) {
4416 cur_arg += 2;
Christopher Faulet39708192020-05-05 10:47:36 +02004417 if (!*(args[cur_arg+1])) {
4418 memprintf(errmsg, "'%s' : '%s' expects at a matching pattern ('str', 'beg', 'end', 'sub' or 'reg')",
4419 args[orig_arg], args[cur_arg]);
4420 goto error;
4421 }
4422 if (strcmp(args[cur_arg+1], "str") == 0)
4423 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_STR;
4424 else if (strcmp(args[cur_arg+1], "beg") == 0)
4425 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_BEG;
4426 else if (strcmp(args[cur_arg+1], "end") == 0)
4427 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_END;
4428 else if (strcmp(args[cur_arg+1], "sub") == 0)
4429 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_SUB;
Christopher Fauletb5594262020-05-05 20:23:13 +02004430 else if (strcmp(args[cur_arg+1], "reg") == 0) {
4431 if (flags & TCPCHK_EXPT_FL_HTTP_HVAL_FMT) {
4432 memprintf(errmsg, "'%s': log-format string is not supported with a regex matching method",
4433 args[orig_arg]);
4434 goto error;
4435 }
Christopher Faulet39708192020-05-05 10:47:36 +02004436 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_REG;
Christopher Fauletb5594262020-05-05 20:23:13 +02004437 }
Christopher Faulet39708192020-05-05 10:47:36 +02004438 else {
4439 memprintf(errmsg, "'%s' : '%s' only supports 'str', 'beg', 'end', 'sub' or 'reg' (got '%s')",
4440 args[orig_arg], args[cur_arg], args[cur_arg+1]);
4441 goto error;
4442 }
Christopher Faulet39708192020-05-05 10:47:36 +02004443 }
4444 else
4445 flags |= TCPCHK_EXPT_FL_HTTP_HVAL_STR;
Christopher Faulet39708192020-05-05 10:47:36 +02004446
Christopher Fauletb5594262020-05-05 20:23:13 +02004447 if (!*(args[cur_arg+2])) {
4448 memprintf(errmsg, "'%s' expect a pattern with the value keyword", args[orig_arg]);
4449 goto error;
Christopher Faulet39708192020-05-05 10:47:36 +02004450 }
Christopher Fauletb5594262020-05-05 20:23:13 +02004451 vpat = args[cur_arg+2];
4452 cur_arg += 2;
Christopher Faulet39708192020-05-05 10:47:36 +02004453 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004454 else if (strcmp(args[cur_arg], "comment") == 0) {
4455 if (in_pattern) {
4456 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4457 goto error;
4458 }
4459 if (!*(args[cur_arg+1])) {
4460 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4461 goto error;
4462 }
4463 cur_arg++;
4464 free(comment);
4465 comment = strdup(args[cur_arg]);
4466 if (!comment) {
4467 memprintf(errmsg, "out of memory");
4468 goto error;
4469 }
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004470 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004471 else if (strcmp(args[cur_arg], "on-success") == 0) {
4472 if (in_pattern) {
4473 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4474 goto error;
4475 }
4476 if (!*(args[cur_arg+1])) {
4477 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4478 goto error;
4479 }
4480 cur_arg++;
Christopher Faulet1941bab2020-05-05 07:55:50 +02004481 on_success_msg = args[cur_arg];
Christopher Fauletd7e63962020-04-17 20:15:59 +02004482 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004483 else if (strcmp(args[cur_arg], "on-error") == 0) {
4484 if (in_pattern) {
4485 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4486 goto error;
4487 }
4488 if (!*(args[cur_arg+1])) {
4489 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4490 goto error;
4491 }
4492 cur_arg++;
Christopher Faulet1941bab2020-05-05 07:55:50 +02004493 on_error_msg = args[cur_arg];
Christopher Faulet61cc8522020-04-20 14:54:42 +02004494 }
4495 else if (strcmp(args[cur_arg], "ok-status") == 0) {
4496 if (in_pattern) {
4497 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4498 goto error;
4499 }
4500 if (!*(args[cur_arg+1])) {
4501 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4502 goto error;
4503 }
4504 if (strcasecmp(args[cur_arg+1], "L7OK") == 0)
4505 ok_st = HCHK_STATUS_L7OKD;
4506 else if (strcasecmp(args[cur_arg+1], "L7OKC") == 0)
4507 ok_st = HCHK_STATUS_L7OKCD;
4508 else if (strcasecmp(args[cur_arg+1], "L6OK") == 0)
4509 ok_st = HCHK_STATUS_L6OK;
4510 else if (strcasecmp(args[cur_arg+1], "L4OK") == 0)
4511 ok_st = HCHK_STATUS_L4OK;
4512 else {
4513 memprintf(errmsg, "'%s' only supports 'L4OK', 'L6OK', 'L7OK' or 'L7OKC' status (got '%s').",
4514 args[cur_arg], args[cur_arg+1]);
4515 goto error;
4516 }
4517 cur_arg++;
4518 }
4519 else if (strcmp(args[cur_arg], "error-status") == 0) {
4520 if (in_pattern) {
4521 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4522 goto error;
4523 }
4524 if (!*(args[cur_arg+1])) {
4525 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4526 goto error;
4527 }
4528 if (strcasecmp(args[cur_arg+1], "L7RSP") == 0)
4529 err_st = HCHK_STATUS_L7RSP;
4530 else if (strcasecmp(args[cur_arg+1], "L7STS") == 0)
4531 err_st = HCHK_STATUS_L7STS;
4532 else if (strcasecmp(args[cur_arg+1], "L6RSP") == 0)
4533 err_st = HCHK_STATUS_L6RSP;
4534 else if (strcasecmp(args[cur_arg+1], "L4CON") == 0)
4535 err_st = HCHK_STATUS_L4CON;
4536 else {
4537 memprintf(errmsg, "'%s' only supports 'L4CON', 'L6RSP', 'L7RSP' or 'L7STS' status (got '%s').",
4538 args[cur_arg], args[cur_arg+1]);
4539 goto error;
4540 }
4541 cur_arg++;
4542 }
4543 else if (strcmp(args[cur_arg], "status-code") == 0) {
4544 int idx = 0;
Christopher Fauletd7e63962020-04-17 20:15:59 +02004545
Christopher Faulet61cc8522020-04-20 14:54:42 +02004546 if (in_pattern) {
4547 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4548 goto error;
4549 }
4550 if (!*(args[cur_arg+1])) {
4551 memprintf(errmsg, "'%s' expects an expression as argument", args[cur_arg]);
4552 goto error;
4553 }
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004554
Christopher Faulet61cc8522020-04-20 14:54:42 +02004555 cur_arg++;
4556 release_sample_expr(status_expr);
4557 px->conf.args.ctx = ARGC_SRV;
4558 status_expr = sample_parse_expr((char *[]){args[cur_arg], NULL}, &idx,
4559 file, line, errmsg, &px->conf.args, NULL);
4560 if (!status_expr) {
4561 memprintf(errmsg, "error detected while parsing status-code expression : %s", *errmsg);
4562 goto error;
4563 }
4564 if (!(status_expr->fetch->val & SMP_VAL_BE_CHK_RUL)) {
4565 memprintf(errmsg, "error detected while parsing status-code expression : "
4566 " fetch method '%s' extracts information from '%s', "
4567 "none of which is available here.\n",
4568 args[cur_arg], sample_src_names(status_expr->fetch->use));
4569 goto error;
4570 }
4571 px->http_needed |= !!(status_expr->fetch->use & SMP_USE_HTTP_ANY);
4572 }
4573 else if (strcmp(args[cur_arg], "tout-status") == 0) {
4574 if (in_pattern) {
4575 memprintf(errmsg, "[!] not supported with '%s'", args[cur_arg]);
4576 goto error;
4577 }
4578 if (!*(args[cur_arg+1])) {
4579 memprintf(errmsg, "'%s' expects a string as argument", args[cur_arg]);
4580 goto error;
4581 }
4582 if (strcasecmp(args[cur_arg+1], "L7TOUT") == 0)
4583 tout_st = HCHK_STATUS_L7TOUT;
4584 else if (strcasecmp(args[cur_arg+1], "L6TOUT") == 0)
4585 tout_st = HCHK_STATUS_L6TOUT;
4586 else if (strcasecmp(args[cur_arg+1], "L4TOUT") == 0)
4587 tout_st = HCHK_STATUS_L4TOUT;
4588 else {
4589 memprintf(errmsg, "'%s' only supports 'L4TOUT', 'L6TOUT' or 'L7TOUT' status (got '%s').",
4590 args[cur_arg], args[cur_arg+1]);
4591 goto error;
4592 }
4593 cur_arg++;
4594 }
4595 else {
4596 if (proto == TCPCHK_RULES_HTTP_CHK) {
4597 bad_http_kw:
Christopher Fauletaaab0832020-05-05 15:54:22 +02004598 memprintf(errmsg, "'only supports min-recv, [!]string', '[!]rstring', '[!]string-lf', '[!]status', "
Christopher Fauletb5594262020-05-05 20:23:13 +02004599 "'[!]rstatus', [!]hdr, [!]fhdr or comment but got '%s' as argument.", args[cur_arg]);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004600 }
4601 else {
4602 bad_tcp_kw:
Christopher Fauletaaab0832020-05-05 15:54:22 +02004603 memprintf(errmsg, "'only supports min-recv, '[!]binary', '[!]string', '[!]rstring', '[!]string-lf'"
4604 "'[!]rbinary', '[!]binary-lf' or comment but got '%s' as argument.", args[cur_arg]);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004605 }
4606 goto error;
4607 }
Christopher Faulet39708192020-05-05 10:47:36 +02004608 next:
Christopher Faulet61cc8522020-04-20 14:54:42 +02004609 cur_arg++;
4610 }
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004611
Christopher Faulet61cc8522020-04-20 14:54:42 +02004612 chk = calloc(1, sizeof(*chk));
4613 if (!chk) {
4614 memprintf(errmsg, "out of memory");
4615 goto error;
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004616 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004617 chk->action = TCPCHK_ACT_EXPECT;
4618 LIST_INIT(&chk->expect.onerror_fmt);
4619 LIST_INIT(&chk->expect.onsuccess_fmt);
4620 chk->comment = comment; comment = NULL;
4621 chk->expect.type = type;
4622 chk->expect.min_recv = min_recv;
Christopher Faulet39708192020-05-05 10:47:36 +02004623 chk->expect.flags = flags | (inverse ? TCPCHK_EXPT_FL_INV : 0);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004624 chk->expect.ok_status = ok_st;
4625 chk->expect.err_status = err_st;
4626 chk->expect.tout_status = tout_st;
4627 chk->expect.status_expr = status_expr; status_expr = NULL;
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004628
Christopher Faulet61cc8522020-04-20 14:54:42 +02004629 if (on_success_msg) {
4630 px->conf.args.ctx = ARGC_SRV;
4631 if (!parse_logformat_string(on_success_msg, px, &chk->expect.onsuccess_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4632 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", on_success_msg, *errmsg);
4633 goto error;
4634 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004635 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004636 if (on_error_msg) {
4637 px->conf.args.ctx = ARGC_SRV;
4638 if (!parse_logformat_string(on_error_msg, px, &chk->expect.onerror_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4639 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", on_error_msg, *errmsg);
4640 goto error;
4641 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004642 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004643
Christopher Faulet61cc8522020-04-20 14:54:42 +02004644 switch (chk->expect.type) {
Christopher Faulet8021a5f2020-04-24 13:53:12 +02004645 case TCPCHK_EXPECT_HTTP_STATUS: {
4646 const char *p = pattern;
4647 unsigned int c1,c2;
4648
4649 chk->expect.codes.codes = NULL;
4650 chk->expect.codes.num = 0;
4651 while (1) {
4652 c1 = c2 = read_uint(&p, pattern + strlen(pattern));
4653 if (*p == '-') {
4654 p++;
4655 c2 = read_uint(&p, pattern + strlen(pattern));
4656 }
4657 if (c1 > c2) {
4658 memprintf(errmsg, "invalid range of status codes '%s'", pattern);
4659 goto error;
4660 }
4661
4662 chk->expect.codes.num++;
4663 chk->expect.codes.codes = my_realloc2(chk->expect.codes.codes,
4664 chk->expect.codes.num * sizeof(*chk->expect.codes.codes));
4665 if (!chk->expect.codes.codes) {
4666 memprintf(errmsg, "out of memory");
4667 goto error;
4668 }
4669 chk->expect.codes.codes[chk->expect.codes.num-1][0] = c1;
4670 chk->expect.codes.codes[chk->expect.codes.num-1][1] = c2;
4671
4672 if (*p == '\0')
4673 break;
4674 if (*p != ',') {
4675 memprintf(errmsg, "invalid character '%c' in the list of status codes", *p);
4676 goto error;
4677 }
4678 p++;
4679 }
4680 break;
4681 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004682 case TCPCHK_EXPECT_STRING:
Christopher Faulet61cc8522020-04-20 14:54:42 +02004683 case TCPCHK_EXPECT_HTTP_BODY:
4684 chk->expect.data = ist2(strdup(pattern), strlen(pattern));
Christopher Fauletb61caf42020-04-21 10:57:42 +02004685 if (!isttest(chk->expect.data)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004686 memprintf(errmsg, "out of memory");
4687 goto error;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02004688 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004689 break;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02004690 case TCPCHK_EXPECT_BINARY: {
Christopher Faulet9c2cb2d2020-04-28 16:40:41 +02004691 int len = chk->expect.data.len;
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02004692
4693 if (parse_binary(pattern, &chk->expect.data.ptr, &len, errmsg) == 0) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004694 memprintf(errmsg, "invalid binary string (%s)", *errmsg);
4695 goto error;
4696 }
Christopher Faulet2edcd4c2020-04-28 10:39:50 +02004697 chk->expect.data.len = len;
4698 break;
4699 }
Christopher Faulet67a23452020-05-05 18:10:01 +02004700 case TCPCHK_EXPECT_STRING_REGEX:
4701 case TCPCHK_EXPECT_BINARY_REGEX:
4702 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
4703 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Faulet88d939c2020-04-22 15:32:11 +02004704 chk->expect.regex = regex_comp(pattern, 1, 0, errmsg);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004705 if (!chk->expect.regex)
4706 goto error;
Christopher Faulet39708192020-05-05 10:47:36 +02004707 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +02004708
4709 case TCPCHK_EXPECT_STRING_LF:
4710 case TCPCHK_EXPECT_BINARY_LF:
4711 case TCPCHK_EXPECT_HTTP_BODY_LF:
4712 LIST_INIT(&chk->expect.fmt);
4713 px->conf.args.ctx = ARGC_SRV;
4714 if (!parse_logformat_string(pattern, px, &chk->expect.fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4715 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", pattern, *errmsg);
4716 goto error;
4717 }
4718 break;
4719
Christopher Faulet39708192020-05-05 10:47:36 +02004720 case TCPCHK_EXPECT_HTTP_HEADER:
4721 if (!npat) {
4722 memprintf(errmsg, "unexpected error, undefined header name pattern");
4723 goto error;
4724 }
4725 if (chk->expect.flags & TCPCHK_EXPT_FL_HTTP_HNAME_REG) {
4726 chk->expect.hdr.name_re = regex_comp(npat, 0, 0, errmsg);
4727 if (!chk->expect.hdr.name_re)
4728 goto error;
4729 }
4730 else if (chk->expect.flags & TCPCHK_EXPT_FL_HTTP_HNAME_FMT) {
4731 px->conf.args.ctx = ARGC_SRV;
4732 LIST_INIT(&chk->expect.hdr.name_fmt);
4733 if (!parse_logformat_string(npat, px, &chk->expect.hdr.name_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4734 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", npat, *errmsg);
4735 goto error;
4736 }
4737 }
4738 else {
4739 chk->expect.hdr.name = ist2(strdup(npat), strlen(npat));
4740 if (!isttest(chk->expect.hdr.name)) {
4741 memprintf(errmsg, "out of memory");
4742 goto error;
4743 }
4744 }
4745
4746 if (chk->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_NONE) {
4747 chk->expect.hdr.value = IST_NULL;
4748 break;
4749 }
4750
4751 if (!vpat) {
4752 memprintf(errmsg, "unexpected error, undefined header value pattern");
4753 goto error;
4754 }
4755 else if (chk->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_REG) {
4756 chk->expect.hdr.value_re = regex_comp(vpat, 1, 0, errmsg);
4757 if (!chk->expect.hdr.value_re)
4758 goto error;
4759 }
4760 else if (chk->expect.flags & TCPCHK_EXPT_FL_HTTP_HVAL_FMT) {
4761 px->conf.args.ctx = ARGC_SRV;
4762 LIST_INIT(&chk->expect.hdr.value_fmt);
4763 if (!parse_logformat_string(vpat, px, &chk->expect.hdr.value_fmt, 0, SMP_VAL_BE_CHK_RUL, errmsg)) {
4764 memprintf(errmsg, "'%s' invalid log-format string (%s).\n", npat, *errmsg);
4765 goto error;
4766 }
4767 }
4768 else {
4769 chk->expect.hdr.value = ist2(strdup(vpat), strlen(vpat));
4770 if (!isttest(chk->expect.hdr.value)) {
4771 memprintf(errmsg, "out of memory");
4772 goto error;
4773 }
4774 }
4775
Christopher Faulet61cc8522020-04-20 14:54:42 +02004776 break;
4777 case TCPCHK_EXPECT_CUSTOM:
4778 chk->expect.custom = NULL; /* Must be defined by the caller ! */
4779 break;
4780 case TCPCHK_EXPECT_UNDEF:
Christopher Faulet61cc8522020-04-20 14:54:42 +02004781 memprintf(errmsg, "pattern not found");
4782 goto error;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02004783 }
Christopher Faulet8892e5d2020-03-26 19:48:20 +01004784
Christopher Faulet61cc8522020-04-20 14:54:42 +02004785 /* All tcp-check expect points back to the first inverse expect rule in
4786 * a chain of one or more expect rule, potentially itself.
4787 */
4788 chk->expect.head = chk;
4789 list_for_each_entry_rev(prev_check, rules, list) {
4790 if (prev_check->action == TCPCHK_ACT_EXPECT) {
4791 if (prev_check->expect.flags & TCPCHK_EXPT_FL_INV)
4792 chk->expect.head = prev_check;
4793 continue;
4794 }
4795 if (prev_check->action != TCPCHK_ACT_COMMENT && prev_check->action != TCPCHK_ACT_ACTION_KW)
4796 break;
Christopher Faulet404f9192020-04-09 23:13:54 +02004797 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004798 return chk;
4799
4800 error:
4801 free_tcpcheck(chk, 0);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004802 free(comment);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004803 release_sample_expr(status_expr);
Christopher Faulet404f9192020-04-09 23:13:54 +02004804 return NULL;
4805}
4806
Christopher Faulet61cc8522020-04-20 14:54:42 +02004807/* Overwrites fields of the old http send rule with those of the new one. When
4808 * replaced, old values are freed and replaced by the new ones. New values are
4809 * not copied but transferred. At the end <new> should be empty and can be
4810 * safely released. This function never fails.
4811 */
4812static void tcpcheck_overwrite_send_http_rule(struct tcpcheck_rule *old, struct tcpcheck_rule *new)
Christopher Faulet404f9192020-04-09 23:13:54 +02004813{
Christopher Faulet61cc8522020-04-20 14:54:42 +02004814 struct logformat_node *lf, *lfb;
4815 struct tcpcheck_http_hdr *hdr, *bhdr;
Christopher Faulet404f9192020-04-09 23:13:54 +02004816
Christopher Faulet404f9192020-04-09 23:13:54 +02004817
Christopher Faulet61cc8522020-04-20 14:54:42 +02004818 if (new->send.http.meth.str.area) {
4819 free(old->send.http.meth.str.area);
4820 old->send.http.meth.meth = new->send.http.meth.meth;
4821 old->send.http.meth.str.area = new->send.http.meth.str.area;
4822 old->send.http.meth.str.data = new->send.http.meth.str.data;
4823 new->send.http.meth.str = BUF_NULL;
Christopher Faulet404f9192020-04-09 23:13:54 +02004824 }
4825
Christopher Faulet61cc8522020-04-20 14:54:42 +02004826 if (!(new->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT) && isttest(new->send.http.uri)) {
4827 if (!(old->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +02004828 istfree(&old->send.http.uri);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004829 else
4830 free_tcpcheck_fmt(&old->send.http.uri_fmt);
4831 old->send.http.flags &= ~TCPCHK_SND_HTTP_FL_URI_FMT;
4832 old->send.http.uri = new->send.http.uri;
4833 new->send.http.uri = IST_NULL;
4834 }
4835 else if ((new->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT) && !LIST_ISEMPTY(&new->send.http.uri_fmt)) {
4836 if (!(old->send.http.flags & TCPCHK_SND_HTTP_FL_URI_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +02004837 istfree(&old->send.http.uri);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004838 else
4839 free_tcpcheck_fmt(&old->send.http.uri_fmt);
4840 old->send.http.flags |= TCPCHK_SND_HTTP_FL_URI_FMT;
4841 LIST_INIT(&old->send.http.uri_fmt);
4842 list_for_each_entry_safe(lf, lfb, &new->send.http.uri_fmt, list) {
4843 LIST_DEL(&lf->list);
4844 LIST_ADDQ(&old->send.http.uri_fmt, &lf->list);
4845 }
4846 }
Christopher Faulet404f9192020-04-09 23:13:54 +02004847
Christopher Faulet61cc8522020-04-20 14:54:42 +02004848 if (isttest(new->send.http.vsn)) {
Christopher Fauletb61caf42020-04-21 10:57:42 +02004849 istfree(&old->send.http.vsn);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004850 old->send.http.vsn = new->send.http.vsn;
4851 new->send.http.vsn = IST_NULL;
4852 }
Christopher Faulet404f9192020-04-09 23:13:54 +02004853
Christopher Faulet61cc8522020-04-20 14:54:42 +02004854 free_tcpcheck_http_hdrs(&old->send.http.hdrs);
4855 list_for_each_entry_safe(hdr, bhdr, &new->send.http.hdrs, list) {
4856 LIST_DEL(&hdr->list);
4857 LIST_ADDQ(&old->send.http.hdrs, &hdr->list);
Christopher Faulet404f9192020-04-09 23:13:54 +02004858 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02004859
4860 if (!(new->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT) && isttest(new->send.http.body)) {
4861 if (!(old->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +02004862 istfree(&old->send.http.body);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004863 else
4864 free_tcpcheck_fmt(&old->send.http.body_fmt);
4865 old->send.http.flags &= ~TCPCHK_SND_HTTP_FL_BODY_FMT;
4866 old->send.http.body = new->send.http.body;
4867 new->send.http.body = IST_NULL;
4868 }
4869 else if ((new->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT) && !LIST_ISEMPTY(&new->send.http.body_fmt)) {
4870 if (!(old->send.http.flags & TCPCHK_SND_HTTP_FL_BODY_FMT))
Christopher Fauletb61caf42020-04-21 10:57:42 +02004871 istfree(&old->send.http.body);
Christopher Faulet61cc8522020-04-20 14:54:42 +02004872 else
4873 free_tcpcheck_fmt(&old->send.http.body_fmt);
4874 old->send.http.flags |= TCPCHK_SND_HTTP_FL_BODY_FMT;
4875 LIST_INIT(&old->send.http.body_fmt);
4876 list_for_each_entry_safe(lf, lfb, &new->send.http.body_fmt, list) {
4877 LIST_DEL(&lf->list);
4878 LIST_ADDQ(&old->send.http.body_fmt, &lf->list);
4879 }
4880 }
Christopher Faulet404f9192020-04-09 23:13:54 +02004881}
4882
Christopher Faulet61cc8522020-04-20 14:54:42 +02004883/* Internal function used to add an http-check rule in a list during the config
4884 * parsing step. Depending on its type, and the previously inserted rules, a
4885 * specific action may be performed or an error may be reported. This functions
4886 * returns 1 on success and 0 on error and <errmsg> is filled with the error
4887 * message.
4888 */
4889static int tcpcheck_add_http_rule(struct tcpcheck_rule *chk, struct tcpcheck_rules *rules, char **errmsg)
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004890{
Christopher Faulet61cc8522020-04-20 14:54:42 +02004891 struct tcpcheck_rule *r;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004892
Christopher Faulet61cc8522020-04-20 14:54:42 +02004893 /* the implicit send rule coming from an "option httpchk" line must be
4894 * merged with the first explici http-check send rule, if
4895 * any. Depdending the declaration order some tests are required.
4896 *
4897 * Some tests is also required for other kinds of http-check rules to be
4898 * sure the ruleset remains valid.
4899 */
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004900
Christopher Faulet61cc8522020-04-20 14:54:42 +02004901 if (chk->action == TCPCHK_ACT_SEND && (chk->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004902 /* Tries to add an implicit http-check send rule from an "option httpchk" line.
Christopher Faulet61cc8522020-04-20 14:54:42 +02004903 * First, the first rule is retrieved, skipping the first CONNECT, if any, and
4904 * following tests are performed :
4905 *
4906 * 1- If there is no such rule or if it is not a send rule, the implicit send
4907 * rule is pushed in front of the ruleset
4908 *
4909 * 2- If it is another implicit send rule, it is replaced with the new one.
4910 *
4911 * 3- Otherwise, it means it is an explicit send rule. In this case we merge
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004912 * both, overwriting the old send rule (the explicit one) with info of the
Christopher Faulet61cc8522020-04-20 14:54:42 +02004913 * new send rule (the implicit one).
4914 */
4915 r = get_first_tcpcheck_rule(rules);
4916 if (r && r->action == TCPCHK_ACT_CONNECT)
4917 r = get_next_tcpcheck_rule(rules, r);
4918 if (!r || r->action != TCPCHK_ACT_SEND)
4919 LIST_ADD(rules->list, &chk->list);
4920 else if (r->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT) {
4921 LIST_DEL(&r->list);
4922 free_tcpcheck(r, 0);
4923 LIST_ADD(rules->list, &chk->list);
4924 }
4925 else {
4926 tcpcheck_overwrite_send_http_rule(r, chk);
4927 free_tcpcheck(chk, 0);
4928 }
4929 }
4930 else {
4931 /* Tries to add an explicit http-check rule. First of all we check the typefo the
4932 * last inserted rule to be sure it is valid. Then for send rule, we try to merge it
4933 * with an existing implicit send rule, if any. At the end, if there is no error,
4934 * the rule is appended to the list.
4935 */
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004936
Christopher Faulet61cc8522020-04-20 14:54:42 +02004937 r = get_last_tcpcheck_rule(rules);
4938 if (!r || (r->action == TCPCHK_ACT_SEND && (r->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)))
4939 /* no error */;
4940 else if (r->action != TCPCHK_ACT_CONNECT && chk->action == TCPCHK_ACT_SEND) {
4941 memprintf(errmsg, "unable to add http-check send rule at step %d (missing connect rule).",
4942 chk->index+1);
4943 return 0;
4944 }
Christopher Faulet1a200d62020-05-05 07:59:23 +02004945 else if (r->action != TCPCHK_ACT_SEND && r->action != TCPCHK_ACT_EXPECT && chk->action == TCPCHK_ACT_EXPECT) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02004946 memprintf(errmsg, "unable to add http-check expect rule at step %d (missing send rule).",
4947 chk->index+1);
4948 return 0;
4949 }
4950 else if (r->action != TCPCHK_ACT_EXPECT && chk->action == TCPCHK_ACT_CONNECT) {
4951 memprintf(errmsg, "unable to add http-check connect rule at step %d (missing expect rule).",
4952 chk->index+1);
4953 return 0;
4954 }
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004955
Christopher Faulet61cc8522020-04-20 14:54:42 +02004956 if (chk->action == TCPCHK_ACT_SEND) {
4957 r = get_first_tcpcheck_rule(rules);
4958 if (r && r->action == TCPCHK_ACT_SEND && (r->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)) {
4959 tcpcheck_overwrite_send_http_rule(r, chk);
4960 free_tcpcheck(chk, 0);
4961 LIST_DEL(&r->list);
4962 r->send.http.flags &= ~TCPCHK_SND_HTTP_FROM_OPT;
4963 chk = r;
4964 }
4965 }
4966 LIST_ADDQ(rules->list, &chk->list);
4967 }
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004968 return 1;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004969}
4970
Christopher Faulet61cc8522020-04-20 14:54:42 +02004971/**************************************************************************/
4972/************************** Init/deinit checks ****************************/
4973/**************************************************************************/
4974static const char *init_check(struct check *check, int type)
4975{
4976 check->type = type;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004977
Christopher Faulet61cc8522020-04-20 14:54:42 +02004978 b_reset(&check->bi); check->bi.size = global.tune.chksize;
4979 b_reset(&check->bo); check->bo.size = global.tune.chksize;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004980
Christopher Faulet61cc8522020-04-20 14:54:42 +02004981 check->bi.area = calloc(check->bi.size, sizeof(char));
4982 check->bo.area = calloc(check->bo.size, sizeof(char));
Christopher Fauletba3c68f2020-04-01 16:27:05 +02004983
Christopher Faulet61cc8522020-04-20 14:54:42 +02004984 if (!check->bi.area || !check->bo.area)
4985 return "out of memory while allocating check buffer";
Gaetan Rivet707b52f2020-02-21 18:14:59 +01004986
Christopher Faulet61cc8522020-04-20 14:54:42 +02004987 check->wait_list.tasklet = tasklet_new();
4988 if (!check->wait_list.tasklet)
4989 return "out of memory while allocating check tasklet";
4990 check->wait_list.events = 0;
4991 check->wait_list.tasklet->process = event_srv_chk_io;
4992 check->wait_list.tasklet->context = check;
4993 return NULL;
4994}
4995
4996void free_check(struct check *check)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01004997{
Christopher Faulet61cc8522020-04-20 14:54:42 +02004998 task_destroy(check->task);
4999 if (check->wait_list.tasklet)
5000 tasklet_free(check->wait_list.tasklet);
5001
5002 free(check->bi.area);
5003 free(check->bo.area);
5004 if (check->cs) {
5005 free(check->cs->conn);
5006 check->cs->conn = NULL;
5007 cs_free(check->cs);
5008 check->cs = NULL;
5009 }
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005010}
5011
Christopher Faulet61cc8522020-04-20 14:54:42 +02005012/* manages a server health-check. Returns the time the task accepts to wait, or
5013 * TIME_ETERNITY for infinity.
5014 */
5015static struct task *process_chk(struct task *t, void *context, unsigned short state)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005016{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005017 struct check *check = context;
5018
5019 if (check->type == PR_O2_EXT_CHK)
5020 return process_chk_proc(t, context, state);
5021 return process_chk_conn(t, context, state);
5022
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005023}
5024
Christopher Faulet61cc8522020-04-20 14:54:42 +02005025
5026static int start_check_task(struct check *check, int mininter,
5027 int nbcheck, int srvpos)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005028{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005029 struct task *t;
5030 unsigned long thread_mask = MAX_THREADS_MASK;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005031
Christopher Faulet61cc8522020-04-20 14:54:42 +02005032 if (check->type == PR_O2_EXT_CHK)
5033 thread_mask = 1;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005034
Christopher Faulet61cc8522020-04-20 14:54:42 +02005035 /* task for the check */
5036 if ((t = task_new(thread_mask)) == NULL) {
5037 ha_alert("Starting [%s:%s] check: out of memory.\n",
5038 check->server->proxy->id, check->server->id);
5039 return 0;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005040 }
5041
Christopher Faulet61cc8522020-04-20 14:54:42 +02005042 check->task = t;
5043 t->process = process_chk;
5044 t->context = check;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005045
Christopher Faulet61cc8522020-04-20 14:54:42 +02005046 if (mininter < srv_getinter(check))
5047 mininter = srv_getinter(check);
5048
5049 if (global.max_spread_checks && mininter > global.max_spread_checks)
5050 mininter = global.max_spread_checks;
5051
5052 /* check this every ms */
5053 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
5054 check->start = now;
5055 task_queue(t);
5056
5057 return 1;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005058}
5059
Christopher Faulet61cc8522020-04-20 14:54:42 +02005060/* updates the server's weight during a warmup stage. Once the final weight is
5061 * reached, the task automatically stops. Note that any server status change
5062 * must have updated s->last_change accordingly.
5063 */
5064static struct task *server_warmup(struct task *t, void *context, unsigned short state)
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005065{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005066 struct server *s = context;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005067
Christopher Faulet61cc8522020-04-20 14:54:42 +02005068 /* by default, plan on stopping the task */
5069 t->expire = TICK_ETERNITY;
5070 if ((s->next_admin & SRV_ADMF_MAINT) ||
5071 (s->next_state != SRV_ST_STARTING))
5072 return t;
Christopher Faulete5870d82020-04-15 11:32:03 +02005073
Christopher Faulet61cc8522020-04-20 14:54:42 +02005074 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005075
Christopher Faulet61cc8522020-04-20 14:54:42 +02005076 /* recalculate the weights and update the state */
5077 server_recalc_eweight(s, 1);
Christopher Faulet5c288742020-03-31 08:15:58 +02005078
Christopher Faulet61cc8522020-04-20 14:54:42 +02005079 /* probably that we can refill this server with a bit more connections */
5080 pendconn_grab_from_px(s);
Christopher Faulet5c288742020-03-31 08:15:58 +02005081
Christopher Faulet61cc8522020-04-20 14:54:42 +02005082 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet5c288742020-03-31 08:15:58 +02005083
Christopher Faulet61cc8522020-04-20 14:54:42 +02005084 /* get back there in 1 second or 1/20th of the slowstart interval,
5085 * whichever is greater, resulting in small 5% steps.
5086 */
5087 if (s->next_state == SRV_ST_STARTING)
5088 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
5089 return t;
5090}
5091
5092/*
5093 * Start health-check.
5094 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
5095 */
5096static int start_checks()
5097{
5098
5099 struct proxy *px;
5100 struct server *s;
5101 struct task *t;
5102 int nbcheck=0, mininter=0, srvpos=0;
5103
5104 /* 0- init the dummy frontend used to create all checks sessions */
5105 init_new_proxy(&checks_fe);
5106 checks_fe.cap = PR_CAP_FE | PR_CAP_BE;
5107 checks_fe.mode = PR_MODE_TCP;
5108 checks_fe.maxconn = 0;
5109 checks_fe.conn_retries = CONN_RETRIES;
5110 checks_fe.options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
5111 checks_fe.timeout.client = TICK_ETERNITY;
5112
5113 /* 1- count the checkers to run simultaneously.
5114 * We also determine the minimum interval among all of those which
5115 * have an interval larger than SRV_CHK_INTER_THRES. This interval
5116 * will be used to spread their start-up date. Those which have
5117 * a shorter interval will start independently and will not dictate
5118 * too short an interval for all others.
5119 */
5120 for (px = proxies_list; px; px = px->next) {
5121 for (s = px->srv; s; s = s->next) {
5122 if (s->slowstart) {
5123 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
5124 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
5125 return ERR_ALERT | ERR_FATAL;
5126 }
5127 /* We need a warmup task that will be called when the server
5128 * state switches from down to up.
5129 */
5130 s->warmup = t;
5131 t->process = server_warmup;
5132 t->context = s;
5133 /* server can be in this state only because of */
5134 if (s->next_state == SRV_ST_STARTING)
5135 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, (now.tv_sec - s->last_change)) / 20)));
Christopher Faulet5c288742020-03-31 08:15:58 +02005136 }
5137
Christopher Faulet61cc8522020-04-20 14:54:42 +02005138 if (s->check.state & CHK_ST_CONFIGURED) {
5139 nbcheck++;
5140 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
5141 (!mininter || mininter > srv_getinter(&s->check)))
5142 mininter = srv_getinter(&s->check);
Christopher Faulet5c288742020-03-31 08:15:58 +02005143 }
5144
Christopher Faulet61cc8522020-04-20 14:54:42 +02005145 if (s->agent.state & CHK_ST_CONFIGURED) {
5146 nbcheck++;
5147 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
5148 (!mininter || mininter > srv_getinter(&s->agent)))
5149 mininter = srv_getinter(&s->agent);
5150 }
Christopher Faulet5c288742020-03-31 08:15:58 +02005151 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005152 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02005153
Christopher Faulet61cc8522020-04-20 14:54:42 +02005154 if (!nbcheck)
5155 return 0;
Christopher Fauletb7d30092020-03-30 15:19:03 +02005156
Christopher Faulet61cc8522020-04-20 14:54:42 +02005157 srand((unsigned)time(NULL));
Christopher Fauletb7d30092020-03-30 15:19:03 +02005158
Christopher Faulet61cc8522020-04-20 14:54:42 +02005159 /*
5160 * 2- start them as far as possible from each others. For this, we will
5161 * start them after their interval set to the min interval divided by
5162 * the number of servers, weighted by the server's position in the list.
5163 */
5164 for (px = proxies_list; px; px = px->next) {
5165 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
5166 if (init_pid_list()) {
5167 ha_alert("Starting [%s] check: out of memory.\n", px->id);
5168 return ERR_ALERT | ERR_FATAL;
5169 }
5170 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02005171
Christopher Faulet61cc8522020-04-20 14:54:42 +02005172 for (s = px->srv; s; s = s->next) {
5173 /* A task for the main check */
5174 if (s->check.state & CHK_ST_CONFIGURED) {
5175 if (s->check.type == PR_O2_EXT_CHK) {
5176 if (!prepare_external_check(&s->check))
5177 return ERR_ALERT | ERR_FATAL;
Christopher Fauletb7d30092020-03-30 15:19:03 +02005178 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005179 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
5180 return ERR_ALERT | ERR_FATAL;
5181 srvpos++;
Christopher Faulet98572322020-03-30 13:16:44 +02005182 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005183
Christopher Faulet61cc8522020-04-20 14:54:42 +02005184 /* A task for a auxiliary agent check */
5185 if (s->agent.state & CHK_ST_CONFIGURED) {
5186 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
5187 return ERR_ALERT | ERR_FATAL;
5188 }
5189 srvpos++;
5190 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005191 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005192 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005193 return 0;
5194}
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005195
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005196
Christopher Faulet61cc8522020-04-20 14:54:42 +02005197/*
5198 * Return value:
5199 * the port to be used for the health check
5200 * 0 in case no port could be found for the check
5201 */
5202static int srv_check_healthcheck_port(struct check *chk)
5203{
5204 int i = 0;
5205 struct server *srv = NULL;
5206
5207 srv = chk->server;
5208
5209 /* by default, we use the health check port ocnfigured */
5210 if (chk->port > 0)
5211 return chk->port;
5212
5213 /* try to get the port from check_core.addr if check.port not set */
5214 i = get_host_port(&chk->addr);
5215 if (i > 0)
5216 return i;
5217
5218 /* try to get the port from server address */
5219 /* prevent MAPPORTS from working at this point, since checks could
5220 * not be performed in such case (MAPPORTS impose a relative ports
5221 * based on live traffic)
5222 */
5223 if (srv->flags & SRV_F_MAPPORTS)
5224 return 0;
5225
5226 i = srv->svc_port; /* by default */
5227 if (i > 0)
5228 return i;
5229
5230 return 0;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005231}
5232
Christopher Faulet61cc8522020-04-20 14:54:42 +02005233/* Initializes an health-check attached to the server <srv>. Non-zero is returned
5234 * if an error occurred.
5235 */
5236static int init_srv_check(struct server *srv)
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005237{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005238 const char *err;
5239 struct tcpcheck_rule *r;
5240 int ret = 0;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005241
Christopher Faulet61cc8522020-04-20 14:54:42 +02005242 if (!srv->do_check)
5243 goto out;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005244
Christopher Fauletf50f4e92020-03-30 19:52:29 +02005245
Christopher Faulet61cc8522020-04-20 14:54:42 +02005246 /* If neither a port nor an addr was specified and no check transport
5247 * layer is forced, then the transport layer used by the checks is the
5248 * same as for the production traffic. Otherwise we use raw_sock by
5249 * default, unless one is specified.
5250 */
5251 if (!srv->check.port && !is_addr(&srv->check.addr)) {
5252 if (!srv->check.use_ssl && srv->use_ssl != -1) {
5253 srv->check.use_ssl = srv->use_ssl;
5254 srv->check.xprt = srv->xprt;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005255 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005256 else if (srv->check.use_ssl == 1)
5257 srv->check.xprt = xprt_get(XPRT_SSL);
5258 srv->check.send_proxy |= (srv->pp_opts);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005259 }
Christopher Faulet66163ec2020-05-20 22:36:24 +02005260 else if (srv->check.use_ssl == 1)
5261 srv->check.xprt = xprt_get(XPRT_SSL);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005262
Christopher Faulet12882cf2020-04-23 15:50:18 +02005263 /* Inherit the mux protocol from the server if not already defined for
5264 * the check
5265 */
5266 if (srv->mux_proto && !srv->check.mux_proto)
5267 srv->check.mux_proto = srv->mux_proto;
5268
Christopher Faulet61cc8522020-04-20 14:54:42 +02005269 /* validate <srv> server health-check settings */
Christopher Fauletf50f4e92020-03-30 19:52:29 +02005270
Christopher Faulet61cc8522020-04-20 14:54:42 +02005271 /* We need at least a service port, a check port or the first tcp-check
5272 * rule must be a 'connect' one when checking an IPv4/IPv6 server.
5273 */
5274 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
5275 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
5276 goto init;
Christopher Fauletf50f4e92020-03-30 19:52:29 +02005277
Christopher Faulet61cc8522020-04-20 14:54:42 +02005278 if (!srv->proxy->tcpcheck_rules.list || LIST_ISEMPTY(srv->proxy->tcpcheck_rules.list)) {
5279 ha_alert("config: %s '%s': server '%s' has neither service port nor check port.\n",
5280 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
5281 ret |= ERR_ALERT | ERR_ABORT;
5282 goto out;
5283 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005284
Christopher Faulet61cc8522020-04-20 14:54:42 +02005285 /* search the first action (connect / send / expect) in the list */
5286 r = get_first_tcpcheck_rule(&srv->proxy->tcpcheck_rules);
5287 if (!r || (r->action != TCPCHK_ACT_CONNECT) || (!r->connect.port && !get_host_port(&r->connect.addr))) {
5288 ha_alert("config: %s '%s': server '%s' has neither service port nor check port "
5289 "nor tcp_check rule 'connect' with port information.\n",
5290 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
5291 ret |= ERR_ALERT | ERR_ABORT;
5292 goto out;
5293 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005294
Christopher Faulet61cc8522020-04-20 14:54:42 +02005295 /* scan the tcp-check ruleset to ensure a port has been configured */
5296 list_for_each_entry(r, srv->proxy->tcpcheck_rules.list, list) {
5297 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->connect.port || !get_host_port(&r->connect.addr))) {
5298 ha_alert("config: %s '%s': server '%s' has neither service port nor check port, "
5299 "and a tcp_check rule 'connect' with no port information.\n",
5300 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
5301 ret |= ERR_ALERT | ERR_ABORT;
5302 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005303 }
Christopher Faulete5870d82020-04-15 11:32:03 +02005304 }
5305
Christopher Faulet61cc8522020-04-20 14:54:42 +02005306 init:
5307 if (!(srv->proxy->options2 & PR_O2_CHK_ANY)) {
5308 struct tcpcheck_ruleset *rs = NULL;
5309 struct tcpcheck_rules *rules = &srv->proxy->tcpcheck_rules;
5310 //char *errmsg = NULL;
Christopher Faulete5870d82020-04-15 11:32:03 +02005311
Christopher Faulet61cc8522020-04-20 14:54:42 +02005312 srv->proxy->options2 &= ~PR_O2_CHK_ANY;
5313 srv->proxy->options2 |= PR_O2_TCPCHK_CHK;
Christopher Faulete5870d82020-04-15 11:32:03 +02005314
Christopher Faulet61cc8522020-04-20 14:54:42 +02005315 rs = find_tcpcheck_ruleset("*tcp-check");
5316 if (!rs) {
5317 rs = create_tcpcheck_ruleset("*tcp-check");
5318 if (rs == NULL) {
5319 ha_alert("config: %s '%s': out of memory.\n",
5320 proxy_type_str(srv->proxy), srv->proxy->id);
5321 ret |= ERR_ALERT | ERR_FATAL;
5322 goto out;
5323 }
Christopher Faulete5870d82020-04-15 11:32:03 +02005324 }
5325
Christopher Faulet61cc8522020-04-20 14:54:42 +02005326 free_tcpcheck_vars(&rules->preset_vars);
5327 rules->list = &rs->rules;
5328 rules->flags = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02005329 }
5330
Christopher Faulet61cc8522020-04-20 14:54:42 +02005331 err = init_check(&srv->check, srv->proxy->options2 & PR_O2_CHK_ANY);
5332 if (err) {
5333 ha_alert("config: %s '%s': unable to init check for server '%s' (%s).\n",
5334 proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err);
5335 ret |= ERR_ALERT | ERR_ABORT;
5336 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005337 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005338 srv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
5339 global.maxsock++;
Christopher Faulete5870d82020-04-15 11:32:03 +02005340
Christopher Faulet61cc8522020-04-20 14:54:42 +02005341 out:
5342 return ret;
Christopher Faulete5870d82020-04-15 11:32:03 +02005343}
5344
Christopher Faulet61cc8522020-04-20 14:54:42 +02005345/* Initializes an agent-check attached to the server <srv>. Non-zero is returned
5346 * if an error occurred.
5347 */
5348static int init_srv_agent_check(struct server *srv)
Christopher Faulete5870d82020-04-15 11:32:03 +02005349{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005350 struct tcpcheck_rule *chk;
5351 const char *err;
5352 int ret = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02005353
Christopher Faulet61cc8522020-04-20 14:54:42 +02005354 if (!srv->do_agent)
5355 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005356
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05005357 /* If there is no connect rule preceding all send / expect rules, an
Christopher Faulet61cc8522020-04-20 14:54:42 +02005358 * implicit one is inserted before all others.
5359 */
5360 chk = get_first_tcpcheck_rule(srv->agent.tcpcheck_rules);
5361 if (!chk || chk->action != TCPCHK_ACT_CONNECT) {
5362 chk = calloc(1, sizeof(*chk));
5363 if (!chk) {
5364 ha_alert("config : %s '%s': unable to add implicit tcp-check connect rule"
5365 " to agent-check for server '%s' (out of memory).\n",
5366 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
5367 ret |= ERR_ALERT | ERR_FATAL;
5368 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005369 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005370 chk->action = TCPCHK_ACT_CONNECT;
5371 chk->connect.options = (TCPCHK_OPT_DEFAULT_CONNECT|TCPCHK_OPT_IMPLICIT);
5372 LIST_ADD(srv->agent.tcpcheck_rules->list, &chk->list);
Christopher Faulete5870d82020-04-15 11:32:03 +02005373 }
5374
Christopher Faulete5870d82020-04-15 11:32:03 +02005375
Christopher Faulet61cc8522020-04-20 14:54:42 +02005376 err = init_check(&srv->agent, PR_O2_TCPCHK_CHK);
5377 if (err) {
5378 ha_alert("config: %s '%s': unable to init agent-check for server '%s' (%s).\n",
5379 proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err);
5380 ret |= ERR_ALERT | ERR_ABORT;
5381 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005382 }
5383
Christopher Faulet61cc8522020-04-20 14:54:42 +02005384 if (!srv->agent.inter)
5385 srv->agent.inter = srv->check.inter;
5386
5387 srv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
5388 global.maxsock++;
5389
5390 out:
5391 return ret;
Christopher Faulete5870d82020-04-15 11:32:03 +02005392}
5393
Christopher Faulet61cc8522020-04-20 14:54:42 +02005394/* Check tcp-check health-check configuration for the proxy <px>. */
5395static int check_proxy_tcpcheck(struct proxy *px)
Christopher Faulete5870d82020-04-15 11:32:03 +02005396{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005397 struct tcpcheck_rule *chk, *back;
5398 char *comment = NULL, *errmsg = NULL;
5399 enum tcpcheck_rule_type prev_action = TCPCHK_ACT_COMMENT;
5400 int ret = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02005401
Christopher Faulet61cc8522020-04-20 14:54:42 +02005402 if (!(px->cap & PR_CAP_BE) || (px->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
5403 deinit_proxy_tcpcheck(px);
5404 goto out;
5405 }
5406
5407 free(px->check_command);
5408 free(px->check_path);
5409 px->check_command = px->check_path = NULL;
5410
5411 if (!px->tcpcheck_rules.list) {
5412 ha_alert("config : proxy '%s' : tcp-check configured but no ruleset defined.\n", px->id);
5413 ret |= ERR_ALERT | ERR_FATAL;
5414 goto out;
5415 }
5416
5417 /* HTTP ruleset only : */
5418 if ((px->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) {
5419 struct tcpcheck_rule *next;
5420
5421 /* move remaining implicit send rule from "option httpchk" line to the right place.
5422 * If such rule exists, it must be the first one. In this case, the rule is moved
5423 * after the first connect rule, if any. Otherwise, nothing is done.
5424 */
5425 chk = get_first_tcpcheck_rule(&px->tcpcheck_rules);
5426 if (chk && chk->action == TCPCHK_ACT_SEND && (chk->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)) {
5427 next = get_next_tcpcheck_rule(&px->tcpcheck_rules, chk);
5428 if (next && next->action == TCPCHK_ACT_CONNECT) {
5429 LIST_DEL(&chk->list);
5430 LIST_ADD(&next->list, &chk->list);
5431 chk->index = next->index;
5432 }
Christopher Faulete5870d82020-04-15 11:32:03 +02005433 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005434
5435 /* add implicit expect rule if the last one is a send. It is inherited from previous
5436 * versions where the http expect rule was optional. Now it is possible to chained
5437 * send/expect rules but the last expect may still be implicit.
5438 */
5439 chk = get_last_tcpcheck_rule(&px->tcpcheck_rules);
5440 if (chk && chk->action == TCPCHK_ACT_SEND) {
Christopher Faulet8021a5f2020-04-24 13:53:12 +02005441 next = parse_tcpcheck_expect((char *[]){"http-check", "expect", "status", "200-399", ""},
Christopher Faulet61cc8522020-04-20 14:54:42 +02005442 1, px, px->tcpcheck_rules.list, TCPCHK_RULES_HTTP_CHK,
5443 px->conf.file, px->conf.line, &errmsg);
5444 if (!next) {
5445 ha_alert("config : proxy '%s': unable to add implicit http-check expect rule "
5446 "(%s).\n", px->id, errmsg);
5447 free(errmsg);
5448 ret |= ERR_ALERT | ERR_FATAL;
5449 goto out;
5450 }
5451 LIST_ADDQ(px->tcpcheck_rules.list, &next->list);
5452 next->index = chk->index;
Christopher Faulete5870d82020-04-15 11:32:03 +02005453 }
5454 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005455
5456 /* For all ruleset: */
5457
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05005458 /* If there is no connect rule preceding all send / expect rules, an
Christopher Faulet61cc8522020-04-20 14:54:42 +02005459 * implicit one is inserted before all others.
5460 */
5461 chk = get_first_tcpcheck_rule(&px->tcpcheck_rules);
5462 if (!chk || chk->action != TCPCHK_ACT_CONNECT) {
5463 chk = calloc(1, sizeof(*chk));
5464 if (!chk) {
5465 ha_alert("config : proxy '%s': unable to add implicit tcp-check connect rule "
5466 "(out of memory).\n", px->id);
5467 ret |= ERR_ALERT | ERR_FATAL;
5468 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02005469 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005470 chk->action = TCPCHK_ACT_CONNECT;
5471 chk->connect.options = (TCPCHK_OPT_DEFAULT_CONNECT|TCPCHK_OPT_IMPLICIT);
5472 LIST_ADD(px->tcpcheck_rules.list, &chk->list);
5473 }
5474
5475 /* Remove all comment rules. To do so, when a such rule is found, the
5476 * comment is assigned to the following rule(s).
5477 */
5478 list_for_each_entry_safe(chk, back, px->tcpcheck_rules.list, list) {
5479 if (chk->action != prev_action && prev_action != TCPCHK_ACT_COMMENT) {
5480 free(comment);
5481 comment = NULL;
Christopher Faulete5870d82020-04-15 11:32:03 +02005482 }
5483
Christopher Faulet61cc8522020-04-20 14:54:42 +02005484 prev_action = chk->action;
5485 switch (chk->action) {
5486 case TCPCHK_ACT_COMMENT:
5487 free(comment);
5488 comment = chk->comment;
5489 LIST_DEL(&chk->list);
5490 free(chk);
5491 break;
5492 case TCPCHK_ACT_CONNECT:
5493 if (!chk->comment && comment)
5494 chk->comment = strdup(comment);
5495 /* fall though */
5496 case TCPCHK_ACT_ACTION_KW:
5497 free(comment);
5498 comment = NULL;
5499 break;
5500 case TCPCHK_ACT_SEND:
5501 case TCPCHK_ACT_EXPECT:
5502 if (!chk->comment && comment)
5503 chk->comment = strdup(comment);
5504 break;
Christopher Faulete5870d82020-04-15 11:32:03 +02005505 }
Christopher Faulete5870d82020-04-15 11:32:03 +02005506 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005507 free(comment);
5508 comment = NULL;
5509
5510 out:
5511 return ret;
Christopher Faulete5870d82020-04-15 11:32:03 +02005512}
5513
Christopher Faulet61cc8522020-04-20 14:54:42 +02005514void deinit_proxy_tcpcheck(struct proxy *px)
Christopher Faulete5870d82020-04-15 11:32:03 +02005515{
Christopher Faulet61cc8522020-04-20 14:54:42 +02005516 free_tcpcheck_vars(&px->tcpcheck_rules.preset_vars);
5517 px->tcpcheck_rules.flags = 0;
5518 px->tcpcheck_rules.list = NULL;
5519}
Christopher Faulete5870d82020-04-15 11:32:03 +02005520
Christopher Faulet61cc8522020-04-20 14:54:42 +02005521static void deinit_srv_check(struct server *srv)
5522{
5523 if (srv->check.state & CHK_ST_CONFIGURED)
5524 free_check(&srv->check);
5525 srv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED;
5526 srv->do_check = 0;
5527}
Christopher Faulete5870d82020-04-15 11:32:03 +02005528
Christopher Faulet61cc8522020-04-20 14:54:42 +02005529
5530static void deinit_srv_agent_check(struct server *srv)
5531{
5532 if (srv->agent.tcpcheck_rules) {
5533 free_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars);
5534 free(srv->agent.tcpcheck_rules);
5535 srv->agent.tcpcheck_rules = NULL;
Christopher Faulete5870d82020-04-15 11:32:03 +02005536 }
Christopher Faulete5870d82020-04-15 11:32:03 +02005537
Christopher Faulet61cc8522020-04-20 14:54:42 +02005538 if (srv->agent.state & CHK_ST_CONFIGURED)
5539 free_check(&srv->agent);
5540
5541 srv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT;
5542 srv->do_agent = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02005543}
5544
Christopher Faulet61cc8522020-04-20 14:54:42 +02005545static void deinit_tcpchecks()
Christopher Faulete5870d82020-04-15 11:32:03 +02005546{
Christopher Fauletd7cee712020-04-21 13:45:00 +02005547 struct tcpcheck_ruleset *rs;
Christopher Faulet61cc8522020-04-20 14:54:42 +02005548 struct tcpcheck_rule *r, *rb;
Christopher Fauletd7cee712020-04-21 13:45:00 +02005549 struct ebpt_node *node, *next;
Christopher Faulete5870d82020-04-15 11:32:03 +02005550
Christopher Fauletd7cee712020-04-21 13:45:00 +02005551 node = ebpt_first(&shared_tcpchecks);
5552 while (node) {
5553 next = ebpt_next(node);
5554 ebpt_delete(node);
5555 free(node->key);
5556 rs = container_of(node, typeof(*rs), node);
Christopher Faulet61cc8522020-04-20 14:54:42 +02005557 list_for_each_entry_safe(r, rb, &rs->rules, list) {
5558 LIST_DEL(&r->list);
5559 free_tcpcheck(r, 0);
5560 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005561 free(rs);
Christopher Fauletd7cee712020-04-21 13:45:00 +02005562 node = next;
Christopher Faulete5870d82020-04-15 11:32:03 +02005563 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005564}
Christopher Faulete5870d82020-04-15 11:32:03 +02005565
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005566
Christopher Faulet61cc8522020-04-20 14:54:42 +02005567REGISTER_POST_SERVER_CHECK(init_srv_check);
5568REGISTER_POST_SERVER_CHECK(init_srv_agent_check);
5569REGISTER_POST_PROXY_CHECK(check_proxy_tcpcheck);
5570REGISTER_POST_CHECK(start_checks);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005571
Christopher Faulet61cc8522020-04-20 14:54:42 +02005572REGISTER_SERVER_DEINIT(deinit_srv_check);
5573REGISTER_SERVER_DEINIT(deinit_srv_agent_check);
5574REGISTER_PROXY_DEINIT(deinit_proxy_tcpcheck);
5575REGISTER_POST_DEINIT(deinit_tcpchecks);
Christopher Faulete5870d82020-04-15 11:32:03 +02005576
Christopher Faulet61cc8522020-04-20 14:54:42 +02005577/**************************************************************************/
5578/****************************** Email alerts ******************************/
5579/* NOTE: It may be pertinent to use an applet to handle email alerts */
5580/* instead of a tcp-check ruleset */
5581/**************************************************************************/
5582void email_alert_free(struct email_alert *alert)
5583{
5584 struct tcpcheck_rule *rule, *back;
Christopher Faulete5870d82020-04-15 11:32:03 +02005585
Christopher Faulet61cc8522020-04-20 14:54:42 +02005586 if (!alert)
5587 return;
5588
5589 if (alert->rules.list) {
5590 list_for_each_entry_safe(rule, back, alert->rules.list, list) {
5591 LIST_DEL(&rule->list);
5592 free_tcpcheck(rule, 1);
Christopher Faulet98cc57c2020-04-01 20:52:31 +02005593 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005594 free_tcpcheck_vars(&alert->rules.preset_vars);
5595 free(alert->rules.list);
5596 alert->rules.list = NULL;
5597 }
5598 pool_free(pool_head_email_alert, alert);
5599}
Christopher Faulet98cc57c2020-04-01 20:52:31 +02005600
Christopher Faulet61cc8522020-04-20 14:54:42 +02005601static struct task *process_email_alert(struct task *t, void *context, unsigned short state)
5602{
5603 struct check *check = context;
5604 struct email_alertq *q;
5605 struct email_alert *alert;
Christopher Faulet98cc57c2020-04-01 20:52:31 +02005606
Christopher Faulet61cc8522020-04-20 14:54:42 +02005607 q = container_of(check, typeof(*q), check);
5608
5609 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
5610 while (1) {
5611 if (!(check->state & CHK_ST_ENABLED)) {
5612 if (LIST_ISEMPTY(&q->email_alerts)) {
5613 /* All alerts processed, queue the task */
5614 t->expire = TICK_ETERNITY;
5615 task_queue(t);
5616 goto end;
Christopher Faulet98cc57c2020-04-01 20:52:31 +02005617 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005618
5619 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
5620 LIST_DEL(&alert->list);
5621 t->expire = now_ms;
5622 check->tcpcheck_rules = &alert->rules;
5623 check->status = HCHK_STATUS_INI;
5624 check->state |= CHK_ST_ENABLED;
Christopher Fauletcf80f2f2020-04-01 11:04:52 +02005625 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005626
5627 process_chk(t, context, state);
5628 if (check->state & CHK_ST_INPROGRESS)
5629 break;
5630
5631 alert = container_of(check->tcpcheck_rules, typeof(*alert), rules);
5632 email_alert_free(alert);
5633 check->tcpcheck_rules = NULL;
5634 check->server = NULL;
5635 check->state &= ~CHK_ST_ENABLED;
5636 }
5637 end:
5638 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
5639 return t;
5640}
5641
5642/* Initializes mailer alerts for the proxy <p> using <mls> parameters.
5643 *
5644 * The function returns 1 in success case, otherwise, it returns 0 and err is
5645 * filled.
5646 */
5647int init_email_alert(struct mailers *mls, struct proxy *p, char **err)
5648{
5649 struct mailer *mailer;
5650 struct email_alertq *queues;
5651 const char *err_str;
5652 int i = 0;
5653
5654 if ((queues = calloc(mls->count, sizeof(*queues))) == NULL) {
5655 memprintf(err, "out of memory while allocating mailer alerts queues");
5656 goto fail_no_queue;
5657 }
5658
5659 for (mailer = mls->mailer_list; mailer; i++, mailer = mailer->next) {
5660 struct email_alertq *q = &queues[i];
5661 struct check *check = &q->check;
5662 struct task *t;
5663
5664 LIST_INIT(&q->email_alerts);
5665 HA_SPIN_INIT(&q->lock);
5666 check->inter = mls->timeout.mail;
5667 check->rise = DEF_AGENT_RISETIME;
5668 check->proxy = p;
5669 check->fall = DEF_AGENT_FALLTIME;
5670 if ((err_str = init_check(check, PR_O2_TCPCHK_CHK))) {
5671 memprintf(err, "%s", err_str);
5672 goto error;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005673 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005674
5675 check->xprt = mailer->xprt;
5676 check->addr = mailer->addr;
5677 check->port = get_host_port(&mailer->addr);
5678
5679 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
5680 memprintf(err, "out of memory while allocating mailer alerts task");
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005681 goto error;
5682 }
5683
Christopher Faulet61cc8522020-04-20 14:54:42 +02005684 check->task = t;
5685 t->process = process_email_alert;
5686 t->context = check;
5687
5688 /* check this in one ms */
5689 t->expire = TICK_ETERNITY;
5690 check->start = now;
5691 task_queue(t);
5692 }
5693
5694 mls->users++;
5695 free(p->email_alert.mailers.name);
5696 p->email_alert.mailers.m = mls;
5697 p->email_alert.queues = queues;
5698 return 0;
5699
5700 error:
5701 for (i = 0; i < mls->count; i++) {
5702 struct email_alertq *q = &queues[i];
5703 struct check *check = &q->check;
5704
5705 free_check(check);
5706 }
5707 free(queues);
5708 fail_no_queue:
5709 return 1;
5710}
5711
5712static int add_tcpcheck_expect_str(struct tcpcheck_rules *rules, const char *str)
5713{
5714 struct tcpcheck_rule *tcpcheck, *prev_check;
5715 struct tcpcheck_expect *expect;
5716
5717 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
5718 return 0;
5719 memset(tcpcheck, 0, sizeof(*tcpcheck));
5720 tcpcheck->action = TCPCHK_ACT_EXPECT;
5721
5722 expect = &tcpcheck->expect;
5723 expect->type = TCPCHK_EXPECT_STRING;
5724 LIST_INIT(&expect->onerror_fmt);
5725 LIST_INIT(&expect->onsuccess_fmt);
5726 expect->ok_status = HCHK_STATUS_L7OKD;
5727 expect->err_status = HCHK_STATUS_L7RSP;
5728 expect->tout_status = HCHK_STATUS_L7TOUT;
5729 expect->data = ist2(strdup(str), strlen(str));
Christopher Fauletb61caf42020-04-21 10:57:42 +02005730 if (!isttest(expect->data)) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02005731 pool_free(pool_head_tcpcheck_rule, tcpcheck);
5732 return 0;
5733 }
5734
5735 /* All tcp-check expect points back to the first inverse expect rule
5736 * in a chain of one or more expect rule, potentially itself.
5737 */
5738 tcpcheck->expect.head = tcpcheck;
5739 list_for_each_entry_rev(prev_check, rules->list, list) {
5740 if (prev_check->action == TCPCHK_ACT_EXPECT) {
5741 if (prev_check->expect.flags & TCPCHK_EXPT_FL_INV)
5742 tcpcheck->expect.head = prev_check;
5743 continue;
5744 }
5745 if (prev_check->action != TCPCHK_ACT_COMMENT && prev_check->action != TCPCHK_ACT_ACTION_KW)
5746 break;
5747 }
5748 LIST_ADDQ(rules->list, &tcpcheck->list);
5749 return 1;
5750}
5751
5752static int add_tcpcheck_send_strs(struct tcpcheck_rules *rules, const char * const *strs)
5753{
5754 struct tcpcheck_rule *tcpcheck;
5755 struct tcpcheck_send *send;
5756 const char *in;
5757 char *dst;
5758 int i;
5759
5760 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
5761 return 0;
5762 memset(tcpcheck, 0, sizeof(*tcpcheck));
5763 tcpcheck->action = TCPCHK_ACT_SEND;
5764
5765 send = &tcpcheck->send;
5766 send->type = TCPCHK_SEND_STRING;
5767
5768 for (i = 0; strs[i]; i++)
5769 send->data.len += strlen(strs[i]);
5770
Christopher Fauletb61caf42020-04-21 10:57:42 +02005771 send->data.ptr = malloc(istlen(send->data) + 1);
Christopher Faulet61cc8522020-04-20 14:54:42 +02005772 if (!isttest(send->data)) {
5773 pool_free(pool_head_tcpcheck_rule, tcpcheck);
5774 return 0;
5775 }
5776
Christopher Fauletb61caf42020-04-21 10:57:42 +02005777 dst = istptr(send->data);
Christopher Faulet61cc8522020-04-20 14:54:42 +02005778 for (i = 0; strs[i]; i++)
5779 for (in = strs[i]; (*dst = *in++); dst++);
5780 *dst = 0;
5781
5782 LIST_ADDQ(rules->list, &tcpcheck->list);
5783 return 1;
5784}
5785
5786static int enqueue_one_email_alert(struct proxy *p, struct server *s,
5787 struct email_alertq *q, const char *msg)
5788{
5789 struct email_alert *alert;
5790 struct tcpcheck_rule *tcpcheck;
5791 struct check *check = &q->check;
5792
5793 if ((alert = pool_alloc(pool_head_email_alert)) == NULL)
5794 goto error;
5795 LIST_INIT(&alert->list);
5796 alert->rules.flags = TCPCHK_RULES_TCP_CHK;
5797 alert->rules.list = calloc(1, sizeof(*alert->rules.list));
5798 if (!alert->rules.list)
5799 goto error;
5800 LIST_INIT(alert->rules.list);
5801 LIST_INIT(&alert->rules.preset_vars); /* unused for email alerts */
5802 alert->srv = s;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005803
Christopher Faulet61cc8522020-04-20 14:54:42 +02005804 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
5805 goto error;
5806 memset(tcpcheck, 0, sizeof(*tcpcheck));
5807 tcpcheck->action = TCPCHK_ACT_CONNECT;
5808 tcpcheck->comment = NULL;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005809
Christopher Faulet61cc8522020-04-20 14:54:42 +02005810 LIST_ADDQ(alert->rules.list, &tcpcheck->list);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005811
Christopher Faulet61cc8522020-04-20 14:54:42 +02005812 if (!add_tcpcheck_expect_str(&alert->rules, "220 "))
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005813 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02005814
5815 {
5816 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
5817 if (!add_tcpcheck_send_strs(&alert->rules, strs))
5818 goto error;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005819 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005820
Christopher Faulet61cc8522020-04-20 14:54:42 +02005821 if (!add_tcpcheck_expect_str(&alert->rules, "250 "))
5822 goto error;
5823
5824 {
5825 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
5826 if (!add_tcpcheck_send_strs(&alert->rules, strs))
Christopher Fauletbe52b4d2020-04-01 16:30:22 +02005827 goto error;
Christopher Fauletbe52b4d2020-04-01 16:30:22 +02005828 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005829
5830 if (!add_tcpcheck_expect_str(&alert->rules, "250 "))
5831 goto error;
5832
5833 {
5834 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
5835 if (!add_tcpcheck_send_strs(&alert->rules, strs))
Christopher Fauletbe52b4d2020-04-01 16:30:22 +02005836 goto error;
Christopher Fauletbe52b4d2020-04-01 16:30:22 +02005837 }
5838
Christopher Faulet61cc8522020-04-20 14:54:42 +02005839 if (!add_tcpcheck_expect_str(&alert->rules, "250 "))
5840 goto error;
5841
5842 {
5843 const char * const strs[2] = { "DATA\r\n" };
5844 if (!add_tcpcheck_send_strs(&alert->rules, strs))
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005845 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02005846 }
5847
5848 if (!add_tcpcheck_expect_str(&alert->rules, "354 "))
5849 goto error;
5850
5851 {
5852 struct tm tm;
5853 char datestr[48];
5854 const char * const strs[18] = {
5855 "From: ", p->email_alert.from, "\r\n",
5856 "To: ", p->email_alert.to, "\r\n",
5857 "Date: ", datestr, "\r\n",
5858 "Subject: [HAproxy Alert] ", msg, "\r\n",
5859 "\r\n",
5860 msg, "\r\n",
5861 "\r\n",
5862 ".\r\n",
5863 NULL
5864 };
5865
5866 get_localtime(date.tv_sec, &tm);
5867
5868 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005869 goto error;
5870 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02005871
5872 if (!add_tcpcheck_send_strs(&alert->rules, strs))
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005873 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02005874 }
5875
5876 if (!add_tcpcheck_expect_str(&alert->rules, "250 "))
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005877 goto error;
Christopher Faulet61cc8522020-04-20 14:54:42 +02005878
5879 {
5880 const char * const strs[2] = { "QUIT\r\n" };
5881 if (!add_tcpcheck_send_strs(&alert->rules, strs))
5882 goto error;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005883 }
5884
Christopher Faulet61cc8522020-04-20 14:54:42 +02005885 if (!add_tcpcheck_expect_str(&alert->rules, "221 "))
5886 goto error;
5887
5888 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
5889 task_wakeup(check->task, TASK_WOKEN_MSG);
5890 LIST_ADDQ(&q->email_alerts, &alert->list);
5891 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
5892 return 1;
5893
5894error:
5895 email_alert_free(alert);
5896 return 0;
5897}
5898
5899static void enqueue_email_alert(struct proxy *p, struct server *s, const char *msg)
5900{
5901 int i;
5902 struct mailer *mailer;
5903
5904 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
5905 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
5906 if (!enqueue_one_email_alert(p, s, &p->email_alert.queues[i], msg)) {
5907 ha_alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
5908 return;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005909 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005910 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005911
Christopher Faulet61cc8522020-04-20 14:54:42 +02005912 return;
5913}
5914
5915/*
5916 * Send email alert if configured.
5917 */
5918void send_email_alert(struct server *s, int level, const char *format, ...)
5919{
5920 va_list argp;
5921 char buf[1024];
5922 int len;
5923 struct proxy *p = s->proxy;
5924
5925 if (!p->email_alert.mailers.m || level > p->email_alert.level || format == NULL)
5926 return;
5927
5928 va_start(argp, format);
5929 len = vsnprintf(buf, sizeof(buf), format, argp);
5930 va_end(argp);
5931
5932 if (len < 0 || len >= sizeof(buf)) {
5933 ha_alert("Email alert [%s] could not format message\n", p->id);
5934 return;
5935 }
5936
5937 enqueue_email_alert(p, s, buf);
5938}
5939
5940/**************************************************************************/
5941/************************** Check sample fetches **************************/
5942/**************************************************************************/
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005943
Christopher Faulet61cc8522020-04-20 14:54:42 +02005944static struct sample_fetch_kw_list smp_kws = {ILH, {
Christopher Faulet61cc8522020-04-20 14:54:42 +02005945 { /* END */ },
5946}};
5947
5948INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
5949
5950
5951/**************************************************************************/
5952/************************ Check's parsing functions ***********************/
5953/**************************************************************************/
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005954/* Parses the "tcp-check" proxy keyword */
5955static int proxy_parse_tcpcheck(char **args, int section, struct proxy *curpx,
5956 struct proxy *defpx, const char *file, int line,
5957 char **errmsg)
5958{
Christopher Faulet404f9192020-04-09 23:13:54 +02005959 struct tcpcheck_ruleset *rs = NULL;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005960 struct tcpcheck_rule *chk = NULL;
Gaetan Rivet5301b012020-02-25 17:19:17 +01005961 int index, cur_arg, ret = 0;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005962
5963 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[0], NULL))
5964 ret = 1;
5965
Christopher Faulet404f9192020-04-09 23:13:54 +02005966 /* Deduce the ruleset name from the proxy info */
5967 chunk_printf(&trash, "*tcp-check-%s_%s-%d",
5968 ((curpx == defpx) ? "defaults" : curpx->id),
5969 curpx->conf.file, curpx->conf.line);
Christopher Faulet5d503fc2020-03-30 20:34:34 +02005970
Christopher Faulet61cc8522020-04-20 14:54:42 +02005971 rs = find_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulet404f9192020-04-09 23:13:54 +02005972 if (rs == NULL) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02005973 rs = create_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulet404f9192020-04-09 23:13:54 +02005974 if (rs == NULL) {
5975 memprintf(errmsg, "out of memory.\n");
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005976 goto error;
5977 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005978 }
5979
Gaetan Rivet5301b012020-02-25 17:19:17 +01005980 index = 0;
Christopher Faulet404f9192020-04-09 23:13:54 +02005981 if (!LIST_ISEMPTY(&rs->rules)) {
5982 chk = LIST_PREV(&rs->rules, typeof(chk), list);
Gaetan Rivet5301b012020-02-25 17:19:17 +01005983 index = chk->index + 1;
5984 }
5985
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005986 cur_arg = 1;
5987 if (strcmp(args[cur_arg], "connect") == 0)
Christopher Faulet404f9192020-04-09 23:13:54 +02005988 chk = parse_tcpcheck_connect(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
Christopher Fauletb50b3e62020-05-05 18:43:43 +02005989 else if (strcmp(args[cur_arg], "send") == 0 || strcmp(args[cur_arg], "send-binary") == 0 ||
5990 strcmp(args[cur_arg], "send-lf") == 0 || strcmp(args[cur_arg], "send-binary-lf") == 0)
Christopher Faulet404f9192020-04-09 23:13:54 +02005991 chk = parse_tcpcheck_send(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005992 else if (strcmp(args[cur_arg], "expect") == 0)
Christopher Faulete5870d82020-04-15 11:32:03 +02005993 chk = parse_tcpcheck_expect(args, cur_arg, curpx, &rs->rules, 0, file, line, errmsg);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005994 else if (strcmp(args[cur_arg], "comment") == 0)
Christopher Faulet404f9192020-04-09 23:13:54 +02005995 chk = parse_tcpcheck_comment(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01005996 else {
Gaetan Rivet707b52f2020-02-21 18:14:59 +01005997 struct action_kw *kw = action_kw_tcp_check_lookup(args[cur_arg]);
5998
5999 if (!kw) {
6000 action_kw_tcp_check_build_list(&trash);
6001 memprintf(errmsg, "'%s' only supports 'comment', 'connect', 'send', 'send-binary', 'expect'"
6002 "%s%s. but got '%s'",
6003 args[0], (*trash.area ? ", " : ""), trash.area, args[1]);
6004 goto error;
6005 }
Christopher Faulet404f9192020-04-09 23:13:54 +02006006 chk = parse_tcpcheck_action(args, cur_arg, curpx, &rs->rules, kw, file, line, errmsg);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01006007 }
6008
6009 if (!chk) {
6010 memprintf(errmsg, "'%s %s' : %s.", args[0], args[1], *errmsg);
6011 goto error;
6012 }
Christopher Faulet528f4812020-04-28 10:47:28 +02006013 ret = (ret || (*errmsg != NULL)); /* Handle warning */
Christopher Fauletfd6c2292020-03-25 18:20:15 +01006014
6015 /* No error: add the tcp-check rule in the list */
Gaetan Rivet5301b012020-02-25 17:19:17 +01006016 chk->index = index;
Christopher Faulet404f9192020-04-09 23:13:54 +02006017 LIST_ADDQ(&rs->rules, &chk->list);
6018
6019 if ((curpx->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletd7e63962020-04-17 20:15:59 +02006020 (curpx->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) {
Christopher Faulet404f9192020-04-09 23:13:54 +02006021 /* Use this ruleset if the proxy already has tcp-check enabled */
6022 curpx->tcpcheck_rules.list = &rs->rules;
6023 curpx->tcpcheck_rules.flags &= ~TCPCHK_RULES_UNUSED_TCP_RS;
6024 }
6025 else {
6026 /* mark this ruleset as unused for now */
6027 curpx->tcpcheck_rules.flags |= TCPCHK_RULES_UNUSED_TCP_RS;
6028 }
6029
Christopher Fauletfd6c2292020-03-25 18:20:15 +01006030 return ret;
6031
6032 error:
Christopher Faulet404f9192020-04-09 23:13:54 +02006033 free_tcpcheck(chk, 0);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006034 free_tcpcheck_ruleset(rs);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01006035 return -1;
6036}
6037
Christopher Faulet51b129f2020-04-09 15:54:18 +02006038/* Parses the "http-check" proxy keyword */
6039static int proxy_parse_httpcheck(char **args, int section, struct proxy *curpx,
6040 struct proxy *defpx, const char *file, int line,
6041 char **errmsg)
6042{
Christopher Faulete5870d82020-04-15 11:32:03 +02006043 struct tcpcheck_ruleset *rs = NULL;
6044 struct tcpcheck_rule *chk = NULL;
6045 int index, cur_arg, ret = 0;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006046
6047 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[0], NULL))
6048 ret = 1;
6049
6050 cur_arg = 1;
6051 if (strcmp(args[cur_arg], "disable-on-404") == 0) {
6052 /* enable a graceful server shutdown on an HTTP 404 response */
6053 curpx->options |= PR_O_DISABLE404;
6054 if (too_many_args(1, args, errmsg, NULL))
6055 goto error;
Christopher Faulete5870d82020-04-15 11:32:03 +02006056 goto out;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006057 }
6058 else if (strcmp(args[cur_arg], "send-state") == 0) {
6059 /* enable emission of the apparent state of a server in HTTP checks */
6060 curpx->options2 |= PR_O2_CHK_SNDST;
6061 if (too_many_args(1, args, errmsg, NULL))
6062 goto error;
Christopher Faulete5870d82020-04-15 11:32:03 +02006063 goto out;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006064 }
Christopher Faulet51b129f2020-04-09 15:54:18 +02006065
Christopher Faulete5870d82020-04-15 11:32:03 +02006066 /* Deduce the ruleset name from the proxy info */
6067 chunk_printf(&trash, "*http-check-%s_%s-%d",
6068 ((curpx == defpx) ? "defaults" : curpx->id),
6069 curpx->conf.file, curpx->conf.line);
Christopher Faulet51b129f2020-04-09 15:54:18 +02006070
Christopher Faulet61cc8522020-04-20 14:54:42 +02006071 rs = find_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulete5870d82020-04-15 11:32:03 +02006072 if (rs == NULL) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02006073 rs = create_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulete5870d82020-04-15 11:32:03 +02006074 if (rs == NULL) {
6075 memprintf(errmsg, "out of memory.\n");
6076 goto error;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006077 }
6078 }
Christopher Faulet51b129f2020-04-09 15:54:18 +02006079
Christopher Faulete5870d82020-04-15 11:32:03 +02006080 index = 0;
6081 if (!LIST_ISEMPTY(&rs->rules)) {
6082 chk = LIST_PREV(&rs->rules, typeof(chk), list);
6083 if (chk->action != TCPCHK_ACT_SEND || !(chk->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT))
6084 index = chk->index + 1;
6085 }
Christopher Faulet51b129f2020-04-09 15:54:18 +02006086
Christopher Faulete5870d82020-04-15 11:32:03 +02006087 if (strcmp(args[cur_arg], "connect") == 0)
6088 chk = parse_tcpcheck_connect(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
6089 else if (strcmp(args[cur_arg], "send") == 0)
6090 chk = parse_tcpcheck_send_http(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
6091 else if (strcmp(args[cur_arg], "expect") == 0)
6092 chk = parse_tcpcheck_expect(args, cur_arg, curpx, &rs->rules, TCPCHK_RULES_HTTP_CHK,
6093 file, line, errmsg);
6094 else if (strcmp(args[cur_arg], "comment") == 0)
6095 chk = parse_tcpcheck_comment(args, cur_arg, curpx, &rs->rules, file, line, errmsg);
6096 else {
6097 struct action_kw *kw = action_kw_tcp_check_lookup(args[cur_arg]);
Christopher Faulet51b129f2020-04-09 15:54:18 +02006098
Christopher Faulete5870d82020-04-15 11:32:03 +02006099 if (!kw) {
6100 action_kw_tcp_check_build_list(&trash);
6101 memprintf(errmsg, "'%s' only supports 'disable-on-404', 'send-state', 'comment', 'connect',"
6102 " 'send', 'expect'%s%s. but got '%s'",
6103 args[0], (*trash.area ? ", " : ""), trash.area, args[1]);
6104 goto error;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006105 }
Christopher Faulete5870d82020-04-15 11:32:03 +02006106 chk = parse_tcpcheck_action(args, cur_arg, curpx, &rs->rules, kw, file, line, errmsg);
6107 }
Christopher Faulet51b129f2020-04-09 15:54:18 +02006108
Christopher Faulete5870d82020-04-15 11:32:03 +02006109 if (!chk) {
6110 memprintf(errmsg, "'%s %s' : %s.", args[0], args[1], *errmsg);
6111 goto error;
6112 }
6113 ret = (*errmsg != NULL); /* Handle warning */
6114
6115 chk->index = index;
6116 if ((curpx->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
6117 (curpx->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) {
6118 /* Use this ruleset if the proxy already has http-check enabled */
6119 curpx->tcpcheck_rules.list = &rs->rules;
6120 curpx->tcpcheck_rules.flags &= ~TCPCHK_RULES_UNUSED_HTTP_RS;
6121 if (!tcpcheck_add_http_rule(chk, &curpx->tcpcheck_rules, errmsg)) {
6122 memprintf(errmsg, "'%s %s' : %s.", args[0], args[1], *errmsg);
6123 curpx->tcpcheck_rules.list = NULL;
Christopher Faulet51b129f2020-04-09 15:54:18 +02006124 goto error;
6125 }
6126 }
6127 else {
Christopher Faulete5870d82020-04-15 11:32:03 +02006128 /* mark this ruleset as unused for now */
6129 curpx->tcpcheck_rules.flags |= TCPCHK_RULES_UNUSED_HTTP_RS;
6130 LIST_ADDQ(&rs->rules, &chk->list);
Christopher Faulet51b129f2020-04-09 15:54:18 +02006131 }
6132
Christopher Faulete5870d82020-04-15 11:32:03 +02006133 out:
Christopher Faulet51b129f2020-04-09 15:54:18 +02006134 return ret;
6135
6136 error:
Christopher Faulete5870d82020-04-15 11:32:03 +02006137 free_tcpcheck(chk, 0);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006138 free_tcpcheck_ruleset(rs);
Christopher Faulet51b129f2020-04-09 15:54:18 +02006139 return -1;
6140}
6141
Christopher Faulete9111b62020-04-09 18:12:08 +02006142/* Parses the "external-check" proxy keyword */
6143static int proxy_parse_extcheck(char **args, int section, struct proxy *curpx,
6144 struct proxy *defpx, const char *file, int line,
6145 char **errmsg)
6146{
6147 int cur_arg, ret = 0;
6148
6149 cur_arg = 1;
6150 if (!*(args[cur_arg])) {
6151 memprintf(errmsg, "missing argument after '%s'.\n", args[0]);
6152 goto error;
6153 }
6154
6155 if (strcmp(args[cur_arg], "command") == 0) {
6156 if (too_many_args(2, args, errmsg, NULL))
6157 goto error;
6158 if (!*(args[cur_arg+1])) {
6159 memprintf(errmsg, "missing argument after '%s'.", args[cur_arg]);
6160 goto error;
6161 }
6162 free(curpx->check_command);
6163 curpx->check_command = strdup(args[cur_arg+1]);
6164 }
6165 else if (strcmp(args[cur_arg], "path") == 0) {
6166 if (too_many_args(2, args, errmsg, NULL))
6167 goto error;
6168 if (!*(args[cur_arg+1])) {
6169 memprintf(errmsg, "missing argument after '%s'.", args[cur_arg]);
6170 goto error;
6171 }
6172 free(curpx->check_path);
6173 curpx->check_path = strdup(args[cur_arg+1]);
6174 }
6175 else {
6176 memprintf(errmsg, "'%s' only supports 'command' and 'path'. but got '%s'.",
6177 args[0], args[1]);
6178 goto error;
6179 }
6180
6181 ret = (*errmsg != NULL); /* Handle warning */
6182 return ret;
6183
6184error:
6185 return -1;
6186}
Christopher Faulet33f05df2020-04-01 11:08:50 +02006187
Christopher Faulet430e4802020-04-09 15:28:16 +02006188/* Parses the "option tcp-check" proxy keyword */
6189int proxy_parse_tcp_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6190 const char *file, int line)
6191{
Christopher Faulet404f9192020-04-09 23:13:54 +02006192 struct tcpcheck_ruleset *rs = NULL;
Christopher Faulet430e4802020-04-09 15:28:16 +02006193 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6194 int err_code = 0;
6195
6196 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6197 err_code |= ERR_WARN;
6198
6199 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
6200 goto out;
6201
Christopher Faulet404f9192020-04-09 23:13:54 +02006202 curpx->options2 &= ~PR_O2_CHK_ANY;
6203 curpx->options2 |= PR_O2_TCPCHK_CHK;
6204
Christopher Fauletd7e63962020-04-17 20:15:59 +02006205 if ((rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) {
Christopher Faulet404f9192020-04-09 23:13:54 +02006206 /* If a tcp-check rulesset is already set, do nothing */
6207 if (rules->list)
6208 goto out;
6209
6210 /* If a tcp-check ruleset is waiting to be used for the current proxy,
6211 * get it.
6212 */
6213 if (rules->flags & TCPCHK_RULES_UNUSED_TCP_RS)
6214 goto curpx_ruleset;
6215
6216 /* Otherwise, try to get the tcp-check ruleset of the default proxy */
6217 chunk_printf(&trash, "*tcp-check-defaults_%s-%d", defpx->conf.file, defpx->conf.line);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006218 rs = find_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulet404f9192020-04-09 23:13:54 +02006219 if (rs)
6220 goto ruleset_found;
Christopher Faulet430e4802020-04-09 15:28:16 +02006221 }
6222
Christopher Faulet404f9192020-04-09 23:13:54 +02006223 curpx_ruleset:
6224 /* Deduce the ruleset name from the proxy info */
6225 chunk_printf(&trash, "*tcp-check-%s_%s-%d",
6226 ((curpx == defpx) ? "defaults" : curpx->id),
6227 curpx->conf.file, curpx->conf.line);
6228
Christopher Faulet61cc8522020-04-20 14:54:42 +02006229 rs = find_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulet404f9192020-04-09 23:13:54 +02006230 if (rs == NULL) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02006231 rs = create_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulet404f9192020-04-09 23:13:54 +02006232 if (rs == NULL) {
Christopher Faulet430e4802020-04-09 15:28:16 +02006233 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6234 goto error;
6235 }
Christopher Faulet430e4802020-04-09 15:28:16 +02006236 }
6237
Christopher Faulet404f9192020-04-09 23:13:54 +02006238 ruleset_found:
6239 free_tcpcheck_vars(&rules->preset_vars);
Christopher Faulet404f9192020-04-09 23:13:54 +02006240 rules->list = &rs->rules;
Christopher Fauletd7e63962020-04-17 20:15:59 +02006241 rules->flags |= TCPCHK_RULES_TCP_CHK;
Christopher Faulet430e4802020-04-09 15:28:16 +02006242
6243 out:
6244 return err_code;
6245
6246 error:
6247 err_code |= ERR_ALERT | ERR_FATAL;
6248 goto out;
6249}
Christopher Faulet33f05df2020-04-01 11:08:50 +02006250
6251/* Parses the "option redis-check" proxy keyword */
6252int proxy_parse_redis_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6253 const char *file, int line)
6254{
6255 static char *redis_req = "*1\r\n$4\r\nPING\r\n";
6256 static char *redis_res = "+PONG\r\n";
6257
6258 struct tcpcheck_ruleset *rs = NULL;
6259 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6260 struct tcpcheck_rule *chk;
6261 char *errmsg = NULL;
6262 int err_code = 0;
6263
6264 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6265 err_code |= ERR_WARN;
6266
6267 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
6268 goto out;
Christopher Faulet33f05df2020-04-01 11:08:50 +02006269
6270 curpx->options2 &= ~PR_O2_CHK_ANY;
6271 curpx->options2 |= PR_O2_TCPCHK_CHK;
6272
6273 free_tcpcheck_vars(&rules->preset_vars);
6274 rules->list = NULL;
6275 rules->flags = 0;
6276
Christopher Faulet61cc8522020-04-20 14:54:42 +02006277 rs = find_tcpcheck_ruleset("*redis-check");
Christopher Faulet33f05df2020-04-01 11:08:50 +02006278 if (rs)
6279 goto ruleset_found;
6280
Christopher Faulet61cc8522020-04-20 14:54:42 +02006281 rs = create_tcpcheck_ruleset("*redis-check");
Christopher Faulet33f05df2020-04-01 11:08:50 +02006282 if (rs == NULL) {
6283 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6284 goto error;
6285 }
6286
6287 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send", redis_req, ""},
6288 1, curpx, &rs->rules, file, line, &errmsg);
6289 if (!chk) {
6290 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6291 goto error;
6292 }
6293 chk->index = 0;
6294 LIST_ADDQ(&rs->rules, &chk->list);
6295
6296 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "string", redis_res,
6297 "error-status", "L7STS",
Christopher Faulete596d182020-05-05 17:46:34 +02006298 "on-error", "%[res.payload(0,0),cut_crlf]",
Christopher Faulet33f05df2020-04-01 11:08:50 +02006299 "on-success", "Redis server is ok",
6300 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006301 1, curpx, &rs->rules, TCPCHK_RULES_REDIS_CHK, file, line, &errmsg);
Christopher Faulet33f05df2020-04-01 11:08:50 +02006302 if (!chk) {
6303 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6304 goto error;
6305 }
6306 chk->index = 1;
6307 LIST_ADDQ(&rs->rules, &chk->list);
6308
Christopher Fauletd7cee712020-04-21 13:45:00 +02006309 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet33f05df2020-04-01 11:08:50 +02006310
6311 ruleset_found:
6312 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02006313 rules->flags |= TCPCHK_RULES_REDIS_CHK;
Christopher Faulet33f05df2020-04-01 11:08:50 +02006314
6315 out:
6316 free(errmsg);
6317 return err_code;
6318
6319 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02006320 free_tcpcheck_ruleset(rs);
Christopher Faulet33f05df2020-04-01 11:08:50 +02006321 err_code |= ERR_ALERT | ERR_FATAL;
6322 goto out;
6323}
6324
Christopher Faulet811f78c2020-04-01 11:10:27 +02006325
6326/* Parses the "option ssl-hello-chk" proxy keyword */
6327int proxy_parse_ssl_hello_chk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6328 const char *file, int line)
6329{
6330 /* This is the SSLv3 CLIENT HELLO packet used in conjunction with the
6331 * ssl-hello-chk option to ensure that the remote server speaks SSL.
6332 *
6333 * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details.
6334 */
6335 static char sslv3_client_hello[] = {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05006336 "16" /* ContentType : 0x16 = Handshake */
Christopher Faulet811f78c2020-04-01 11:10:27 +02006337 "0300" /* ProtocolVersion : 0x0300 = SSLv3 */
6338 "0079" /* ContentLength : 0x79 bytes after this one */
6339 "01" /* HanshakeType : 0x01 = CLIENT HELLO */
6340 "000075" /* HandshakeLength : 0x75 bytes after this one */
6341 "0300" /* Hello Version : 0x0300 = v3 */
6342 "%[date(),htonl,hex]" /* Unix GMT Time (s) : filled with <now> (@0x0B) */
6343 "%[str(HAPROXYSSLCHK\nHAPROXYSSLCHK\n),hex]" /* Random : must be exactly 28 bytes */
6344 "00" /* Session ID length : empty (no session ID) */
6345 "004E" /* Cipher Suite Length : 78 bytes after this one */
6346 "0001" "0002" "0003" "0004" /* 39 most common ciphers : */
6347 "0005" "0006" "0007" "0008" /* 0x01...0x1B, 0x2F...0x3A */
6348 "0009" "000A" "000B" "000C" /* This covers RSA/DH, */
6349 "000D" "000E" "000F" "0010" /* various bit lengths, */
6350 "0011" "0012" "0013" "0014" /* SHA1/MD5, DES/3DES/AES... */
6351 "0015" "0016" "0017" "0018"
6352 "0019" "001A" "001B" "002F"
6353 "0030" "0031" "0032" "0033"
6354 "0034" "0035" "0036" "0037"
6355 "0038" "0039" "003A"
6356 "01" /* Compression Length : 0x01 = 1 byte for types */
6357 "00" /* Compression Type : 0x00 = NULL compression */
6358 };
6359
6360 struct tcpcheck_ruleset *rs = NULL;
6361 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6362 struct tcpcheck_rule *chk;
6363 char *errmsg = NULL;
6364 int err_code = 0;
6365
6366 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6367 err_code |= ERR_WARN;
6368
6369 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
6370 goto out;
6371
Christopher Faulet811f78c2020-04-01 11:10:27 +02006372 curpx->options2 &= ~PR_O2_CHK_ANY;
6373 curpx->options2 |= PR_O2_TCPCHK_CHK;
6374
6375 free_tcpcheck_vars(&rules->preset_vars);
6376 rules->list = NULL;
6377 rules->flags = 0;
6378
Christopher Faulet61cc8522020-04-20 14:54:42 +02006379 rs = find_tcpcheck_ruleset("*ssl-hello-check");
Christopher Faulet811f78c2020-04-01 11:10:27 +02006380 if (rs)
6381 goto ruleset_found;
6382
Christopher Faulet61cc8522020-04-20 14:54:42 +02006383 rs = create_tcpcheck_ruleset("*ssl-hello-check");
Christopher Faulet811f78c2020-04-01 11:10:27 +02006384 if (rs == NULL) {
6385 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6386 goto error;
6387 }
6388
Christopher Fauletb50b3e62020-05-05 18:43:43 +02006389 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", sslv3_client_hello, ""},
Christopher Faulet811f78c2020-04-01 11:10:27 +02006390 1, curpx, &rs->rules, file, line, &errmsg);
6391 if (!chk) {
6392 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6393 goto error;
6394 }
6395 chk->index = 0;
6396 LIST_ADDQ(&rs->rules, &chk->list);
6397
6398 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^1[56]",
Christopher Fauletec07e382020-04-07 14:56:26 +02006399 "min-recv", "5", "ok-status", "L6OK",
Christopher Faulet811f78c2020-04-01 11:10:27 +02006400 "error-status", "L6RSP", "tout-status", "L6TOUT",
6401 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006402 1, curpx, &rs->rules, TCPCHK_RULES_SSL3_CHK, file, line, &errmsg);
Christopher Faulet811f78c2020-04-01 11:10:27 +02006403 if (!chk) {
6404 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6405 goto error;
6406 }
6407 chk->index = 1;
6408 LIST_ADDQ(&rs->rules, &chk->list);
6409
Christopher Fauletd7cee712020-04-21 13:45:00 +02006410 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet811f78c2020-04-01 11:10:27 +02006411
6412 ruleset_found:
6413 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02006414 rules->flags |= TCPCHK_RULES_SSL3_CHK;
Christopher Faulet811f78c2020-04-01 11:10:27 +02006415
6416 out:
6417 free(errmsg);
6418 return err_code;
6419
6420 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02006421 free_tcpcheck_ruleset(rs);
Christopher Faulet811f78c2020-04-01 11:10:27 +02006422 err_code |= ERR_ALERT | ERR_FATAL;
6423 goto out;
6424}
6425
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006426/* Parses the "option smtpchk" proxy keyword */
6427int proxy_parse_smtpchk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6428 const char *file, int line)
6429{
6430 static char *smtp_req = "%[var(check.smtp_cmd)]\r\n";
6431
6432 struct tcpcheck_ruleset *rs = NULL;
6433 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6434 struct tcpcheck_rule *chk;
6435 struct tcpcheck_var *var = NULL;
6436 char *cmd = NULL, *errmsg = NULL;
6437 int err_code = 0;
6438
6439 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6440 err_code |= ERR_WARN;
6441
6442 if (alertif_too_many_args_idx(2, 1, file, line, args, &err_code))
6443 goto out;
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006444
6445 curpx->options2 &= ~PR_O2_CHK_ANY;
6446 curpx->options2 |= PR_O2_TCPCHK_CHK;
6447
6448 free_tcpcheck_vars(&rules->preset_vars);
6449 rules->list = NULL;
6450 rules->flags = 0;
6451
6452 cur_arg += 2;
6453 if (*args[cur_arg] && *args[cur_arg+1] &&
6454 (strcmp(args[cur_arg], "EHLO") == 0 || strcmp(args[cur_arg], "HELO") == 0)) {
6455 cmd = calloc(strlen(args[cur_arg]) + strlen(args[cur_arg+1]) + 1, sizeof(*cmd));
6456 if (cmd)
6457 sprintf(cmd, "%s %s", args[cur_arg], args[cur_arg+1]);
6458 }
6459 else {
6460 /* this just hits the default for now, but you could potentially expand it to allow for other stuff
6461 though, it's unlikely you'd want to send anything other than an EHLO or HELO */
6462 cmd = strdup("HELO localhost");
6463 }
6464
Christopher Fauletb61caf42020-04-21 10:57:42 +02006465 var = create_tcpcheck_var(ist("check.smtp_cmd"));
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006466 if (cmd == NULL || var == NULL) {
6467 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6468 goto error;
6469 }
6470 var->data.type = SMP_T_STR;
6471 var->data.u.str.area = cmd;
6472 var->data.u.str.data = strlen(cmd);
6473 LIST_INIT(&var->list);
6474 LIST_ADDQ(&rules->preset_vars, &var->list);
6475 cmd = NULL;
6476 var = NULL;
6477
Christopher Faulet61cc8522020-04-20 14:54:42 +02006478 rs = find_tcpcheck_ruleset("*smtp-check");
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006479 if (rs)
6480 goto ruleset_found;
6481
Christopher Faulet61cc8522020-04-20 14:54:42 +02006482 rs = create_tcpcheck_ruleset("*smtp-check");
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006483 if (rs == NULL) {
6484 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6485 goto error;
6486 }
6487
6488 chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""},
6489 1, curpx, &rs->rules, file, line, &errmsg);
6490 if (!chk) {
6491 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6492 goto error;
6493 }
6494 chk->index = 0;
6495 LIST_ADDQ(&rs->rules, &chk->list);
6496
6497 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^[0-9]{3}[ \r]",
6498 "min-recv", "4",
6499 "error-status", "L7RSP",
Christopher Faulete596d182020-05-05 17:46:34 +02006500 "on-error", "%[res.payload(0,0),cut_crlf]",
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006501 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006502 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg);
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006503 if (!chk) {
6504 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6505 goto error;
6506 }
6507 chk->index = 1;
6508 LIST_ADDQ(&rs->rules, &chk->list);
6509
6510 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^2[0-9]{2}[ \r]",
6511 "min-recv", "4",
6512 "error-status", "L7STS",
Christopher Faulete596d182020-05-05 17:46:34 +02006513 "on-error", "%[res.payload(4,0),ltrim(' '),cut_crlf]",
6514 "status-code", "res.payload(0,3)",
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006515 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006516 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg);
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006517 if (!chk) {
6518 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6519 goto error;
6520 }
6521 chk->index = 2;
6522 LIST_ADDQ(&rs->rules, &chk->list);
6523
Christopher Fauletb50b3e62020-05-05 18:43:43 +02006524 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", smtp_req, ""},
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006525 1, curpx, &rs->rules, file, line, &errmsg);
6526 if (!chk) {
6527 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6528 goto error;
6529 }
6530 chk->index = 3;
6531 LIST_ADDQ(&rs->rules, &chk->list);
6532
6533 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^2[0-9]{2}[- \r]",
6534 "min-recv", "4",
6535 "error-status", "L7STS",
Christopher Faulete596d182020-05-05 17:46:34 +02006536 "on-error", "%[res.payload(4,0),ltrim(' '),cut_crlf]",
6537 "on-success", "%[res.payload(4,0),ltrim(' '),cut_crlf]",
6538 "status-code", "res.payload(0,3)",
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006539 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006540 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg);
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006541 if (!chk) {
6542 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6543 goto error;
6544 }
6545 chk->index = 4;
6546 LIST_ADDQ(&rs->rules, &chk->list);
6547
Christopher Fauletd7cee712020-04-21 13:45:00 +02006548 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006549
6550 ruleset_found:
6551 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02006552 rules->flags |= TCPCHK_RULES_SMTP_CHK;
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006553
6554 out:
6555 free(errmsg);
6556 return err_code;
6557
6558 error:
6559 free(cmd);
6560 free(var);
6561 free_tcpcheck_vars(&rules->preset_vars);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006562 free_tcpcheck_ruleset(rs);
Christopher Fauletfbcc77c2020-04-01 20:54:05 +02006563 err_code |= ERR_ALERT | ERR_FATAL;
6564 goto out;
6565}
Christopher Faulet811f78c2020-04-01 11:10:27 +02006566
Christopher Fauletce355072020-04-02 11:44:39 +02006567/* Parses the "option pgsql-check" proxy keyword */
6568int proxy_parse_pgsql_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6569 const char *file, int line)
6570{
6571 static char pgsql_req[] = {
6572 "%[var(check.plen),htonl,hex]" /* The packet length*/
6573 "00030000" /* the version 3.0 */
6574 "7573657200" /* "user" key */
6575 "%[var(check.username),hex]00" /* the username */
6576 "00"
6577 };
6578
6579 struct tcpcheck_ruleset *rs = NULL;
6580 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6581 struct tcpcheck_rule *chk;
6582 struct tcpcheck_var *var = NULL;
6583 char *user = NULL, *errmsg = NULL;
6584 size_t packetlen = 0;
6585 int err_code = 0;
6586
6587 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6588 err_code |= ERR_WARN;
6589
6590 if (alertif_too_many_args_idx(2, 1, file, line, args, &err_code))
6591 goto out;
6592
Christopher Fauletce355072020-04-02 11:44:39 +02006593 curpx->options2 &= ~PR_O2_CHK_ANY;
6594 curpx->options2 |= PR_O2_TCPCHK_CHK;
6595
6596 free_tcpcheck_vars(&rules->preset_vars);
6597 rules->list = NULL;
6598 rules->flags = 0;
6599
6600 cur_arg += 2;
6601 if (!*args[cur_arg] || !*args[cur_arg+1]) {
6602 ha_alert("parsing [%s:%d] : '%s %s' expects 'user <username>' as argument.\n",
6603 file, line, args[0], args[1]);
6604 goto error;
6605 }
6606 if (strcmp(args[cur_arg], "user") == 0) {
6607 packetlen = 15 + strlen(args[cur_arg+1]);
6608 user = strdup(args[cur_arg+1]);
6609
Christopher Fauletb61caf42020-04-21 10:57:42 +02006610 var = create_tcpcheck_var(ist("check.username"));
Christopher Fauletce355072020-04-02 11:44:39 +02006611 if (user == NULL || var == NULL) {
6612 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6613 goto error;
6614 }
6615 var->data.type = SMP_T_STR;
6616 var->data.u.str.area = user;
6617 var->data.u.str.data = strlen(user);
6618 LIST_INIT(&var->list);
6619 LIST_ADDQ(&rules->preset_vars, &var->list);
6620 user = NULL;
6621 var = NULL;
6622
Christopher Fauletb61caf42020-04-21 10:57:42 +02006623 var = create_tcpcheck_var(ist("check.plen"));
Christopher Fauletce355072020-04-02 11:44:39 +02006624 if (var == NULL) {
6625 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6626 goto error;
6627 }
6628 var->data.type = SMP_T_SINT;
6629 var->data.u.sint = packetlen;
6630 LIST_INIT(&var->list);
6631 LIST_ADDQ(&rules->preset_vars, &var->list);
6632 var = NULL;
6633 }
6634 else {
6635 ha_alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n",
6636 file, line, args[0], args[1]);
6637 goto error;
6638 }
6639
Christopher Faulet61cc8522020-04-20 14:54:42 +02006640 rs = find_tcpcheck_ruleset("*pgsql-check");
Christopher Fauletce355072020-04-02 11:44:39 +02006641 if (rs)
6642 goto ruleset_found;
6643
Christopher Faulet61cc8522020-04-20 14:54:42 +02006644 rs = create_tcpcheck_ruleset("*pgsql-check");
Christopher Fauletce355072020-04-02 11:44:39 +02006645 if (rs == NULL) {
6646 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6647 goto error;
6648 }
6649
6650 chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""},
6651 1, curpx, &rs->rules, file, line, &errmsg);
6652 if (!chk) {
6653 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6654 goto error;
6655 }
6656 chk->index = 0;
6657 LIST_ADDQ(&rs->rules, &chk->list);
6658
Christopher Fauletb50b3e62020-05-05 18:43:43 +02006659 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", pgsql_req, ""},
Christopher Fauletce355072020-04-02 11:44:39 +02006660 1, curpx, &rs->rules, file, line, &errmsg);
6661 if (!chk) {
6662 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6663 goto error;
6664 }
6665 chk->index = 1;
6666 LIST_ADDQ(&rs->rules, &chk->list);
6667
6668 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "!rstring", "^E",
6669 "min-recv", "5",
6670 "error-status", "L7RSP",
Christopher Faulete596d182020-05-05 17:46:34 +02006671 "on-error", "%[res.payload(6,0)]",
Christopher Fauletce355072020-04-02 11:44:39 +02006672 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006673 1, curpx, &rs->rules, TCPCHK_RULES_PGSQL_CHK, file, line, &errmsg);
Christopher Fauletce355072020-04-02 11:44:39 +02006674 if (!chk) {
6675 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6676 goto error;
6677 }
6678 chk->index = 2;
6679 LIST_ADDQ(&rs->rules, &chk->list);
6680
Christopher Fauletb841c742020-04-27 18:29:49 +02006681 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^52000000(08|0A|0C)000000(00|02|03|04|05|06)",
Christopher Fauletce355072020-04-02 11:44:39 +02006682 "min-recv", "9",
6683 "error-status", "L7STS",
6684 "on-success", "PostgreSQL server is ok",
6685 "on-error", "PostgreSQL unknown error",
6686 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006687 1, curpx, &rs->rules, TCPCHK_RULES_PGSQL_CHK, file, line, &errmsg);
Christopher Fauletce355072020-04-02 11:44:39 +02006688 if (!chk) {
6689 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6690 goto error;
6691 }
6692 chk->index = 3;
6693 LIST_ADDQ(&rs->rules, &chk->list);
6694
Christopher Fauletd7cee712020-04-21 13:45:00 +02006695 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Fauletce355072020-04-02 11:44:39 +02006696
6697 ruleset_found:
6698 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02006699 rules->flags |= TCPCHK_RULES_PGSQL_CHK;
Christopher Fauletce355072020-04-02 11:44:39 +02006700
6701 out:
6702 free(errmsg);
6703 return err_code;
6704
6705 error:
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006706 free(user);
6707 free(var);
6708 free_tcpcheck_vars(&rules->preset_vars);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006709 free_tcpcheck_ruleset(rs);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006710 err_code |= ERR_ALERT | ERR_FATAL;
6711 goto out;
6712}
6713
6714
6715/* Parses the "option mysql-check" proxy keyword */
6716int proxy_parse_mysql_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6717 const char *file, int line)
6718{
6719 /* This is an example of a MySQL >=4.0 client Authentication packet kindly provided by Cyril Bonte.
6720 * const char mysql40_client_auth_pkt[] = {
6721 * "\x0e\x00\x00" // packet length
6722 * "\x01" // packet number
6723 * "\x00\x00" // client capabilities
6724 * "\x00\x00\x01" // max packet
6725 * "haproxy\x00" // username (null terminated string)
6726 * "\x00" // filler (always 0x00)
6727 * "\x01\x00\x00" // packet length
6728 * "\x00" // packet number
6729 * "\x01" // COM_QUIT command
6730 * };
6731 */
6732 static char mysql40_rsname[] = "*mysql40-check";
6733 static char mysql40_req[] = {
6734 "%[var(check.header),hex]" /* 3 bytes for the packet length and 1 byte for the sequence ID */
6735 "0080" /* client capabilities */
6736 "000001" /* max packet */
6737 "%[var(check.username),hex]00" /* the username */
6738 "00" /* filler (always 0x00) */
6739 "010000" /* packet length*/
6740 "00" /* sequence ID */
6741 "01" /* COM_QUIT command */
6742 };
6743
6744 /* This is an example of a MySQL >=4.1 client Authentication packet provided by Nenad Merdanovic.
6745 * const char mysql41_client_auth_pkt[] = {
6746 * "\x0e\x00\x00\" // packet length
6747 * "\x01" // packet number
6748 * "\x00\x00\x00\x00" // client capabilities
6749 * "\x00\x00\x00\x01" // max packet
6750 * "\x21" // character set (UTF-8)
6751 * char[23] // All zeroes
6752 * "haproxy\x00" // username (null terminated string)
6753 * "\x00" // filler (always 0x00)
6754 * "\x01\x00\x00" // packet length
6755 * "\x00" // packet number
6756 * "\x01" // COM_QUIT command
6757 * };
6758 */
6759 static char mysql41_rsname[] = "*mysql41-check";
6760 static char mysql41_req[] = {
6761 "%[var(check.header),hex]" /* 3 bytes for the packet length and 1 byte for the sequence ID */
6762 "00820000" /* client capabilities */
6763 "00800001" /* max packet */
6764 "21" /* character set (UTF-8) */
6765 "000000000000000000000000" /* 23 bytes, al zeroes */
6766 "0000000000000000000000"
6767 "%[var(check.username),hex]00" /* the username */
6768 "00" /* filler (always 0x00) */
6769 "010000" /* packet length*/
6770 "00" /* sequence ID */
6771 "01" /* COM_QUIT command */
6772 };
6773
6774 struct tcpcheck_ruleset *rs = NULL;
6775 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6776 struct tcpcheck_rule *chk;
6777 struct tcpcheck_var *var = NULL;
6778 char *mysql_rsname = "*mysql-check";
6779 char *mysql_req = NULL, *hdr = NULL, *user = NULL, *errmsg = NULL;
6780 int index = 0, err_code = 0;
6781
6782 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6783 err_code |= ERR_WARN;
6784
6785 if (alertif_too_many_args_idx(3, 1, file, line, args, &err_code))
6786 goto out;
6787
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006788 curpx->options2 &= ~PR_O2_CHK_ANY;
6789 curpx->options2 |= PR_O2_TCPCHK_CHK;
6790
6791 free_tcpcheck_vars(&rules->preset_vars);
6792 rules->list = NULL;
6793 rules->flags = 0;
6794
6795 cur_arg += 2;
6796 if (*args[cur_arg]) {
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006797 int packetlen, userlen;
6798
6799 if (strcmp(args[cur_arg], "user") != 0) {
6800 ha_alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user' (got '%s').\n",
6801 file, line, args[0], args[1], args[cur_arg]);
6802 goto error;
6803 }
6804
6805 if (*(args[cur_arg+1]) == 0) {
6806 ha_alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n",
6807 file, line, args[0], args[1], args[cur_arg]);
6808 goto error;
6809 }
6810
6811 hdr = calloc(4, sizeof(*hdr));
6812 user = strdup(args[cur_arg+1]);
6813 userlen = strlen(args[cur_arg+1]);
6814
6815 if (hdr == NULL || user == NULL) {
6816 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6817 goto error;
6818 }
6819
Christopher Faulet62f79fe2020-05-18 18:13:03 +02006820 if (!*args[cur_arg+2] || strcmp(args[cur_arg+2], "post-41") == 0) {
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006821 packetlen = userlen + 7 + 27;
6822 mysql_req = mysql41_req;
6823 mysql_rsname = mysql41_rsname;
6824 }
Christopher Faulet62f79fe2020-05-18 18:13:03 +02006825 else if (strcmp(args[cur_arg+2], "pre-41") == 0) {
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006826 packetlen = userlen + 7;
6827 mysql_req = mysql40_req;
6828 mysql_rsname = mysql40_rsname;
6829 }
Christopher Faulet62f79fe2020-05-18 18:13:03 +02006830 else {
6831 ha_alert("parsing [%s:%d] : keyword '%s' only supports 'post-41' and 'pre-41' (got '%s').\n",
6832 file, line, args[cur_arg], args[cur_arg+2]);
6833 goto error;
6834 }
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006835
6836 hdr[0] = (unsigned char)(packetlen & 0xff);
6837 hdr[1] = (unsigned char)((packetlen >> 8) & 0xff);
6838 hdr[2] = (unsigned char)((packetlen >> 16) & 0xff);
6839 hdr[3] = 1;
6840
Christopher Fauletb61caf42020-04-21 10:57:42 +02006841 var = create_tcpcheck_var(ist("check.header"));
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006842 if (var == NULL) {
6843 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6844 goto error;
6845 }
6846 var->data.type = SMP_T_STR;
6847 var->data.u.str.area = hdr;
6848 var->data.u.str.data = 4;
6849 LIST_INIT(&var->list);
6850 LIST_ADDQ(&rules->preset_vars, &var->list);
6851 hdr = NULL;
6852 var = NULL;
6853
Christopher Fauletb61caf42020-04-21 10:57:42 +02006854 var = create_tcpcheck_var(ist("check.username"));
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006855 if (var == NULL) {
6856 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6857 goto error;
6858 }
6859 var->data.type = SMP_T_STR;
6860 var->data.u.str.area = user;
6861 var->data.u.str.data = strlen(user);
6862 LIST_INIT(&var->list);
6863 LIST_ADDQ(&rules->preset_vars, &var->list);
6864 user = NULL;
6865 var = NULL;
6866 }
6867
Christopher Faulet61cc8522020-04-20 14:54:42 +02006868 rs = find_tcpcheck_ruleset(mysql_rsname);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006869 if (rs)
6870 goto ruleset_found;
6871
Christopher Faulet61cc8522020-04-20 14:54:42 +02006872 rs = create_tcpcheck_ruleset(mysql_rsname);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006873 if (rs == NULL) {
6874 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6875 goto error;
6876 }
6877
6878 chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""},
6879 1, curpx, &rs->rules, file, line, &errmsg);
6880 if (!chk) {
6881 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6882 goto error;
6883 }
6884 chk->index = index++;
6885 LIST_ADDQ(&rs->rules, &chk->list);
6886
6887 if (mysql_req) {
Christopher Fauletb50b3e62020-05-05 18:43:43 +02006888 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", mysql_req, ""},
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006889 1, curpx, &rs->rules, file, line, &errmsg);
6890 if (!chk) {
6891 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6892 goto error;
6893 }
6894 chk->index = index++;
6895 LIST_ADDQ(&rs->rules, &chk->list);
6896 }
6897
6898 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006899 1, curpx, &rs->rules, TCPCHK_RULES_MYSQL_CHK, file, line, &errmsg);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006900 if (!chk) {
6901 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6902 goto error;
6903 }
6904 chk->expect.custom = tcpcheck_mysql_expect_iniths;
6905 chk->index = index++;
6906 LIST_ADDQ(&rs->rules, &chk->list);
6907
6908 if (mysql_req) {
6909 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006910 1, curpx, &rs->rules, TCPCHK_RULES_MYSQL_CHK, file, line, &errmsg);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006911 if (!chk) {
6912 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6913 goto error;
6914 }
6915 chk->expect.custom = tcpcheck_mysql_expect_ok;
6916 chk->index = index++;
6917 LIST_ADDQ(&rs->rules, &chk->list);
6918 }
6919
Christopher Fauletd7cee712020-04-21 13:45:00 +02006920 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006921
6922 ruleset_found:
6923 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02006924 rules->flags |= TCPCHK_RULES_MYSQL_CHK;
Christopher Fauletf2b3be52020-04-02 18:07:37 +02006925
6926 out:
6927 free(errmsg);
6928 return err_code;
6929
6930 error:
6931 free(hdr);
Christopher Fauletce355072020-04-02 11:44:39 +02006932 free(user);
6933 free(var);
6934 free_tcpcheck_vars(&rules->preset_vars);
Christopher Faulet61cc8522020-04-20 14:54:42 +02006935 free_tcpcheck_ruleset(rs);
Christopher Fauletce355072020-04-02 11:44:39 +02006936 err_code |= ERR_ALERT | ERR_FATAL;
6937 goto out;
6938}
6939
Christopher Faulet1997eca2020-04-03 23:13:50 +02006940int proxy_parse_ldap_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
6941 const char *file, int line)
6942{
6943 static char *ldap_req = "300C020101600702010304008000";
6944
6945 struct tcpcheck_ruleset *rs = NULL;
6946 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
6947 struct tcpcheck_rule *chk;
6948 char *errmsg = NULL;
6949 int err_code = 0;
6950
6951 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
6952 err_code |= ERR_WARN;
6953
6954 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
6955 goto out;
Christopher Faulet1997eca2020-04-03 23:13:50 +02006956
6957 curpx->options2 &= ~PR_O2_CHK_ANY;
6958 curpx->options2 |= PR_O2_TCPCHK_CHK;
6959
6960 free_tcpcheck_vars(&rules->preset_vars);
6961 rules->list = NULL;
6962 rules->flags = 0;
6963
Christopher Faulet61cc8522020-04-20 14:54:42 +02006964 rs = find_tcpcheck_ruleset("*ldap-check");
Christopher Faulet1997eca2020-04-03 23:13:50 +02006965 if (rs)
6966 goto ruleset_found;
6967
Christopher Faulet61cc8522020-04-20 14:54:42 +02006968 rs = create_tcpcheck_ruleset("*ldap-check");
Christopher Faulet1997eca2020-04-03 23:13:50 +02006969 if (rs == NULL) {
6970 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
6971 goto error;
6972 }
6973
6974 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary", ldap_req, ""},
6975 1, curpx, &rs->rules, file, line, &errmsg);
6976 if (!chk) {
6977 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6978 goto error;
6979 }
6980 chk->index = 0;
6981 LIST_ADDQ(&rs->rules, &chk->list);
6982
6983 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^30",
6984 "min-recv", "14",
6985 "on-error", "Not LDAPv3 protocol",
6986 ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006987 1, curpx, &rs->rules, TCPCHK_RULES_LDAP_CHK, file, line, &errmsg);
Christopher Faulet1997eca2020-04-03 23:13:50 +02006988 if (!chk) {
6989 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6990 goto error;
6991 }
6992 chk->index = 1;
6993 LIST_ADDQ(&rs->rules, &chk->list);
6994
6995 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02006996 1, curpx, &rs->rules, TCPCHK_RULES_LDAP_CHK, file, line, &errmsg);
Christopher Faulet1997eca2020-04-03 23:13:50 +02006997 if (!chk) {
6998 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
6999 goto error;
7000 }
7001 chk->expect.custom = tcpcheck_ldap_expect_bindrsp;
7002 chk->index = 2;
7003 LIST_ADDQ(&rs->rules, &chk->list);
7004
Christopher Fauletd7cee712020-04-21 13:45:00 +02007005 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet1997eca2020-04-03 23:13:50 +02007006
7007 ruleset_found:
7008 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02007009 rules->flags |= TCPCHK_RULES_LDAP_CHK;
Christopher Faulet1997eca2020-04-03 23:13:50 +02007010
7011 out:
Christopher Faulet267b01b2020-04-04 10:27:09 +02007012 free(errmsg);
7013 return err_code;
7014
7015 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02007016 free_tcpcheck_ruleset(rs);
Christopher Faulet267b01b2020-04-04 10:27:09 +02007017 err_code |= ERR_ALERT | ERR_FATAL;
7018 goto out;
7019}
7020
7021int proxy_parse_spop_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
7022 const char *file, int line)
7023{
7024 struct tcpcheck_ruleset *rs = NULL;
7025 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
7026 struct tcpcheck_rule *chk;
7027 char *spop_req = NULL;
7028 char *errmsg = NULL;
7029 int spop_len = 0, err_code = 0;
7030
7031 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
7032 err_code |= ERR_WARN;
7033
7034 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
7035 goto out;
7036
Christopher Faulet267b01b2020-04-04 10:27:09 +02007037 curpx->options2 &= ~PR_O2_CHK_ANY;
7038 curpx->options2 |= PR_O2_TCPCHK_CHK;
7039
7040 free_tcpcheck_vars(&rules->preset_vars);
7041 rules->list = NULL;
7042 rules->flags = 0;
7043
7044
Christopher Faulet61cc8522020-04-20 14:54:42 +02007045 rs = find_tcpcheck_ruleset("*spop-check");
Christopher Faulet267b01b2020-04-04 10:27:09 +02007046 if (rs)
7047 goto ruleset_found;
7048
Christopher Faulet61cc8522020-04-20 14:54:42 +02007049 rs = create_tcpcheck_ruleset("*spop-check");
Christopher Faulet267b01b2020-04-04 10:27:09 +02007050 if (rs == NULL) {
7051 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
7052 goto error;
7053 }
7054
7055 if (spoe_prepare_healthcheck_request(&spop_req, &spop_len) == -1) {
7056 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
7057 goto error;
7058 }
7059 chunk_reset(&trash);
7060 dump_binary(&trash, spop_req, spop_len);
7061 trash.area[trash.data] = '\0';
7062
7063 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary", b_head(&trash), ""},
7064 1, curpx, &rs->rules, file, line, &errmsg);
7065 if (!chk) {
7066 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
7067 goto error;
7068 }
7069 chk->index = 0;
7070 LIST_ADDQ(&rs->rules, &chk->list);
7071
7072 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", "min-recv", "4", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02007073 1, curpx, &rs->rules, TCPCHK_RULES_SPOP_CHK, file, line, &errmsg);
Christopher Faulet267b01b2020-04-04 10:27:09 +02007074 if (!chk) {
7075 ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg);
7076 goto error;
7077 }
7078 chk->expect.custom = tcpcheck_spop_expect_agenthello;
7079 chk->index = 1;
7080 LIST_ADDQ(&rs->rules, &chk->list);
7081
Christopher Fauletd7cee712020-04-21 13:45:00 +02007082 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet267b01b2020-04-04 10:27:09 +02007083
7084 ruleset_found:
7085 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02007086 rules->flags |= TCPCHK_RULES_SPOP_CHK;
Christopher Faulet267b01b2020-04-04 10:27:09 +02007087
7088 out:
7089 free(spop_req);
Christopher Faulet1997eca2020-04-03 23:13:50 +02007090 free(errmsg);
7091 return err_code;
7092
7093 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02007094 free_tcpcheck_ruleset(rs);
Christopher Faulet1997eca2020-04-03 23:13:50 +02007095 err_code |= ERR_ALERT | ERR_FATAL;
7096 goto out;
7097}
Christopher Fauletce355072020-04-02 11:44:39 +02007098
Christopher Faulete5870d82020-04-15 11:32:03 +02007099
7100struct tcpcheck_rule *proxy_parse_httpchk_req(char **args, int cur_arg, struct proxy *px, char **errmsg)
7101{
7102 struct tcpcheck_rule *chk = NULL;
7103 struct tcpcheck_http_hdr *hdr = NULL;
7104 char *meth = NULL, *uri = NULL, *vsn = NULL;
7105 char *hdrs, *body;
7106
7107 hdrs = (*args[cur_arg+2] ? strstr(args[cur_arg+2], "\r\n") : NULL);
7108 body = (*args[cur_arg+2] ? strstr(args[cur_arg+2], "\r\n\r\n") : NULL);
7109 if (hdrs == body)
7110 hdrs = NULL;
7111 if (hdrs) {
7112 *hdrs = '\0';
7113 hdrs +=2;
7114 }
7115 if (body) {
7116 *body = '\0';
7117 body += 4;
7118 }
7119 if (hdrs || body) {
7120 memprintf(errmsg, "hiding headers or body at the end of the version string is deprecated."
7121 " Please, consider to use 'http-check send' directive instead.");
7122 }
7123
7124 chk = calloc(1, sizeof(*chk));
7125 if (!chk) {
7126 memprintf(errmsg, "out of memory");
7127 goto error;
7128 }
7129 chk->action = TCPCHK_ACT_SEND;
7130 chk->send.type = TCPCHK_SEND_HTTP;
7131 chk->send.http.flags |= TCPCHK_SND_HTTP_FROM_OPT;
7132 chk->send.http.meth.meth = HTTP_METH_OPTIONS;
7133 LIST_INIT(&chk->send.http.hdrs);
7134
7135 /* Copy the method, uri and version */
7136 if (*args[cur_arg]) {
7137 if (!*args[cur_arg+1])
7138 uri = args[cur_arg];
7139 else
7140 meth = args[cur_arg];
7141 }
7142 if (*args[cur_arg+1])
7143 uri = args[cur_arg+1];
7144 if (*args[cur_arg+2])
7145 vsn = args[cur_arg+2];
7146
7147 if (meth) {
7148 chk->send.http.meth.meth = find_http_meth(meth, strlen(meth));
7149 chk->send.http.meth.str.area = strdup(meth);
7150 chk->send.http.meth.str.data = strlen(meth);
7151 if (!chk->send.http.meth.str.area) {
7152 memprintf(errmsg, "out of memory");
7153 goto error;
7154 }
7155 }
7156 if (uri) {
7157 chk->send.http.uri = ist2(strdup(uri), strlen(uri));
Christopher Fauletb61caf42020-04-21 10:57:42 +02007158 if (!isttest(chk->send.http.uri)) {
Christopher Faulete5870d82020-04-15 11:32:03 +02007159 memprintf(errmsg, "out of memory");
7160 goto error;
7161 }
7162 }
7163 if (vsn) {
7164 chk->send.http.vsn = ist2(strdup(vsn), strlen(vsn));
Christopher Fauletb61caf42020-04-21 10:57:42 +02007165 if (!isttest(chk->send.http.vsn)) {
Christopher Faulete5870d82020-04-15 11:32:03 +02007166 memprintf(errmsg, "out of memory");
7167 goto error;
7168 }
7169 }
7170
7171 /* Copy the header */
7172 if (hdrs) {
7173 struct http_hdr tmp_hdrs[global.tune.max_http_hdr];
7174 struct h1m h1m;
7175 int i, ret;
7176
7177 /* Build and parse the request */
7178 chunk_printf(&trash, "%s\r\n\r\n", hdrs);
7179
7180 h1m.flags = H1_MF_HDRS_ONLY;
7181 ret = h1_headers_to_hdr_list(b_orig(&trash), b_tail(&trash),
7182 tmp_hdrs, sizeof(tmp_hdrs)/sizeof(tmp_hdrs[0]),
7183 &h1m, NULL);
7184 if (ret <= 0) {
7185 memprintf(errmsg, "unable to parse the request '%s'.", b_orig(&trash));
7186 goto error;
7187 }
7188
Christopher Fauletb61caf42020-04-21 10:57:42 +02007189 for (i = 0; istlen(tmp_hdrs[i].n); i++) {
Christopher Faulete5870d82020-04-15 11:32:03 +02007190 hdr = calloc(1, sizeof(*hdr));
7191 if (!hdr) {
7192 memprintf(errmsg, "out of memory");
7193 goto error;
7194 }
7195 LIST_INIT(&hdr->value);
Christopher Fauletb61caf42020-04-21 10:57:42 +02007196 hdr->name = istdup(tmp_hdrs[i].n);
Christopher Faulete5870d82020-04-15 11:32:03 +02007197 if (!hdr->name.ptr) {
7198 memprintf(errmsg, "out of memory");
7199 goto error;
7200 }
7201
Christopher Fauletb61caf42020-04-21 10:57:42 +02007202 ist0(tmp_hdrs[i].v);
7203 if (!parse_logformat_string(istptr(tmp_hdrs[i].v), px, &hdr->value, 0, SMP_VAL_BE_CHK_RUL, errmsg))
Christopher Faulete5870d82020-04-15 11:32:03 +02007204 goto error;
7205 LIST_ADDQ(&chk->send.http.hdrs, &hdr->list);
7206 }
7207 }
7208
7209 /* Copy the body */
7210 if (body) {
7211 chk->send.http.body = ist2(strdup(body), strlen(body));
Christopher Fauletb61caf42020-04-21 10:57:42 +02007212 if (!isttest(chk->send.http.body)) {
Christopher Faulete5870d82020-04-15 11:32:03 +02007213 memprintf(errmsg, "out of memory");
7214 goto error;
7215 }
7216 }
7217
7218 return chk;
7219
7220 error:
7221 free_tcpcheck_http_hdr(hdr);
7222 free_tcpcheck(chk, 0);
7223 return NULL;
7224}
7225
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007226int proxy_parse_httpchk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
7227 const char *file, int line)
7228{
Christopher Faulete5870d82020-04-15 11:32:03 +02007229 struct tcpcheck_ruleset *rs = NULL;
7230 struct tcpcheck_rules *rules = &curpx->tcpcheck_rules;
7231 struct tcpcheck_rule *chk;
7232 char *errmsg = NULL;
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007233 int err_code = 0;
7234
7235 if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL))
7236 err_code |= ERR_WARN;
7237
7238 if (alertif_too_many_args_idx(3, 1, file, line, args, &err_code))
7239 goto out;
7240
Christopher Faulete5870d82020-04-15 11:32:03 +02007241 chk = proxy_parse_httpchk_req(args, cur_arg+2, curpx, &errmsg);
7242 if (!chk) {
7243 ha_alert("parsing [%s:%d] : '%s %s' : %s.\n", file, line, args[0], args[1], errmsg);
7244 goto error;
7245 }
7246 if (errmsg) {
7247 ha_warning("parsing [%s:%d]: '%s %s' : %s\n", file, line, args[0], args[1], errmsg);
7248 err_code |= ERR_WARN;
7249 free(errmsg);
7250 errmsg = NULL;
7251 }
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007252
Christopher Faulete5870d82020-04-15 11:32:03 +02007253 no_request:
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007254 curpx->options2 &= ~PR_O2_CHK_ANY;
Christopher Faulete5870d82020-04-15 11:32:03 +02007255 curpx->options2 |= PR_O2_TCPCHK_CHK;
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007256
Christopher Faulete5870d82020-04-15 11:32:03 +02007257 free_tcpcheck_vars(&rules->preset_vars);
7258 rules->list = NULL;
7259 rules->flags |= TCPCHK_SND_HTTP_FROM_OPT;
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007260
Christopher Faulete5870d82020-04-15 11:32:03 +02007261 /* Deduce the ruleset name from the proxy info */
7262 chunk_printf(&trash, "*http-check-%s_%s-%d",
7263 ((curpx == defpx) ? "defaults" : curpx->id),
7264 curpx->conf.file, curpx->conf.line);
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007265
Christopher Faulet61cc8522020-04-20 14:54:42 +02007266 rs = find_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulete5870d82020-04-15 11:32:03 +02007267 if (rs == NULL) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02007268 rs = create_tcpcheck_ruleset(b_orig(&trash));
Christopher Faulete5870d82020-04-15 11:32:03 +02007269 if (rs == NULL) {
7270 ha_alert("parsing [%s:%d] : out of memory.\n", file, line);
7271 goto error;
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007272 }
Christopher Faulete5870d82020-04-15 11:32:03 +02007273 }
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007274
Christopher Faulete5870d82020-04-15 11:32:03 +02007275 rules->list = &rs->rules;
7276 rules->flags |= TCPCHK_RULES_HTTP_CHK;
7277 if (!tcpcheck_add_http_rule(chk, rules, &errmsg)) {
7278 ha_alert("parsing [%s:%d] : '%s %s' : %s.\n", file, line, args[0], args[1], errmsg);
7279 rules->list = NULL;
7280 goto error;
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007281 }
Christopher Faulete5870d82020-04-15 11:32:03 +02007282
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007283 out:
Christopher Faulete5870d82020-04-15 11:32:03 +02007284 free(errmsg);
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007285 return err_code;
7286
7287 error:
Christopher Faulet61cc8522020-04-20 14:54:42 +02007288 free_tcpcheck_ruleset(rs);
Christopher Faulete5870d82020-04-15 11:32:03 +02007289 free_tcpcheck(chk, 0);
Christopher Faulet6c2a7432020-04-09 14:48:48 +02007290 err_code |= ERR_ALERT | ERR_FATAL;
7291 goto out;
7292}
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007293
Christopher Faulet6f557912020-04-09 15:58:50 +02007294int proxy_parse_external_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx,
7295 const char *file, int line)
7296{
7297 int err_code = 0;
7298
Christopher Faulet6f557912020-04-09 15:58:50 +02007299 curpx->options2 &= ~PR_O2_CHK_ANY;
7300 curpx->options2 |= PR_O2_EXT_CHK;
7301 if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code))
7302 goto out;
7303
7304 out:
7305 return err_code;
7306}
7307
Christopher Fauletce8111e2020-04-06 15:04:11 +02007308/* Parse the "addr" server keyword */
7309static int srv_parse_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7310 char **errmsg)
7311{
7312 struct sockaddr_storage *sk;
7313 struct protocol *proto;
7314 int port1, port2, err_code = 0;
7315
7316
7317 if (!*args[*cur_arg+1]) {
7318 memprintf(errmsg, "'%s' expects <ipv4|ipv6> as argument.", args[*cur_arg]);
7319 goto error;
7320 }
7321
7322 sk = str2sa_range(args[*cur_arg+1], NULL, &port1, &port2, errmsg, NULL, NULL, 1);
7323 if (!sk) {
7324 memprintf(errmsg, "'%s' : %s", args[*cur_arg], *errmsg);
7325 goto error;
7326 }
7327
7328 proto = protocol_by_family(sk->ss_family);
7329 if (!proto || !proto->connect) {
7330 memprintf(errmsg, "'%s %s' : connect() not supported for this address family.",
7331 args[*cur_arg], args[*cur_arg+1]);
7332 goto error;
7333 }
7334
7335 if (port1 != port2) {
7336 memprintf(errmsg, "'%s' : port ranges and offsets are not allowed in '%s'.",
7337 args[*cur_arg], args[*cur_arg+1]);
7338 goto error;
7339 }
7340
7341 srv->check.addr = srv->agent.addr = *sk;
7342 srv->flags |= SRV_F_CHECKADDR;
7343 srv->flags |= SRV_F_AGENTADDR;
7344
7345 out:
7346 return err_code;
7347
7348 error:
7349 err_code |= ERR_ALERT | ERR_FATAL;
7350 goto out;
7351}
7352
7353
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007354/* Parse the "agent-addr" server keyword */
7355static int srv_parse_agent_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7356 char **errmsg)
7357{
7358 int err_code = 0;
7359
7360 if (!*(args[*cur_arg+1])) {
7361 memprintf(errmsg, "'%s' expects an address as argument.", args[*cur_arg]);
7362 goto error;
7363 }
7364 if(str2ip(args[*cur_arg+1], &srv->agent.addr) == NULL) {
7365 memprintf(errmsg, "parsing agent-addr failed. Check if '%s' is correct address.", args[*cur_arg+1]);
7366 goto error;
7367 }
7368
7369 out:
7370 return err_code;
7371
7372 error:
7373 err_code |= ERR_ALERT | ERR_FATAL;
7374 goto out;
7375}
7376
7377/* Parse the "agent-check" server keyword */
7378static int srv_parse_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7379 char **errmsg)
7380{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007381 struct tcpcheck_ruleset *rs = NULL;
7382 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
7383 struct tcpcheck_rule *chk;
7384 int err_code = 0;
7385
7386 if (srv->do_agent)
7387 goto out;
7388
7389 if (!rules) {
7390 rules = calloc(1, sizeof(*rules));
7391 if (!rules) {
7392 memprintf(errmsg, "out of memory.");
7393 goto error;
7394 }
7395 LIST_INIT(&rules->preset_vars);
7396 srv->agent.tcpcheck_rules = rules;
7397 }
7398 rules->list = NULL;
7399 rules->flags = 0;
7400
Christopher Faulet61cc8522020-04-20 14:54:42 +02007401 rs = find_tcpcheck_ruleset("*agent-check");
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007402 if (rs)
7403 goto ruleset_found;
7404
Christopher Faulet61cc8522020-04-20 14:54:42 +02007405 rs = create_tcpcheck_ruleset("*agent-check");
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007406 if (rs == NULL) {
7407 memprintf(errmsg, "out of memory.");
7408 goto error;
7409 }
7410
Christopher Fauletb50b3e62020-05-05 18:43:43 +02007411 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", "%[var(check.agent_string)]", ""},
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007412 1, curpx, &rs->rules, srv->conf.file, srv->conf.line, errmsg);
7413 if (!chk) {
7414 memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg);
7415 goto error;
7416 }
7417 chk->index = 0;
7418 LIST_ADDQ(&rs->rules, &chk->list);
7419
7420 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02007421 1, curpx, &rs->rules, TCPCHK_RULES_AGENT_CHK,
7422 srv->conf.file, srv->conf.line, errmsg);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007423 if (!chk) {
7424 memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg);
7425 goto error;
7426 }
7427 chk->expect.custom = tcpcheck_agent_expect_reply;
7428 chk->index = 1;
7429 LIST_ADDQ(&rs->rules, &chk->list);
7430
Christopher Fauletd7cee712020-04-21 13:45:00 +02007431 ebis_insert(&shared_tcpchecks, &rs->node);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007432
7433 ruleset_found:
7434 rules->list = &rs->rules;
Christopher Faulet404f9192020-04-09 23:13:54 +02007435 rules->flags |= TCPCHK_RULES_AGENT_CHK;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007436 srv->do_agent = 1;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007437
7438 out:
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007439 return 0;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007440
7441 error:
7442 deinit_srv_agent_check(srv);
Christopher Faulet61cc8522020-04-20 14:54:42 +02007443 free_tcpcheck_ruleset(rs);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007444 err_code |= ERR_ALERT | ERR_FATAL;
7445 goto out;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007446}
7447
7448/* Parse the "agent-inter" server keyword */
7449static int srv_parse_agent_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7450 char **errmsg)
7451{
7452 const char *err = NULL;
7453 unsigned int delay;
7454 int err_code = 0;
7455
7456 if (!*(args[*cur_arg+1])) {
7457 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
7458 goto error;
7459 }
7460
7461 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
7462 if (err == PARSE_TIME_OVER) {
7463 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
7464 args[*cur_arg+1], args[*cur_arg], srv->id);
7465 goto error;
7466 }
7467 else if (err == PARSE_TIME_UNDER) {
7468 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
7469 args[*cur_arg+1], args[*cur_arg], srv->id);
7470 goto error;
7471 }
7472 else if (err) {
7473 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
7474 *err, srv->id);
7475 goto error;
7476 }
7477 if (delay <= 0) {
7478 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
7479 delay, args[*cur_arg], srv->id);
7480 goto error;
7481 }
7482 srv->agent.inter = delay;
7483
7484 out:
7485 return err_code;
7486
7487 error:
7488 err_code |= ERR_ALERT | ERR_FATAL;
7489 goto out;
7490}
7491
7492/* Parse the "agent-port" server keyword */
7493static int srv_parse_agent_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7494 char **errmsg)
7495{
7496 int err_code = 0;
7497
7498 if (!*(args[*cur_arg+1])) {
7499 memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]);
7500 goto error;
7501 }
7502
7503 global.maxsock++;
7504 srv->agent.port = atol(args[*cur_arg+1]);
7505
7506 out:
7507 return err_code;
7508
7509 error:
7510 err_code |= ERR_ALERT | ERR_FATAL;
7511 goto out;
7512}
7513
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007514int set_srv_agent_send(struct server *srv, const char *send)
7515{
7516 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
7517 struct tcpcheck_var *var = NULL;
7518 char *str;
7519
7520 str = strdup(send);
Christopher Fauletb61caf42020-04-21 10:57:42 +02007521 var = create_tcpcheck_var(ist("check.agent_string"));
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007522 if (str == NULL || var == NULL)
7523 goto error;
7524
7525 free_tcpcheck_vars(&rules->preset_vars);
7526
7527 var->data.type = SMP_T_STR;
7528 var->data.u.str.area = str;
7529 var->data.u.str.data = strlen(str);
7530 LIST_INIT(&var->list);
7531 LIST_ADDQ(&rules->preset_vars, &var->list);
7532
7533 return 1;
7534
7535 error:
7536 free(str);
7537 free(var);
7538 return 0;
7539}
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007540
7541/* Parse the "agent-send" server keyword */
7542static int srv_parse_agent_send(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7543 char **errmsg)
7544{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007545 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007546 int err_code = 0;
7547
7548 if (!*(args[*cur_arg+1])) {
7549 memprintf(errmsg, "'%s' expects a string as argument.", args[*cur_arg]);
7550 goto error;
7551 }
7552
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007553 if (!rules) {
7554 rules = calloc(1, sizeof(*rules));
7555 if (!rules) {
7556 memprintf(errmsg, "out of memory.");
7557 goto error;
7558 }
7559 LIST_INIT(&rules->preset_vars);
7560 srv->agent.tcpcheck_rules = rules;
7561 }
7562
7563 if (!set_srv_agent_send(srv, args[*cur_arg+1])) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007564 memprintf(errmsg, "out of memory.");
7565 goto error;
7566 }
7567
7568 out:
7569 return err_code;
7570
7571 error:
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007572 deinit_srv_agent_check(srv);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007573 err_code |= ERR_ALERT | ERR_FATAL;
7574 goto out;
7575}
7576
7577/* Parse the "no-agent-send" server keyword */
7578static int srv_parse_no_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7579 char **errmsg)
7580{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02007581 deinit_srv_agent_check(srv);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007582 return 0;
7583}
7584
Christopher Fauletce8111e2020-04-06 15:04:11 +02007585/* Parse the "check" server keyword */
7586static int srv_parse_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7587 char **errmsg)
7588{
7589 srv->do_check = 1;
7590 return 0;
7591}
7592
7593/* Parse the "check-send-proxy" server keyword */
7594static int srv_parse_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7595 char **errmsg)
7596{
7597 srv->check.send_proxy = 1;
7598 return 0;
7599}
7600
7601/* Parse the "check-via-socks4" server keyword */
7602static int srv_parse_check_via_socks4(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7603 char **errmsg)
7604{
7605 srv->check.via_socks4 = 1;
7606 return 0;
7607}
7608
7609/* Parse the "no-check" server keyword */
7610static int srv_parse_no_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7611 char **errmsg)
7612{
7613 deinit_srv_check(srv);
7614 return 0;
7615}
7616
7617/* Parse the "no-check-send-proxy" server keyword */
7618static int srv_parse_no_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7619 char **errmsg)
7620{
7621 srv->check.send_proxy = 0;
7622 return 0;
7623}
7624
Christopher Fauletedc6ed92020-04-23 16:27:59 +02007625/* parse the "check-proto" server keyword */
7626static int srv_parse_check_proto(char **args, int *cur_arg,
7627 struct proxy *px, struct server *newsrv, char **err)
7628{
7629 int err_code = 0;
7630
7631 if (!*args[*cur_arg + 1]) {
7632 memprintf(err, "'%s' : missing value", args[*cur_arg]);
7633 goto error;
7634 }
7635 newsrv->check.mux_proto = get_mux_proto(ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1])));
7636 if (!newsrv->check.mux_proto) {
7637 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
7638 goto error;
7639 }
7640
7641 out:
7642 return err_code;
7643
7644 error:
7645 err_code |= ERR_ALERT | ERR_FATAL;
7646 goto out;
7647}
7648
7649
Christopher Fauletce8111e2020-04-06 15:04:11 +02007650/* Parse the "rise" server keyword */
7651static int srv_parse_check_rise(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7652 char **errmsg)
7653{
7654 int err_code = 0;
7655
7656 if (!*args[*cur_arg + 1]) {
7657 memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]);
7658 goto error;
7659 }
7660
7661 srv->check.rise = atol(args[*cur_arg+1]);
7662 if (srv->check.rise <= 0) {
7663 memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]);
7664 goto error;
7665 }
7666
7667 if (srv->check.health)
7668 srv->check.health = srv->check.rise;
7669
7670 out:
7671 return err_code;
7672
7673 error:
7674 deinit_srv_agent_check(srv);
7675 err_code |= ERR_ALERT | ERR_FATAL;
7676 goto out;
7677 return 0;
7678}
7679
7680/* Parse the "fall" server keyword */
7681static int srv_parse_check_fall(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7682 char **errmsg)
7683{
7684 int err_code = 0;
7685
7686 if (!*args[*cur_arg + 1]) {
7687 memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]);
7688 goto error;
7689 }
7690
7691 srv->check.fall = atol(args[*cur_arg+1]);
7692 if (srv->check.fall <= 0) {
7693 memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]);
7694 goto error;
7695 }
7696
7697 out:
7698 return err_code;
7699
7700 error:
7701 deinit_srv_agent_check(srv);
7702 err_code |= ERR_ALERT | ERR_FATAL;
7703 goto out;
7704 return 0;
7705}
7706
7707/* Parse the "inter" server keyword */
7708static int srv_parse_check_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7709 char **errmsg)
7710{
7711 const char *err = NULL;
7712 unsigned int delay;
7713 int err_code = 0;
7714
7715 if (!*(args[*cur_arg+1])) {
7716 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
7717 goto error;
7718 }
7719
7720 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
7721 if (err == PARSE_TIME_OVER) {
7722 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
7723 args[*cur_arg+1], args[*cur_arg], srv->id);
7724 goto error;
7725 }
7726 else if (err == PARSE_TIME_UNDER) {
7727 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
7728 args[*cur_arg+1], args[*cur_arg], srv->id);
7729 goto error;
7730 }
7731 else if (err) {
7732 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
7733 *err, srv->id);
7734 goto error;
7735 }
7736 if (delay <= 0) {
7737 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
7738 delay, args[*cur_arg], srv->id);
7739 goto error;
7740 }
7741 srv->check.inter = delay;
7742
7743 out:
7744 return err_code;
7745
7746 error:
7747 err_code |= ERR_ALERT | ERR_FATAL;
7748 goto out;
7749}
7750
7751
7752/* Parse the "fastinter" server keyword */
7753static int srv_parse_check_fastinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7754 char **errmsg)
7755{
7756 const char *err = NULL;
7757 unsigned int delay;
7758 int err_code = 0;
7759
7760 if (!*(args[*cur_arg+1])) {
7761 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
7762 goto error;
7763 }
7764
7765 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
7766 if (err == PARSE_TIME_OVER) {
7767 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
7768 args[*cur_arg+1], args[*cur_arg], srv->id);
7769 goto error;
7770 }
7771 else if (err == PARSE_TIME_UNDER) {
7772 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
7773 args[*cur_arg+1], args[*cur_arg], srv->id);
7774 goto error;
7775 }
7776 else if (err) {
7777 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
7778 *err, srv->id);
7779 goto error;
7780 }
7781 if (delay <= 0) {
7782 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
7783 delay, args[*cur_arg], srv->id);
7784 goto error;
7785 }
7786 srv->check.fastinter = delay;
7787
7788 out:
7789 return err_code;
7790
7791 error:
7792 err_code |= ERR_ALERT | ERR_FATAL;
7793 goto out;
7794}
7795
7796
7797/* Parse the "downinter" server keyword */
7798static int srv_parse_check_downinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7799 char **errmsg)
7800{
7801 const char *err = NULL;
7802 unsigned int delay;
7803 int err_code = 0;
7804
7805 if (!*(args[*cur_arg+1])) {
7806 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
7807 goto error;
7808 }
7809
7810 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
7811 if (err == PARSE_TIME_OVER) {
7812 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
7813 args[*cur_arg+1], args[*cur_arg], srv->id);
7814 goto error;
7815 }
7816 else if (err == PARSE_TIME_UNDER) {
7817 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
7818 args[*cur_arg+1], args[*cur_arg], srv->id);
7819 goto error;
7820 }
7821 else if (err) {
7822 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
7823 *err, srv->id);
7824 goto error;
7825 }
7826 if (delay <= 0) {
7827 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
7828 delay, args[*cur_arg], srv->id);
7829 goto error;
7830 }
7831 srv->check.downinter = delay;
7832
7833 out:
7834 return err_code;
7835
7836 error:
7837 err_code |= ERR_ALERT | ERR_FATAL;
7838 goto out;
7839}
7840
7841/* Parse the "port" server keyword */
7842static int srv_parse_check_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
7843 char **errmsg)
7844{
7845 int err_code = 0;
7846
7847 if (!*(args[*cur_arg+1])) {
7848 memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]);
7849 goto error;
7850 }
7851
7852 global.maxsock++;
7853 srv->check.port = atol(args[*cur_arg+1]);
7854 srv->flags |= SRV_F_CHECKPORT;
7855
7856 out:
7857 return err_code;
7858
7859 error:
7860 err_code |= ERR_ALERT | ERR_FATAL;
7861 goto out;
7862}
7863
Christopher Fauletfd6c2292020-03-25 18:20:15 +01007864static struct cfg_kw_list cfg_kws = {ILH, {
Christopher Faulete9111b62020-04-09 18:12:08 +02007865 { CFG_LISTEN, "tcp-check", proxy_parse_tcpcheck },
7866 { CFG_LISTEN, "http-check", proxy_parse_httpcheck },
7867 { CFG_LISTEN, "external-check", proxy_parse_extcheck },
Christopher Fauletfd6c2292020-03-25 18:20:15 +01007868 { 0, NULL, NULL },
7869}};
7870
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007871static struct srv_kw_list srv_kws = { "CHK", { }, {
Christopher Fauletce8111e2020-04-06 15:04:11 +02007872 { "addr", srv_parse_addr, 1, 1 }, /* IP address to send health to or to probe from agent-check */
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007873 { "agent-addr", srv_parse_agent_addr, 1, 1 }, /* Enable an auxiliary agent check */
7874 { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable agent checks */
7875 { "agent-inter", srv_parse_agent_inter, 1, 1 }, /* Set the interval between two agent checks */
7876 { "agent-port", srv_parse_agent_port, 1, 1 }, /* Set the TCP port used for agent checks. */
7877 { "agent-send", srv_parse_agent_send, 1, 1 }, /* Set string to send to agent. */
Christopher Fauletce8111e2020-04-06 15:04:11 +02007878 { "check", srv_parse_check, 0, 1 }, /* Enable health checks */
Christopher Fauletedc6ed92020-04-23 16:27:59 +02007879 { "check-proto", srv_parse_check_proto, 1, 1 }, /* Set the mux protocol for health checks */
Christopher Fauletce8111e2020-04-06 15:04:11 +02007880 { "check-send-proxy", srv_parse_check_send_proxy, 0, 1 }, /* Enable PROXY protocol for health checks */
7881 { "check-via-socks4", srv_parse_check_via_socks4, 0, 1 }, /* Enable socks4 proxy for health checks */
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007882 { "no-agent-check", srv_parse_no_agent_check, 0, 1 }, /* Do not enable any auxiliary agent check */
Christopher Fauletce8111e2020-04-06 15:04:11 +02007883 { "no-check", srv_parse_no_check, 0, 1 }, /* Disable health checks */
7884 { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1 }, /* Disable PROXY protol for health checks */
7885 { "rise", srv_parse_check_rise, 1, 1 }, /* Set rise value for health checks */
7886 { "fall", srv_parse_check_fall, 1, 1 }, /* Set fall value for health checks */
7887 { "inter", srv_parse_check_inter, 1, 1 }, /* Set inter value for health checks */
7888 { "fastinter", srv_parse_check_fastinter, 1, 1 }, /* Set fastinter value for health checks */
7889 { "downinter", srv_parse_check_downinter, 1, 1 }, /* Set downinter value for health checks */
7890 { "port", srv_parse_check_port, 1, 1 }, /* Set the TCP port used for health checks. */
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007891 { NULL, NULL, 0 },
7892}};
7893
Christopher Fauletfd6c2292020-03-25 18:20:15 +01007894INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02007895INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01007896
Willy Tarreaubd741542010-03-16 18:46:54 +01007897/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02007898 * Local variables:
7899 * c-indent-level: 8
7900 * c-basic-offset: 8
7901 * End:
7902 */