blob: f52647b721721e7737d558b7bcceaf01443d4e9e [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
Willy Tarreauc7e42382012-08-24 19:22:53 +020033#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/compat.h>
35#include <common/config.h>
36#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020037#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/time.h>
Christopher Fauletcfda8472017-10-20 15:40:23 +020039#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020042#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010043#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
45#include <proto/backend.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020046#include <proto/checks.h>
William Lallemand9ed62032016-11-21 17:49:11 +010047#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/fd.h>
49#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020050#include <proto/mux_pt.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/queue.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020052#include <proto/port_range.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010053#include <proto/proto_tcp.h>
Baptiste Assmann69e273f2013-12-11 00:52:19 +010054#include <proto/protocol.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010055#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/server.h>
Willy Tarreau48d6bf22016-06-21 16:27:34 +020057#include <proto/signal.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010058#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020060#include <proto/log.h>
61#include <proto/dns.h>
62#include <proto/proto_udp.h>
Olivier Houchard9130a962017-10-17 17:33:43 +020063#include <proto/ssl_sock.h>
Olivier Houchard9130a962017-10-17 17:33:43 +020064
Willy Tarreaubd741542010-03-16 18:46:54 +010065static int httpchk_expect(struct server *s, int done);
Simon Hormane16c1b32015-01-30 11:22:57 +090066static int tcpcheck_get_step_id(struct check *);
Baptiste Assmann22b09d22015-05-01 08:03:04 +020067static char * tcpcheck_get_step_comment(struct check *, int);
Willy Tarreau6bdcab02017-10-04 18:41:00 +020068static int tcpcheck_main(struct check *);
Olivier Houchard910b2bc2018-07-17 18:49:38 +020069static void __event_srv_chk_w(struct conn_stream *cs);
Olivier Houchard4501c3e2018-08-28 19:36:18 +020070static int wake_srv_chk(struct conn_stream *cs);
Olivier Houchardaf4021e2018-08-09 13:06:55 +020071static void __event_srv_chk_r(struct conn_stream *cs);
Willy Tarreaubd741542010-03-16 18:46:54 +010072
Willy Tarreau8ceae722018-11-26 11:58:30 +010073DECLARE_STATIC_POOL(pool_head_email_alert, "email_alert", sizeof(struct email_alert));
74DECLARE_STATIC_POOL(pool_head_tcpcheck_rule, "tcpcheck_rule", sizeof(struct tcpcheck_rule));
Christopher Faulet31dff9b2017-10-23 15:45:20 +020075
76
Simon Horman63a4a822012-03-19 07:24:41 +090077static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010078 [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" },
79 [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" },
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020080 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020081
Willy Tarreau23964182014-05-20 20:56:30 +020082 /* Below we have finished checks */
83 [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" },
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010084 [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010085
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010086 [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020087
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010088 [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" },
89 [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" },
90 [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020091
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010092 [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" },
93 [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" },
94 [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020095
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010096 [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" },
97 [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020098
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020099 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200100
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100101 [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" },
102 [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" },
103 [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" },
Simon Horman98637e52014-06-20 12:30:16 +0900104
105 [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" },
106 [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" },
Cyril Bonté77010d82014-08-07 01:55:37 +0200107 [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200108};
109
Cyril Bontéac92a062014-12-27 22:28:38 +0100110const struct extcheck_env extcheck_envs[EXTCHK_SIZE] = {
111 [EXTCHK_PATH] = { "PATH", EXTCHK_SIZE_EVAL_INIT },
112 [EXTCHK_HAPROXY_PROXY_NAME] = { "HAPROXY_PROXY_NAME", EXTCHK_SIZE_EVAL_INIT },
113 [EXTCHK_HAPROXY_PROXY_ID] = { "HAPROXY_PROXY_ID", EXTCHK_SIZE_EVAL_INIT },
114 [EXTCHK_HAPROXY_PROXY_ADDR] = { "HAPROXY_PROXY_ADDR", EXTCHK_SIZE_EVAL_INIT },
115 [EXTCHK_HAPROXY_PROXY_PORT] = { "HAPROXY_PROXY_PORT", EXTCHK_SIZE_EVAL_INIT },
116 [EXTCHK_HAPROXY_SERVER_NAME] = { "HAPROXY_SERVER_NAME", EXTCHK_SIZE_EVAL_INIT },
117 [EXTCHK_HAPROXY_SERVER_ID] = { "HAPROXY_SERVER_ID", EXTCHK_SIZE_EVAL_INIT },
Christopher Fauletaaae9a02020-04-26 09:50:31 +0200118 [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_ADDR },
119 [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_UINT },
Cyril Bontéac92a062014-12-27 22:28:38 +0100120 [EXTCHK_HAPROXY_SERVER_MAXCONN] = { "HAPROXY_SERVER_MAXCONN", EXTCHK_SIZE_EVAL_INIT },
121 [EXTCHK_HAPROXY_SERVER_CURCONN] = { "HAPROXY_SERVER_CURCONN", EXTCHK_SIZE_ULONG },
122};
123
Simon Horman63a4a822012-03-19 07:24:41 +0900124static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100125 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
126
127 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
128 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
129
130 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
131 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
132 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
133 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
134
135 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
136 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
137 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
138};
139
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100140/* checks if <err> is a real error for errno or one that can be ignored, and
141 * return 0 for these ones or <err> for real ones.
142 */
143static inline int unclean_errno(int err)
144{
145 if (err == EAGAIN || err == EINPROGRESS ||
146 err == EISCONN || err == EALREADY)
147 return 0;
148 return err;
149}
150
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200151/*
152 * Convert check_status code to description
153 */
154const char *get_check_status_description(short check_status) {
155
156 const char *desc;
157
158 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200159 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200160 else
161 desc = NULL;
162
163 if (desc && *desc)
164 return desc;
165 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200166 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200167}
168
169/*
170 * Convert check_status code to short info
171 */
172const char *get_check_status_info(short check_status) {
173
174 const char *info;
175
176 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200177 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200178 else
179 info = NULL;
180
181 if (info && *info)
182 return info;
183 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200184 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200185}
186
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100187const char *get_analyze_status(short analyze_status) {
188
189 const char *desc;
190
191 if (analyze_status < HANA_STATUS_SIZE)
192 desc = analyze_statuses[analyze_status].desc;
193 else
194 desc = NULL;
195
196 if (desc && *desc)
197 return desc;
198 else
199 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
200}
201
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200202/*
Simon Horman4a741432013-02-23 15:35:38 +0900203 * Set check->status, update check->duration and fill check->result with
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200204 * an adequate CHK_RES_* value. The new check->health is computed based
205 * on the result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200206 *
207 * Show information in logs about failed health check if server is UP
208 * or succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200209 */
Simon Horman4a741432013-02-23 15:35:38 +0900210static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100211{
Simon Horman4a741432013-02-23 15:35:38 +0900212 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200213 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200214 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900215
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200216 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100217 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900218 check->desc[0] = '\0';
219 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200220 return;
221 }
222
Simon Horman4a741432013-02-23 15:35:38 +0900223 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200224 return;
225
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200226 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900227 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
228 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200229 } else
Simon Horman4a741432013-02-23 15:35:38 +0900230 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200231
Simon Horman4a741432013-02-23 15:35:38 +0900232 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200233 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900234 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200235
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100236 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900237 check->duration = -1;
238 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200239 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900240 check->duration = tv_ms_elapsed(&check->start, &now);
241 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200242 }
243
Willy Tarreau23964182014-05-20 20:56:30 +0200244 /* no change is expected if no state change occurred */
245 if (check->result == CHK_RES_NEUTRAL)
246 return;
247
Olivier Houchard0923fa42019-01-11 18:43:04 +0100248 /* If the check was really just sending a mail, it won't have an
249 * associated server, so we're done now.
250 */
251 if (!s)
252 return;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200253 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200254
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200255 switch (check->result) {
256 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200257 /* Failure to connect to the agent as a secondary check should not
258 * cause the server to be marked down.
259 */
260 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900261 (check->status >= HCHK_STATUS_L57DATA)) &&
Christopher Fauletb119a792018-05-02 12:12:45 +0200262 (check->health > 0)) {
Olivier Houchard7059c552019-03-08 18:49:32 +0100263 _HA_ATOMIC_ADD(&s->counters.failed_checks, 1);
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200264 report = 1;
265 check->health--;
266 if (check->health < check->rise)
267 check->health = 0;
268 }
269 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200270
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200271 case CHK_RES_PASSED:
272 case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */
273 if ((check->health < check->rise + check->fall - 1) &&
274 (check->result == CHK_RES_PASSED || check->health > 0)) {
275 report = 1;
276 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200277
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200278 if (check->health >= check->rise)
279 check->health = check->rise + check->fall - 1; /* OK now */
280 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200281
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200282 /* clear consecutive_errors if observing is enabled */
283 if (s->onerror)
284 s->consecutive_errors = 0;
285 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100286
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200287 default:
288 break;
289 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200290
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200291 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
292 (status != prev_status || report)) {
293 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200294 "%s check for %sserver %s/%s %s%s",
295 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200296 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100297 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100298 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200299 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200300
Emeric Brun5a133512017-10-19 14:42:30 +0200301 srv_append_status(&trash, s, check, -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200302
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100303 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200304 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
305 (check->health >= check->rise) ? check->fall : check->rise,
306 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200307
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200308 ha_warning("%s.\n", trash.area);
309 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
310 send_email_alert(s, LOG_INFO, "%s", trash.area);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200311 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200312}
313
Willy Tarreau4eec5472014-05-20 22:32:27 +0200314/* Marks the check <check>'s server down if the current check is already failed
315 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200316 */
Willy Tarreau4eec5472014-05-20 22:32:27 +0200317static void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200318{
Simon Horman4a741432013-02-23 15:35:38 +0900319 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900320
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200321 /* The agent secondary check should only cause a server to be marked
322 * as down if check->status is HCHK_STATUS_L7STS, which indicates
323 * that the agent returned "fail", "stopped" or "down".
324 * The implication here is that failure to connect to the agent
325 * as a secondary check should not cause the server to be marked
326 * down. */
327 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
328 return;
329
Willy Tarreau4eec5472014-05-20 22:32:27 +0200330 if (check->health > 0)
331 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100332
Willy Tarreau4eec5472014-05-20 22:32:27 +0200333 /* We only report a reason for the check if we did not do so previously */
Emeric Brun5a133512017-10-19 14:42:30 +0200334 srv_set_stopped(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200335}
336
Willy Tarreauaf549582014-05-16 17:37:50 +0200337/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200338 * it isn't in maintenance, it is not tracking a down server and other checks
339 * comply. The rule is simple : by default, a server is up, unless any of the
340 * following conditions is true :
341 * - health check failed (check->health < rise)
342 * - agent check failed (agent->health < rise)
343 * - the server tracks a down server (track && track->state == STOPPED)
344 * Note that if the server has a slowstart, it will switch to STARTING instead
345 * of RUNNING. Also, only the health checks support the nolb mode, so the
346 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200347 */
Willy Tarreau3e048382014-05-21 10:30:54 +0200348static void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200349{
Simon Horman4a741432013-02-23 15:35:38 +0900350 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100351
Emeric Brun52a91d32017-08-31 14:41:55 +0200352 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200353 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100354
Emeric Brun52a91d32017-08-31 14:41:55 +0200355 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200356 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100357
Willy Tarreau3e048382014-05-21 10:30:54 +0200358 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
359 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100360
Willy Tarreau3e048382014-05-21 10:30:54 +0200361 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
362 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200363
Emeric Brun52a91d32017-08-31 14:41:55 +0200364 if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING)
Willy Tarreau3e048382014-05-21 10:30:54 +0200365 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100366
Emeric Brun5a133512017-10-19 14:42:30 +0200367 srv_set_running(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100368}
369
Willy Tarreaudb58b792014-05-21 13:57:23 +0200370/* Marks the check <check> as valid and tries to set its server into stopping mode
371 * if it was running or starting, and provided it isn't in maintenance and other
372 * checks comply. The conditions for the server to be marked in stopping mode are
373 * the same as for it to be turned up. Also, only the health checks support the
374 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200375 */
Willy Tarreaudb58b792014-05-21 13:57:23 +0200376static void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200377{
Simon Horman4a741432013-02-23 15:35:38 +0900378 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100379
Emeric Brun52a91d32017-08-31 14:41:55 +0200380 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200381 return;
382
Willy Tarreaudb58b792014-05-21 13:57:23 +0200383 if (check->state & CHK_ST_AGENT)
384 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100385
Emeric Brun52a91d32017-08-31 14:41:55 +0200386 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreaudb58b792014-05-21 13:57:23 +0200387 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100388
Willy Tarreaudb58b792014-05-21 13:57:23 +0200389 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
390 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100391
Willy Tarreaudb58b792014-05-21 13:57:23 +0200392 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
393 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100394
Willy Tarreaub26881a2017-12-23 11:16:49 +0100395 srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100396}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100398/* note: use health_adjust() only, which first checks that the observe mode is
399 * enabled.
400 */
401void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100402{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100403 int failed;
404 int expire;
405
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100406 if (s->observe >= HANA_OBS_SIZE)
407 return;
408
Willy Tarreaubb956662013-01-24 00:37:39 +0100409 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100410 return;
411
412 switch (analyze_statuses[status].lr[s->observe - 1]) {
413 case 1:
414 failed = 1;
415 break;
416
417 case 2:
418 failed = 0;
419 break;
420
421 default:
422 return;
423 }
424
425 if (!failed) {
426 /* good: clear consecutive_errors */
427 s->consecutive_errors = 0;
428 return;
429 }
430
Olivier Houchard7059c552019-03-08 18:49:32 +0100431 _HA_ATOMIC_ADD(&s->consecutive_errors, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100432
433 if (s->consecutive_errors < s->consecutive_errors_limit)
434 return;
435
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100436 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
437 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100438
439 switch (s->onerror) {
440 case HANA_ONERR_FASTINTER:
441 /* force fastinter - nothing to do here as all modes force it */
442 break;
443
444 case HANA_ONERR_SUDDTH:
445 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900446 if (s->check.health > s->check.rise)
447 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100448
449 /* no break - fall through */
450
451 case HANA_ONERR_FAILCHK:
452 /* simulate a failed health check */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200453 set_server_check_status(&s->check, HCHK_STATUS_HANA,
454 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200455 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100456 break;
457
458 case HANA_ONERR_MARKDWN:
459 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900460 s->check.health = s->check.rise;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200461 set_server_check_status(&s->check, HCHK_STATUS_HANA,
462 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200463 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100464 break;
465
466 default:
467 /* write a warning? */
468 break;
469 }
470
471 s->consecutive_errors = 0;
Olivier Houchard7059c552019-03-08 18:49:32 +0100472 _HA_ATOMIC_ADD(&s->counters.failed_hana, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100473
Simon Horman66183002013-02-23 10:16:43 +0900474 if (s->check.fastinter) {
475 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300476 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200477 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300478 /* requeue check task with new expire */
479 task_queue(s->check.task);
480 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100481 }
482}
483
Willy Tarreaua1dab552014-04-14 15:04:54 +0200484static int httpchk_build_status_header(struct server *s, char *buffer, int size)
Willy Tarreauef781042010-01-27 11:53:01 +0100485{
486 int sv_state;
487 int ratio;
488 int hlen = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800489 char addr[46];
490 char port[6];
Willy Tarreauef781042010-01-27 11:53:01 +0100491 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
492 "UP %d/%d", "UP",
493 "NOLB %d/%d", "NOLB",
494 "no check" };
495
496 memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24);
497 hlen += 24;
498
Willy Tarreauff5ae352013-12-11 20:36:34 +0100499 if (!(s->check.state & CHK_ST_ENABLED))
500 sv_state = 6;
Emeric Brun52a91d32017-08-31 14:41:55 +0200501 else if (s->cur_state != SRV_ST_STOPPED) {
Simon Horman58c32972013-11-25 10:46:38 +0900502 if (s->check.health == s->check.rise + s->check.fall - 1)
Willy Tarreauef781042010-01-27 11:53:01 +0100503 sv_state = 3; /* UP */
504 else
505 sv_state = 2; /* going down */
506
Emeric Brun52a91d32017-08-31 14:41:55 +0200507 if (s->cur_state == SRV_ST_STOPPING)
Willy Tarreauef781042010-01-27 11:53:01 +0100508 sv_state += 2;
509 } else {
Simon Horman125d0992013-02-24 17:23:38 +0900510 if (s->check.health)
Willy Tarreauef781042010-01-27 11:53:01 +0100511 sv_state = 1; /* going up */
512 else
513 sv_state = 0; /* DOWN */
514 }
515
Willy Tarreaua1dab552014-04-14 15:04:54 +0200516 hlen += snprintf(buffer + hlen, size - hlen,
Willy Tarreauef781042010-01-27 11:53:01 +0100517 srv_hlt_st[sv_state],
Emeric Brun52a91d32017-08-31 14:41:55 +0200518 (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
519 (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreauef781042010-01-27 11:53:01 +0100520
Joseph Lynch514061c2015-01-15 17:52:59 -0800521 addr_to_str(&s->addr, addr, sizeof(addr));
Willy Tarreau04276f32017-01-06 17:41:29 +0100522 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
523 snprintf(port, sizeof(port), "%u", s->svc_port);
524 else
525 *port = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800526
527 hlen += snprintf(buffer + hlen, size - hlen, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
528 addr, port, s->proxy->id, s->id,
Willy Tarreauef781042010-01-27 11:53:01 +0100529 global.node,
Emeric Brun52a91d32017-08-31 14:41:55 +0200530 (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
Willy Tarreauef781042010-01-27 11:53:01 +0100531 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
532 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
533 s->nbpend);
534
Emeric Brun52a91d32017-08-31 14:41:55 +0200535 if ((s->cur_state == SRV_ST_STARTING) &&
Willy Tarreauef781042010-01-27 11:53:01 +0100536 now.tv_sec < s->last_change + s->slowstart &&
537 now.tv_sec >= s->last_change) {
538 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
Willy Tarreaua1dab552014-04-14 15:04:54 +0200539 hlen += snprintf(buffer + hlen, size - hlen, "; throttle=%d%%", ratio);
Willy Tarreauef781042010-01-27 11:53:01 +0100540 }
541
542 buffer[hlen++] = '\r';
543 buffer[hlen++] = '\n';
544
545 return hlen;
546}
547
Willy Tarreau20a18342013-12-05 00:31:46 +0100548/* Check the connection. If an error has already been reported or the socket is
549 * closed, keep errno intact as it is supposed to contain the valid error code.
550 * If no error is reported, check the socket's error queue using getsockopt().
551 * Warning, this must be done only once when returning from poll, and never
552 * after an I/O error was attempted, otherwise the error queue might contain
553 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
554 * socket. Returns non-zero if an error was reported, zero if everything is
555 * clean (including a properly closed socket).
556 */
557static int retrieve_errno_from_socket(struct connection *conn)
558{
559 int skerr;
560 socklen_t lskerr = sizeof(skerr);
561
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100562 if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl))
Willy Tarreau20a18342013-12-05 00:31:46 +0100563 return 1;
564
Willy Tarreau3c728722014-01-23 13:50:42 +0100565 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100566 return 0;
567
Willy Tarreau585744b2017-08-24 14:31:19 +0200568 if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
Willy Tarreau20a18342013-12-05 00:31:46 +0100569 errno = skerr;
570
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100571 errno = unclean_errno(errno);
Willy Tarreau20a18342013-12-05 00:31:46 +0100572
573 if (!errno) {
574 /* we could not retrieve an error, that does not mean there is
575 * none. Just don't change anything and only report the prior
576 * error if any.
577 */
578 if (conn->flags & CO_FL_ERROR)
579 return 1;
580 else
581 return 0;
582 }
583
584 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
585 return 1;
586}
587
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100588/* Try to collect as much information as possible on the connection status,
589 * and adjust the server status accordingly. It may make use of <errno_bck>
590 * if non-null when the caller is absolutely certain of its validity (eg:
591 * checked just after a syscall). If the caller doesn't have a valid errno,
592 * it can pass zero, and retrieve_errno_from_socket() will be called to try
593 * to extract errno from the socket. If no error is reported, it will consider
594 * the <expired> flag. This is intended to be used when a connection error was
595 * reported in conn->flags or when a timeout was reported in <expired>. The
596 * function takes care of not updating a server status which was already set.
597 * All situations where at least one of <expired> or CO_FL_ERROR are set
598 * produce a status.
599 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200600static void chk_report_conn_err(struct check *check, int errno_bck, int expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100601{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200602 struct conn_stream *cs = check->cs;
603 struct connection *conn = cs_conn(cs);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100604 const char *err_msg;
Willy Tarreau83061a82018-07-13 11:56:34 +0200605 struct buffer *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200606 int step;
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200607 char *comment;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100608
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100609 if (check->result != CHK_RES_UNKNOWN)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100610 return;
611
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100612 errno = unclean_errno(errno_bck);
613 if (conn && errno)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100614 retrieve_errno_from_socket(conn);
615
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200616 if (conn && !(conn->flags & CO_FL_ERROR) &&
617 !(cs->flags & CS_FL_ERROR) && !expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100618 return;
619
620 /* we'll try to build a meaningful error message depending on the
621 * context of the error possibly present in conn->err_code, and the
622 * socket error possibly collected above. This is useful to know the
623 * exact step of the L6 layer (eg: SSL handshake).
624 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200625 chk = get_trash_chunk();
626
627 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormane16c1b32015-01-30 11:22:57 +0900628 step = tcpcheck_get_step_id(check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200629 if (!step)
630 chunk_printf(chk, " at initial connection step of tcp-check");
631 else {
632 chunk_printf(chk, " at step %d of tcp-check", step);
633 /* we were looking for a string */
634 if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_CONNECT) {
635 if (check->last_started_step->port)
636 chunk_appendf(chk, " (connect port %d)" ,check->last_started_step->port);
637 else
638 chunk_appendf(chk, " (connect)");
639 }
640 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) {
641 if (check->last_started_step->string)
Baptiste Assmann96a5c9b2015-05-01 08:09:29 +0200642 chunk_appendf(chk, " (expect string '%s')", check->last_started_step->string);
Willy Tarreau213c6782014-10-02 14:51:02 +0200643 else if (check->last_started_step->expect_regex)
644 chunk_appendf(chk, " (expect regex)");
645 }
646 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_SEND) {
647 chunk_appendf(chk, " (send)");
648 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200649
650 comment = tcpcheck_get_step_comment(check, step);
651 if (comment)
652 chunk_appendf(chk, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200653 }
654 }
655
Willy Tarreau00149122017-10-04 18:05:01 +0200656 if (conn && conn->err_code) {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100657 if (unclean_errno(errno))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200658 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno),
659 chk->area);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100660 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200661 chunk_printf(&trash, "%s%s", conn_err_code_str(conn),
662 chk->area);
663 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100664 }
665 else {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100666 if (unclean_errno(errno)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200667 chunk_printf(&trash, "%s%s", strerror(errno),
668 chk->area);
669 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100670 }
671 else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200672 err_msg = chk->area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100673 }
674 }
675
Willy Tarreau00149122017-10-04 18:05:01 +0200676 if (check->state & CHK_ST_PORT_MISS) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200677 /* NOTE: this is reported after <fall> tries */
678 chunk_printf(chk, "No port available for the TCP connection");
679 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
680 }
681
Willy Tarreau00149122017-10-04 18:05:01 +0200682 if (!conn) {
683 /* connection allocation error before the connection was established */
684 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
685 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100686 else if (conn->flags & CO_FL_WAIT_L4_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100687 /* L4 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200688 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100689 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
690 else if (expired)
691 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200692
693 /*
694 * might be due to a server IP change.
695 * Let's trigger a DNS resolution if none are currently running.
696 */
Olivier Houchard0923fa42019-01-11 18:43:04 +0100697 if (check->server)
698 dns_trigger_resolution(check->server->dns_requester);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200699
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100700 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100701 else if (conn->flags & CO_FL_WAIT_L6_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100702 /* L6 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200703 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100704 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
705 else if (expired)
706 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
707 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200708 else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100709 /* I/O error after connection was established and before we could diagnose */
710 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
711 }
712 else if (expired) {
713 /* connection established but expired check */
714 if (check->type == PR_O2_SSL3_CHK)
715 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
716 else /* HTTP, SMTP, ... */
717 set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg);
718 }
719
720 return;
721}
722
Olivier Houchard5c110b92018-08-14 17:04:58 +0200723/* This function checks if any I/O is wanted, and if so, attempts to do so */
724static struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned short state)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200725{
Olivier Houchard26e1a8f2018-09-12 15:15:12 +0200726 struct check *check = ctx;
727 struct conn_stream *cs = check->cs;
Olivier Houchard0923fa42019-01-11 18:43:04 +0100728 struct email_alertq *q = container_of(check, typeof(*q), check);
Olivier Houchardbc89ad82019-07-09 17:28:51 +0200729 int ret = 0;
Olivier Houchard4501c3e2018-08-28 19:36:18 +0200730
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100731 if (!(check->wait_list.events & SUB_RETRY_SEND))
Olivier Houchardbc89ad82019-07-09 17:28:51 +0200732 ret = wake_srv_chk(cs);
733 if (ret == 0 && !(check->wait_list.events & SUB_RETRY_RECV)) {
Olivier Houchard0923fa42019-01-11 18:43:04 +0100734 if (check->server)
735 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
736 else
737 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200738 __event_srv_chk_r(cs);
Olivier Houchard0923fa42019-01-11 18:43:04 +0100739 if (check->server)
740 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
741 else
742 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200743 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200744 return NULL;
745}
746
747/* same as above but protected by the server lock.
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100748 *
749 * Please do NOT place any return statement in this function and only leave
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200750 * via the out label. NOTE THAT THIS FUNCTION DOESN'T LOCK, YOU PROBABLY WANT
751 * TO USE event_srv_chk_w() instead.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200752 */
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200753static void __event_srv_chk_w(struct conn_stream *cs)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200754{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200755 struct connection *conn = cs->conn;
756 struct check *check = cs->data;
Simon Horman4a741432013-02-23 15:35:38 +0900757 struct server *s = check->server;
Simon Horman4a741432013-02-23 15:35:38 +0900758 struct task *t = check->task;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200759
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100760 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100761 goto out_wakeup;
762
Willy Tarreau20a18342013-12-05 00:31:46 +0100763 if (retrieve_errno_from_socket(conn)) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200764 chk_report_conn_err(check, errno, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100765 goto out_wakeup;
766 }
Krzysztof Piotr Oledzki6492db52010-01-02 22:03:01 +0100767
Willy Tarreau06559ac2013-12-05 01:53:08 +0100768 /* here, we know that the connection is established. That's enough for
769 * a pure TCP check.
770 */
771 if (!check->type)
772 goto out_wakeup;
773
Willy Tarreauc09572f2017-10-04 11:58:22 +0200774 /* wake() will take care of calling tcpcheck_main() */
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100775 if (check->type == PR_O2_TCPCHK_CHK)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200776 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200777
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200778 if (b_data(&check->bo)) {
Olivier Houcharded0f2072018-08-16 15:41:52 +0200779 cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200780 b_realign_if_empty(&check->bo);
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200781 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200782 chk_report_conn_err(check, errno, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100783 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200784 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200785 if (b_data(&check->bo)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100786 conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200787 goto out;
788 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100789 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200790
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100791 /* full request sent, we allow up to <timeout.check> if nonzero for a response */
792 if (s->proxy->timeout.check) {
793 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
794 task_queue(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795 }
Olivier Houchard53216e72018-10-10 15:46:36 +0200796 goto out;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100797
Willy Tarreau83749182007-04-15 20:56:27 +0200798 out_wakeup:
Willy Tarreaufdccded2008-08-29 18:19:04 +0200799 task_wakeup(t, TASK_WOKEN_IO);
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200800 out:
801 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200802}
803
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200805 * This function is used only for server health-checks. It handles the server's
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +0200806 * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls
Simon Horman4a741432013-02-23 15:35:38 +0900807 * set_server_check_status() to update check->status, check->duration
808 * and check->result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200809
810 * The set_server_check_status function is called with HCHK_STATUS_L7OKD if
811 * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server
812 * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in
813 * response to an SSL HELLO (the principle is that this is enough to
814 * distinguish between an SSL server and a pure TCP relay). All other cases will
815 * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP,
816 * etc.
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100817 *
818 * Please do NOT place any return statement in this function and only leave
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200819 * via the out label.
820 *
821 * This must be called with the server lock held.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822 */
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200823static void __event_srv_chk_r(struct conn_stream *cs)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200825 struct connection *conn = cs->conn;
826 struct check *check = cs->data;
Simon Horman4a741432013-02-23 15:35:38 +0900827 struct server *s = check->server;
828 struct task *t = check->task;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200829 char *desc;
Willy Tarreau03938182010-03-17 21:52:07 +0100830 int done;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +0200831 unsigned short msglen;
Willy Tarreau83749182007-04-15 20:56:27 +0200832
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100833 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau83749182007-04-15 20:56:27 +0200834 goto out_wakeup;
Willy Tarreau83749182007-04-15 20:56:27 +0200835
Willy Tarreauc09572f2017-10-04 11:58:22 +0200836 /* wake() will take care of calling tcpcheck_main() */
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100837 if (check->type == PR_O2_TCPCHK_CHK)
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200838 goto out;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200839
Willy Tarreau83749182007-04-15 20:56:27 +0200840 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
841 * but the connection was closed on the remote end. Fortunately, recv still
842 * works correctly and we don't need to do the getsockopt() on linux.
843 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000844
845 /* Set buffer to point to the end of the data already read, and check
846 * that there is free space remaining. If the buffer is full, proceed
847 * with running the checks without attempting another socket read.
848 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000849
Willy Tarreau03938182010-03-17 21:52:07 +0100850 done = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +0000851
Olivier Houchard511efea2018-08-16 15:30:32 +0200852 cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0);
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200853 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) {
Willy Tarreau03938182010-03-17 21:52:07 +0100854 done = 1;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200855 if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) {
Willy Tarreauf1503172012-09-28 19:39:36 +0200856 /* Report network errors only if we got no other data. Otherwise
857 * we'll let the upper layers decide whether the response is OK
858 * or not. It is very common that an RST sent by the server is
859 * reported as an error just after the last data chunk.
860 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200861 chk_report_conn_err(check, errno, 0);
Willy Tarreauc1a07962010-03-16 20:55:43 +0100862 goto out_wakeup;
863 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200864 }
865
Willy Tarreau0f0393f2019-09-24 10:43:03 +0200866 /* the rest of the code below expects the connection to be ready! */
Willy Tarreau911db9b2020-01-23 16:27:54 +0100867 if (conn->flags & CO_FL_WAIT_XPRT && !done)
Willy Tarreau0f0393f2019-09-24 10:43:03 +0200868 goto wait_more_data;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100869
Willy Tarreau03938182010-03-17 21:52:07 +0100870 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200871 * Terminate string in b_head(&check->bi) buffer.
Willy Tarreau03938182010-03-17 21:52:07 +0100872 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200873 if (b_data(&check->bi) < b_size(&check->bi))
874 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100875 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200876 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100877 done = 1; /* buffer full, don't wait for more data */
878 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200879
Nick Chalk57b1bf72010-03-16 15:50:46 +0000880 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +0900881 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +0200882 case PR_O2_HTTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200883 if (!done && b_data(&check->bi) < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100884 goto wait_more_data;
885
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100886 /* Check if the server speaks HTTP 1.X */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200887 if ((b_data(&check->bi) < strlen("HTTP/1.0 000\r")) ||
888 (memcmp(b_head(&check->bi), "HTTP/1.", 7) != 0 ||
889 (*(b_head(&check->bi) + 12) != ' ' && *(b_head(&check->bi) + 12) != '\r')) ||
890 !isdigit((unsigned char) *(b_head(&check->bi) + 9)) || !isdigit((unsigned char) *(b_head(&check->bi) + 10)) ||
891 !isdigit((unsigned char) *(b_head(&check->bi) + 11))) {
892 cut_crlf(b_head(&check->bi));
893 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200894
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100895 goto out_wakeup;
896 }
897
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200898 check->code = str2uic(b_head(&check->bi) + 9);
899 desc = ltrim(b_head(&check->bi) + 12, ' ');
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200900
Willy Tarreaubd741542010-03-16 18:46:54 +0100901 if ((s->proxy->options & PR_O_DISABLE404) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200902 (s->next_state != SRV_ST_STOPPED) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +0000903 /* 404 may be accepted as "stopping" only if the server was up */
904 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900905 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000906 }
Willy Tarreaubd741542010-03-16 18:46:54 +0100907 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
908 /* Run content verification check... We know we have at least 13 chars */
909 if (!httpchk_expect(s, done))
910 goto wait_more_data;
911 }
912 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200913 else if (*(b_head(&check->bi) + 9) == '2' || *(b_head(&check->bi) + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +0100914 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900915 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +0100916 }
Nick Chalk57b1bf72010-03-16 15:50:46 +0000917 else {
918 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900919 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000920 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200921 break;
922
923 case PR_O2_SSL3_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200924 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +0100925 goto wait_more_data;
926
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100927 /* Check for SSLv3 alert or handshake */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200928 if ((b_data(&check->bi) >= 5) && (*b_head(&check->bi) == 0x15 || *b_head(&check->bi) == 0x16))
Simon Horman4a741432013-02-23 15:35:38 +0900929 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200930 else
Simon Horman4a741432013-02-23 15:35:38 +0900931 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200932 break;
933
934 case PR_O2_SMTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200935 if (!done && b_data(&check->bi) < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100936 goto wait_more_data;
937
Willy Tarreau5488a622019-08-06 16:26:31 +0200938 /* do not reset when closing, servers don't like this */
939 if (conn_ctrl_ready(cs->conn))
940 fdtab[cs->conn->handle.fd].linger_risk = 0;
941
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200942 /* Check if the server speaks SMTP */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200943 if ((b_data(&check->bi) < strlen("000\r")) ||
944 (*(b_head(&check->bi) + 3) != ' ' && *(b_head(&check->bi) + 3) != '\r') ||
945 !isdigit((unsigned char) *b_head(&check->bi)) || !isdigit((unsigned char) *(b_head(&check->bi) + 1)) ||
946 !isdigit((unsigned char) *(b_head(&check->bi) + 2))) {
947 cut_crlf(b_head(&check->bi));
948 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200949 goto out_wakeup;
950 }
951
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200952 check->code = str2uic(b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200953
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200954 desc = ltrim(b_head(&check->bi) + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200955 cut_crlf(desc);
956
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100957 /* Check for SMTP code 2xx (should be 250) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200958 if (*b_head(&check->bi) == '2')
Simon Horman4a741432013-02-23 15:35:38 +0900959 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200960 else
Simon Horman4a741432013-02-23 15:35:38 +0900961 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200962 break;
963
Simon Hormana2b9dad2013-02-12 10:45:54 +0900964 case PR_O2_LB_AGENT_CHK: {
Willy Tarreau81f5d942013-12-09 20:51:51 +0100965 int status = HCHK_STATUS_CHECKED;
966 const char *hs = NULL; /* health status */
967 const char *as = NULL; /* admin status */
968 const char *ps = NULL; /* performance status */
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200969 const char *cs = NULL; /* maxconn */
Willy Tarreau81f5d942013-12-09 20:51:51 +0100970 const char *err = NULL; /* first error to report */
971 const char *wrn = NULL; /* first warning to report */
972 char *cmd, *p;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900973
Willy Tarreau81f5d942013-12-09 20:51:51 +0100974 /* We're getting an agent check response. The agent could
975 * have been disabled in the mean time with a long check
976 * still pending. It is important that we ignore the whole
977 * response.
978 */
979 if (!(check->server->agent.state & CHK_ST_ENABLED))
980 break;
981
982 /* The agent supports strings made of a single line ended by the
983 * first CR ('\r') or LF ('\n'). This line is composed of words
984 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
985 * line may optionally contained a description of a state change
986 * after a sharp ('#'), which is only considered if a health state
987 * is announced.
988 *
989 * Words may be composed of :
990 * - a numeric weight suffixed by the percent character ('%').
991 * - a health status among "up", "down", "stopped", and "fail".
992 * - an admin status among "ready", "drain", "maint".
993 *
994 * These words may appear in any order. If multiple words of the
995 * same category appear, the last one wins.
996 */
997
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200998 p = b_head(&check->bi);
Willy Tarreau9809b782013-12-11 21:40:11 +0100999 while (*p && *p != '\n' && *p != '\r')
1000 p++;
1001
1002 if (!*p) {
1003 if (!done)
1004 goto wait_more_data;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001005
Willy Tarreau9809b782013-12-11 21:40:11 +01001006 /* at least inform the admin that the agent is mis-behaving */
1007 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
1008 break;
1009 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001010
Willy Tarreau9809b782013-12-11 21:40:11 +01001011 *p = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001012 cmd = b_head(&check->bi);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001013
Willy Tarreau81f5d942013-12-09 20:51:51 +01001014 while (*cmd) {
1015 /* look for next word */
1016 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
1017 cmd++;
1018 continue;
1019 }
Simon Horman671b6f02013-11-25 10:46:39 +09001020
Willy Tarreau81f5d942013-12-09 20:51:51 +01001021 if (*cmd == '#') {
1022 /* this is the beginning of a health status description,
1023 * skip the sharp and blanks.
1024 */
1025 cmd++;
1026 while (*cmd == '\t' || *cmd == ' ')
1027 cmd++;
Simon Horman671b6f02013-11-25 10:46:39 +09001028 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001029 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001030
1031 /* find the end of the word so that we have a null-terminated
1032 * word between <cmd> and <p>.
1033 */
1034 p = cmd + 1;
1035 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1036 p++;
1037 if (*p)
1038 *p++ = 0;
1039
1040 /* first, health statuses */
1041 if (strcasecmp(cmd, "up") == 0) {
1042 check->health = check->rise + check->fall - 1;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001043 status = HCHK_STATUS_L7OKD;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001044 hs = cmd;
1045 }
1046 else if (strcasecmp(cmd, "down") == 0) {
1047 check->health = 0;
1048 status = HCHK_STATUS_L7STS;
1049 hs = cmd;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001050 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001051 else if (strcasecmp(cmd, "stopped") == 0) {
1052 check->health = 0;
1053 status = HCHK_STATUS_L7STS;
1054 hs = cmd;
1055 }
1056 else if (strcasecmp(cmd, "fail") == 0) {
1057 check->health = 0;
1058 status = HCHK_STATUS_L7STS;
1059 hs = cmd;
1060 }
1061 /* admin statuses */
1062 else if (strcasecmp(cmd, "ready") == 0) {
1063 as = cmd;
1064 }
1065 else if (strcasecmp(cmd, "drain") == 0) {
1066 as = cmd;
1067 }
1068 else if (strcasecmp(cmd, "maint") == 0) {
1069 as = cmd;
1070 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001071 /* try to parse a weight here and keep the last one */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001072 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1073 ps = cmd;
1074 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001075 /* try to parse a maxconn here */
1076 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1077 cs = cmd;
1078 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001079 else {
1080 /* keep a copy of the first error */
1081 if (!err)
1082 err = cmd;
1083 }
1084 /* skip to next word */
1085 cmd = p;
1086 }
1087 /* here, cmd points either to \0 or to the beginning of a
1088 * description. Skip possible leading spaces.
1089 */
1090 while (*cmd == ' ' || *cmd == '\n')
1091 cmd++;
1092
1093 /* First, update the admin status so that we avoid sending other
1094 * possibly useless warnings and can also update the health if
1095 * present after going back up.
1096 */
1097 if (as) {
1098 if (strcasecmp(as, "drain") == 0)
1099 srv_adm_set_drain(check->server);
1100 else if (strcasecmp(as, "maint") == 0)
1101 srv_adm_set_maint(check->server);
1102 else
1103 srv_adm_set_ready(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001104 }
1105
Willy Tarreau81f5d942013-12-09 20:51:51 +01001106 /* now change weights */
1107 if (ps) {
1108 const char *msg;
1109
1110 msg = server_parse_weight_change_request(s, ps);
1111 if (!wrn || !*wrn)
1112 wrn = msg;
1113 }
1114
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001115 if (cs) {
1116 const char *msg;
1117
1118 cs += strlen("maxconn:");
1119
1120 msg = server_parse_maxconn_change_request(s, cs);
1121 if (!wrn || !*wrn)
1122 wrn = msg;
1123 }
1124
Willy Tarreau81f5d942013-12-09 20:51:51 +01001125 /* and finally health status */
1126 if (hs) {
1127 /* We'll report some of the warnings and errors we have
1128 * here. Down reports are critical, we leave them untouched.
1129 * Lack of report, or report of 'UP' leaves the room for
1130 * ERR first, then WARN.
Simon Hormana2b9dad2013-02-12 10:45:54 +09001131 */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001132 const char *msg = cmd;
Willy Tarreau83061a82018-07-13 11:56:34 +02001133 struct buffer *t;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001134
1135 if (!*msg || status == HCHK_STATUS_L7OKD) {
1136 if (err && *err)
1137 msg = err;
1138 else if (wrn && *wrn)
1139 msg = wrn;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001140 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001141
1142 t = get_trash_chunk();
1143 chunk_printf(t, "via agent : %s%s%s%s",
1144 hs, *msg ? " (" : "",
1145 msg, *msg ? ")" : "");
1146
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001147 set_server_check_status(check, status, t->area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001148 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001149 else if (err && *err) {
1150 /* No status change but we'd like to report something odd.
1151 * Just report the current state and copy the message.
1152 */
1153 chunk_printf(&trash, "agent reports an error : %s", err);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001154 set_server_check_status(check, status/*check->status*/,
1155 trash.area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001156
Willy Tarreau81f5d942013-12-09 20:51:51 +01001157 }
1158 else if (wrn && *wrn) {
1159 /* No status change but we'd like to report something odd.
1160 * Just report the current state and copy the message.
1161 */
1162 chunk_printf(&trash, "agent warns : %s", wrn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001163 set_server_check_status(check, status/*check->status*/,
1164 trash.area);
Willy Tarreau81f5d942013-12-09 20:51:51 +01001165 }
1166 else
1167 set_server_check_status(check, status, NULL);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001168 break;
1169 }
1170
Willy Tarreau1620ec32011-08-06 17:05:02 +02001171 case PR_O2_PGSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001172 if (!done && b_data(&check->bi) < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001173 goto wait_more_data;
1174
Willy Tarreau5488a622019-08-06 16:26:31 +02001175 /* do not reset when closing, servers don't like this */
1176 if (conn_ctrl_ready(cs->conn))
1177 fdtab[cs->conn->handle.fd].linger_risk = 0;
1178
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001179 if (b_head(&check->bi)[0] == 'R') {
Simon Horman4a741432013-02-23 15:35:38 +09001180 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001181 }
1182 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001183 if ((b_head(&check->bi)[0] == 'E') && (b_head(&check->bi)[5]!=0) && (b_head(&check->bi)[6]!=0))
1184 desc = &b_head(&check->bi)[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001185 else
1186 desc = "PostgreSQL unknown error";
1187
Simon Horman4a741432013-02-23 15:35:38 +09001188 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001189 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001190 break;
1191
1192 case PR_O2_REDIS_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001193 if (!done && b_data(&check->bi) < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001194 goto wait_more_data;
1195
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001196 if (strcmp(b_head(&check->bi), "+PONG\r\n") == 0) {
Simon Horman4a741432013-02-23 15:35:38 +09001197 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001198 }
1199 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001200 set_server_check_status(check, HCHK_STATUS_L7STS, b_head(&check->bi));
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001201 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001202 break;
1203
1204 case PR_O2_MYSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001205 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001206 goto wait_more_data;
1207
Willy Tarreau5488a622019-08-06 16:26:31 +02001208 /* do not reset when closing, servers don't like this */
1209 if (conn_ctrl_ready(cs->conn))
1210 fdtab[cs->conn->handle.fd].linger_risk = 0;
1211
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001212 if (s->proxy->check_len == 0) { // old mode
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001213 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001214 /* We set the MySQL Version in description for information purpose
1215 * FIXME : it can be cool to use MySQL Version for other purpose,
1216 * like mark as down old MySQL server.
1217 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001218 if (b_data(&check->bi) > 51) {
1219 desc = ltrim(b_head(&check->bi) + 5, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001220 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001221 }
1222 else {
1223 if (!done)
1224 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001225
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001226 /* it seems we have a OK packet but without a valid length,
1227 * it must be a protocol error
1228 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001229 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001230 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001231 }
1232 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001233 /* An error message is attached in the Error packet */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001234 desc = ltrim(b_head(&check->bi) + 7, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001235 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001236 }
1237 } else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001238 unsigned int first_packet_len = ((unsigned int) *b_head(&check->bi)) +
1239 (((unsigned int) *(b_head(&check->bi) + 1)) << 8) +
1240 (((unsigned int) *(b_head(&check->bi) + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001241
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001242 if (b_data(&check->bi) == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001243 /* MySQL Error packet always begin with field_count = 0xff */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001244 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001245 /* We have only one MySQL packet and it is a Handshake Initialization packet
1246 * but we need to have a second packet to know if it is alright
1247 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001248 if (!done && b_data(&check->bi) < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001249 goto wait_more_data;
1250 }
1251 else {
1252 /* We have only one packet and it is an Error packet,
1253 * an error message is attached, so we can display it
1254 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001255 desc = &b_head(&check->bi)[7];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 //ha_warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001257 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001258 }
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001259 } else if (b_data(&check->bi) > first_packet_len + 4) {
1260 unsigned int second_packet_len = ((unsigned int) *(b_head(&check->bi) + first_packet_len + 4)) +
1261 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 5)) << 8) +
1262 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001263
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001264 if (b_data(&check->bi) == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001265 /* We have 2 packets and that's good */
1266 /* Check if the second packet is a MySQL Error packet or not */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001267 if (*(b_head(&check->bi) + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001268 /* No error packet */
1269 /* We set the MySQL Version in description for information purpose */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001270 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 //ha_warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001272 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001273 }
1274 else {
1275 /* An error message is attached in the Error packet
1276 * so we can display it ! :)
1277 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001278 desc = &b_head(&check->bi)[first_packet_len+11];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 //ha_warning("2packetERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001280 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001281 }
1282 }
1283 }
1284 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001285 if (!done)
1286 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001287
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001288 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001289 * it must be a protocol error
1290 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001291 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 //ha_warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001293 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001294 }
1295 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001296 break;
1297
1298 case PR_O2_LDAP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001299 if (!done && b_data(&check->bi) < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001300 goto wait_more_data;
1301
1302 /* Check if the server speaks LDAP (ASN.1/BER)
1303 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1304 * http://tools.ietf.org/html/rfc4511
1305 */
1306
1307 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1308 * LDAPMessage: 0x30: SEQUENCE
1309 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001310 if ((b_data(&check->bi) < 14) || (*(b_head(&check->bi)) != '\x30')) {
Simon Horman4a741432013-02-23 15:35:38 +09001311 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001312 }
1313 else {
1314 /* size of LDAPMessage */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001315 msglen = (*(b_head(&check->bi) + 1) & 0x80) ? (*(b_head(&check->bi) + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001316
1317 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1318 * messageID: 0x02 0x01 0x01: INTEGER 1
1319 * protocolOp: 0x61: bindResponse
1320 */
1321 if ((msglen > 2) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001322 (memcmp(b_head(&check->bi) + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
Simon Horman4a741432013-02-23 15:35:38 +09001323 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001324 goto out_wakeup;
1325 }
1326
1327 /* size of bindResponse */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001328 msglen += (*(b_head(&check->bi) + msglen + 6) & 0x80) ? (*(b_head(&check->bi) + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001329
1330 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1331 * ldapResult: 0x0a 0x01: ENUMERATION
1332 */
1333 if ((msglen > 4) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001334 (memcmp(b_head(&check->bi) + 7 + msglen, "\x0a\x01", 2) != 0)) {
Simon Horman4a741432013-02-23 15:35:38 +09001335 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001336 goto out_wakeup;
1337 }
1338
1339 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1340 * resultCode
1341 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001342 check->code = *(b_head(&check->bi) + msglen + 9);
Simon Horman4a741432013-02-23 15:35:38 +09001343 if (check->code) {
1344 set_server_check_status(check, HCHK_STATUS_L7STS, "See RFC: http://tools.ietf.org/html/rfc4511#section-4.1.9");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001345 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001346 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001347 }
1348 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001349 break;
1350
Christopher Fauletba7bc162016-11-07 21:07:38 +01001351 case PR_O2_SPOP_CHK: {
1352 unsigned int framesz;
1353 char err[HCHK_DESC_LEN];
1354
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001355 if (!done && b_data(&check->bi) < 4)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001356 goto wait_more_data;
1357
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001358 memcpy(&framesz, b_head(&check->bi), 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001359 framesz = ntohl(framesz);
1360
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001361 if (!done && b_data(&check->bi) < (4+framesz))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001362 goto wait_more_data;
1363
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001364 if (!spoe_handle_healthcheck_response(b_head(&check->bi)+4, framesz, err, HCHK_DESC_LEN-1))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001365 set_server_check_status(check, HCHK_STATUS_L7OKD, "SPOA server is ok");
1366 else
1367 set_server_check_status(check, HCHK_STATUS_L7STS, err);
1368 break;
1369 }
1370
Willy Tarreau1620ec32011-08-06 17:05:02 +02001371 default:
Willy Tarreau4c1a2b32019-09-05 18:43:22 +02001372 /* good connection is enough for pure TCP check */
Willy Tarreau911db9b2020-01-23 16:27:54 +01001373 if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01001374 if (check->use_ssl == 1)
Willy Tarreau4c1a2b32019-09-05 18:43:22 +02001375 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
1376 else
1377 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
1378 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001379 break;
1380 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001381
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001382 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001383 /* collect possible new errors */
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001384 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001385 chk_report_conn_err(check, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001386
Nick Chalk57b1bf72010-03-16 15:50:46 +00001387 /* Reset the check buffer... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001388 *b_head(&check->bi) = '\0';
1389 b_reset(&check->bi);
Nick Chalk57b1bf72010-03-16 15:50:46 +00001390
Steven Davidovitz544d4812017-03-08 11:06:20 -08001391 /* Close the connection... We still attempt to nicely close if,
1392 * for instance, SSL needs to send a "close notify." Later, we perform
1393 * a hard close and reset the connection if some data are pending,
1394 * otherwise we end up with many TIME_WAITs and eat all the source port
1395 * range quickly. To avoid sending RSTs all the time, we first try to
1396 * drain pending data.
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001397 */
Olivier Houchard6c7e96a2019-07-02 16:35:18 +02001398 /* Call cs_shutr() first, to add the CO_FL_SOCK_RD_SH flag on the
1399 * connection, to make sure cs_shutw() will not lead to a shutdown()
1400 * that would provoke TIME_WAITs.
1401 */
1402 cs_shutr(cs, CS_SHR_DRAIN);
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001403 cs_shutw(cs, CS_SHW_NORMAL);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001404
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001405 /* OK, let's not stay here forever */
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001406 if (check->result == CHK_RES_FAILED)
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001407 conn->flags |= CO_FL_ERROR;
1408
Willy Tarreaufdccded2008-08-29 18:19:04 +02001409 task_wakeup(t, TASK_WOKEN_IO);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001410out:
Willy Tarreau3267d362012-08-17 23:53:56 +02001411 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001412
1413 wait_more_data:
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001414 cs->conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001415 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001416}
1417
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001418/*
1419 * This function is used only for server health-checks. It handles connection
1420 * status updates including errors. If necessary, it wakes the check task up.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001421 * It returns 0 on normal cases, <0 if at least one close() has happened on the
1422 * connection (eg: reconnect).
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001423 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001424static int wake_srv_chk(struct conn_stream *cs)
Willy Tarreau20bea422012-07-06 12:00:49 +02001425{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001426 struct connection *conn = cs->conn;
1427 struct check *check = cs->data;
Olivier Houchard0923fa42019-01-11 18:43:04 +01001428 struct email_alertq *q = container_of(check, typeof(*q), check);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001429 int ret = 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001430
Olivier Houchard0923fa42019-01-11 18:43:04 +01001431 if (check->server)
1432 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
1433 else
1434 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001435
Willy Tarreauc09572f2017-10-04 11:58:22 +02001436 /* we may have to make progress on the TCP checks */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001437 if (check->type == PR_O2_TCPCHK_CHK) {
1438 ret = tcpcheck_main(check);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001439 cs = check->cs;
Willy Tarreau543abd42018-09-20 11:25:12 +02001440 conn = cs->conn;
Willy Tarreauc5940392019-09-05 17:38:40 +02001441 } else {
1442 if (!(check->wait_list.events & SUB_RETRY_SEND))
1443 __event_srv_chk_w(cs);
1444 if (!(check->wait_list.events & SUB_RETRY_RECV))
1445 __event_srv_chk_r(cs);
1446 }
Willy Tarreauc09572f2017-10-04 11:58:22 +02001447
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001448 if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001449 /* We may get error reports bypassing the I/O handlers, typically
1450 * the case when sending a pure TCP check which fails, then the I/O
1451 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001452 * main processing task so let's simply wake it up. If we get here,
1453 * we expect errno to still be valid.
1454 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001455 chk_report_conn_err(check, errno, 0);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001456 task_wakeup(check->task, TASK_WOKEN_IO);
1457 }
Willy Tarreau911db9b2020-01-23 16:27:54 +01001458 else if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) {
Willy Tarreau3be293f2014-02-05 18:31:24 +01001459 /* we may get here if only a connection probe was required : we
1460 * don't have any data to send nor anything expected in response,
1461 * so the completion of the connection establishment is enough.
1462 */
1463 task_wakeup(check->task, TASK_WOKEN_IO);
1464 }
Willy Tarreau2d351b62013-12-05 02:36:25 +01001465
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001466 if (check->result != CHK_RES_UNKNOWN) {
Christopher Faulet774c4862019-01-21 14:15:50 +01001467 /* Check complete or aborted. If connection not yet closed do it
1468 * now and wake the check task up to be sure the result is
1469 * handled ASAP. */
Willy Tarreaud85c4852015-03-13 00:40:28 +01001470 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02001471 cs_close(cs);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001472 ret = -1;
Olivier Houchardf4949572019-07-02 17:42:22 +02001473 /* We may have been scheduled to run, and the
1474 * I/O handler expects to have a cs, so remove
1475 * the tasklet
1476 */
1477 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Christopher Faulet774c4862019-01-21 14:15:50 +01001478 task_wakeup(check->task, TASK_WOKEN_IO);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001479 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001480
Olivier Houchard0923fa42019-01-11 18:43:04 +01001481 if (check->server)
1482 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
1483 else
1484 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001485
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001486 /* if a connection got replaced, we must absolutely prevent the connection
1487 * handler from touching its fd, and perform the FD polling updates ourselves
1488 */
1489 if (ret < 0)
1490 conn_cond_update_polling(conn);
1491
1492 return ret;
Willy Tarreau20bea422012-07-06 12:00:49 +02001493}
1494
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001495struct data_cb check_conn_cb = {
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001496 .wake = wake_srv_chk,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01001497 .name = "CHCK",
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001498};
1499
Willy Tarreaubaaee002006-06-26 02:48:02 +02001500/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001501 * updates the server's weight during a warmup stage. Once the final weight is
1502 * reached, the task automatically stops. Note that any server status change
1503 * must have updated s->last_change accordingly.
1504 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001505static struct task *server_warmup(struct task *t, void *context, unsigned short state)
Willy Tarreau2e993902011-10-31 11:53:20 +01001506{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001507 struct server *s = context;
Willy Tarreau2e993902011-10-31 11:53:20 +01001508
1509 /* by default, plan on stopping the task */
1510 t->expire = TICK_ETERNITY;
Emeric Brun52a91d32017-08-31 14:41:55 +02001511 if ((s->next_admin & SRV_ADMF_MAINT) ||
1512 (s->next_state != SRV_ST_STARTING))
Willy Tarreau2e993902011-10-31 11:53:20 +01001513 return t;
1514
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001515 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
1516
Willy Tarreau892337c2014-05-13 23:41:20 +02001517 /* recalculate the weights and update the state */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001518 server_recalc_eweight(s, 1);
Willy Tarreau2e993902011-10-31 11:53:20 +01001519
1520 /* probably that we can refill this server with a bit more connections */
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001521 pendconn_grab_from_px(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001522
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001523 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1524
Willy Tarreau2e993902011-10-31 11:53:20 +01001525 /* get back there in 1 second or 1/20th of the slowstart interval,
1526 * whichever is greater, resulting in small 5% steps.
1527 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001528 if (s->next_state == SRV_ST_STARTING)
Willy Tarreau2e993902011-10-31 11:53:20 +01001529 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1530 return t;
1531}
1532
Willy Tarreau894c6422017-10-04 15:58:52 +02001533/* returns the first NON-COMMENT tcp-check rule from list <list> or NULL if
1534 * none was found.
1535 */
1536static struct tcpcheck_rule *get_first_tcpcheck_rule(struct list *list)
1537{
1538 struct tcpcheck_rule *r;
1539
1540 list_for_each_entry(r, list, list) {
1541 if (r->action != TCPCHK_ACT_COMMENT)
1542 return r;
1543 }
1544 return NULL;
1545}
1546
Willy Tarreau2e993902011-10-31 11:53:20 +01001547/*
Simon Horman98637e52014-06-20 12:30:16 +09001548 * establish a server health-check that makes use of a connection.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001549 *
1550 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001551 * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called
1552 * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called
1553 * - SF_ERR_SRVTO if there are no more servers
1554 * - SF_ERR_SRVCL if the connection was refused by the server
1555 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1556 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1557 * - SF_ERR_INTERNAL for any other purely internal errors
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001558 * - SF_ERR_CHK_PORT if no port could be found to run a health check on an AF_INET* socket
Tim Düsterhus4896c442016-11-29 02:15:19 +01001559 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001560 * Note that we try to prevent the network stack from sending the ACK during the
1561 * connect() when a pure TCP check is used (without PROXY protocol).
1562 */
Simon Horman98637e52014-06-20 12:30:16 +09001563static int connect_conn_chk(struct task *t)
Simon Hormanb00d17a2014-06-13 16:18:16 +09001564{
1565 struct check *check = t->context;
1566 struct server *s = check->server;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001567 struct conn_stream *cs = check->cs;
1568 struct connection *conn = cs_conn(cs);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001569 struct protocol *proto;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001570 struct tcpcheck_rule *tcp_rule = NULL;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001571 int ret;
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001572 int connflags = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001573
Willy Tarreau00149122017-10-04 18:05:01 +02001574 /* we cannot have a connection here */
1575 if (conn)
1576 return SF_ERR_INTERNAL;
1577
Simon Hormanb00d17a2014-06-13 16:18:16 +09001578 /* tcpcheck send/expect initialisation */
Willy Tarreauf411cce2017-10-04 16:21:19 +02001579 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001580 check->current_step = NULL;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001581 tcp_rule = get_first_tcpcheck_rule(check->tcpcheck_rules);
1582 }
Simon Hormanb00d17a2014-06-13 16:18:16 +09001583
1584 /* prepare the check buffer.
1585 * This should not be used if check is the secondary agent check
1586 * of a server as s->proxy->check_req will relate to the
1587 * configuration of the primary check. Similarly, tcp-check uses
1588 * its own strings.
1589 */
1590 if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001591 b_putblk(&check->bo, s->proxy->check_req, s->proxy->check_len);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001592
1593 /* we want to check if this host replies to HTTP or SSLv3 requests
1594 * so we'll send the request, and won't wake the checker up now.
1595 */
1596 if ((check->type) == PR_O2_SSL3_CHK) {
1597 /* SSL requires that we put Unix time in the request */
1598 int gmt_time = htonl(date.tv_sec);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001599 memcpy(b_head(&check->bo) + 11, &gmt_time, 4);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001600 }
1601 else if ((check->type) == PR_O2_HTTP_CHK) {
Cyril Bonté32602d22015-01-30 00:07:07 +01001602 /* prevent HTTP keep-alive when "http-check expect" is used */
1603 if (s->proxy->options2 & PR_O2_EXP_TYPE)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001604 b_putist(&check->bo, ist("Connection: close\r\n"));
Christopher Faulet8acb1282020-04-09 08:44:06 +02001605
1606 /* If there is a body, add its content-length */
1607 if (s->proxy->check_body_len)
1608 chunk_appendf(&check->bo, "Content-Length: %s\r\n", ultoa(s->proxy->check_body_len));
1609
1610 /* Add configured headers */
1611 if (s->proxy->check_hdrs)
1612 b_putblk(&check->bo, s->proxy->check_hdrs, s->proxy->check_hdrs_len);
1613
1614 /* Add send-state header */
1615 if (s->proxy->options2 & PR_O2_CHK_SNDST)
1616 b_putblk(&check->bo, trash.area,
1617 httpchk_build_status_header(s, trash.area, trash.size));
1618
1619 /* end-of-header */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001620 b_putist(&check->bo, ist("\r\n"));
Christopher Faulet8acb1282020-04-09 08:44:06 +02001621
1622 /* Add the body */
1623 if (s->proxy->check_body)
1624 b_putblk(&check->bo, s->proxy->check_body, s->proxy->check_body_len);
1625
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001626 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Simon Hormanb00d17a2014-06-13 16:18:16 +09001627 }
1628 }
1629
James Brown55f9ff12015-10-21 18:19:05 -07001630 if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001631 b_putblk(&check->bo, check->send_string, check->send_string_len);
James Brown55f9ff12015-10-21 18:19:05 -07001632 }
1633
Willy Tarreauf411cce2017-10-04 16:21:19 +02001634 /* for tcp-checks, the initial connection setup is handled separately as
1635 * it may be sent to a specific port and not to the server's.
1636 */
1637 if (tcp_rule && tcp_rule->action == TCPCHK_ACT_CONNECT) {
1638 tcpcheck_main(check);
1639 return SF_ERR_UP;
1640 }
1641
Simon Hormanb00d17a2014-06-13 16:18:16 +09001642 /* prepare a new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001643 cs = check->cs = cs_new(NULL);
1644 if (!check->cs)
Willy Tarreau00149122017-10-04 18:05:01 +02001645 return SF_ERR_RESOURCE;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001646 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02001647 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001648 check->wait_list.events = 0;
Olivier Houchardff1e9f32019-09-20 17:18:35 +02001649 tasklet_set_tid(check->wait_list.tasklet, tid);
1650
Simon Hormanb00d17a2014-06-13 16:18:16 +09001651
Willy Tarreauca79f592019-07-17 19:04:47 +02001652 if (!sockaddr_alloc(&conn->dst))
1653 return SF_ERR_RESOURCE;
1654
Simon Horman41f58762015-01-30 11:22:56 +09001655 if (is_addr(&check->addr)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001656 /* we'll connect to the check addr specified on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001657 *conn->dst = check->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001658 }
1659 else {
1660 /* we'll connect to the addr on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001661 *conn->dst = s->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001662 }
1663
Alexander Liu2a54bb72019-05-22 19:44:48 +08001664 if (s->check.via_socks4 && (s->flags & SRV_F_SOCKS4_PROXY)) {
1665 conn->send_proxy_ofs = 1;
1666 conn->flags |= CO_FL_SOCKS4;
1667 }
1668
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001669 proto = protocol_by_family(conn->dst->ss_family);
Olivier Houchard6377a002017-12-01 22:04:05 +01001670 conn->target = &s->obj_type;
1671
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001672 if ((conn->dst->ss_family == AF_INET) || (conn->dst->ss_family == AF_INET6)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001673 int i = 0;
1674
1675 i = srv_check_healthcheck_port(check);
Olivier Houchard6377a002017-12-01 22:04:05 +01001676 if (i == 0)
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001677 return SF_ERR_CHK_PORT;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001678
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001679 set_host_port(conn->dst, i);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001680 }
1681
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001682 /* no client address */
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001683
Willy Tarreaube373152018-09-06 11:45:30 +02001684 conn_prepare(conn, proto, check->xprt);
Olivier Houchardf67be932019-01-29 15:47:43 +01001685 if (conn_install_mux(conn, &mux_pt_ops, cs, s->proxy, NULL) < 0)
1686 return SF_ERR_RESOURCE;
Willy Tarreaube373152018-09-06 11:45:30 +02001687 cs_attach(cs, check, &check_conn_cb);
1688
Willy Tarreauf3d34822014-12-08 12:11:28 +01001689 /* only plain tcp-check supports quick ACK */
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001690 if (check->type != 0)
1691 connflags |= CONNECT_HAS_DATA;
1692 if ((check->type == 0 || check->type == PR_O2_TCPCHK_CHK) &&
1693 (!tcp_rule || tcp_rule->action != TCPCHK_ACT_EXPECT))
1694 connflags |= CONNECT_DELACK_ALWAYS;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001695
Willy Tarreaue7dff022015-04-03 01:14:29 +02001696 ret = SF_ERR_INTERNAL;
Olivier Houchardb68fda42017-08-04 18:39:01 +02001697 if (proto && proto->connect)
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001698 ret = proto->connect(conn, connflags);
Willy Tarreau16257f62017-11-02 15:45:00 +01001699
Willy Tarreau16257f62017-11-02 15:45:00 +01001700
Olivier Houchard9130a962017-10-17 17:33:43 +02001701#ifdef USE_OPENSSL
Olivier Houcharda48437b2019-01-29 16:37:52 +01001702 if (ret == SF_ERR_NONE) {
1703 if (s->check.sni)
1704 ssl_sock_set_servername(conn, s->check.sni);
1705 if (s->check.alpn_str)
1706 ssl_sock_set_alpn(conn, (unsigned char *)s->check.alpn_str,
1707 s->check.alpn_len);
1708 }
Olivier Houchard9130a962017-10-17 17:33:43 +02001709#endif
Willy Tarreauf4949772017-05-06 08:45:28 +02001710 if (s->check.send_proxy && !(check->state & CHK_ST_AGENT)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001711 conn->send_proxy_ofs = 1;
1712 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchard37d78972019-12-30 15:13:42 +01001713 }
1714 if (conn->flags & (CO_FL_SEND_PROXY | CO_FL_SOCKS4) &&
1715 conn_ctrl_ready(conn)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001716 if (xprt_add_hs(conn) < 0)
1717 ret = SF_ERR_RESOURCE;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001718 }
1719
1720 return ret;
1721}
1722
Simon Horman98637e52014-06-20 12:30:16 +09001723static struct list pid_list = LIST_HEAD_INIT(pid_list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001724static struct pool_head *pool_head_pid_list;
Willy Tarreau86abe442018-11-25 20:12:18 +01001725__decl_spinlock(pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001726
1727void block_sigchld(void)
1728{
1729 sigset_t set;
1730 sigemptyset(&set);
1731 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001732 assert(ha_sigmask(SIG_BLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001733}
1734
1735void unblock_sigchld(void)
1736{
1737 sigset_t set;
1738 sigemptyset(&set);
Willy Tarreauebc92442016-06-21 17:29:46 +02001739 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001740 assert(ha_sigmask(SIG_UNBLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001741}
1742
Simon Horman98637e52014-06-20 12:30:16 +09001743static struct pid_list *pid_list_add(pid_t pid, struct task *t)
1744{
1745 struct pid_list *elem;
1746 struct check *check = t->context;
1747
Willy Tarreaubafbe012017-11-24 17:34:44 +01001748 elem = pool_alloc(pool_head_pid_list);
Simon Horman98637e52014-06-20 12:30:16 +09001749 if (!elem)
1750 return NULL;
1751 elem->pid = pid;
1752 elem->t = t;
1753 elem->exited = 0;
1754 check->curpid = elem;
1755 LIST_INIT(&elem->list);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001756
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001757 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001758 LIST_ADD(&pid_list, &elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001759 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001760
Simon Horman98637e52014-06-20 12:30:16 +09001761 return elem;
1762}
1763
Simon Horman98637e52014-06-20 12:30:16 +09001764static void pid_list_del(struct pid_list *elem)
1765{
1766 struct check *check;
1767
1768 if (!elem)
1769 return;
1770
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001771 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001772 LIST_DEL(&elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001773 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001774
Simon Horman98637e52014-06-20 12:30:16 +09001775 if (!elem->exited)
1776 kill(elem->pid, SIGTERM);
1777
1778 check = elem->t->context;
1779 check->curpid = NULL;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001780 pool_free(pool_head_pid_list, elem);
Simon Horman98637e52014-06-20 12:30:16 +09001781}
1782
1783/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
1784static void pid_list_expire(pid_t pid, int status)
1785{
1786 struct pid_list *elem;
1787
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001788 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001789 list_for_each_entry(elem, &pid_list, list) {
1790 if (elem->pid == pid) {
1791 elem->t->expire = now_ms;
1792 elem->status = status;
1793 elem->exited = 1;
Cyril Bonté9dbcfab2014-08-07 01:55:39 +02001794 task_wakeup(elem->t, TASK_WOKEN_IO);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001795 break;
Simon Horman98637e52014-06-20 12:30:16 +09001796 }
1797 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001798 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001799}
1800
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001801static void sigchld_handler(struct sig_handler *sh)
Simon Horman98637e52014-06-20 12:30:16 +09001802{
1803 pid_t pid;
1804 int status;
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001805
Simon Horman98637e52014-06-20 12:30:16 +09001806 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
1807 pid_list_expire(pid, status);
1808}
1809
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001810static int init_pid_list(void)
1811{
Willy Tarreaubafbe012017-11-24 17:34:44 +01001812 if (pool_head_pid_list != NULL)
Simon Horman98637e52014-06-20 12:30:16 +09001813 /* Nothing to do */
1814 return 0;
1815
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001816 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001817 ha_alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
1818 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001819 return 1;
1820 }
1821
Willy Tarreaubafbe012017-11-24 17:34:44 +01001822 pool_head_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
1823 if (pool_head_pid_list == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001824 ha_alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
1825 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001826 return 1;
1827 }
1828
1829 return 0;
1830}
1831
Cyril Bontéac92a062014-12-27 22:28:38 +01001832/* helper macro to set an environment variable and jump to a specific label on failure. */
1833#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001834
1835/*
Cyril Bontéac92a062014-12-27 22:28:38 +01001836 * helper function to allocate enough memory to store an environment variable.
1837 * It will also check that the environment variable is updatable, and silently
1838 * fail if not.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001839 */
Cyril Bontéac92a062014-12-27 22:28:38 +01001840static int extchk_setenv(struct check *check, int idx, const char *value)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001841{
1842 int len, ret;
Cyril Bontéac92a062014-12-27 22:28:38 +01001843 char *envname;
1844 int vmaxlen;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001845
Cyril Bontéac92a062014-12-27 22:28:38 +01001846 if (idx < 0 || idx >= EXTCHK_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001847 ha_alert("Illegal environment variable index %d. Aborting.\n", idx);
Cyril Bontéac92a062014-12-27 22:28:38 +01001848 return 1;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001849 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001850
1851 envname = extcheck_envs[idx].name;
1852 vmaxlen = extcheck_envs[idx].vmaxlen;
1853
1854 /* Check if the environment variable is already set, and silently reject
1855 * the update if this one is not updatable. */
1856 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
1857 return 0;
1858
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001859 /* Instead of sending NOT_USED, sending an empty value is preferable */
1860 if (strcmp(value, "NOT_USED") == 0) {
1861 value = "";
1862 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001863
1864 len = strlen(envname) + 1;
1865 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
1866 len += strlen(value);
1867 else
1868 len += vmaxlen;
1869
1870 if (!check->envp[idx])
1871 check->envp[idx] = malloc(len + 1);
1872
1873 if (!check->envp[idx]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001874 ha_alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001875 return 1;
1876 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001877 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001878 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001879 ha_alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001880 return 1;
1881 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001882 else if (ret > len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001883 ha_alert("Environment variable '%s' was truncated. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001884 return 1;
1885 }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001886 return 0;
1887}
Simon Horman98637e52014-06-20 12:30:16 +09001888
1889static int prepare_external_check(struct check *check)
1890{
1891 struct server *s = check->server;
1892 struct proxy *px = s->proxy;
1893 struct listener *listener = NULL, *l;
1894 int i;
Simon Horman98637e52014-06-20 12:30:16 +09001895 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001896 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001897
1898 list_for_each_entry(l, &px->conf.listeners, by_fe)
1899 /* Use the first INET, INET6 or UNIX listener */
1900 if (l->addr.ss_family == AF_INET ||
1901 l->addr.ss_family == AF_INET6 ||
1902 l->addr.ss_family == AF_UNIX) {
1903 listener = l;
1904 break;
1905 }
1906
Simon Horman98637e52014-06-20 12:30:16 +09001907 check->curpid = NULL;
Cyril Bontéac92a062014-12-27 22:28:38 +01001908 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
1909 if (!check->envp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001910 ha_alert("Failed to allocate memory for environment variables. Aborting\n");
Cyril Bontéac92a062014-12-27 22:28:38 +01001911 goto err;
1912 }
Simon Horman98637e52014-06-20 12:30:16 +09001913
Cyril Bontéac92a062014-12-27 22:28:38 +01001914 check->argv = calloc(6, sizeof(char *));
1915 if (!check->argv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001916 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001917 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001918 }
Simon Horman98637e52014-06-20 12:30:16 +09001919
1920 check->argv[0] = px->check_command;
1921
Cyril Bonté777be862014-12-02 21:21:35 +01001922 if (!listener) {
1923 check->argv[1] = strdup("NOT_USED");
1924 check->argv[2] = strdup("NOT_USED");
1925 }
1926 else if (listener->addr.ss_family == AF_INET ||
Simon Horman98637e52014-06-20 12:30:16 +09001927 listener->addr.ss_family == AF_INET6) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001928 addr_to_str(&listener->addr, buf, sizeof(buf));
1929 check->argv[1] = strdup(buf);
1930 port_to_str(&listener->addr, buf, sizeof(buf));
1931 check->argv[2] = strdup(buf);
Cyril Bonté777be862014-12-02 21:21:35 +01001932 }
1933 else if (listener->addr.ss_family == AF_UNIX) {
Simon Horman98637e52014-06-20 12:30:16 +09001934 const struct sockaddr_un *un;
1935
1936 un = (struct sockaddr_un *)&listener->addr;
1937 check->argv[1] = strdup(un->sun_path);
1938 check->argv[2] = strdup("NOT_USED");
Cyril Bonté777be862014-12-02 21:21:35 +01001939 }
1940 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001941 ha_alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001942 goto err;
1943 }
1944
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001945 if (!check->argv[1] || !check->argv[2]) {
1946 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
1947 goto err;
1948 }
1949
1950 check->argv[3] = calloc(EXTCHK_SIZE_ADDR, sizeof(*check->argv[3]));
1951 check->argv[4] = calloc(EXTCHK_SIZE_UINT, sizeof(*check->argv[4]));
1952 if (!check->argv[3] || !check->argv[4]) {
1953 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
1954 goto err;
1955 }
Willy Tarreau04276f32017-01-06 17:41:29 +01001956
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001957 addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR);
Willy Tarreau04276f32017-01-06 17:41:29 +01001958 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001959 snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port);
Simon Horman98637e52014-06-20 12:30:16 +09001960
Cyril Bontéac92a062014-12-27 22:28:38 +01001961 for (i = 0; i < 5; i++) {
1962 if (!check->argv[i]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001963 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001964 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001965 }
1966 }
Simon Horman98637e52014-06-20 12:30:16 +09001967
Cyril Bontéac92a062014-12-27 22:28:38 +01001968 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001969 /* Add proxy environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001970 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
1971 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
1972 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
1973 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001974 /* Add server environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001975 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
1976 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
1977 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
1978 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
1979 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
1980 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
1981
1982 /* Ensure that we don't leave any hole in check->envp */
1983 for (i = 0; i < EXTCHK_SIZE; i++)
1984 if (!check->envp[i])
1985 EXTCHK_SETENV(check, i, "", err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001986
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001987 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09001988err:
1989 if (check->envp) {
Cyril Bontéac92a062014-12-27 22:28:38 +01001990 for (i = 0; i < EXTCHK_SIZE; i++)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001991 free(check->envp[i]);
Simon Horman98637e52014-06-20 12:30:16 +09001992 free(check->envp);
1993 check->envp = NULL;
1994 }
1995
1996 if (check->argv) {
1997 for (i = 1; i < 5; i++)
1998 free(check->argv[i]);
1999 free(check->argv);
2000 check->argv = NULL;
2001 }
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002002 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09002003}
2004
Simon Hormanb00d17a2014-06-13 16:18:16 +09002005/*
Simon Horman98637e52014-06-20 12:30:16 +09002006 * establish a server health-check that makes use of a process.
2007 *
2008 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002009 * - SF_ERR_NONE if everything's OK
Willy Tarreaue7dff022015-04-03 01:14:29 +02002010 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
Tim Düsterhus4896c442016-11-29 02:15:19 +01002011 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Horman98637e52014-06-20 12:30:16 +09002012 *
2013 * Blocks and then unblocks SIGCHLD
2014 */
2015static int connect_proc_chk(struct task *t)
2016{
Cyril Bontéac92a062014-12-27 22:28:38 +01002017 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09002018 struct check *check = t->context;
2019 struct server *s = check->server;
2020 struct proxy *px = s->proxy;
2021 int status;
2022 pid_t pid;
2023
Willy Tarreaue7dff022015-04-03 01:14:29 +02002024 status = SF_ERR_RESOURCE;
Simon Horman98637e52014-06-20 12:30:16 +09002025
2026 block_sigchld();
2027
2028 pid = fork();
2029 if (pid < 0) {
Willy Tarreaud96f1122019-12-03 07:07:36 +01002030 ha_alert("Failed to fork process for external health check%s: %s. Aborting.\n",
2031 (global.tune.options & GTUNE_INSECURE_FORK) ?
2032 "" : " (likely caused by missing 'insecure-fork-wanted')",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002033 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002034 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2035 goto out;
2036 }
2037 if (pid == 0) {
2038 /* Child */
2039 extern char **environ;
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002040 struct rlimit limit;
Willy Tarreaub7b24782016-06-21 15:32:29 +02002041 int fd;
2042
2043 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
2044 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
2045
Willy Tarreau2555ccf2019-02-21 22:22:06 +01002046 my_closefrom(fd);
Willy Tarreaub7b24782016-06-21 15:32:29 +02002047
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002048 /* restore the initial FD limits */
2049 limit.rlim_cur = rlim_fd_cur_at_boot;
2050 limit.rlim_max = rlim_fd_max_at_boot;
2051 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
2052 getrlimit(RLIMIT_NOFILE, &limit);
2053 ha_warning("External check: failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
2054 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
2055 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
2056 }
2057
Simon Horman98637e52014-06-20 12:30:16 +09002058 environ = check->envp;
Christopher Fauletaaae9a02020-04-26 09:50:31 +02002059
2060 /* Update some environment variables and command args: curconn, server addr and server port */
Cyril Bontéac92a062014-12-27 22:28:38 +01002061 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Christopher Fauletaaae9a02020-04-26 09:50:31 +02002062
2063 addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR);
2064 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3]);
2065
2066 *check->argv[4] = 0;
2067 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
2068 snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port);
2069 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4]);
2070
Willy Tarreau2df8cad2019-07-01 07:51:29 +02002071 haproxy_unblock_signals();
Simon Horman98637e52014-06-20 12:30:16 +09002072 execvp(px->check_command, check->argv);
Christopher Faulet767a84b2017-11-24 16:50:31 +01002073 ha_alert("Failed to exec process for external health check: %s. Aborting.\n",
2074 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002075 exit(-1);
2076 }
2077
2078 /* Parent */
2079 if (check->result == CHK_RES_UNKNOWN) {
2080 if (pid_list_add(pid, t) != NULL) {
2081 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2082
2083 if (px->timeout.check && px->timeout.connect) {
2084 int t_con = tick_add(now_ms, px->timeout.connect);
2085 t->expire = tick_first(t->expire, t_con);
2086 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002087 status = SF_ERR_NONE;
Simon Horman98637e52014-06-20 12:30:16 +09002088 goto out;
2089 }
2090 else {
2091 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2092 }
2093 kill(pid, SIGTERM); /* process creation error */
2094 }
2095 else
2096 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2097
2098out:
2099 unblock_sigchld();
2100 return status;
2101}
2102
2103/*
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002104 * manages a server health-check that uses an external process. Returns
Willy Tarreaubaaee002006-06-26 02:48:02 +02002105 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002106 *
2107 * Please do NOT place any return statement in this function and only leave
2108 * via the out_unlock label.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002109 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002110static struct task *process_chk_proc(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002111{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002112 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002113 struct server *s = check->server;
Simon Horman98637e52014-06-20 12:30:16 +09002114 int rv;
2115 int ret;
2116 int expired = tick_is_expired(t->expire, now_ms);
2117
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002118 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002119 if (!(check->state & CHK_ST_INPROGRESS)) {
2120 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002121 if (!expired) /* woke up too early */
2122 goto out_unlock;
Simon Horman98637e52014-06-20 12:30:16 +09002123
2124 /* we don't send any health-checks when the proxy is
2125 * stopped, the server should not be checked or the check
2126 * is disabled.
2127 */
2128 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
2129 s->proxy->state == PR_STSTOPPED)
2130 goto reschedule;
2131
2132 /* we'll initiate a new check */
2133 set_server_check_status(check, HCHK_STATUS_START, NULL);
2134
2135 check->state |= CHK_ST_INPROGRESS;
2136
Simon Hormandbf70192015-01-30 11:22:53 +09002137 ret = connect_proc_chk(t);
Willy Tarreaud7c3fbd2017-10-04 15:19:26 +02002138 if (ret == SF_ERR_NONE) {
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002139 /* the process was forked, we allow up to min(inter,
2140 * timeout.connect) for it to report its status, but
2141 * only when timeout.check is set as it may be to short
2142 * for a full check otherwise.
Simon Horman98637e52014-06-20 12:30:16 +09002143 */
2144 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2145
2146 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2147 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2148 t->expire = tick_first(t->expire, t_con);
2149 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002150 task_set_affinity(t, tid_bit);
Simon Horman98637e52014-06-20 12:30:16 +09002151 goto reschedule;
Simon Horman98637e52014-06-20 12:30:16 +09002152 }
2153
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002154 /* here, we failed to start the check */
Simon Horman98637e52014-06-20 12:30:16 +09002155
2156 check->state &= ~CHK_ST_INPROGRESS;
2157 check_notify_failure(check);
2158
2159 /* we allow up to min(inter, timeout.connect) for a connection
2160 * to establish but only when timeout.check is set
2161 * as it may be to short for a full check otherwise
2162 */
2163 while (tick_is_expired(t->expire, now_ms)) {
2164 int t_con;
2165
2166 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2167 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2168
2169 if (s->proxy->timeout.check)
2170 t->expire = tick_first(t->expire, t_con);
2171 }
2172 }
2173 else {
2174 /* there was a test running.
2175 * First, let's check whether there was an uncaught error,
2176 * which can happen on connect timeout or error.
2177 */
2178 if (check->result == CHK_RES_UNKNOWN) {
2179 /* good connection is enough for pure TCP check */
2180 struct pid_list *elem = check->curpid;
2181 int status = HCHK_STATUS_UNKNOWN;
2182
2183 if (elem->exited) {
2184 status = elem->status; /* Save in case the process exits between use below */
2185 if (!WIFEXITED(status))
2186 check->code = -1;
2187 else
2188 check->code = WEXITSTATUS(status);
2189 if (!WIFEXITED(status) || WEXITSTATUS(status))
2190 status = HCHK_STATUS_PROCERR;
2191 else
2192 status = HCHK_STATUS_PROCOK;
2193 } else if (expired) {
2194 status = HCHK_STATUS_PROCTOUT;
Christopher Faulet767a84b2017-11-24 16:50:31 +01002195 ha_warning("kill %d\n", (int)elem->pid);
Simon Horman98637e52014-06-20 12:30:16 +09002196 kill(elem->pid, SIGTERM);
2197 }
2198 set_server_check_status(check, status, NULL);
2199 }
2200
2201 if (check->result == CHK_RES_FAILED) {
2202 /* a failure or timeout detected */
2203 check_notify_failure(check);
2204 }
2205 else if (check->result == CHK_RES_CONDPASS) {
2206 /* check is OK but asks for stopping mode */
2207 check_notify_stopping(check);
2208 }
2209 else if (check->result == CHK_RES_PASSED) {
2210 /* a success was detected */
2211 check_notify_success(check);
2212 }
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002213 task_set_affinity(t, 1);
Simon Horman98637e52014-06-20 12:30:16 +09002214 check->state &= ~CHK_ST_INPROGRESS;
2215
2216 pid_list_del(check->curpid);
2217
2218 rv = 0;
2219 if (global.spread_checks > 0) {
2220 rv = srv_getinter(check) * global.spread_checks / 100;
Willy Tarreau5a6d3e72020-03-08 17:53:53 +01002221 rv -= (int) (2 * rv * (ha_random32() / 4294967295.0));
Simon Horman98637e52014-06-20 12:30:16 +09002222 }
2223 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
2224 }
2225
2226 reschedule:
2227 while (tick_is_expired(t->expire, now_ms))
2228 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002229
2230 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002231 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002232 return t;
2233}
2234
2235/*
2236 * manages a server health-check that uses a connection. Returns
2237 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002238 *
2239 * Please do NOT place any return statement in this function and only leave
2240 * via the out_unlock label.
Simon Horman98637e52014-06-20 12:30:16 +09002241 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002242static struct task *process_chk_conn(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002243{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002244 struct check *check = context;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002245 struct proxy *proxy = check->proxy;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002246 struct conn_stream *cs = check->cs;
2247 struct connection *conn = cs_conn(cs);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002248 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002249 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002250 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002251
Olivier Houchard0923fa42019-01-11 18:43:04 +01002252 if (check->server)
2253 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002254 if (!(check->state & CHK_ST_INPROGRESS)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01002255 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002256 if (!expired) /* woke up too early */
2257 goto out_unlock;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002258
Simon Horman671b6f02013-11-25 10:46:39 +09002259 /* we don't send any health-checks when the proxy is
2260 * stopped, the server should not be checked or the check
2261 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002262 */
Willy Tarreau0d924cc2013-12-11 21:26:24 +01002263 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002264 proxy->state == PR_STSTOPPED)
Willy Tarreau5a78f362012-11-23 12:47:05 +01002265 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002266
2267 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09002268 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002269
Willy Tarreau2c115e52013-12-11 19:41:16 +01002270 check->state |= CHK_ST_INPROGRESS;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002271 b_reset(&check->bi);
2272 b_reset(&check->bo);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002273
Olivier Houchardaebeff72019-11-29 16:18:51 +01002274 task_set_affinity(t, tid_bit);
Simon Hormandbf70192015-01-30 11:22:53 +09002275 ret = connect_conn_chk(t);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002276 cs = check->cs;
2277 conn = cs_conn(cs);
Willy Tarreau00149122017-10-04 18:05:01 +02002278
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002279 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002280 case SF_ERR_UP:
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002281 goto out_unlock;
2282
Willy Tarreaue7dff022015-04-03 01:14:29 +02002283 case SF_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002284 /* we allow up to min(inter, timeout.connect) for a connection
2285 * to establish but only when timeout.check is set
2286 * as it may be to short for a full check otherwise
2287 */
Simon Horman4a741432013-02-23 15:35:38 +09002288 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002289
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002290 if (proxy->timeout.check && proxy->timeout.connect) {
2291 int t_con = tick_add(now_ms, proxy->timeout.connect);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002292 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002293 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002294
Willy Tarreaucc705a62019-09-05 17:51:30 +02002295 if (check->type) {
2296 /* send the request if we have one. We avoid receiving
2297 * if not connected, unless we didn't subscribe for
2298 * sending since otherwise we won't be woken up.
2299 */
2300 __event_srv_chk_w(cs);
Willy Tarreau911db9b2020-01-23 16:27:54 +01002301 if (!(conn->flags & CO_FL_WAIT_XPRT) ||
Willy Tarreauc5940392019-09-05 17:38:40 +02002302 !(check->wait_list.events & SUB_RETRY_SEND))
2303 __event_srv_chk_r(cs);
Willy Tarreaucc705a62019-09-05 17:51:30 +02002304 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002305
Willy Tarreau5a78f362012-11-23 12:47:05 +01002306 goto reschedule;
2307
Willy Tarreaue7dff022015-04-03 01:14:29 +02002308 case SF_ERR_SRVTO: /* ETIMEDOUT */
2309 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Willy Tarreau00149122017-10-04 18:05:01 +02002310 if (conn)
2311 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002312 chk_report_conn_err(check, errno, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002313 break;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02002314 /* should share same code than cases below */
2315 case SF_ERR_CHK_PORT:
2316 check->state |= CHK_ST_PORT_MISS;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002317 case SF_ERR_PRXCOND:
2318 case SF_ERR_RESOURCE:
2319 case SF_ERR_INTERNAL:
Willy Tarreau00149122017-10-04 18:05:01 +02002320 if (conn)
2321 conn->flags |= CO_FL_ERROR;
2322 chk_report_conn_err(check, conn ? 0 : ENOMEM, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002323 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002324 }
2325
Willy Tarreau5a78f362012-11-23 12:47:05 +01002326 /* here, we have seen a synchronous error, no fd was allocated */
Olivier Houchardaebeff72019-11-29 16:18:51 +01002327 task_set_affinity(t, MAX_THREADS_MASK);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002328 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002329 if (check->wait_list.events)
2330 cs->conn->xprt->unsubscribe(cs->conn,
2331 cs->conn->xprt_ctx,
2332 check->wait_list.events,
2333 &check->wait_list);
2334 /* We may have been scheduled to run, and the
2335 * I/O handler expects to have a cs, so remove
2336 * the tasklet
2337 */
Willy Tarreau86eded62019-06-14 14:47:49 +02002338 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002339 cs_destroy(cs);
2340 cs = check->cs = NULL;
2341 conn = NULL;
Olivier Houchard390485a2017-10-24 19:03:30 +02002342 }
Willy Tarreau6b0a8502012-11-23 08:51:32 +01002343
Willy Tarreau2c115e52013-12-11 19:41:16 +01002344 check->state &= ~CHK_ST_INPROGRESS;
Willy Tarreau4eec5472014-05-20 22:32:27 +02002345 check_notify_failure(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002346
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002347 /* we allow up to min(inter, timeout.connect) for a connection
2348 * to establish but only when timeout.check is set
2349 * as it may be to short for a full check otherwise
2350 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002351 while (tick_is_expired(t->expire, now_ms)) {
2352 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002353
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002354 t_con = tick_add(t->expire, proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09002355 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002356
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002357 if (proxy->timeout.check)
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002358 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002359 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002360 }
2361 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02002362 /* there was a test running.
2363 * First, let's check whether there was an uncaught error,
2364 * which can happen on connect timeout or error.
2365 */
Simon Hormanccaabcd2014-06-20 12:29:47 +09002366 if (check->result == CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002367 /* good connection is enough for pure TCP check */
Willy Tarreau911db9b2020-01-23 16:27:54 +01002368 if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002369 if (check->use_ssl == 1)
Simon Horman4a741432013-02-23 15:35:38 +09002370 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02002371 else
Simon Horman4a741432013-02-23 15:35:38 +09002372 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002373 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002374 else if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002375 chk_report_conn_err(check, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02002376 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002377 else
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002378 goto out_unlock; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02002379 }
2380
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002381 /* check complete or aborted */
Willy Tarreau00149122017-10-04 18:05:01 +02002382 if (conn && conn->xprt) {
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002383 /* The check was aborted and the connection was not yet closed.
2384 * This can happen upon timeout, or when an external event such
2385 * as a failed response coupled with "observe layer7" caused the
2386 * server state to be suddenly changed.
2387 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01002388 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02002389 cs_close(cs);
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002390 }
2391
Willy Tarreauac59f362017-10-08 11:10:19 +02002392 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002393 if (check->wait_list.events)
2394 cs->conn->xprt->unsubscribe(cs->conn,
2395 cs->conn->xprt_ctx,
2396 check->wait_list.events,
2397 &check->wait_list);
2398 /* We may have been scheduled to run, and the
Willy Tarreau86eded62019-06-14 14:47:49 +02002399 * I/O handler expects to have a cs, so remove
2400 * the tasklet
2401 */
2402 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002403 cs_destroy(cs);
2404 cs = check->cs = NULL;
2405 conn = NULL;
Willy Tarreau00149122017-10-04 18:05:01 +02002406 }
2407
Olivier Houchard0923fa42019-01-11 18:43:04 +01002408 if (check->server) {
2409 if (check->result == CHK_RES_FAILED) {
2410 /* a failure or timeout detected */
2411 check_notify_failure(check);
2412 }
2413 else if (check->result == CHK_RES_CONDPASS) {
2414 /* check is OK but asks for stopping mode */
2415 check_notify_stopping(check);
2416 }
2417 else if (check->result == CHK_RES_PASSED) {
2418 /* a success was detected */
2419 check_notify_success(check);
2420 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002421 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002422 task_set_affinity(t, MAX_THREADS_MASK);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002423 check->state &= ~CHK_ST_INPROGRESS;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002424
Olivier Houchard0923fa42019-01-11 18:43:04 +01002425 if (check->server) {
2426 rv = 0;
2427 if (global.spread_checks > 0) {
2428 rv = srv_getinter(check) * global.spread_checks / 100;
Willy Tarreau5a6d3e72020-03-08 17:53:53 +01002429 rv -= (int) (2 * rv * (ha_random32() / 4294967295.0));
Olivier Houchard0923fa42019-01-11 18:43:04 +01002430 }
2431 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002432 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002433 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01002434
2435 reschedule:
2436 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09002437 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002438 out_unlock:
Olivier Houchard0923fa42019-01-11 18:43:04 +01002439 if (check->server)
2440 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau26c25062009-03-08 09:38:41 +01002441 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002442}
2443
Simon Horman98637e52014-06-20 12:30:16 +09002444/*
2445 * manages a server health-check. Returns
2446 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2447 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002448static struct task *process_chk(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002449{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002450 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002451
2452 if (check->type == PR_O2_EXT_CHK)
Olivier Houchard9f6af332018-05-25 14:04:04 +02002453 return process_chk_proc(t, context, state);
2454 return process_chk_conn(t, context, state);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002455
Simon Horman98637e52014-06-20 12:30:16 +09002456}
2457
Simon Horman5c942422013-11-25 10:46:32 +09002458static int start_check_task(struct check *check, int mininter,
2459 int nbcheck, int srvpos)
2460{
2461 struct task *t;
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002462 unsigned long thread_mask = MAX_THREADS_MASK;
2463
2464 if (check->type == PR_O2_EXT_CHK)
2465 thread_mask = 1;
2466
Simon Horman5c942422013-11-25 10:46:32 +09002467 /* task for the check */
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002468 if ((t = task_new(thread_mask)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002469 ha_alert("Starting [%s:%s] check: out of memory.\n",
2470 check->server->proxy->id, check->server->id);
Simon Horman5c942422013-11-25 10:46:32 +09002471 return 0;
2472 }
2473
2474 check->task = t;
2475 t->process = process_chk;
2476 t->context = check;
2477
Willy Tarreau1746eec2014-04-25 10:46:47 +02002478 if (mininter < srv_getinter(check))
2479 mininter = srv_getinter(check);
2480
2481 if (global.max_spread_checks && mininter > global.max_spread_checks)
2482 mininter = global.max_spread_checks;
2483
Simon Horman5c942422013-11-25 10:46:32 +09002484 /* check this every ms */
Willy Tarreau1746eec2014-04-25 10:46:47 +02002485 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
Simon Horman5c942422013-11-25 10:46:32 +09002486 check->start = now;
2487 task_queue(t);
2488
2489 return 1;
2490}
2491
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002492/*
2493 * Start health-check.
Willy Tarreau865c5142016-12-21 20:04:48 +01002494 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002495 */
Willy Tarreau865c5142016-12-21 20:04:48 +01002496static int start_checks()
2497{
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002498
2499 struct proxy *px;
2500 struct server *s;
2501 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09002502 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002503
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002504 /* 1- count the checkers to run simultaneously.
2505 * We also determine the minimum interval among all of those which
2506 * have an interval larger than SRV_CHK_INTER_THRES. This interval
2507 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04002508 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002509 * too short an interval for all others.
2510 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002511 for (px = proxies_list; px; px = px->next) {
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002512 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01002513 if (s->slowstart) {
Emeric Brunc60def82017-09-27 14:59:38 +02002514 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002515 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002516 return ERR_ALERT | ERR_FATAL;
Willy Tarreaue7b73482013-11-21 11:50:50 +01002517 }
2518 /* We need a warmup task that will be called when the server
2519 * state switches from down to up.
2520 */
2521 s->warmup = t;
2522 t->process = server_warmup;
2523 t->context = s;
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002524 /* server can be in this state only because of */
Emeric Brun52a91d32017-08-31 14:41:55 +02002525 if (s->next_state == SRV_ST_STARTING)
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002526 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, (now.tv_sec - s->last_change)) / 20)));
Willy Tarreaue7b73482013-11-21 11:50:50 +01002527 }
2528
Willy Tarreaud8514a22013-12-11 21:10:14 +01002529 if (s->check.state & CHK_ST_CONFIGURED) {
2530 nbcheck++;
2531 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
2532 (!mininter || mininter > srv_getinter(&s->check)))
2533 mininter = srv_getinter(&s->check);
2534 }
Willy Tarreau15f39102013-12-11 20:41:18 +01002535
Willy Tarreaud8514a22013-12-11 21:10:14 +01002536 if (s->agent.state & CHK_ST_CONFIGURED) {
2537 nbcheck++;
2538 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
2539 (!mininter || mininter > srv_getinter(&s->agent)))
2540 mininter = srv_getinter(&s->agent);
2541 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002542 }
2543 }
2544
Simon Horman4a741432013-02-23 15:35:38 +09002545 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002546 return 0;
2547
2548 srand((unsigned)time(NULL));
2549
2550 /*
2551 * 2- start them as far as possible from each others. For this, we will
2552 * start them after their interval set to the min interval divided by
2553 * the number of servers, weighted by the server's position in the list.
2554 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002555 for (px = proxies_list; px; px = px->next) {
Simon Horman98637e52014-06-20 12:30:16 +09002556 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2557 if (init_pid_list()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002558 ha_alert("Starting [%s] check: out of memory.\n", px->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002559 return ERR_ALERT | ERR_FATAL;
Simon Horman98637e52014-06-20 12:30:16 +09002560 }
2561 }
2562
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002563 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09002564 /* A task for the main check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002565 if (s->check.state & CHK_ST_CONFIGURED) {
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002566 if (s->check.type == PR_O2_EXT_CHK) {
2567 if (!prepare_external_check(&s->check))
Willy Tarreau865c5142016-12-21 20:04:48 +01002568 return ERR_ALERT | ERR_FATAL;
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002569 }
Simon Hormand60d6912013-11-25 10:46:36 +09002570 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
Willy Tarreau865c5142016-12-21 20:04:48 +01002571 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002572 srvpos++;
2573 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002574
Simon Hormand60d6912013-11-25 10:46:36 +09002575 /* A task for a auxiliary agent check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002576 if (s->agent.state & CHK_ST_CONFIGURED) {
Simon Hormand60d6912013-11-25 10:46:36 +09002577 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
Willy Tarreau865c5142016-12-21 20:04:48 +01002578 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002579 }
2580 srvpos++;
2581 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002582 }
2583 }
2584 return 0;
2585}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002586
2587/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002588 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01002589 * The buffer MUST be terminated by a null byte before calling this function.
2590 * Sets server status appropriately. The caller is responsible for ensuring
2591 * that the buffer contains at least 13 characters. If <done> is zero, we may
2592 * return 0 to indicate that data is required to decide of a match.
2593 */
2594static int httpchk_expect(struct server *s, int done)
2595{
Christopher Faulet1bc04c72017-10-29 20:14:08 +01002596 static THREAD_LOCAL char status_msg[] = "HTTP status check returned code <000>";
Willy Tarreaubd741542010-03-16 18:46:54 +01002597 char status_code[] = "000";
2598 char *contentptr;
2599 int crlf;
2600 int ret;
2601
2602 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
2603 case PR_O2_EXP_STS:
2604 case PR_O2_EXP_RSTS:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002605 memcpy(status_code, b_head(&s->check.bi) + 9, 3);
2606 memcpy(status_msg + strlen(status_msg) - 4, b_head(&s->check.bi) + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01002607
2608 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
2609 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
2610 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002611 ret = regex_exec(s->proxy->expect_regex, status_code);
Willy Tarreaubd741542010-03-16 18:46:54 +01002612
2613 /* we necessarily have the response, so there are no partial failures */
2614 if (s->proxy->options2 & PR_O2_EXP_INV)
2615 ret = !ret;
2616
Simon Horman4a741432013-02-23 15:35:38 +09002617 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01002618 break;
2619
2620 case PR_O2_EXP_STR:
2621 case PR_O2_EXP_RSTR:
2622 /* very simple response parser: ignore CR and only count consecutive LFs,
2623 * stop with contentptr pointing to first char after the double CRLF or
2624 * to '\0' if crlf < 2.
2625 */
2626 crlf = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002627 for (contentptr = b_head(&s->check.bi); *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01002628 if (crlf >= 2)
2629 break;
2630 if (*contentptr == '\r')
2631 continue;
2632 else if (*contentptr == '\n')
2633 crlf++;
2634 else
2635 crlf = 0;
2636 }
2637
2638 /* Check that response contains a body... */
2639 if (crlf < 2) {
2640 if (!done)
2641 return 0;
2642
Simon Horman4a741432013-02-23 15:35:38 +09002643 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002644 "HTTP content check could not find a response body");
2645 return 1;
2646 }
2647
2648 /* Check that response body is not empty... */
2649 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02002650 if (!done)
2651 return 0;
2652
Simon Horman4a741432013-02-23 15:35:38 +09002653 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002654 "HTTP content check found empty response body");
2655 return 1;
2656 }
2657
2658 /* Check the response content against the supplied string
2659 * or regex... */
2660 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
2661 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
2662 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002663 ret = regex_exec(s->proxy->expect_regex, contentptr);
Willy Tarreaubd741542010-03-16 18:46:54 +01002664
2665 /* if we don't match, we may need to wait more */
2666 if (!ret && !done)
2667 return 0;
2668
2669 if (ret) {
2670 /* content matched */
2671 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002672 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002673 "HTTP check matched unwanted content");
2674 else
Simon Horman4a741432013-02-23 15:35:38 +09002675 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002676 "HTTP content check matched");
2677 }
2678 else {
2679 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002680 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002681 "HTTP check did not match unwanted content");
2682 else
Simon Horman4a741432013-02-23 15:35:38 +09002683 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002684 "HTTP content check did not match");
2685 }
2686 break;
2687 }
2688 return 1;
2689}
2690
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002691/*
2692 * return the id of a step in a send/expect session
2693 */
Simon Hormane16c1b32015-01-30 11:22:57 +09002694static int tcpcheck_get_step_id(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002695{
2696 struct tcpcheck_rule *cur = NULL, *next = NULL;
2697 int i = 0;
2698
Willy Tarreau213c6782014-10-02 14:51:02 +02002699 /* not even started anything yet => step 0 = initial connect */
Baptiste Assmannf95bc8e2015-04-25 16:03:06 +02002700 if (!check->current_step)
Willy Tarreau213c6782014-10-02 14:51:02 +02002701 return 0;
2702
Simon Hormane16c1b32015-01-30 11:22:57 +09002703 cur = check->last_started_step;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002704
2705 /* no step => first step */
2706 if (cur == NULL)
2707 return 1;
2708
2709 /* increment i until current step */
Simon Hormane16c1b32015-01-30 11:22:57 +09002710 list_for_each_entry(next, check->tcpcheck_rules, list) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002711 if (next->list.p == &cur->list)
2712 break;
2713 ++i;
2714 }
2715
2716 return i;
2717}
2718
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002719/*
2720 * return the latest known comment before (including) the given stepid
2721 * returns NULL if no comment found
2722 */
2723static char * tcpcheck_get_step_comment(struct check *check, int stepid)
2724{
2725 struct tcpcheck_rule *cur = NULL;
2726 char *ret = NULL;
2727 int i = 0;
2728
2729 /* not even started anything yet, return latest comment found before any action */
2730 if (!check->current_step) {
2731 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2732 if (cur->action == TCPCHK_ACT_COMMENT)
2733 ret = cur->comment;
2734 else
2735 goto return_comment;
2736 }
2737 }
2738
2739 i = 1;
2740 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2741 if (cur->comment)
2742 ret = cur->comment;
2743
2744 if (i >= stepid)
2745 goto return_comment;
2746
2747 ++i;
2748 }
2749
2750 return_comment:
2751 return ret;
2752}
2753
Willy Tarreaube74b882017-10-04 16:22:49 +02002754/* proceed with next steps for the TCP checks <check>. Note that this is called
2755 * both from the connection's wake() callback and from the check scheduling task.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002756 * It returns 0 on normal cases, or <0 if a close() has happened on an existing
2757 * connection, presenting the risk of an fd replacement.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002758 *
2759 * Please do NOT place any return statement in this function and only leave
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002760 * via the out_end_tcpcheck label after setting retcode.
Willy Tarreaube74b882017-10-04 16:22:49 +02002761 */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002762static int tcpcheck_main(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002763{
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002764 char *contentptr, *comment;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002765 struct tcpcheck_rule *next;
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002766 int done = 0, ret = 0, step = 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002767 struct conn_stream *cs = check->cs;
2768 struct connection *conn = cs_conn(cs);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002769 struct server *s = check->server;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002770 struct proxy *proxy = check->proxy;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002771 struct task *t = check->task;
Simon Hormane16c1b32015-01-30 11:22:57 +09002772 struct list *head = check->tcpcheck_rules;
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002773 int retcode = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002774
Willy Tarreauef953952014-10-02 14:30:14 +02002775 /* here, we know that the check is complete or that it failed */
2776 if (check->result != CHK_RES_UNKNOWN)
2777 goto out_end_tcpcheck;
2778
2779 /* We have 4 possibilities here :
2780 * 1. we've not yet attempted step 1, and step 1 is a connect, so no
Willy Tarreau00149122017-10-04 18:05:01 +02002781 * connection attempt was made yet ; conn==NULL;current_step==NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002782 * 2. we've not yet attempted step 1, and step 1 is a not connect or
2783 * does not exist (no rule), so a connection attempt was made
Willy Tarreau00149122017-10-04 18:05:01 +02002784 * before coming here, conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002785 * 3. we're coming back after having started with step 1, so we may
Willy Tarreau00149122017-10-04 18:05:01 +02002786 * be waiting for a connection attempt to complete. conn!=NULL.
2787 * 4. the connection + handshake are complete. conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002788 *
2789 * #2 and #3 are quite similar, we want both the connection and the
2790 * handshake to complete before going any further. Thus we must always
2791 * wait for a connection to complete unless we're before and existing
2792 * step 1.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002793 */
Willy Tarreau449f9522015-05-13 15:39:48 +02002794
2795 /* find first rule and skip comments */
2796 next = LIST_NEXT(head, struct tcpcheck_rule *, list);
2797 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
2798 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
2799
Willy Tarreau00149122017-10-04 18:05:01 +02002800 if ((check->current_step || &next->list == head) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01002801 (conn->flags & CO_FL_WAIT_XPRT)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002802 /* we allow up to min(inter, timeout.connect) for a connection
2803 * to establish but only when timeout.check is set
2804 * as it may be to short for a full check otherwise
2805 */
2806 while (tick_is_expired(t->expire, now_ms)) {
2807 int t_con;
2808
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002809 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002810 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2811
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002812 if (proxy->timeout.check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002813 t->expire = tick_first(t->expire, t_con);
2814 }
Christopher Fauletb6102852017-11-28 10:06:29 +01002815 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002816 }
2817
Willy Tarreauef953952014-10-02 14:30:14 +02002818 /* special case: option tcp-check with no rule, a connect is enough */
Willy Tarreau449f9522015-05-13 15:39:48 +02002819 if (&next->list == head) {
Willy Tarreauef953952014-10-02 14:30:14 +02002820 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002821 goto out_end_tcpcheck;
Willy Tarreauef953952014-10-02 14:30:14 +02002822 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002823
Willy Tarreau213c6782014-10-02 14:51:02 +02002824 /* no step means first step initialisation */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002825 if (check->current_step == NULL) {
Willy Tarreau213c6782014-10-02 14:51:02 +02002826 check->last_started_step = NULL;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002827 b_reset(&check->bo);
2828 b_reset(&check->bi);
Willy Tarreau449f9522015-05-13 15:39:48 +02002829 check->current_step = next;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002830 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002831 if (proxy->timeout.check)
2832 t->expire = tick_add_ifset(now_ms, proxy->timeout.check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002833 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002834
Willy Tarreauabca5b62013-12-06 14:19:25 +01002835 while (1) {
Willy Tarreau263013d2015-05-13 11:59:14 +02002836 /* We have to try to flush the output buffer before reading, at
2837 * the end, or if we're about to send a string that does not fit
2838 * in the remaining space. That explains why we break out of the
Willy Tarreau00149122017-10-04 18:05:01 +02002839 * loop after this control. If we have data, conn is valid.
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002840 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002841 if (b_data(&check->bo) &&
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002842 (&check->current_step->list == head ||
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002843 check->current_step->action != TCPCHK_ACT_SEND ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002844 check->current_step->string_len >= b_room(&check->bo))) {
Willy Tarreaudeccd112018-06-14 18:38:55 +02002845 int ret;
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002846
Olivier Houcharded0f2072018-08-16 15:41:52 +02002847 ret = cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002848 b_realign_if_empty(&check->bo);
Willy Tarreaudeccd112018-06-14 18:38:55 +02002849
2850 if (ret <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002851 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002852 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002853 goto out_end_tcpcheck;
2854 }
Willy Tarreau263013d2015-05-13 11:59:14 +02002855 break;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002856 }
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002857 if (b_data(&check->bo)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002858 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002859 goto out;
2860 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01002861 }
2862
Willy Tarreau263013d2015-05-13 11:59:14 +02002863 if (&check->current_step->list == head)
Willy Tarreauabca5b62013-12-06 14:19:25 +01002864 break;
2865
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002866 /* have 'next' point to the next rule or NULL if we're on the
2867 * last one, connect() needs this.
2868 */
Willy Tarreau5581c272015-05-13 12:24:53 +02002869 next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002870
2871 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002872 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002873 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002874
2875 /* NULL if we're on the last rule */
Willy Tarreauf3d34822014-12-08 12:11:28 +01002876 if (&next->list == head)
2877 next = NULL;
2878
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002879 if (check->current_step->action == TCPCHK_ACT_CONNECT) {
2880 struct protocol *proto;
2881 struct xprt_ops *xprt;
2882
Willy Tarreau00149122017-10-04 18:05:01 +02002883 /* For a connect action we'll create a new connection.
2884 * We may also have to kill a previous one. But we don't
2885 * want to leave *without* a connection if we came here
2886 * from the connection layer, hence with a connection.
2887 * Thus we'll proceed in the following order :
2888 * 1: close but not release previous connection
2889 * 2: try to get a new connection
2890 * 3: release and replace the old one on success
2891 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002892 if (check->cs) {
Willy Tarreaua553ae92017-10-05 18:52:17 +02002893 cs_close(check->cs);
2894 retcode = -1; /* do not reuse the fd in the caller! */
Willy Tarreau00149122017-10-04 18:05:01 +02002895 }
2896
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002897 /* mark the step as started */
2898 check->last_started_step = check->current_step;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002899
2900 /* prepare new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002901 cs = cs_new(NULL);
2902 if (!cs) {
Willy Tarreau00149122017-10-04 18:05:01 +02002903 step = tcpcheck_get_step_id(check);
2904 chunk_printf(&trash, "TCPCHK error allocating connection at step %d", step);
2905 comment = tcpcheck_get_step_comment(check, step);
2906 if (comment)
2907 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002908 set_server_check_status(check, HCHK_STATUS_SOCKERR,
2909 trash.area);
Willy Tarreau00149122017-10-04 18:05:01 +02002910 check->current_step = NULL;
Christopher Fauletb6102852017-11-28 10:06:29 +01002911 goto out;
Willy Tarreau00149122017-10-04 18:05:01 +02002912 }
2913
Olivier Houchard49065542019-05-31 19:20:36 +02002914 if (check->cs) {
2915 if (check->wait_list.events)
2916 cs->conn->xprt->unsubscribe(cs->conn,
2917 cs->conn->xprt_ctx,
2918 check->wait_list.events,
2919 &check->wait_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02002920 /* We may have been scheduled to run, and the
2921 * I/O handler expects to have a cs, so remove
2922 * the tasklet
2923 */
2924 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Willy Tarreauac59f362017-10-08 11:10:19 +02002925 cs_destroy(check->cs);
Olivier Houchard49065542019-05-31 19:20:36 +02002926 }
Willy Tarreau00149122017-10-04 18:05:01 +02002927
Olivier Houchardff1e9f32019-09-20 17:18:35 +02002928 tasklet_set_tid(check->wait_list.tasklet, tid);
2929
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002930 check->cs = cs;
2931 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02002932 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002933 check->wait_list.events = 0;
Olivier Houchard0923fa42019-01-11 18:43:04 +01002934 conn->target = s ? &s->obj_type : &proxy->obj_type;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002935
2936 /* no client address */
Willy Tarreauca79f592019-07-17 19:04:47 +02002937
2938 if (!sockaddr_alloc(&conn->dst)) {
2939 ret = SF_ERR_RESOURCE;
2940 goto fail_check;
2941 }
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002942
Simon Horman41f58762015-01-30 11:22:56 +09002943 if (is_addr(&check->addr)) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002944 /* we'll connect to the check addr specified on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002945 *conn->dst = check->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002946 }
2947 else {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002948 /* we'll connect to the addr on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002949 *conn->dst = s->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002950 }
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002951 proto = protocol_by_family(conn->dst->ss_family);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002952
2953 /* port */
2954 if (check->current_step->port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002955 set_host_port(conn->dst, check->current_step->port);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002956 else if (check->port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002957 set_host_port(conn->dst, check->port);
Baptiste Assmann2f3a56b2018-03-19 12:22:41 +01002958 else if (s->svc_port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002959 set_host_port(conn->dst, s->svc_port);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002960
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002961 if (check->current_step->conn_opts & TCPCHK_OPT_SSL) {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002962 xprt = xprt_get(XPRT_SSL);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002963 }
2964 else {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002965 xprt = xprt_get(XPRT_RAW);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002966 }
Willy Tarreaube373152018-09-06 11:45:30 +02002967
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002968 conn_prepare(conn, proto, xprt);
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002969
2970 if (conn_install_mux(conn, &mux_pt_ops, cs, proxy, NULL) < 0) {
2971 ret = SF_ERR_RESOURCE;
2972 goto fail_check;
2973 }
2974
Willy Tarreaube373152018-09-06 11:45:30 +02002975 cs_attach(cs, check, &check_conn_cb);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002976
Willy Tarreaue7dff022015-04-03 01:14:29 +02002977 ret = SF_ERR_INTERNAL;
Ricardo Nabinger Sanchez4bccea92019-03-28 21:42:23 -03002978 if (proto && proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01002979 ret = proto->connect(conn,
Willy Tarreau74ab7d22020-01-24 17:52:37 +01002980 CONNECT_HAS_DATA /* I/O polling is always needed */ | ((next && next->action == TCPCHK_ACT_EXPECT) ? 0 : CONNECT_DELACK_ALWAYS));
Olivier Houchard37d78972019-12-30 15:13:42 +01002981 if (conn_ctrl_ready(conn) &&
2982 check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002983 conn->send_proxy_ofs = 1;
2984 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02002985 if (xprt_add_hs(conn) < 0)
2986 ret = SF_ERR_RESOURCE;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002987 }
2988
2989 /* It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002990 * - SF_ERR_NONE if everything's OK
2991 * - SF_ERR_SRVTO if there are no more servers
2992 * - SF_ERR_SRVCL if the connection was refused by the server
2993 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
2994 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
2995 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01002996 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002997 * Note that we try to prevent the network stack from sending the ACK during the
2998 * connect() when a pure TCP check is used (without PROXY protocol).
2999 */
Willy Tarreau2ab5c382019-07-17 18:48:07 +02003000 fail_check:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003001 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003002 case SF_ERR_NONE:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003003 /* we allow up to min(inter, timeout.connect) for a connection
3004 * to establish but only when timeout.check is set
3005 * as it may be to short for a full check otherwise
3006 */
3007 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
3008
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003009 if (proxy->timeout.check && proxy->timeout.connect) {
3010 int t_con = tick_add(now_ms, proxy->timeout.connect);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003011 t->expire = tick_first(t->expire, t_con);
3012 }
3013 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02003014 case SF_ERR_SRVTO: /* ETIMEDOUT */
3015 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003016 step = tcpcheck_get_step_id(check);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003017 chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003018 step, strerror(errno));
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003019 comment = tcpcheck_get_step_comment(check, step);
3020 if (comment)
3021 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003022 set_server_check_status(check, HCHK_STATUS_L4CON,
3023 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003024 goto out_end_tcpcheck;
Willy Tarreaue7dff022015-04-03 01:14:29 +02003025 case SF_ERR_PRXCOND:
3026 case SF_ERR_RESOURCE:
3027 case SF_ERR_INTERNAL:
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003028 step = tcpcheck_get_step_id(check);
3029 chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003030 comment = tcpcheck_get_step_comment(check, step);
3031 if (comment)
3032 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003033 set_server_check_status(check, HCHK_STATUS_SOCKERR,
3034 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003035 goto out_end_tcpcheck;
3036 }
3037
3038 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003039 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003040
3041 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003042 while (&check->current_step->list != head &&
3043 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003044 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003045
Willy Tarreauf2c87352015-05-13 12:08:21 +02003046 if (&check->current_step->list == head)
3047 break;
3048
Willy Tarreau7df8ca62019-07-15 10:57:51 +02003049 /* don't do anything until the connection is established */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003050 if (conn->flags & CO_FL_WAIT_XPRT)
Willy Tarreau7df8ca62019-07-15 10:57:51 +02003051 break;
3052
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003053 } /* end 'connect' */
3054 else if (check->current_step->action == TCPCHK_ACT_SEND) {
3055 /* mark the step as started */
3056 check->last_started_step = check->current_step;
3057
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003058 /* reset the read buffer */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003059 if (*b_head(&check->bi) != '\0') {
3060 *b_head(&check->bi) = '\0';
3061 b_reset(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003062 }
3063
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003064 if (check->current_step->string_len >= b_size(&check->bo)) {
Willy Tarreau506a29a2018-07-18 10:07:58 +02003065 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%u) at step %d",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003066 check->current_step->string_len, (unsigned int)b_size(&check->bo),
Simon Hormane16c1b32015-01-30 11:22:57 +09003067 tcpcheck_get_step_id(check));
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003068 set_server_check_status(check, HCHK_STATUS_L7RSP,
3069 trash.area);
Willy Tarreauabca5b62013-12-06 14:19:25 +01003070 goto out_end_tcpcheck;
3071 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003072
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003073 /* do not try to send if there is no space */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003074 if (check->current_step->string_len >= b_room(&check->bo))
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003075 continue;
3076
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003077 b_putblk(&check->bo, check->current_step->string, check->current_step->string_len);
3078 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003079
Willy Tarreauabca5b62013-12-06 14:19:25 +01003080 /* go to next rule and try to send */
Willy Tarreau5581c272015-05-13 12:24:53 +02003081 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003082
3083 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003084 while (&check->current_step->list != head &&
3085 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003086 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Willy Tarreauf2c87352015-05-13 12:08:21 +02003087
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003088 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003089 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003090 if (unlikely(check->result == CHK_RES_FAILED))
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003091 goto out_end_tcpcheck;
3092
Olivier Houchard0ba6c852019-07-18 15:09:08 +02003093 /* If we already subscribed, then we tried to received
3094 * and failed, so there's no point trying again.
3095 */
3096 if (check->wait_list.events & SUB_RETRY_RECV)
3097 break;
Olivier Houchard511efea2018-08-16 15:30:32 +02003098 if (cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0) <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02003099 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003100 done = 1;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003101 if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003102 /* Report network errors only if we got no other data. Otherwise
3103 * we'll let the upper layers decide whether the response is OK
3104 * or not. It is very common that an RST sent by the server is
3105 * reported as an error just after the last data chunk.
3106 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003107 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003108 goto out_end_tcpcheck;
3109 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003110 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003111 else {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003112 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Willy Tarreau263013d2015-05-13 11:59:14 +02003113 break;
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003114 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003115 }
3116
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003117 /* mark the step as started */
3118 check->last_started_step = check->current_step;
3119
3120
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003121 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003122 * Terminate string in b_head(&check->bi) buffer.
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003123 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003124 if (b_data(&check->bi) < b_size(&check->bi)) {
3125 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003126 }
3127 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003128 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003129 done = 1; /* buffer full, don't wait for more data */
3130 }
3131
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003132 contentptr = b_head(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003133
3134 /* Check that response body is not empty... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003135 if (!b_data(&check->bi)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003136 if (!done)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003137 continue;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003138
3139 /* empty response */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003140 step = tcpcheck_get_step_id(check);
3141 chunk_printf(&trash, "TCPCHK got an empty response at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003142 comment = tcpcheck_get_step_comment(check, step);
3143 if (comment)
3144 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003145 set_server_check_status(check, HCHK_STATUS_L7RSP,
3146 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003147
3148 goto out_end_tcpcheck;
3149 }
3150
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003151 if (!done && (check->current_step->string != NULL) && (b_data(&check->bi) < check->current_step->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01003152 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003153
Willy Tarreaua970c282013-12-06 12:47:19 +01003154 tcpcheck_expect:
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003155 if (check->current_step->string != NULL)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003156 ret = my_memmem(contentptr, b_data(&check->bi), check->current_step->string, check->current_step->string_len) != NULL;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003157 else if (check->current_step->expect_regex != NULL)
3158 ret = regex_exec(check->current_step->expect_regex, contentptr);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003159
3160 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01003161 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003162
3163 /* matched */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003164 step = tcpcheck_get_step_id(check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003165 if (ret) {
3166 /* matched but we did not want to => ERROR */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003167 if (check->current_step->inverse) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003168 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003169 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003170 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003171 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003172 }
3173 else {
3174 /* we were looking for a regex */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003175 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d", step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003176 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003177 comment = tcpcheck_get_step_comment(check, step);
3178 if (comment)
3179 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003180 set_server_check_status(check, HCHK_STATUS_L7RSP,
3181 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003182 goto out_end_tcpcheck;
3183 }
3184 /* matched and was supposed to => OK, next step */
3185 else {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003186 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003187 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003188
3189 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003190 while (&check->current_step->list != head &&
3191 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003192 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003193
Willy Tarreauf2c87352015-05-13 12:08:21 +02003194 if (&check->current_step->list == head)
3195 break;
3196
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003197 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003198 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003199 }
3200 }
3201 else {
3202 /* not matched */
3203 /* not matched and was not supposed to => OK, next step */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003204 if (check->current_step->inverse) {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003205 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003206 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003207
3208 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003209 while (&check->current_step->list != head &&
3210 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003211 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003212
Willy Tarreauf2c87352015-05-13 12:08:21 +02003213 if (&check->current_step->list == head)
3214 break;
3215
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003216 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003217 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003218 }
3219 /* not matched but was supposed to => ERROR */
3220 else {
3221 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003222 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003223 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003224 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003225 }
3226 else {
3227 /* we were looking for a regex */
3228 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003229 step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003230 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003231 comment = tcpcheck_get_step_comment(check, step);
3232 if (comment)
3233 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003234 set_server_check_status(check, HCHK_STATUS_L7RSP,
3235 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003236 goto out_end_tcpcheck;
3237 }
3238 }
3239 } /* end expect */
3240 } /* end loop over double chained step list */
3241
Baptiste Assmann248f1172018-03-01 21:49:01 +01003242 /* don't do anything until the connection is established */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003243 if (conn->flags & CO_FL_WAIT_XPRT) {
Baptiste Assmann248f1172018-03-01 21:49:01 +01003244 /* update expire time, should be done by process_chk */
3245 /* we allow up to min(inter, timeout.connect) for a connection
3246 * to establish but only when timeout.check is set
3247 * as it may be to short for a full check otherwise
3248 */
3249 while (tick_is_expired(t->expire, now_ms)) {
3250 int t_con;
3251
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003252 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann248f1172018-03-01 21:49:01 +01003253 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
3254
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003255 if (proxy->timeout.check)
Baptiste Assmann248f1172018-03-01 21:49:01 +01003256 t->expire = tick_first(t->expire, t_con);
3257 }
3258 goto out;
3259 }
3260
Willy Tarreau263013d2015-05-13 11:59:14 +02003261 /* We're waiting for some I/O to complete, we've reached the end of the
3262 * rules, or both. Do what we have to do, otherwise we're done.
3263 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003264 if (&check->current_step->list == head && !b_data(&check->bo)) {
Willy Tarreau263013d2015-05-13 11:59:14 +02003265 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
3266 goto out_end_tcpcheck;
3267 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003268
Willy Tarreau53c5a042015-05-13 11:38:17 +02003269 if (&check->current_step->list != head &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003270 check->current_step->action == TCPCHK_ACT_EXPECT)
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003271 __event_srv_chk_r(cs);
Christopher Fauletb6102852017-11-28 10:06:29 +01003272 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003273
3274 out_end_tcpcheck:
3275 /* collect possible new errors */
Willy Tarreauef91c932019-07-23 14:37:47 +02003276 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003277 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003278
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003279 /* cleanup before leaving */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003280 check->current_step = NULL;
3281
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003282 if (check->result == CHK_RES_FAILED)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003283 conn->flags |= CO_FL_ERROR;
3284
Christopher Fauletb6102852017-11-28 10:06:29 +01003285 out:
Willy Tarreau6bdcab02017-10-04 18:41:00 +02003286 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003287}
3288
Simon Hormanb1900d52015-01-30 11:22:54 +09003289const char *init_check(struct check *check, int type)
3290{
3291 check->type = type;
3292
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003293 b_reset(&check->bi); check->bi.size = global.tune.chksize;
3294 b_reset(&check->bo); check->bo.size = global.tune.chksize;
Simon Hormanb1900d52015-01-30 11:22:54 +09003295
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003296 check->bi.area = calloc(check->bi.size, sizeof(char));
3297 check->bo.area = calloc(check->bo.size, sizeof(char));
3298
3299 if (!check->bi.area || !check->bo.area)
Simon Hormanb1900d52015-01-30 11:22:54 +09003300 return "out of memory while allocating check buffer";
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003301
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003302 check->wait_list.tasklet = tasklet_new();
3303 if (!check->wait_list.tasklet)
Ilya Shipitsind4259502020-04-08 01:07:56 +05003304 return "out of memory while allocating check tasklet";
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003305 check->wait_list.events = 0;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003306 check->wait_list.tasklet->process = event_srv_chk_io;
3307 check->wait_list.tasklet->context = check;
Simon Hormanb1900d52015-01-30 11:22:54 +09003308 return NULL;
3309}
3310
Simon Hormanbfb5d332015-01-30 11:22:55 +09003311void free_check(struct check *check)
3312{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003313 free(check->bi.area);
3314 free(check->bo.area);
Christopher Faulet23d86d12018-01-25 11:36:35 +01003315 if (check->cs) {
3316 free(check->cs->conn);
3317 check->cs->conn = NULL;
3318 cs_free(check->cs);
3319 check->cs = NULL;
3320 }
Simon Hormanbfb5d332015-01-30 11:22:55 +09003321}
3322
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003323void email_alert_free(struct email_alert *alert)
3324{
3325 struct tcpcheck_rule *rule, *back;
3326
3327 if (!alert)
3328 return;
3329
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003330 list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list) {
3331 LIST_DEL(&rule->list);
3332 free(rule->comment);
3333 free(rule->string);
Dragan Dosen26743032019-04-30 15:54:36 +02003334 regex_free(rule->expect_regex);
Willy Tarreaubafbe012017-11-24 17:34:44 +01003335 pool_free(pool_head_tcpcheck_rule, rule);
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003336 }
Willy Tarreaubafbe012017-11-24 17:34:44 +01003337 pool_free(pool_head_email_alert, alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003338}
3339
Olivier Houchard9f6af332018-05-25 14:04:04 +02003340static struct task *process_email_alert(struct task *t, void *context, unsigned short state)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003341{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003342 struct check *check = context;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003343 struct email_alertq *q;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003344 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003345
3346 q = container_of(check, typeof(*q), check);
3347
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003348 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003349 while (1) {
3350 if (!(check->state & CHK_ST_ENABLED)) {
3351 if (LIST_ISEMPTY(&q->email_alerts)) {
3352 /* All alerts processed, queue the task */
3353 t->expire = TICK_ETERNITY;
3354 task_queue(t);
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003355 goto end;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003356 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003357
3358 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003359 LIST_DEL(&alert->list);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003360 t->expire = now_ms;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003361 check->tcpcheck_rules = &alert->tcpcheck_rules;
Olivier Houchard0923fa42019-01-11 18:43:04 +01003362 check->status = HCHK_STATUS_INI;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003363 check->state |= CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003364 }
3365
Olivier Houchard9f6af332018-05-25 14:04:04 +02003366 process_chk(t, context, state);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003367 if (check->state & CHK_ST_INPROGRESS)
3368 break;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003369
3370 alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules);
3371 email_alert_free(alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003372 check->tcpcheck_rules = NULL;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003373 check->server = NULL;
3374 check->state &= ~CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003375 }
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003376 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003377 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003378 return t;
3379}
3380
Christopher Faulet0108bb32017-10-20 21:34:32 +02003381/* Initializes mailer alerts for the proxy <p> using <mls> parameters.
3382 *
3383 * The function returns 1 in success case, otherwise, it returns 0 and err is
3384 * filled.
3385 */
3386int init_email_alert(struct mailers *mls, struct proxy *p, char **err)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003387{
Christopher Faulet0108bb32017-10-20 21:34:32 +02003388 struct mailer *mailer;
3389 struct email_alertq *queues;
3390 const char *err_str;
3391 int i = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003392
Christopher Faulet0108bb32017-10-20 21:34:32 +02003393 if ((queues = calloc(mls->count, sizeof(*queues))) == NULL) {
3394 memprintf(err, "out of memory while allocating mailer alerts queues");
mildis5ab01cb2018-10-02 16:46:34 +02003395 goto fail_no_queue;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003396 }
3397
Christopher Faulet0108bb32017-10-20 21:34:32 +02003398 for (mailer = mls->mailer_list; mailer; i++, mailer = mailer->next) {
3399 struct email_alertq *q = &queues[i];
3400 struct check *check = &q->check;
3401 struct task *t;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003402
3403 LIST_INIT(&q->email_alerts);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003404 HA_SPIN_INIT(&q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003405 check->inter = mls->timeout.mail;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003406 check->rise = DEF_AGENT_RISETIME;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003407 check->proxy = p;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003408 check->fall = DEF_AGENT_FALLTIME;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003409 if ((err_str = init_check(check, PR_O2_TCPCHK_CHK))) {
3410 memprintf(err, "%s", err_str);
3411 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003412 }
3413
3414 check->xprt = mailer->xprt;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003415 check->addr = mailer->addr;
Christopher Fauletb797ae12018-03-27 15:35:35 +02003416 check->port = get_host_port(&mailer->addr);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003417
Emeric Brunc60def82017-09-27 14:59:38 +02003418 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003419 memprintf(err, "out of memory while allocating mailer alerts task");
3420 goto error;
3421 }
3422
3423 check->task = t;
3424 t->process = process_email_alert;
3425 t->context = check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003426
Christopher Faulet0108bb32017-10-20 21:34:32 +02003427 /* check this in one ms */
3428 t->expire = TICK_ETERNITY;
3429 check->start = now;
3430 task_queue(t);
3431 }
3432
3433 mls->users++;
3434 free(p->email_alert.mailers.name);
3435 p->email_alert.mailers.m = mls;
3436 p->email_alert.queues = queues;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003437 return 0;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003438
3439 error:
3440 for (i = 0; i < mls->count; i++) {
3441 struct email_alertq *q = &queues[i];
3442 struct check *check = &q->check;
3443
Willy Tarreauf6562792019-05-07 19:05:35 +02003444 task_destroy(check->task);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003445 free_check(check);
3446 }
3447 free(queues);
mildis5ab01cb2018-10-02 16:46:34 +02003448 fail_no_queue:
Christopher Faulet0108bb32017-10-20 21:34:32 +02003449 return 1;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003450}
3451
3452
3453static int add_tcpcheck_expect_str(struct list *list, const char *str)
3454{
3455 struct tcpcheck_rule *tcpcheck;
3456
Willy Tarreaubafbe012017-11-24 17:34:44 +01003457 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003458 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003459 memset(tcpcheck, 0, sizeof(*tcpcheck));
3460 tcpcheck->action = TCPCHK_ACT_EXPECT;
3461 tcpcheck->string = strdup(str);
3462 tcpcheck->expect_regex = NULL;
3463 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003464 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003465 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003466 return 0;
3467 }
3468
3469 LIST_ADDQ(list, &tcpcheck->list);
3470 return 1;
3471}
3472
3473static int add_tcpcheck_send_strs(struct list *list, const char * const *strs)
3474{
3475 struct tcpcheck_rule *tcpcheck;
Willy Tarreau64345aa2016-08-10 19:29:09 +02003476 const char *in;
3477 char *dst;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003478 int i;
3479
Willy Tarreaubafbe012017-11-24 17:34:44 +01003480 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003481 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003482 memset(tcpcheck, 0, sizeof(*tcpcheck));
3483 tcpcheck->action = TCPCHK_ACT_SEND;
3484 tcpcheck->expect_regex = NULL;
3485 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003486 tcpcheck->string_len = 0;
3487 for (i = 0; strs[i]; i++)
3488 tcpcheck->string_len += strlen(strs[i]);
3489
3490 tcpcheck->string = malloc(tcpcheck->string_len + 1);
3491 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003492 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003493 return 0;
3494 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003495
Willy Tarreau64345aa2016-08-10 19:29:09 +02003496 dst = tcpcheck->string;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003497 for (i = 0; strs[i]; i++)
Willy Tarreau64345aa2016-08-10 19:29:09 +02003498 for (in = strs[i]; (*dst = *in++); dst++);
3499 *dst = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003500
3501 LIST_ADDQ(list, &tcpcheck->list);
3502 return 1;
3503}
3504
Christopher Faulet0108bb32017-10-20 21:34:32 +02003505static int enqueue_one_email_alert(struct proxy *p, struct server *s,
3506 struct email_alertq *q, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003507{
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003508 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003509 struct tcpcheck_rule *tcpcheck;
3510 struct check *check = &q->check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003511
Willy Tarreaubafbe012017-11-24 17:34:44 +01003512 if ((alert = pool_alloc(pool_head_email_alert)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003513 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003514 LIST_INIT(&alert->list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003515 LIST_INIT(&alert->tcpcheck_rules);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003516 alert->srv = s;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003517
Willy Tarreaubafbe012017-11-24 17:34:44 +01003518 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003519 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003520 memset(tcpcheck, 0, sizeof(*tcpcheck));
3521 tcpcheck->action = TCPCHK_ACT_CONNECT;
3522 tcpcheck->comment = NULL;
3523 tcpcheck->string = NULL;
3524 tcpcheck->expect_regex = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003525 LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list);
3526
3527 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 "))
3528 goto error;
3529
3530 {
3531 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
3532 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3533 goto error;
3534 }
3535
3536 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3537 goto error;
3538
3539 {
3540 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
3541 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3542 goto error;
3543 }
3544
3545 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3546 goto error;
3547
3548 {
3549 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
3550 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3551 goto error;
3552 }
3553
3554 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3555 goto error;
3556
3557 {
3558 const char * const strs[2] = { "DATA\r\n" };
3559 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3560 goto error;
3561 }
3562
3563 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 "))
3564 goto error;
3565
3566 {
3567 struct tm tm;
3568 char datestr[48];
3569 const char * const strs[18] = {
Pieter Baauw5e0964e2016-02-13 16:27:35 +01003570 "From: ", p->email_alert.from, "\r\n",
3571 "To: ", p->email_alert.to, "\r\n",
3572 "Date: ", datestr, "\r\n",
3573 "Subject: [HAproxy Alert] ", msg, "\r\n",
3574 "\r\n",
3575 msg, "\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003576 "\r\n",
Pieter Baauwed35c372015-07-22 19:51:54 +02003577 ".\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003578 NULL
3579 };
3580
3581 get_localtime(date.tv_sec, &tm);
3582
3583 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
3584 goto error;
3585 }
3586
3587 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3588 goto error;
3589 }
3590
3591 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3592 goto error;
3593
3594 {
3595 const char * const strs[2] = { "QUIT\r\n" };
3596 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3597 goto error;
3598 }
3599
3600 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 "))
3601 goto error;
3602
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003603 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003604 task_wakeup(check->task, TASK_WOKEN_MSG);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003605 LIST_ADDQ(&q->email_alerts, &alert->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003606 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003607 return 1;
3608
3609error:
3610 email_alert_free(alert);
3611 return 0;
3612}
3613
Christopher Faulet0108bb32017-10-20 21:34:32 +02003614static void enqueue_email_alert(struct proxy *p, struct server *s, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003615{
3616 int i;
3617 struct mailer *mailer;
3618
3619 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3620 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003621 if (!enqueue_one_email_alert(p, s, &p->email_alert.queues[i], msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003622 ha_alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003623 return;
3624 }
3625 }
3626
3627 return;
3628}
3629
3630/*
3631 * Send email alert if configured.
3632 */
Simon Horman64e34162015-02-06 11:11:57 +09003633void send_email_alert(struct server *s, int level, const char *format, ...)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003634{
3635 va_list argp;
3636 char buf[1024];
3637 int len;
3638 struct proxy *p = s->proxy;
3639
Christopher Faulet0108bb32017-10-20 21:34:32 +02003640 if (!p->email_alert.mailers.m || level > p->email_alert.level || format == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003641 return;
3642
3643 va_start(argp, format);
3644 len = vsnprintf(buf, sizeof(buf), format, argp);
3645 va_end(argp);
3646
Thierry FOURNIER62c8a212017-02-09 12:19:27 +01003647 if (len < 0 || len >= sizeof(buf)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003648 ha_alert("Email alert [%s] could not format message\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003649 return;
3650 }
3651
Christopher Faulet0108bb32017-10-20 21:34:32 +02003652 enqueue_email_alert(p, s, buf);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003653}
3654
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003655/*
3656 * Return value:
3657 * the port to be used for the health check
3658 * 0 in case no port could be found for the check
3659 */
3660int srv_check_healthcheck_port(struct check *chk)
3661{
3662 int i = 0;
3663 struct server *srv = NULL;
3664
3665 srv = chk->server;
3666
3667 /* If neither a port nor an addr was specified and no check transport
3668 * layer is forced, then the transport layer used by the checks is the
3669 * same as for the production traffic. Otherwise we use raw_sock by
3670 * default, unless one is specified.
3671 */
3672 if (!chk->port && !is_addr(&chk->addr)) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003673 if (!chk->use_ssl)
3674 chk->use_ssl = srv->use_ssl;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003675 chk->send_proxy |= (srv->pp_opts);
3676 }
3677
3678 /* by default, we use the health check port ocnfigured */
3679 if (chk->port > 0)
3680 return chk->port;
3681
3682 /* try to get the port from check_core.addr if check.port not set */
3683 i = get_host_port(&chk->addr);
3684 if (i > 0)
3685 return i;
3686
3687 /* try to get the port from server address */
3688 /* prevent MAPPORTS from working at this point, since checks could
3689 * not be performed in such case (MAPPORTS impose a relative ports
3690 * based on live traffic)
3691 */
3692 if (srv->flags & SRV_F_MAPPORTS)
3693 return 0;
Willy Tarreau04276f32017-01-06 17:41:29 +01003694
3695 i = srv->svc_port; /* by default */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003696 if (i > 0)
3697 return i;
3698
3699 return 0;
3700}
3701
Willy Tarreau172f5ce2018-11-26 11:21:50 +01003702REGISTER_POST_CHECK(start_checks);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003703
Willy Tarreaubd741542010-03-16 18:46:54 +01003704/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003705 * Local variables:
3706 * c-indent-level: 8
3707 * c-basic-offset: 8
3708 * End:
3709 */