blob: 909bd52f22fb89a9bf342e2113aee809c4728224 [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 },
118 [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_EVAL_INIT },
119 [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_EVAL_INIT },
120 [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
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200140/*
141 * Convert check_status code to description
142 */
143const char *get_check_status_description(short check_status) {
144
145 const char *desc;
146
147 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200148 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200149 else
150 desc = NULL;
151
152 if (desc && *desc)
153 return desc;
154 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200155 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200156}
157
158/*
159 * Convert check_status code to short info
160 */
161const char *get_check_status_info(short check_status) {
162
163 const char *info;
164
165 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200166 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200167 else
168 info = NULL;
169
170 if (info && *info)
171 return info;
172 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200173 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200174}
175
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100176const char *get_analyze_status(short analyze_status) {
177
178 const char *desc;
179
180 if (analyze_status < HANA_STATUS_SIZE)
181 desc = analyze_statuses[analyze_status].desc;
182 else
183 desc = NULL;
184
185 if (desc && *desc)
186 return desc;
187 else
188 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
189}
190
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200191/*
Simon Horman4a741432013-02-23 15:35:38 +0900192 * Set check->status, update check->duration and fill check->result with
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200193 * an adequate CHK_RES_* value. The new check->health is computed based
194 * on the result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200195 *
196 * Show information in logs about failed health check if server is UP
197 * or succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200198 */
Simon Horman4a741432013-02-23 15:35:38 +0900199static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100200{
Simon Horman4a741432013-02-23 15:35:38 +0900201 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200202 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200203 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900204
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200205 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100206 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900207 check->desc[0] = '\0';
208 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200209 return;
210 }
211
Simon Horman4a741432013-02-23 15:35:38 +0900212 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200213 return;
214
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200215 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900216 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
217 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200218 } else
Simon Horman4a741432013-02-23 15:35:38 +0900219 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200220
Simon Horman4a741432013-02-23 15:35:38 +0900221 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200222 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900223 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200224
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100225 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900226 check->duration = -1;
227 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200228 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900229 check->duration = tv_ms_elapsed(&check->start, &now);
230 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200231 }
232
Willy Tarreau23964182014-05-20 20:56:30 +0200233 /* no change is expected if no state change occurred */
234 if (check->result == CHK_RES_NEUTRAL)
235 return;
236
Olivier Houchard0923fa42019-01-11 18:43:04 +0100237 /* If the check was really just sending a mail, it won't have an
238 * associated server, so we're done now.
239 */
240 if (!s)
241 return;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200242 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200243
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200244 switch (check->result) {
245 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200246 /* Failure to connect to the agent as a secondary check should not
247 * cause the server to be marked down.
248 */
249 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900250 (check->status >= HCHK_STATUS_L57DATA)) &&
Christopher Fauletb119a792018-05-02 12:12:45 +0200251 (check->health > 0)) {
Olivier Houchard7059c552019-03-08 18:49:32 +0100252 _HA_ATOMIC_ADD(&s->counters.failed_checks, 1);
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200253 report = 1;
254 check->health--;
255 if (check->health < check->rise)
256 check->health = 0;
257 }
258 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200259
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200260 case CHK_RES_PASSED:
261 case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */
262 if ((check->health < check->rise + check->fall - 1) &&
263 (check->result == CHK_RES_PASSED || check->health > 0)) {
264 report = 1;
265 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200266
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200267 if (check->health >= check->rise)
268 check->health = check->rise + check->fall - 1; /* OK now */
269 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200270
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200271 /* clear consecutive_errors if observing is enabled */
272 if (s->onerror)
273 s->consecutive_errors = 0;
274 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100275
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200276 default:
277 break;
278 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200279
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200280 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
281 (status != prev_status || report)) {
282 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200283 "%s check for %sserver %s/%s %s%s",
284 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200285 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100286 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100287 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200288 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200289
Emeric Brun5a133512017-10-19 14:42:30 +0200290 srv_append_status(&trash, s, check, -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200291
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100292 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200293 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
294 (check->health >= check->rise) ? check->fall : check->rise,
295 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200296
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200297 ha_warning("%s.\n", trash.area);
298 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
299 send_email_alert(s, LOG_INFO, "%s", trash.area);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200300 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200301}
302
Willy Tarreau4eec5472014-05-20 22:32:27 +0200303/* Marks the check <check>'s server down if the current check is already failed
304 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200305 */
Willy Tarreau4eec5472014-05-20 22:32:27 +0200306static void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307{
Simon Horman4a741432013-02-23 15:35:38 +0900308 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900309
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200310 /* The agent secondary check should only cause a server to be marked
311 * as down if check->status is HCHK_STATUS_L7STS, which indicates
312 * that the agent returned "fail", "stopped" or "down".
313 * The implication here is that failure to connect to the agent
314 * as a secondary check should not cause the server to be marked
315 * down. */
316 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
317 return;
318
Willy Tarreau4eec5472014-05-20 22:32:27 +0200319 if (check->health > 0)
320 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100321
Willy Tarreau4eec5472014-05-20 22:32:27 +0200322 /* We only report a reason for the check if we did not do so previously */
Emeric Brun5a133512017-10-19 14:42:30 +0200323 srv_set_stopped(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324}
325
Willy Tarreauaf549582014-05-16 17:37:50 +0200326/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200327 * it isn't in maintenance, it is not tracking a down server and other checks
328 * comply. The rule is simple : by default, a server is up, unless any of the
329 * following conditions is true :
330 * - health check failed (check->health < rise)
331 * - agent check failed (agent->health < rise)
332 * - the server tracks a down server (track && track->state == STOPPED)
333 * Note that if the server has a slowstart, it will switch to STARTING instead
334 * of RUNNING. Also, only the health checks support the nolb mode, so the
335 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200336 */
Willy Tarreau3e048382014-05-21 10:30:54 +0200337static void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200338{
Simon Horman4a741432013-02-23 15:35:38 +0900339 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100340
Emeric Brun52a91d32017-08-31 14:41:55 +0200341 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200342 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100343
Emeric Brun52a91d32017-08-31 14:41:55 +0200344 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200345 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100346
Willy Tarreau3e048382014-05-21 10:30:54 +0200347 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
348 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100349
Willy Tarreau3e048382014-05-21 10:30:54 +0200350 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
351 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200352
Emeric Brun52a91d32017-08-31 14:41:55 +0200353 if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING)
Willy Tarreau3e048382014-05-21 10:30:54 +0200354 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100355
Emeric Brun5a133512017-10-19 14:42:30 +0200356 srv_set_running(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100357}
358
Willy Tarreaudb58b792014-05-21 13:57:23 +0200359/* Marks the check <check> as valid and tries to set its server into stopping mode
360 * if it was running or starting, and provided it isn't in maintenance and other
361 * checks comply. The conditions for the server to be marked in stopping mode are
362 * the same as for it to be turned up. Also, only the health checks support the
363 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200364 */
Willy Tarreaudb58b792014-05-21 13:57:23 +0200365static void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200366{
Simon Horman4a741432013-02-23 15:35:38 +0900367 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100368
Emeric Brun52a91d32017-08-31 14:41:55 +0200369 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200370 return;
371
Willy Tarreaudb58b792014-05-21 13:57:23 +0200372 if (check->state & CHK_ST_AGENT)
373 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100374
Emeric Brun52a91d32017-08-31 14:41:55 +0200375 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreaudb58b792014-05-21 13:57:23 +0200376 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100377
Willy Tarreaudb58b792014-05-21 13:57:23 +0200378 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
379 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100380
Willy Tarreaudb58b792014-05-21 13:57:23 +0200381 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
382 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100383
Willy Tarreaub26881a2017-12-23 11:16:49 +0100384 srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100385}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200386
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100387/* note: use health_adjust() only, which first checks that the observe mode is
388 * enabled.
389 */
390void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100391{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100392 int failed;
393 int expire;
394
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100395 if (s->observe >= HANA_OBS_SIZE)
396 return;
397
Willy Tarreaubb956662013-01-24 00:37:39 +0100398 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100399 return;
400
401 switch (analyze_statuses[status].lr[s->observe - 1]) {
402 case 1:
403 failed = 1;
404 break;
405
406 case 2:
407 failed = 0;
408 break;
409
410 default:
411 return;
412 }
413
414 if (!failed) {
415 /* good: clear consecutive_errors */
416 s->consecutive_errors = 0;
417 return;
418 }
419
Olivier Houchard7059c552019-03-08 18:49:32 +0100420 _HA_ATOMIC_ADD(&s->consecutive_errors, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100421
422 if (s->consecutive_errors < s->consecutive_errors_limit)
423 return;
424
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100425 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
426 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100427
428 switch (s->onerror) {
429 case HANA_ONERR_FASTINTER:
430 /* force fastinter - nothing to do here as all modes force it */
431 break;
432
433 case HANA_ONERR_SUDDTH:
434 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900435 if (s->check.health > s->check.rise)
436 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100437
438 /* no break - fall through */
439
440 case HANA_ONERR_FAILCHK:
441 /* simulate a failed health check */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200442 set_server_check_status(&s->check, HCHK_STATUS_HANA,
443 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200444 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100445 break;
446
447 case HANA_ONERR_MARKDWN:
448 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900449 s->check.health = s->check.rise;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200450 set_server_check_status(&s->check, HCHK_STATUS_HANA,
451 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200452 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100453 break;
454
455 default:
456 /* write a warning? */
457 break;
458 }
459
460 s->consecutive_errors = 0;
Olivier Houchard7059c552019-03-08 18:49:32 +0100461 _HA_ATOMIC_ADD(&s->counters.failed_hana, 1);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100462
Simon Horman66183002013-02-23 10:16:43 +0900463 if (s->check.fastinter) {
464 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300465 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200466 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300467 /* requeue check task with new expire */
468 task_queue(s->check.task);
469 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100470 }
471}
472
Willy Tarreaua1dab552014-04-14 15:04:54 +0200473static int httpchk_build_status_header(struct server *s, char *buffer, int size)
Willy Tarreauef781042010-01-27 11:53:01 +0100474{
475 int sv_state;
476 int ratio;
477 int hlen = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800478 char addr[46];
479 char port[6];
Willy Tarreauef781042010-01-27 11:53:01 +0100480 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
481 "UP %d/%d", "UP",
482 "NOLB %d/%d", "NOLB",
483 "no check" };
484
485 memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24);
486 hlen += 24;
487
Willy Tarreauff5ae352013-12-11 20:36:34 +0100488 if (!(s->check.state & CHK_ST_ENABLED))
489 sv_state = 6;
Emeric Brun52a91d32017-08-31 14:41:55 +0200490 else if (s->cur_state != SRV_ST_STOPPED) {
Simon Horman58c32972013-11-25 10:46:38 +0900491 if (s->check.health == s->check.rise + s->check.fall - 1)
Willy Tarreauef781042010-01-27 11:53:01 +0100492 sv_state = 3; /* UP */
493 else
494 sv_state = 2; /* going down */
495
Emeric Brun52a91d32017-08-31 14:41:55 +0200496 if (s->cur_state == SRV_ST_STOPPING)
Willy Tarreauef781042010-01-27 11:53:01 +0100497 sv_state += 2;
498 } else {
Simon Horman125d0992013-02-24 17:23:38 +0900499 if (s->check.health)
Willy Tarreauef781042010-01-27 11:53:01 +0100500 sv_state = 1; /* going up */
501 else
502 sv_state = 0; /* DOWN */
503 }
504
Willy Tarreaua1dab552014-04-14 15:04:54 +0200505 hlen += snprintf(buffer + hlen, size - hlen,
Willy Tarreauef781042010-01-27 11:53:01 +0100506 srv_hlt_st[sv_state],
Emeric Brun52a91d32017-08-31 14:41:55 +0200507 (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
508 (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreauef781042010-01-27 11:53:01 +0100509
Joseph Lynch514061c2015-01-15 17:52:59 -0800510 addr_to_str(&s->addr, addr, sizeof(addr));
Willy Tarreau04276f32017-01-06 17:41:29 +0100511 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
512 snprintf(port, sizeof(port), "%u", s->svc_port);
513 else
514 *port = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800515
516 hlen += snprintf(buffer + hlen, size - hlen, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
517 addr, port, s->proxy->id, s->id,
Willy Tarreauef781042010-01-27 11:53:01 +0100518 global.node,
Emeric Brun52a91d32017-08-31 14:41:55 +0200519 (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
Willy Tarreauef781042010-01-27 11:53:01 +0100520 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
521 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
522 s->nbpend);
523
Emeric Brun52a91d32017-08-31 14:41:55 +0200524 if ((s->cur_state == SRV_ST_STARTING) &&
Willy Tarreauef781042010-01-27 11:53:01 +0100525 now.tv_sec < s->last_change + s->slowstart &&
526 now.tv_sec >= s->last_change) {
527 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
Willy Tarreaua1dab552014-04-14 15:04:54 +0200528 hlen += snprintf(buffer + hlen, size - hlen, "; throttle=%d%%", ratio);
Willy Tarreauef781042010-01-27 11:53:01 +0100529 }
530
531 buffer[hlen++] = '\r';
532 buffer[hlen++] = '\n';
533
534 return hlen;
535}
536
Willy Tarreau20a18342013-12-05 00:31:46 +0100537/* Check the connection. If an error has already been reported or the socket is
538 * closed, keep errno intact as it is supposed to contain the valid error code.
539 * If no error is reported, check the socket's error queue using getsockopt().
540 * Warning, this must be done only once when returning from poll, and never
541 * after an I/O error was attempted, otherwise the error queue might contain
542 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
543 * socket. Returns non-zero if an error was reported, zero if everything is
544 * clean (including a properly closed socket).
545 */
546static int retrieve_errno_from_socket(struct connection *conn)
547{
548 int skerr;
549 socklen_t lskerr = sizeof(skerr);
550
551 if (conn->flags & CO_FL_ERROR && ((errno && errno != EAGAIN) || !conn->ctrl))
552 return 1;
553
Willy Tarreau3c728722014-01-23 13:50:42 +0100554 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100555 return 0;
556
Willy Tarreau585744b2017-08-24 14:31:19 +0200557 if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
Willy Tarreau20a18342013-12-05 00:31:46 +0100558 errno = skerr;
559
560 if (errno == EAGAIN)
561 errno = 0;
562
563 if (!errno) {
564 /* we could not retrieve an error, that does not mean there is
565 * none. Just don't change anything and only report the prior
566 * error if any.
567 */
568 if (conn->flags & CO_FL_ERROR)
569 return 1;
570 else
571 return 0;
572 }
573
574 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
575 return 1;
576}
577
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100578/* Try to collect as much information as possible on the connection status,
579 * and adjust the server status accordingly. It may make use of <errno_bck>
580 * if non-null when the caller is absolutely certain of its validity (eg:
581 * checked just after a syscall). If the caller doesn't have a valid errno,
582 * it can pass zero, and retrieve_errno_from_socket() will be called to try
583 * to extract errno from the socket. If no error is reported, it will consider
584 * the <expired> flag. This is intended to be used when a connection error was
585 * reported in conn->flags or when a timeout was reported in <expired>. The
586 * function takes care of not updating a server status which was already set.
587 * All situations where at least one of <expired> or CO_FL_ERROR are set
588 * produce a status.
589 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200590static void chk_report_conn_err(struct check *check, int errno_bck, int expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100591{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200592 struct conn_stream *cs = check->cs;
593 struct connection *conn = cs_conn(cs);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100594 const char *err_msg;
Willy Tarreau83061a82018-07-13 11:56:34 +0200595 struct buffer *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200596 int step;
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200597 char *comment;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100598
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100599 if (check->result != CHK_RES_UNKNOWN)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100600 return;
601
602 errno = errno_bck;
Willy Tarreau00149122017-10-04 18:05:01 +0200603 if (conn && (!errno || errno == EAGAIN))
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100604 retrieve_errno_from_socket(conn);
605
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200606 if (conn && !(conn->flags & CO_FL_ERROR) &&
607 !(cs->flags & CS_FL_ERROR) && !expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100608 return;
609
610 /* we'll try to build a meaningful error message depending on the
611 * context of the error possibly present in conn->err_code, and the
612 * socket error possibly collected above. This is useful to know the
613 * exact step of the L6 layer (eg: SSL handshake).
614 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200615 chk = get_trash_chunk();
616
617 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormane16c1b32015-01-30 11:22:57 +0900618 step = tcpcheck_get_step_id(check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200619 if (!step)
620 chunk_printf(chk, " at initial connection step of tcp-check");
621 else {
622 chunk_printf(chk, " at step %d of tcp-check", step);
623 /* we were looking for a string */
624 if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_CONNECT) {
625 if (check->last_started_step->port)
626 chunk_appendf(chk, " (connect port %d)" ,check->last_started_step->port);
627 else
628 chunk_appendf(chk, " (connect)");
629 }
630 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) {
631 if (check->last_started_step->string)
Baptiste Assmann96a5c9b2015-05-01 08:09:29 +0200632 chunk_appendf(chk, " (expect string '%s')", check->last_started_step->string);
Willy Tarreau213c6782014-10-02 14:51:02 +0200633 else if (check->last_started_step->expect_regex)
634 chunk_appendf(chk, " (expect regex)");
635 }
636 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_SEND) {
637 chunk_appendf(chk, " (send)");
638 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200639
640 comment = tcpcheck_get_step_comment(check, step);
641 if (comment)
642 chunk_appendf(chk, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200643 }
644 }
645
Willy Tarreau00149122017-10-04 18:05:01 +0200646 if (conn && conn->err_code) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100647 if (errno && errno != EAGAIN)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200648 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno),
649 chk->area);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100650 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200651 chunk_printf(&trash, "%s%s", conn_err_code_str(conn),
652 chk->area);
653 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100654 }
655 else {
656 if (errno && errno != EAGAIN) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200657 chunk_printf(&trash, "%s%s", strerror(errno),
658 chk->area);
659 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100660 }
661 else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200662 err_msg = chk->area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100663 }
664 }
665
Willy Tarreau00149122017-10-04 18:05:01 +0200666 if (check->state & CHK_ST_PORT_MISS) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200667 /* NOTE: this is reported after <fall> tries */
668 chunk_printf(chk, "No port available for the TCP connection");
669 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
670 }
671
Willy Tarreau00149122017-10-04 18:05:01 +0200672 if (!conn) {
673 /* connection allocation error before the connection was established */
674 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
675 }
676 else if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L4_CONN)) == CO_FL_WAIT_L4_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100677 /* L4 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200678 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100679 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
680 else if (expired)
681 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200682
683 /*
684 * might be due to a server IP change.
685 * Let's trigger a DNS resolution if none are currently running.
686 */
Olivier Houchard0923fa42019-01-11 18:43:04 +0100687 if (check->server)
688 dns_trigger_resolution(check->server->dns_requester);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200689
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100690 }
691 else if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L6_CONN)) == CO_FL_WAIT_L6_CONN) {
692 /* L6 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200693 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100694 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
695 else if (expired)
696 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
697 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200698 else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100699 /* I/O error after connection was established and before we could diagnose */
700 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
701 }
702 else if (expired) {
703 /* connection established but expired check */
704 if (check->type == PR_O2_SSL3_CHK)
705 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
706 else /* HTTP, SMTP, ... */
707 set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg);
708 }
709
710 return;
711}
712
Olivier Houchard5c110b92018-08-14 17:04:58 +0200713/* This function checks if any I/O is wanted, and if so, attempts to do so */
714static struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned short state)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200715{
Olivier Houchard26e1a8f2018-09-12 15:15:12 +0200716 struct check *check = ctx;
717 struct conn_stream *cs = check->cs;
Olivier Houchard0923fa42019-01-11 18:43:04 +0100718 struct email_alertq *q = container_of(check, typeof(*q), check);
Olivier Houchardbc89ad82019-07-09 17:28:51 +0200719 int ret = 0;
Olivier Houchard4501c3e2018-08-28 19:36:18 +0200720
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100721 if (!(check->wait_list.events & SUB_RETRY_SEND))
Olivier Houchardbc89ad82019-07-09 17:28:51 +0200722 ret = wake_srv_chk(cs);
723 if (ret == 0 && !(check->wait_list.events & SUB_RETRY_RECV)) {
Olivier Houchard0923fa42019-01-11 18:43:04 +0100724 if (check->server)
725 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
726 else
727 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200728 __event_srv_chk_r(cs);
Olivier Houchard0923fa42019-01-11 18:43:04 +0100729 if (check->server)
730 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
731 else
732 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200733 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200734 return NULL;
735}
736
737/* same as above but protected by the server lock.
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100738 *
739 * Please do NOT place any return statement in this function and only leave
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200740 * via the out label. NOTE THAT THIS FUNCTION DOESN'T LOCK, YOU PROBABLY WANT
741 * TO USE event_srv_chk_w() instead.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200742 */
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200743static void __event_srv_chk_w(struct conn_stream *cs)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200744{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200745 struct connection *conn = cs->conn;
746 struct check *check = cs->data;
Simon Horman4a741432013-02-23 15:35:38 +0900747 struct server *s = check->server;
Simon Horman4a741432013-02-23 15:35:38 +0900748 struct task *t = check->task;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200749
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100750 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100751 goto out_wakeup;
752
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200753 if (conn->flags & CO_FL_HANDSHAKE) {
Olivier Houchard06f68112019-03-28 17:32:42 +0100754 if (!(conn->flags & CO_FL_ERROR))
755 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200756 goto out;
757 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100758
Willy Tarreau20a18342013-12-05 00:31:46 +0100759 if (retrieve_errno_from_socket(conn)) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200760 chk_report_conn_err(check, errno, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100761 goto out_wakeup;
762 }
Krzysztof Piotr Oledzki6492db52010-01-02 22:03:01 +0100763
Willy Tarreaubbae3f02017-08-30 09:59:52 +0200764 if (conn->flags & CO_FL_SOCK_WR_SH) {
Willy Tarreau20a18342013-12-05 00:31:46 +0100765 /* if the output is closed, we can't do anything */
766 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200767 chk_report_conn_err(check, 0, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100768 goto out_wakeup;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200769 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200770
Willy Tarreau06559ac2013-12-05 01:53:08 +0100771 /* here, we know that the connection is established. That's enough for
772 * a pure TCP check.
773 */
774 if (!check->type)
775 goto out_wakeup;
776
Willy Tarreauc09572f2017-10-04 11:58:22 +0200777 /* wake() will take care of calling tcpcheck_main() */
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100778 if (check->type == PR_O2_TCPCHK_CHK)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200779 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200780
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200781 if (b_data(&check->bo)) {
Olivier Houcharded0f2072018-08-16 15:41:52 +0200782 cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200783 b_realign_if_empty(&check->bo);
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200784 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200785 chk_report_conn_err(check, errno, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100786 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200788 if (b_data(&check->bo)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100789 conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200790 goto out;
791 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100792 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200793
Willy Tarreau59093802019-09-05 18:24:46 +0200794 if (!b_data(&check->bo))
795 conn_xprt_stop_send(conn);
796
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100797 /* full request sent, we allow up to <timeout.check> if nonzero for a response */
798 if (s->proxy->timeout.check) {
799 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
800 task_queue(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801 }
Olivier Houchard53216e72018-10-10 15:46:36 +0200802 goto out;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100803
Willy Tarreau83749182007-04-15 20:56:27 +0200804 out_wakeup:
Willy Tarreaufdccded2008-08-29 18:19:04 +0200805 task_wakeup(t, TASK_WOKEN_IO);
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200806 out:
807 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200808}
809
Willy Tarreaubaaee002006-06-26 02:48:02 +0200810/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200811 * This function is used only for server health-checks. It handles the server's
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +0200812 * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls
Simon Horman4a741432013-02-23 15:35:38 +0900813 * set_server_check_status() to update check->status, check->duration
814 * and check->result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200815
816 * The set_server_check_status function is called with HCHK_STATUS_L7OKD if
817 * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server
818 * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in
819 * response to an SSL HELLO (the principle is that this is enough to
820 * distinguish between an SSL server and a pure TCP relay). All other cases will
821 * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP,
822 * etc.
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100823 *
824 * Please do NOT place any return statement in this function and only leave
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200825 * via the out label.
826 *
827 * This must be called with the server lock held.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828 */
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200829static void __event_srv_chk_r(struct conn_stream *cs)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200830{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200831 struct connection *conn = cs->conn;
832 struct check *check = cs->data;
Simon Horman4a741432013-02-23 15:35:38 +0900833 struct server *s = check->server;
834 struct task *t = check->task;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200835 char *desc;
Willy Tarreau03938182010-03-17 21:52:07 +0100836 int done;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +0200837 unsigned short msglen;
Willy Tarreau83749182007-04-15 20:56:27 +0200838
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100839 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau83749182007-04-15 20:56:27 +0200840 goto out_wakeup;
Willy Tarreau83749182007-04-15 20:56:27 +0200841
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200842 if (conn->flags & CO_FL_HANDSHAKE) {
Olivier Houchard06f68112019-03-28 17:32:42 +0100843 if (!(conn->flags & CO_FL_ERROR))
844 cs->conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200845 goto out;
846 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200847
Willy Tarreauc09572f2017-10-04 11:58:22 +0200848 /* wake() will take care of calling tcpcheck_main() */
Willy Tarreau62ac84f2017-11-05 10:11:13 +0100849 if (check->type == PR_O2_TCPCHK_CHK)
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200850 goto out;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200851
Willy Tarreau83749182007-04-15 20:56:27 +0200852 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
853 * but the connection was closed on the remote end. Fortunately, recv still
854 * works correctly and we don't need to do the getsockopt() on linux.
855 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000856
857 /* Set buffer to point to the end of the data already read, and check
858 * that there is free space remaining. If the buffer is full, proceed
859 * with running the checks without attempting another socket read.
860 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000861
Willy Tarreau03938182010-03-17 21:52:07 +0100862 done = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +0000863
Olivier Houchard511efea2018-08-16 15:30:32 +0200864 cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0);
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200865 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) {
Willy Tarreau03938182010-03-17 21:52:07 +0100866 done = 1;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200867 if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) {
Willy Tarreauf1503172012-09-28 19:39:36 +0200868 /* Report network errors only if we got no other data. Otherwise
869 * we'll let the upper layers decide whether the response is OK
870 * or not. It is very common that an RST sent by the server is
871 * reported as an error just after the last data chunk.
872 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200873 chk_report_conn_err(check, errno, 0);
Willy Tarreauc1a07962010-03-16 20:55:43 +0100874 goto out_wakeup;
875 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200876 }
877
Willy Tarreau0f0393f2019-09-24 10:43:03 +0200878 /* the rest of the code below expects the connection to be ready! */
879 if (!(conn->flags & CO_FL_CONNECTED) && !done)
880 goto wait_more_data;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100881
Willy Tarreau03938182010-03-17 21:52:07 +0100882 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200883 * Terminate string in b_head(&check->bi) buffer.
Willy Tarreau03938182010-03-17 21:52:07 +0100884 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200885 if (b_data(&check->bi) < b_size(&check->bi))
886 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100887 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200888 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100889 done = 1; /* buffer full, don't wait for more data */
890 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200891
Nick Chalk57b1bf72010-03-16 15:50:46 +0000892 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +0900893 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +0200894 case PR_O2_HTTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200895 if (!done && b_data(&check->bi) < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100896 goto wait_more_data;
897
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100898 /* Check if the server speaks HTTP 1.X */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200899 if ((b_data(&check->bi) < strlen("HTTP/1.0 000\r")) ||
900 (memcmp(b_head(&check->bi), "HTTP/1.", 7) != 0 ||
901 (*(b_head(&check->bi) + 12) != ' ' && *(b_head(&check->bi) + 12) != '\r')) ||
902 !isdigit((unsigned char) *(b_head(&check->bi) + 9)) || !isdigit((unsigned char) *(b_head(&check->bi) + 10)) ||
903 !isdigit((unsigned char) *(b_head(&check->bi) + 11))) {
904 cut_crlf(b_head(&check->bi));
905 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200906
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100907 goto out_wakeup;
908 }
909
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200910 check->code = str2uic(b_head(&check->bi) + 9);
911 desc = ltrim(b_head(&check->bi) + 12, ' ');
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200912
Willy Tarreaubd741542010-03-16 18:46:54 +0100913 if ((s->proxy->options & PR_O_DISABLE404) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200914 (s->next_state != SRV_ST_STOPPED) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +0000915 /* 404 may be accepted as "stopping" only if the server was up */
916 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900917 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000918 }
Willy Tarreaubd741542010-03-16 18:46:54 +0100919 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
920 /* Run content verification check... We know we have at least 13 chars */
921 if (!httpchk_expect(s, done))
922 goto wait_more_data;
923 }
924 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200925 else if (*(b_head(&check->bi) + 9) == '2' || *(b_head(&check->bi) + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +0100926 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900927 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +0100928 }
Nick Chalk57b1bf72010-03-16 15:50:46 +0000929 else {
930 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900931 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000932 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200933 break;
934
935 case PR_O2_SSL3_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200936 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +0100937 goto wait_more_data;
938
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100939 /* Check for SSLv3 alert or handshake */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200940 if ((b_data(&check->bi) >= 5) && (*b_head(&check->bi) == 0x15 || *b_head(&check->bi) == 0x16))
Simon Horman4a741432013-02-23 15:35:38 +0900941 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200942 else
Simon Horman4a741432013-02-23 15:35:38 +0900943 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200944 break;
945
946 case PR_O2_SMTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200947 if (!done && b_data(&check->bi) < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100948 goto wait_more_data;
949
Willy Tarreau5488a622019-08-06 16:26:31 +0200950 /* do not reset when closing, servers don't like this */
951 if (conn_ctrl_ready(cs->conn))
952 fdtab[cs->conn->handle.fd].linger_risk = 0;
953
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200954 /* Check if the server speaks SMTP */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200955 if ((b_data(&check->bi) < strlen("000\r")) ||
956 (*(b_head(&check->bi) + 3) != ' ' && *(b_head(&check->bi) + 3) != '\r') ||
957 !isdigit((unsigned char) *b_head(&check->bi)) || !isdigit((unsigned char) *(b_head(&check->bi) + 1)) ||
958 !isdigit((unsigned char) *(b_head(&check->bi) + 2))) {
959 cut_crlf(b_head(&check->bi));
960 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200961 goto out_wakeup;
962 }
963
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200964 check->code = str2uic(b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200965
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200966 desc = ltrim(b_head(&check->bi) + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200967 cut_crlf(desc);
968
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100969 /* Check for SMTP code 2xx (should be 250) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200970 if (*b_head(&check->bi) == '2')
Simon Horman4a741432013-02-23 15:35:38 +0900971 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200972 else
Simon Horman4a741432013-02-23 15:35:38 +0900973 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200974 break;
975
Simon Hormana2b9dad2013-02-12 10:45:54 +0900976 case PR_O2_LB_AGENT_CHK: {
Willy Tarreau81f5d942013-12-09 20:51:51 +0100977 int status = HCHK_STATUS_CHECKED;
978 const char *hs = NULL; /* health status */
979 const char *as = NULL; /* admin status */
980 const char *ps = NULL; /* performance status */
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200981 const char *cs = NULL; /* maxconn */
Willy Tarreau81f5d942013-12-09 20:51:51 +0100982 const char *err = NULL; /* first error to report */
983 const char *wrn = NULL; /* first warning to report */
984 char *cmd, *p;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900985
Willy Tarreau81f5d942013-12-09 20:51:51 +0100986 /* We're getting an agent check response. The agent could
987 * have been disabled in the mean time with a long check
988 * still pending. It is important that we ignore the whole
989 * response.
990 */
991 if (!(check->server->agent.state & CHK_ST_ENABLED))
992 break;
993
994 /* The agent supports strings made of a single line ended by the
995 * first CR ('\r') or LF ('\n'). This line is composed of words
996 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
997 * line may optionally contained a description of a state change
998 * after a sharp ('#'), which is only considered if a health state
999 * is announced.
1000 *
1001 * Words may be composed of :
1002 * - a numeric weight suffixed by the percent character ('%').
1003 * - a health status among "up", "down", "stopped", and "fail".
1004 * - an admin status among "ready", "drain", "maint".
1005 *
1006 * These words may appear in any order. If multiple words of the
1007 * same category appear, the last one wins.
1008 */
1009
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001010 p = b_head(&check->bi);
Willy Tarreau9809b782013-12-11 21:40:11 +01001011 while (*p && *p != '\n' && *p != '\r')
1012 p++;
1013
1014 if (!*p) {
1015 if (!done)
1016 goto wait_more_data;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001017
Willy Tarreau9809b782013-12-11 21:40:11 +01001018 /* at least inform the admin that the agent is mis-behaving */
1019 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
1020 break;
1021 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001022
Willy Tarreau9809b782013-12-11 21:40:11 +01001023 *p = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001024 cmd = b_head(&check->bi);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001025
Willy Tarreau81f5d942013-12-09 20:51:51 +01001026 while (*cmd) {
1027 /* look for next word */
1028 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
1029 cmd++;
1030 continue;
1031 }
Simon Horman671b6f02013-11-25 10:46:39 +09001032
Willy Tarreau81f5d942013-12-09 20:51:51 +01001033 if (*cmd == '#') {
1034 /* this is the beginning of a health status description,
1035 * skip the sharp and blanks.
1036 */
1037 cmd++;
1038 while (*cmd == '\t' || *cmd == ' ')
1039 cmd++;
Simon Horman671b6f02013-11-25 10:46:39 +09001040 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001041 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001042
1043 /* find the end of the word so that we have a null-terminated
1044 * word between <cmd> and <p>.
1045 */
1046 p = cmd + 1;
1047 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1048 p++;
1049 if (*p)
1050 *p++ = 0;
1051
1052 /* first, health statuses */
1053 if (strcasecmp(cmd, "up") == 0) {
1054 check->health = check->rise + check->fall - 1;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001055 status = HCHK_STATUS_L7OKD;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001056 hs = cmd;
1057 }
1058 else if (strcasecmp(cmd, "down") == 0) {
1059 check->health = 0;
1060 status = HCHK_STATUS_L7STS;
1061 hs = cmd;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001062 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001063 else if (strcasecmp(cmd, "stopped") == 0) {
1064 check->health = 0;
1065 status = HCHK_STATUS_L7STS;
1066 hs = cmd;
1067 }
1068 else if (strcasecmp(cmd, "fail") == 0) {
1069 check->health = 0;
1070 status = HCHK_STATUS_L7STS;
1071 hs = cmd;
1072 }
1073 /* admin statuses */
1074 else if (strcasecmp(cmd, "ready") == 0) {
1075 as = cmd;
1076 }
1077 else if (strcasecmp(cmd, "drain") == 0) {
1078 as = cmd;
1079 }
1080 else if (strcasecmp(cmd, "maint") == 0) {
1081 as = cmd;
1082 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001083 /* try to parse a weight here and keep the last one */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001084 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1085 ps = cmd;
1086 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001087 /* try to parse a maxconn here */
1088 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1089 cs = cmd;
1090 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001091 else {
1092 /* keep a copy of the first error */
1093 if (!err)
1094 err = cmd;
1095 }
1096 /* skip to next word */
1097 cmd = p;
1098 }
1099 /* here, cmd points either to \0 or to the beginning of a
1100 * description. Skip possible leading spaces.
1101 */
1102 while (*cmd == ' ' || *cmd == '\n')
1103 cmd++;
1104
1105 /* First, update the admin status so that we avoid sending other
1106 * possibly useless warnings and can also update the health if
1107 * present after going back up.
1108 */
1109 if (as) {
1110 if (strcasecmp(as, "drain") == 0)
1111 srv_adm_set_drain(check->server);
1112 else if (strcasecmp(as, "maint") == 0)
1113 srv_adm_set_maint(check->server);
1114 else
1115 srv_adm_set_ready(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001116 }
1117
Willy Tarreau81f5d942013-12-09 20:51:51 +01001118 /* now change weights */
1119 if (ps) {
1120 const char *msg;
1121
1122 msg = server_parse_weight_change_request(s, ps);
1123 if (!wrn || !*wrn)
1124 wrn = msg;
1125 }
1126
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001127 if (cs) {
1128 const char *msg;
1129
1130 cs += strlen("maxconn:");
1131
1132 msg = server_parse_maxconn_change_request(s, cs);
1133 if (!wrn || !*wrn)
1134 wrn = msg;
1135 }
1136
Willy Tarreau81f5d942013-12-09 20:51:51 +01001137 /* and finally health status */
1138 if (hs) {
1139 /* We'll report some of the warnings and errors we have
1140 * here. Down reports are critical, we leave them untouched.
1141 * Lack of report, or report of 'UP' leaves the room for
1142 * ERR first, then WARN.
Simon Hormana2b9dad2013-02-12 10:45:54 +09001143 */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001144 const char *msg = cmd;
Willy Tarreau83061a82018-07-13 11:56:34 +02001145 struct buffer *t;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001146
1147 if (!*msg || status == HCHK_STATUS_L7OKD) {
1148 if (err && *err)
1149 msg = err;
1150 else if (wrn && *wrn)
1151 msg = wrn;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001152 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001153
1154 t = get_trash_chunk();
1155 chunk_printf(t, "via agent : %s%s%s%s",
1156 hs, *msg ? " (" : "",
1157 msg, *msg ? ")" : "");
1158
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001159 set_server_check_status(check, status, t->area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001160 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001161 else if (err && *err) {
1162 /* No status change but we'd like to report something odd.
1163 * Just report the current state and copy the message.
1164 */
1165 chunk_printf(&trash, "agent reports an error : %s", err);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001166 set_server_check_status(check, status/*check->status*/,
1167 trash.area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001168
Willy Tarreau81f5d942013-12-09 20:51:51 +01001169 }
1170 else if (wrn && *wrn) {
1171 /* No status change but we'd like to report something odd.
1172 * Just report the current state and copy the message.
1173 */
1174 chunk_printf(&trash, "agent warns : %s", wrn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001175 set_server_check_status(check, status/*check->status*/,
1176 trash.area);
Willy Tarreau81f5d942013-12-09 20:51:51 +01001177 }
1178 else
1179 set_server_check_status(check, status, NULL);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001180 break;
1181 }
1182
Willy Tarreau1620ec32011-08-06 17:05:02 +02001183 case PR_O2_PGSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001184 if (!done && b_data(&check->bi) < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001185 goto wait_more_data;
1186
Willy Tarreau5488a622019-08-06 16:26:31 +02001187 /* do not reset when closing, servers don't like this */
1188 if (conn_ctrl_ready(cs->conn))
1189 fdtab[cs->conn->handle.fd].linger_risk = 0;
1190
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001191 if (b_head(&check->bi)[0] == 'R') {
Simon Horman4a741432013-02-23 15:35:38 +09001192 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001193 }
1194 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001195 if ((b_head(&check->bi)[0] == 'E') && (b_head(&check->bi)[5]!=0) && (b_head(&check->bi)[6]!=0))
1196 desc = &b_head(&check->bi)[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001197 else
1198 desc = "PostgreSQL unknown error";
1199
Simon Horman4a741432013-02-23 15:35:38 +09001200 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001201 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001202 break;
1203
1204 case PR_O2_REDIS_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001205 if (!done && b_data(&check->bi) < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001206 goto wait_more_data;
1207
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001208 if (strcmp(b_head(&check->bi), "+PONG\r\n") == 0) {
Simon Horman4a741432013-02-23 15:35:38 +09001209 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001210 }
1211 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001212 set_server_check_status(check, HCHK_STATUS_L7STS, b_head(&check->bi));
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001213 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001214 break;
1215
1216 case PR_O2_MYSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001217 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001218 goto wait_more_data;
1219
Willy Tarreau5488a622019-08-06 16:26:31 +02001220 /* do not reset when closing, servers don't like this */
1221 if (conn_ctrl_ready(cs->conn))
1222 fdtab[cs->conn->handle.fd].linger_risk = 0;
1223
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001224 if (s->proxy->check_len == 0) { // old mode
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001225 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001226 /* We set the MySQL Version in description for information purpose
1227 * FIXME : it can be cool to use MySQL Version for other purpose,
1228 * like mark as down old MySQL server.
1229 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001230 if (b_data(&check->bi) > 51) {
1231 desc = ltrim(b_head(&check->bi) + 5, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001232 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001233 }
1234 else {
1235 if (!done)
1236 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001237
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001238 /* it seems we have a OK packet but without a valid length,
1239 * it must be a protocol error
1240 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001241 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001242 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001243 }
1244 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001245 /* An error message is attached in the Error packet */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001246 desc = ltrim(b_head(&check->bi) + 7, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001247 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001248 }
1249 } else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001250 unsigned int first_packet_len = ((unsigned int) *b_head(&check->bi)) +
1251 (((unsigned int) *(b_head(&check->bi) + 1)) << 8) +
1252 (((unsigned int) *(b_head(&check->bi) + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001253
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001254 if (b_data(&check->bi) == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001255 /* MySQL Error packet always begin with field_count = 0xff */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001256 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001257 /* We have only one MySQL packet and it is a Handshake Initialization packet
1258 * but we need to have a second packet to know if it is alright
1259 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001260 if (!done && b_data(&check->bi) < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001261 goto wait_more_data;
1262 }
1263 else {
1264 /* We have only one packet and it is an Error packet,
1265 * an error message is attached, so we can display it
1266 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001267 desc = &b_head(&check->bi)[7];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 //ha_warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001269 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001270 }
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001271 } else if (b_data(&check->bi) > first_packet_len + 4) {
1272 unsigned int second_packet_len = ((unsigned int) *(b_head(&check->bi) + first_packet_len + 4)) +
1273 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 5)) << 8) +
1274 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001275
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001276 if (b_data(&check->bi) == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001277 /* We have 2 packets and that's good */
1278 /* Check if the second packet is a MySQL Error packet or not */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001279 if (*(b_head(&check->bi) + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001280 /* No error packet */
1281 /* We set the MySQL Version in description for information purpose */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001282 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 //ha_warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001284 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001285 }
1286 else {
1287 /* An error message is attached in the Error packet
1288 * so we can display it ! :)
1289 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001290 desc = &b_head(&check->bi)[first_packet_len+11];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 //ha_warning("2packetERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001292 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001293 }
1294 }
1295 }
1296 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001297 if (!done)
1298 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001299
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001300 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001301 * it must be a protocol error
1302 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001303 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001304 //ha_warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001305 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001306 }
1307 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001308 break;
1309
1310 case PR_O2_LDAP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001311 if (!done && b_data(&check->bi) < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001312 goto wait_more_data;
1313
1314 /* Check if the server speaks LDAP (ASN.1/BER)
1315 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1316 * http://tools.ietf.org/html/rfc4511
1317 */
1318
1319 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1320 * LDAPMessage: 0x30: SEQUENCE
1321 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001322 if ((b_data(&check->bi) < 14) || (*(b_head(&check->bi)) != '\x30')) {
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 }
1325 else {
1326 /* size of LDAPMessage */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001327 msglen = (*(b_head(&check->bi) + 1) & 0x80) ? (*(b_head(&check->bi) + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001328
1329 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1330 * messageID: 0x02 0x01 0x01: INTEGER 1
1331 * protocolOp: 0x61: bindResponse
1332 */
1333 if ((msglen > 2) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001334 (memcmp(b_head(&check->bi) + 2 + msglen, "\x02\x01\x01\x61", 4) != 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 /* size of bindResponse */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001340 msglen += (*(b_head(&check->bi) + msglen + 6) & 0x80) ? (*(b_head(&check->bi) + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001341
1342 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1343 * ldapResult: 0x0a 0x01: ENUMERATION
1344 */
1345 if ((msglen > 4) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001346 (memcmp(b_head(&check->bi) + 7 + msglen, "\x0a\x01", 2) != 0)) {
Simon Horman4a741432013-02-23 15:35:38 +09001347 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001348 goto out_wakeup;
1349 }
1350
1351 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1352 * resultCode
1353 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001354 check->code = *(b_head(&check->bi) + msglen + 9);
Simon Horman4a741432013-02-23 15:35:38 +09001355 if (check->code) {
1356 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 +02001357 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001358 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001359 }
1360 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001361 break;
1362
Christopher Fauletba7bc162016-11-07 21:07:38 +01001363 case PR_O2_SPOP_CHK: {
1364 unsigned int framesz;
1365 char err[HCHK_DESC_LEN];
1366
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001367 if (!done && b_data(&check->bi) < 4)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001368 goto wait_more_data;
1369
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001370 memcpy(&framesz, b_head(&check->bi), 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001371 framesz = ntohl(framesz);
1372
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001373 if (!done && b_data(&check->bi) < (4+framesz))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001374 goto wait_more_data;
1375
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001376 if (!spoe_handle_healthcheck_response(b_head(&check->bi)+4, framesz, err, HCHK_DESC_LEN-1))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001377 set_server_check_status(check, HCHK_STATUS_L7OKD, "SPOA server is ok");
1378 else
1379 set_server_check_status(check, HCHK_STATUS_L7STS, err);
1380 break;
1381 }
1382
Willy Tarreau1620ec32011-08-06 17:05:02 +02001383 default:
Willy Tarreau4c1a2b32019-09-05 18:43:22 +02001384 /* good connection is enough for pure TCP check */
1385 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
1386 if (check->use_ssl)
1387 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
1388 else
1389 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
1390 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001391 break;
1392 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001393
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001394 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001395 /* collect possible new errors */
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001396 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001397 chk_report_conn_err(check, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001398
Nick Chalk57b1bf72010-03-16 15:50:46 +00001399 /* Reset the check buffer... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001400 *b_head(&check->bi) = '\0';
1401 b_reset(&check->bi);
Nick Chalk57b1bf72010-03-16 15:50:46 +00001402
Steven Davidovitz544d4812017-03-08 11:06:20 -08001403 /* Close the connection... We still attempt to nicely close if,
1404 * for instance, SSL needs to send a "close notify." Later, we perform
1405 * a hard close and reset the connection if some data are pending,
1406 * otherwise we end up with many TIME_WAITs and eat all the source port
1407 * range quickly. To avoid sending RSTs all the time, we first try to
1408 * drain pending data.
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001409 */
Olivier Houchard6c7e96a2019-07-02 16:35:18 +02001410 /* Call cs_shutr() first, to add the CO_FL_SOCK_RD_SH flag on the
1411 * connection, to make sure cs_shutw() will not lead to a shutdown()
1412 * that would provoke TIME_WAITs.
1413 */
1414 cs_shutr(cs, CS_SHR_DRAIN);
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001415 cs_shutw(cs, CS_SHW_NORMAL);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001416
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001417 /* OK, let's not stay here forever */
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001418 if (check->result == CHK_RES_FAILED)
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001419 conn->flags |= CO_FL_ERROR;
1420
Willy Tarreaufdccded2008-08-29 18:19:04 +02001421 task_wakeup(t, TASK_WOKEN_IO);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001422out:
Willy Tarreau3267d362012-08-17 23:53:56 +02001423 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001424
1425 wait_more_data:
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001426 cs->conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001427 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001428}
1429
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001430/*
1431 * This function is used only for server health-checks. It handles connection
1432 * status updates including errors. If necessary, it wakes the check task up.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001433 * It returns 0 on normal cases, <0 if at least one close() has happened on the
1434 * connection (eg: reconnect).
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001435 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001436static int wake_srv_chk(struct conn_stream *cs)
Willy Tarreau20bea422012-07-06 12:00:49 +02001437{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001438 struct connection *conn = cs->conn;
1439 struct check *check = cs->data;
Olivier Houchard0923fa42019-01-11 18:43:04 +01001440 struct email_alertq *q = container_of(check, typeof(*q), check);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001441 int ret = 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001442
Olivier Houchard0923fa42019-01-11 18:43:04 +01001443 if (check->server)
1444 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
1445 else
1446 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001447
Willy Tarreauc09572f2017-10-04 11:58:22 +02001448 /* we may have to make progress on the TCP checks */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001449 if (check->type == PR_O2_TCPCHK_CHK) {
1450 ret = tcpcheck_main(check);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001451 cs = check->cs;
Willy Tarreau543abd42018-09-20 11:25:12 +02001452 conn = cs->conn;
Willy Tarreauc5940392019-09-05 17:38:40 +02001453 } else {
1454 if (!(check->wait_list.events & SUB_RETRY_SEND))
1455 __event_srv_chk_w(cs);
1456 if (!(check->wait_list.events & SUB_RETRY_RECV))
1457 __event_srv_chk_r(cs);
1458 }
Willy Tarreauc09572f2017-10-04 11:58:22 +02001459
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001460 if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001461 /* We may get error reports bypassing the I/O handlers, typically
1462 * the case when sending a pure TCP check which fails, then the I/O
1463 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001464 * main processing task so let's simply wake it up. If we get here,
1465 * we expect errno to still be valid.
1466 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001467 chk_report_conn_err(check, errno, 0);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001468 task_wakeup(check->task, TASK_WOKEN_IO);
1469 }
Olivier Houchard53216e72018-10-10 15:46:36 +02001470 else if (!(conn->flags & CO_FL_HANDSHAKE) && !check->type) {
Willy Tarreau3be293f2014-02-05 18:31:24 +01001471 /* we may get here if only a connection probe was required : we
1472 * don't have any data to send nor anything expected in response,
1473 * so the completion of the connection establishment is enough.
1474 */
1475 task_wakeup(check->task, TASK_WOKEN_IO);
1476 }
Willy Tarreau2d351b62013-12-05 02:36:25 +01001477
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001478 if (check->result != CHK_RES_UNKNOWN) {
Christopher Faulet774c4862019-01-21 14:15:50 +01001479 /* Check complete or aborted. If connection not yet closed do it
1480 * now and wake the check task up to be sure the result is
1481 * handled ASAP. */
Willy Tarreaud85c4852015-03-13 00:40:28 +01001482 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02001483 cs_close(cs);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001484 ret = -1;
Olivier Houchardf4949572019-07-02 17:42:22 +02001485 /* We may have been scheduled to run, and the
1486 * I/O handler expects to have a cs, so remove
1487 * the tasklet
1488 */
1489 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Christopher Faulet774c4862019-01-21 14:15:50 +01001490 task_wakeup(check->task, TASK_WOKEN_IO);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001491 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001492
Olivier Houchard0923fa42019-01-11 18:43:04 +01001493 if (check->server)
1494 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
1495 else
1496 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001497
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001498 /* if a connection got replaced, we must absolutely prevent the connection
1499 * handler from touching its fd, and perform the FD polling updates ourselves
1500 */
1501 if (ret < 0)
1502 conn_cond_update_polling(conn);
1503
1504 return ret;
Willy Tarreau20bea422012-07-06 12:00:49 +02001505}
1506
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001507struct data_cb check_conn_cb = {
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001508 .wake = wake_srv_chk,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01001509 .name = "CHCK",
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001510};
1511
Willy Tarreaubaaee002006-06-26 02:48:02 +02001512/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001513 * updates the server's weight during a warmup stage. Once the final weight is
1514 * reached, the task automatically stops. Note that any server status change
1515 * must have updated s->last_change accordingly.
1516 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001517static struct task *server_warmup(struct task *t, void *context, unsigned short state)
Willy Tarreau2e993902011-10-31 11:53:20 +01001518{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001519 struct server *s = context;
Willy Tarreau2e993902011-10-31 11:53:20 +01001520
1521 /* by default, plan on stopping the task */
1522 t->expire = TICK_ETERNITY;
Emeric Brun52a91d32017-08-31 14:41:55 +02001523 if ((s->next_admin & SRV_ADMF_MAINT) ||
1524 (s->next_state != SRV_ST_STARTING))
Willy Tarreau2e993902011-10-31 11:53:20 +01001525 return t;
1526
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001527 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
1528
Willy Tarreau892337c2014-05-13 23:41:20 +02001529 /* recalculate the weights and update the state */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001530 server_recalc_eweight(s, 1);
Willy Tarreau2e993902011-10-31 11:53:20 +01001531
1532 /* probably that we can refill this server with a bit more connections */
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001533 pendconn_grab_from_px(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001534
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001535 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1536
Willy Tarreau2e993902011-10-31 11:53:20 +01001537 /* get back there in 1 second or 1/20th of the slowstart interval,
1538 * whichever is greater, resulting in small 5% steps.
1539 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001540 if (s->next_state == SRV_ST_STARTING)
Willy Tarreau2e993902011-10-31 11:53:20 +01001541 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1542 return t;
1543}
1544
Willy Tarreau894c6422017-10-04 15:58:52 +02001545/* returns the first NON-COMMENT tcp-check rule from list <list> or NULL if
1546 * none was found.
1547 */
1548static struct tcpcheck_rule *get_first_tcpcheck_rule(struct list *list)
1549{
1550 struct tcpcheck_rule *r;
1551
1552 list_for_each_entry(r, list, list) {
1553 if (r->action != TCPCHK_ACT_COMMENT)
1554 return r;
1555 }
1556 return NULL;
1557}
1558
Willy Tarreau2e993902011-10-31 11:53:20 +01001559/*
Simon Horman98637e52014-06-20 12:30:16 +09001560 * establish a server health-check that makes use of a connection.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001561 *
1562 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001563 * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called
1564 * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called
1565 * - SF_ERR_SRVTO if there are no more servers
1566 * - SF_ERR_SRVCL if the connection was refused by the server
1567 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1568 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1569 * - SF_ERR_INTERNAL for any other purely internal errors
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001570 * - 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 +01001571 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001572 * Note that we try to prevent the network stack from sending the ACK during the
1573 * connect() when a pure TCP check is used (without PROXY protocol).
1574 */
Simon Horman98637e52014-06-20 12:30:16 +09001575static int connect_conn_chk(struct task *t)
Simon Hormanb00d17a2014-06-13 16:18:16 +09001576{
1577 struct check *check = t->context;
1578 struct server *s = check->server;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001579 struct conn_stream *cs = check->cs;
1580 struct connection *conn = cs_conn(cs);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001581 struct protocol *proto;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001582 struct tcpcheck_rule *tcp_rule = NULL;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001583 int ret;
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001584 int connflags = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001585
Willy Tarreau00149122017-10-04 18:05:01 +02001586 /* we cannot have a connection here */
1587 if (conn)
1588 return SF_ERR_INTERNAL;
1589
Simon Hormanb00d17a2014-06-13 16:18:16 +09001590 /* tcpcheck send/expect initialisation */
Willy Tarreauf411cce2017-10-04 16:21:19 +02001591 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001592 check->current_step = NULL;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001593 tcp_rule = get_first_tcpcheck_rule(check->tcpcheck_rules);
1594 }
Simon Hormanb00d17a2014-06-13 16:18:16 +09001595
1596 /* prepare the check buffer.
1597 * This should not be used if check is the secondary agent check
1598 * of a server as s->proxy->check_req will relate to the
1599 * configuration of the primary check. Similarly, tcp-check uses
1600 * its own strings.
1601 */
1602 if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001603 b_putblk(&check->bo, s->proxy->check_req, s->proxy->check_len);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001604
1605 /* we want to check if this host replies to HTTP or SSLv3 requests
1606 * so we'll send the request, and won't wake the checker up now.
1607 */
1608 if ((check->type) == PR_O2_SSL3_CHK) {
1609 /* SSL requires that we put Unix time in the request */
1610 int gmt_time = htonl(date.tv_sec);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001611 memcpy(b_head(&check->bo) + 11, &gmt_time, 4);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001612 }
1613 else if ((check->type) == PR_O2_HTTP_CHK) {
1614 if (s->proxy->options2 & PR_O2_CHK_SNDST)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001615 b_putblk(&check->bo, trash.area,
1616 httpchk_build_status_header(s, trash.area, trash.size));
Cyril Bonté32602d22015-01-30 00:07:07 +01001617 /* prevent HTTP keep-alive when "http-check expect" is used */
1618 if (s->proxy->options2 & PR_O2_EXP_TYPE)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001619 b_putist(&check->bo, ist("Connection: close\r\n"));
1620 b_putist(&check->bo, ist("\r\n"));
1621 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Simon Hormanb00d17a2014-06-13 16:18:16 +09001622 }
1623 }
1624
James Brown55f9ff12015-10-21 18:19:05 -07001625 if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001626 b_putblk(&check->bo, check->send_string, check->send_string_len);
James Brown55f9ff12015-10-21 18:19:05 -07001627 }
1628
Willy Tarreauf411cce2017-10-04 16:21:19 +02001629 /* for tcp-checks, the initial connection setup is handled separately as
1630 * it may be sent to a specific port and not to the server's.
1631 */
1632 if (tcp_rule && tcp_rule->action == TCPCHK_ACT_CONNECT) {
1633 tcpcheck_main(check);
1634 return SF_ERR_UP;
1635 }
1636
Simon Hormanb00d17a2014-06-13 16:18:16 +09001637 /* prepare a new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001638 cs = check->cs = cs_new(NULL);
1639 if (!check->cs)
Willy Tarreau00149122017-10-04 18:05:01 +02001640 return SF_ERR_RESOURCE;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001641 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02001642 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001643 check->wait_list.events = 0;
Olivier Houchardff1e9f32019-09-20 17:18:35 +02001644 tasklet_set_tid(check->wait_list.tasklet, tid);
1645
Simon Hormanb00d17a2014-06-13 16:18:16 +09001646
Willy Tarreauca79f592019-07-17 19:04:47 +02001647 if (!sockaddr_alloc(&conn->dst))
1648 return SF_ERR_RESOURCE;
1649
Simon Horman41f58762015-01-30 11:22:56 +09001650 if (is_addr(&check->addr)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001651 /* we'll connect to the check addr specified on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001652 *conn->dst = check->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001653 }
1654 else {
1655 /* we'll connect to the addr on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001656 *conn->dst = s->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001657 }
1658
Alexander Liu2a54bb72019-05-22 19:44:48 +08001659 if (s->check.via_socks4 && (s->flags & SRV_F_SOCKS4_PROXY)) {
1660 conn->send_proxy_ofs = 1;
1661 conn->flags |= CO_FL_SOCKS4;
1662 }
1663
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001664 proto = protocol_by_family(conn->dst->ss_family);
Olivier Houchard6377a002017-12-01 22:04:05 +01001665 conn->target = &s->obj_type;
1666
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001667 if ((conn->dst->ss_family == AF_INET) || (conn->dst->ss_family == AF_INET6)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001668 int i = 0;
1669
1670 i = srv_check_healthcheck_port(check);
Olivier Houchard6377a002017-12-01 22:04:05 +01001671 if (i == 0)
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001672 return SF_ERR_CHK_PORT;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001673
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02001674 set_host_port(conn->dst, i);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001675 }
1676
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001677 /* no client address */
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001678
Willy Tarreaube373152018-09-06 11:45:30 +02001679 conn_prepare(conn, proto, check->xprt);
Olivier Houchardf67be932019-01-29 15:47:43 +01001680 if (conn_install_mux(conn, &mux_pt_ops, cs, s->proxy, NULL) < 0)
1681 return SF_ERR_RESOURCE;
Willy Tarreaube373152018-09-06 11:45:30 +02001682 cs_attach(cs, check, &check_conn_cb);
1683
Willy Tarreauf3d34822014-12-08 12:11:28 +01001684 /* only plain tcp-check supports quick ACK */
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001685 if (check->type != 0)
1686 connflags |= CONNECT_HAS_DATA;
1687 if ((check->type == 0 || check->type == PR_O2_TCPCHK_CHK) &&
1688 (!tcp_rule || tcp_rule->action != TCPCHK_ACT_EXPECT))
1689 connflags |= CONNECT_DELACK_ALWAYS;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001690
Willy Tarreaue7dff022015-04-03 01:14:29 +02001691 ret = SF_ERR_INTERNAL;
Olivier Houchardb68fda42017-08-04 18:39:01 +02001692 if (proto && proto->connect)
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001693 ret = proto->connect(conn, connflags);
Willy Tarreau16257f62017-11-02 15:45:00 +01001694
Willy Tarreau16257f62017-11-02 15:45:00 +01001695
Olivier Houchard9130a962017-10-17 17:33:43 +02001696#ifdef USE_OPENSSL
Olivier Houcharda48437b2019-01-29 16:37:52 +01001697 if (ret == SF_ERR_NONE) {
1698 if (s->check.sni)
1699 ssl_sock_set_servername(conn, s->check.sni);
1700 if (s->check.alpn_str)
1701 ssl_sock_set_alpn(conn, (unsigned char *)s->check.alpn_str,
1702 s->check.alpn_len);
1703 }
Olivier Houchard9130a962017-10-17 17:33:43 +02001704#endif
Willy Tarreauf4949772017-05-06 08:45:28 +02001705 if (s->check.send_proxy && !(check->state & CHK_ST_AGENT)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001706 conn->send_proxy_ofs = 1;
1707 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001708 if (xprt_add_hs(conn) < 0)
1709 ret = SF_ERR_RESOURCE;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001710 }
1711
1712 return ret;
1713}
1714
Simon Horman98637e52014-06-20 12:30:16 +09001715static struct list pid_list = LIST_HEAD_INIT(pid_list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001716static struct pool_head *pool_head_pid_list;
Willy Tarreau86abe442018-11-25 20:12:18 +01001717__decl_spinlock(pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001718
1719void block_sigchld(void)
1720{
1721 sigset_t set;
1722 sigemptyset(&set);
1723 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001724 assert(ha_sigmask(SIG_BLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001725}
1726
1727void unblock_sigchld(void)
1728{
1729 sigset_t set;
1730 sigemptyset(&set);
Willy Tarreauebc92442016-06-21 17:29:46 +02001731 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001732 assert(ha_sigmask(SIG_UNBLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001733}
1734
Simon Horman98637e52014-06-20 12:30:16 +09001735static struct pid_list *pid_list_add(pid_t pid, struct task *t)
1736{
1737 struct pid_list *elem;
1738 struct check *check = t->context;
1739
Willy Tarreaubafbe012017-11-24 17:34:44 +01001740 elem = pool_alloc(pool_head_pid_list);
Simon Horman98637e52014-06-20 12:30:16 +09001741 if (!elem)
1742 return NULL;
1743 elem->pid = pid;
1744 elem->t = t;
1745 elem->exited = 0;
1746 check->curpid = elem;
1747 LIST_INIT(&elem->list);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001748
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001749 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001750 LIST_ADD(&pid_list, &elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001751 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001752
Simon Horman98637e52014-06-20 12:30:16 +09001753 return elem;
1754}
1755
Simon Horman98637e52014-06-20 12:30:16 +09001756static void pid_list_del(struct pid_list *elem)
1757{
1758 struct check *check;
1759
1760 if (!elem)
1761 return;
1762
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001763 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001764 LIST_DEL(&elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001765 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001766
Simon Horman98637e52014-06-20 12:30:16 +09001767 if (!elem->exited)
1768 kill(elem->pid, SIGTERM);
1769
1770 check = elem->t->context;
1771 check->curpid = NULL;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001772 pool_free(pool_head_pid_list, elem);
Simon Horman98637e52014-06-20 12:30:16 +09001773}
1774
1775/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
1776static void pid_list_expire(pid_t pid, int status)
1777{
1778 struct pid_list *elem;
1779
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001780 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001781 list_for_each_entry(elem, &pid_list, list) {
1782 if (elem->pid == pid) {
1783 elem->t->expire = now_ms;
1784 elem->status = status;
1785 elem->exited = 1;
Cyril Bonté9dbcfab2014-08-07 01:55:39 +02001786 task_wakeup(elem->t, TASK_WOKEN_IO);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001787 break;
Simon Horman98637e52014-06-20 12:30:16 +09001788 }
1789 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001790 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001791}
1792
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001793static void sigchld_handler(struct sig_handler *sh)
Simon Horman98637e52014-06-20 12:30:16 +09001794{
1795 pid_t pid;
1796 int status;
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001797
Simon Horman98637e52014-06-20 12:30:16 +09001798 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
1799 pid_list_expire(pid, status);
1800}
1801
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001802static int init_pid_list(void)
1803{
Willy Tarreaubafbe012017-11-24 17:34:44 +01001804 if (pool_head_pid_list != NULL)
Simon Horman98637e52014-06-20 12:30:16 +09001805 /* Nothing to do */
1806 return 0;
1807
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001808 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001809 ha_alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
1810 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001811 return 1;
1812 }
1813
Willy Tarreaubafbe012017-11-24 17:34:44 +01001814 pool_head_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
1815 if (pool_head_pid_list == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001816 ha_alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
1817 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001818 return 1;
1819 }
1820
1821 return 0;
1822}
1823
Cyril Bontéac92a062014-12-27 22:28:38 +01001824/* helper macro to set an environment variable and jump to a specific label on failure. */
1825#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001826
1827/*
Cyril Bontéac92a062014-12-27 22:28:38 +01001828 * helper function to allocate enough memory to store an environment variable.
1829 * It will also check that the environment variable is updatable, and silently
1830 * fail if not.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001831 */
Cyril Bontéac92a062014-12-27 22:28:38 +01001832static int extchk_setenv(struct check *check, int idx, const char *value)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001833{
1834 int len, ret;
Cyril Bontéac92a062014-12-27 22:28:38 +01001835 char *envname;
1836 int vmaxlen;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001837
Cyril Bontéac92a062014-12-27 22:28:38 +01001838 if (idx < 0 || idx >= EXTCHK_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001839 ha_alert("Illegal environment variable index %d. Aborting.\n", idx);
Cyril Bontéac92a062014-12-27 22:28:38 +01001840 return 1;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001841 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001842
1843 envname = extcheck_envs[idx].name;
1844 vmaxlen = extcheck_envs[idx].vmaxlen;
1845
1846 /* Check if the environment variable is already set, and silently reject
1847 * the update if this one is not updatable. */
1848 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
1849 return 0;
1850
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001851 /* Instead of sending NOT_USED, sending an empty value is preferable */
1852 if (strcmp(value, "NOT_USED") == 0) {
1853 value = "";
1854 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001855
1856 len = strlen(envname) + 1;
1857 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
1858 len += strlen(value);
1859 else
1860 len += vmaxlen;
1861
1862 if (!check->envp[idx])
1863 check->envp[idx] = malloc(len + 1);
1864
1865 if (!check->envp[idx]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001866 ha_alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001867 return 1;
1868 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001869 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001870 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001871 ha_alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001872 return 1;
1873 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001874 else if (ret > len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001875 ha_alert("Environment variable '%s' was truncated. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001876 return 1;
1877 }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001878 return 0;
1879}
Simon Horman98637e52014-06-20 12:30:16 +09001880
1881static int prepare_external_check(struct check *check)
1882{
1883 struct server *s = check->server;
1884 struct proxy *px = s->proxy;
1885 struct listener *listener = NULL, *l;
1886 int i;
Simon Horman98637e52014-06-20 12:30:16 +09001887 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001888 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001889
1890 list_for_each_entry(l, &px->conf.listeners, by_fe)
1891 /* Use the first INET, INET6 or UNIX listener */
1892 if (l->addr.ss_family == AF_INET ||
1893 l->addr.ss_family == AF_INET6 ||
1894 l->addr.ss_family == AF_UNIX) {
1895 listener = l;
1896 break;
1897 }
1898
Simon Horman98637e52014-06-20 12:30:16 +09001899 check->curpid = NULL;
Cyril Bontéac92a062014-12-27 22:28:38 +01001900 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
1901 if (!check->envp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001902 ha_alert("Failed to allocate memory for environment variables. Aborting\n");
Cyril Bontéac92a062014-12-27 22:28:38 +01001903 goto err;
1904 }
Simon Horman98637e52014-06-20 12:30:16 +09001905
Cyril Bontéac92a062014-12-27 22:28:38 +01001906 check->argv = calloc(6, sizeof(char *));
1907 if (!check->argv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001908 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001909 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001910 }
Simon Horman98637e52014-06-20 12:30:16 +09001911
1912 check->argv[0] = px->check_command;
1913
Cyril Bonté777be862014-12-02 21:21:35 +01001914 if (!listener) {
1915 check->argv[1] = strdup("NOT_USED");
1916 check->argv[2] = strdup("NOT_USED");
1917 }
1918 else if (listener->addr.ss_family == AF_INET ||
Simon Horman98637e52014-06-20 12:30:16 +09001919 listener->addr.ss_family == AF_INET6) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001920 addr_to_str(&listener->addr, buf, sizeof(buf));
1921 check->argv[1] = strdup(buf);
1922 port_to_str(&listener->addr, buf, sizeof(buf));
1923 check->argv[2] = strdup(buf);
Cyril Bonté777be862014-12-02 21:21:35 +01001924 }
1925 else if (listener->addr.ss_family == AF_UNIX) {
Simon Horman98637e52014-06-20 12:30:16 +09001926 const struct sockaddr_un *un;
1927
1928 un = (struct sockaddr_un *)&listener->addr;
1929 check->argv[1] = strdup(un->sun_path);
1930 check->argv[2] = strdup("NOT_USED");
Cyril Bonté777be862014-12-02 21:21:35 +01001931 }
1932 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001933 ha_alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001934 goto err;
1935 }
1936
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001937 addr_to_str(&s->addr, buf, sizeof(buf));
1938 check->argv[3] = strdup(buf);
Willy Tarreau04276f32017-01-06 17:41:29 +01001939
1940 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
1941 snprintf(buf, sizeof(buf), "%u", s->svc_port);
1942 else
1943 *buf = 0;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001944 check->argv[4] = strdup(buf);
Simon Horman98637e52014-06-20 12:30:16 +09001945
Cyril Bontéac92a062014-12-27 22:28:38 +01001946 for (i = 0; i < 5; i++) {
1947 if (!check->argv[i]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001948 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001949 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001950 }
1951 }
Simon Horman98637e52014-06-20 12:30:16 +09001952
Cyril Bontéac92a062014-12-27 22:28:38 +01001953 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001954 /* Add proxy environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001955 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
1956 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
1957 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
1958 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001959 /* Add server environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001960 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
1961 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
1962 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
1963 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
1964 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
1965 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
1966
1967 /* Ensure that we don't leave any hole in check->envp */
1968 for (i = 0; i < EXTCHK_SIZE; i++)
1969 if (!check->envp[i])
1970 EXTCHK_SETENV(check, i, "", err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001971
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001972 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09001973err:
1974 if (check->envp) {
Cyril Bontéac92a062014-12-27 22:28:38 +01001975 for (i = 0; i < EXTCHK_SIZE; i++)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001976 free(check->envp[i]);
Simon Horman98637e52014-06-20 12:30:16 +09001977 free(check->envp);
1978 check->envp = NULL;
1979 }
1980
1981 if (check->argv) {
1982 for (i = 1; i < 5; i++)
1983 free(check->argv[i]);
1984 free(check->argv);
1985 check->argv = NULL;
1986 }
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001987 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09001988}
1989
Simon Hormanb00d17a2014-06-13 16:18:16 +09001990/*
Simon Horman98637e52014-06-20 12:30:16 +09001991 * establish a server health-check that makes use of a process.
1992 *
1993 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001994 * - SF_ERR_NONE if everything's OK
Willy Tarreaue7dff022015-04-03 01:14:29 +02001995 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
Tim Düsterhus4896c442016-11-29 02:15:19 +01001996 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Horman98637e52014-06-20 12:30:16 +09001997 *
1998 * Blocks and then unblocks SIGCHLD
1999 */
2000static int connect_proc_chk(struct task *t)
2001{
Cyril Bontéac92a062014-12-27 22:28:38 +01002002 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09002003 struct check *check = t->context;
2004 struct server *s = check->server;
2005 struct proxy *px = s->proxy;
2006 int status;
2007 pid_t pid;
2008
Willy Tarreaue7dff022015-04-03 01:14:29 +02002009 status = SF_ERR_RESOURCE;
Simon Horman98637e52014-06-20 12:30:16 +09002010
2011 block_sigchld();
2012
2013 pid = fork();
2014 if (pid < 0) {
Willy Tarreaud96f1122019-12-03 07:07:36 +01002015 ha_alert("Failed to fork process for external health check%s: %s. Aborting.\n",
2016 (global.tune.options & GTUNE_INSECURE_FORK) ?
2017 "" : " (likely caused by missing 'insecure-fork-wanted')",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002018 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002019 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2020 goto out;
2021 }
2022 if (pid == 0) {
2023 /* Child */
2024 extern char **environ;
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002025 struct rlimit limit;
Willy Tarreaub7b24782016-06-21 15:32:29 +02002026 int fd;
2027
2028 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
2029 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
2030
Willy Tarreau2555ccf2019-02-21 22:22:06 +01002031 my_closefrom(fd);
Willy Tarreaub7b24782016-06-21 15:32:29 +02002032
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002033 /* restore the initial FD limits */
2034 limit.rlim_cur = rlim_fd_cur_at_boot;
2035 limit.rlim_max = rlim_fd_max_at_boot;
2036 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
2037 getrlimit(RLIMIT_NOFILE, &limit);
2038 ha_warning("External check: failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
2039 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
2040 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
2041 }
2042
Simon Horman98637e52014-06-20 12:30:16 +09002043 environ = check->envp;
Cyril Bontéac92a062014-12-27 22:28:38 +01002044 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Willy Tarreau2df8cad2019-07-01 07:51:29 +02002045 haproxy_unblock_signals();
Simon Horman98637e52014-06-20 12:30:16 +09002046 execvp(px->check_command, check->argv);
Christopher Faulet767a84b2017-11-24 16:50:31 +01002047 ha_alert("Failed to exec process for external health check: %s. Aborting.\n",
2048 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002049 exit(-1);
2050 }
2051
2052 /* Parent */
2053 if (check->result == CHK_RES_UNKNOWN) {
2054 if (pid_list_add(pid, t) != NULL) {
2055 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2056
2057 if (px->timeout.check && px->timeout.connect) {
2058 int t_con = tick_add(now_ms, px->timeout.connect);
2059 t->expire = tick_first(t->expire, t_con);
2060 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002061 status = SF_ERR_NONE;
Simon Horman98637e52014-06-20 12:30:16 +09002062 goto out;
2063 }
2064 else {
2065 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2066 }
2067 kill(pid, SIGTERM); /* process creation error */
2068 }
2069 else
2070 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2071
2072out:
2073 unblock_sigchld();
2074 return status;
2075}
2076
2077/*
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002078 * manages a server health-check that uses an external process. Returns
Willy Tarreaubaaee002006-06-26 02:48:02 +02002079 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002080 *
2081 * Please do NOT place any return statement in this function and only leave
2082 * via the out_unlock label.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002083 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002084static struct task *process_chk_proc(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002085{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002086 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002087 struct server *s = check->server;
Simon Horman98637e52014-06-20 12:30:16 +09002088 int rv;
2089 int ret;
2090 int expired = tick_is_expired(t->expire, now_ms);
2091
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002092 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002093 if (!(check->state & CHK_ST_INPROGRESS)) {
2094 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002095 if (!expired) /* woke up too early */
2096 goto out_unlock;
Simon Horman98637e52014-06-20 12:30:16 +09002097
2098 /* we don't send any health-checks when the proxy is
2099 * stopped, the server should not be checked or the check
2100 * is disabled.
2101 */
2102 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
2103 s->proxy->state == PR_STSTOPPED)
2104 goto reschedule;
2105
2106 /* we'll initiate a new check */
2107 set_server_check_status(check, HCHK_STATUS_START, NULL);
2108
2109 check->state |= CHK_ST_INPROGRESS;
2110
Simon Hormandbf70192015-01-30 11:22:53 +09002111 ret = connect_proc_chk(t);
Willy Tarreaud7c3fbd2017-10-04 15:19:26 +02002112 if (ret == SF_ERR_NONE) {
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002113 /* the process was forked, we allow up to min(inter,
2114 * timeout.connect) for it to report its status, but
2115 * only when timeout.check is set as it may be to short
2116 * for a full check otherwise.
Simon Horman98637e52014-06-20 12:30:16 +09002117 */
2118 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2119
2120 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2121 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2122 t->expire = tick_first(t->expire, t_con);
2123 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002124 task_set_affinity(t, tid_bit);
Simon Horman98637e52014-06-20 12:30:16 +09002125 goto reschedule;
Simon Horman98637e52014-06-20 12:30:16 +09002126 }
2127
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002128 /* here, we failed to start the check */
Simon Horman98637e52014-06-20 12:30:16 +09002129
2130 check->state &= ~CHK_ST_INPROGRESS;
2131 check_notify_failure(check);
2132
2133 /* we allow up to min(inter, timeout.connect) for a connection
2134 * to establish but only when timeout.check is set
2135 * as it may be to short for a full check otherwise
2136 */
2137 while (tick_is_expired(t->expire, now_ms)) {
2138 int t_con;
2139
2140 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2141 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2142
2143 if (s->proxy->timeout.check)
2144 t->expire = tick_first(t->expire, t_con);
2145 }
2146 }
2147 else {
2148 /* there was a test running.
2149 * First, let's check whether there was an uncaught error,
2150 * which can happen on connect timeout or error.
2151 */
2152 if (check->result == CHK_RES_UNKNOWN) {
2153 /* good connection is enough for pure TCP check */
2154 struct pid_list *elem = check->curpid;
2155 int status = HCHK_STATUS_UNKNOWN;
2156
2157 if (elem->exited) {
2158 status = elem->status; /* Save in case the process exits between use below */
2159 if (!WIFEXITED(status))
2160 check->code = -1;
2161 else
2162 check->code = WEXITSTATUS(status);
2163 if (!WIFEXITED(status) || WEXITSTATUS(status))
2164 status = HCHK_STATUS_PROCERR;
2165 else
2166 status = HCHK_STATUS_PROCOK;
2167 } else if (expired) {
2168 status = HCHK_STATUS_PROCTOUT;
Christopher Faulet767a84b2017-11-24 16:50:31 +01002169 ha_warning("kill %d\n", (int)elem->pid);
Simon Horman98637e52014-06-20 12:30:16 +09002170 kill(elem->pid, SIGTERM);
2171 }
2172 set_server_check_status(check, status, NULL);
2173 }
2174
2175 if (check->result == CHK_RES_FAILED) {
2176 /* a failure or timeout detected */
2177 check_notify_failure(check);
2178 }
2179 else if (check->result == CHK_RES_CONDPASS) {
2180 /* check is OK but asks for stopping mode */
2181 check_notify_stopping(check);
2182 }
2183 else if (check->result == CHK_RES_PASSED) {
2184 /* a success was detected */
2185 check_notify_success(check);
2186 }
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002187 task_set_affinity(t, 1);
Simon Horman98637e52014-06-20 12:30:16 +09002188 check->state &= ~CHK_ST_INPROGRESS;
2189
2190 pid_list_del(check->curpid);
2191
2192 rv = 0;
2193 if (global.spread_checks > 0) {
2194 rv = srv_getinter(check) * global.spread_checks / 100;
2195 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2196 }
2197 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
2198 }
2199
2200 reschedule:
2201 while (tick_is_expired(t->expire, now_ms))
2202 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002203
2204 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002205 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002206 return t;
2207}
2208
2209/*
2210 * manages a server health-check that uses a connection. Returns
2211 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002212 *
2213 * Please do NOT place any return statement in this function and only leave
2214 * via the out_unlock label.
Simon Horman98637e52014-06-20 12:30:16 +09002215 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002216static struct task *process_chk_conn(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002217{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002218 struct check *check = context;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002219 struct proxy *proxy = check->proxy;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002220 struct conn_stream *cs = check->cs;
2221 struct connection *conn = cs_conn(cs);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002222 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002223 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002224 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002225
Olivier Houchard0923fa42019-01-11 18:43:04 +01002226 if (check->server)
2227 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002228 if (!(check->state & CHK_ST_INPROGRESS)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01002229 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002230 if (!expired) /* woke up too early */
2231 goto out_unlock;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002232
Simon Horman671b6f02013-11-25 10:46:39 +09002233 /* we don't send any health-checks when the proxy is
2234 * stopped, the server should not be checked or the check
2235 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002236 */
Willy Tarreau0d924cc2013-12-11 21:26:24 +01002237 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002238 proxy->state == PR_STSTOPPED)
Willy Tarreau5a78f362012-11-23 12:47:05 +01002239 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002240
2241 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09002242 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002243
Willy Tarreau2c115e52013-12-11 19:41:16 +01002244 check->state |= CHK_ST_INPROGRESS;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002245 b_reset(&check->bi);
2246 b_reset(&check->bo);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002247
Simon Hormandbf70192015-01-30 11:22:53 +09002248 ret = connect_conn_chk(t);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002249 cs = check->cs;
2250 conn = cs_conn(cs);
Willy Tarreau00149122017-10-04 18:05:01 +02002251
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002252 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002253 case SF_ERR_UP:
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002254 goto out_unlock;
2255
Willy Tarreaue7dff022015-04-03 01:14:29 +02002256 case SF_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002257 /* we allow up to min(inter, timeout.connect) for a connection
2258 * to establish but only when timeout.check is set
2259 * as it may be to short for a full check otherwise
2260 */
Simon Horman4a741432013-02-23 15:35:38 +09002261 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002262
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002263 if (proxy->timeout.check && proxy->timeout.connect) {
2264 int t_con = tick_add(now_ms, proxy->timeout.connect);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002265 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002266 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002267
Willy Tarreaucc705a62019-09-05 17:51:30 +02002268 if (check->type) {
2269 /* send the request if we have one. We avoid receiving
2270 * if not connected, unless we didn't subscribe for
2271 * sending since otherwise we won't be woken up.
2272 */
2273 __event_srv_chk_w(cs);
Willy Tarreauc5940392019-09-05 17:38:40 +02002274 if (!(conn->flags & CO_FL_WAIT_L4_CONN) ||
2275 !(check->wait_list.events & SUB_RETRY_SEND))
2276 __event_srv_chk_r(cs);
Willy Tarreaucc705a62019-09-05 17:51:30 +02002277 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002278
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002279 task_set_affinity(t, tid_bit);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002280 goto reschedule;
2281
Willy Tarreaue7dff022015-04-03 01:14:29 +02002282 case SF_ERR_SRVTO: /* ETIMEDOUT */
2283 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Willy Tarreau00149122017-10-04 18:05:01 +02002284 if (conn)
2285 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002286 chk_report_conn_err(check, errno, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002287 break;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02002288 /* should share same code than cases below */
2289 case SF_ERR_CHK_PORT:
2290 check->state |= CHK_ST_PORT_MISS;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002291 case SF_ERR_PRXCOND:
2292 case SF_ERR_RESOURCE:
2293 case SF_ERR_INTERNAL:
Willy Tarreau00149122017-10-04 18:05:01 +02002294 if (conn)
2295 conn->flags |= CO_FL_ERROR;
2296 chk_report_conn_err(check, conn ? 0 : ENOMEM, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002297 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002298 }
2299
Willy Tarreau5a78f362012-11-23 12:47:05 +01002300 /* here, we have seen a synchronous error, no fd was allocated */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002301 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002302 if (check->wait_list.events)
2303 cs->conn->xprt->unsubscribe(cs->conn,
2304 cs->conn->xprt_ctx,
2305 check->wait_list.events,
2306 &check->wait_list);
2307 /* We may have been scheduled to run, and the
2308 * I/O handler expects to have a cs, so remove
2309 * the tasklet
2310 */
Willy Tarreau86eded62019-06-14 14:47:49 +02002311 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002312 cs_destroy(cs);
2313 cs = check->cs = NULL;
2314 conn = NULL;
Olivier Houchard390485a2017-10-24 19:03:30 +02002315 }
Willy Tarreau6b0a8502012-11-23 08:51:32 +01002316
Willy Tarreau2c115e52013-12-11 19:41:16 +01002317 check->state &= ~CHK_ST_INPROGRESS;
Willy Tarreau4eec5472014-05-20 22:32:27 +02002318 check_notify_failure(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002319
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002320 /* we allow up to min(inter, timeout.connect) for a connection
2321 * to establish but only when timeout.check is set
2322 * as it may be to short for a full check otherwise
2323 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002324 while (tick_is_expired(t->expire, now_ms)) {
2325 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002326
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002327 t_con = tick_add(t->expire, proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09002328 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002329
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002330 if (proxy->timeout.check)
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002331 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002332 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002333 }
2334 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02002335 /* there was a test running.
2336 * First, let's check whether there was an uncaught error,
2337 * which can happen on connect timeout or error.
2338 */
Simon Hormanccaabcd2014-06-20 12:29:47 +09002339 if (check->result == CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002340 /* good connection is enough for pure TCP check */
2341 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
Simon Horman4a741432013-02-23 15:35:38 +09002342 if (check->use_ssl)
2343 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02002344 else
Simon Horman4a741432013-02-23 15:35:38 +09002345 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002346 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002347 else if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002348 chk_report_conn_err(check, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02002349 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002350 else
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002351 goto out_unlock; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02002352 }
2353
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002354 /* check complete or aborted */
Willy Tarreau00149122017-10-04 18:05:01 +02002355 if (conn && conn->xprt) {
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002356 /* The check was aborted and the connection was not yet closed.
2357 * This can happen upon timeout, or when an external event such
2358 * as a failed response coupled with "observe layer7" caused the
2359 * server state to be suddenly changed.
2360 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01002361 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02002362 cs_close(cs);
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002363 }
2364
Willy Tarreauac59f362017-10-08 11:10:19 +02002365 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002366 if (check->wait_list.events)
2367 cs->conn->xprt->unsubscribe(cs->conn,
2368 cs->conn->xprt_ctx,
2369 check->wait_list.events,
2370 &check->wait_list);
2371 /* We may have been scheduled to run, and the
Willy Tarreau86eded62019-06-14 14:47:49 +02002372 * I/O handler expects to have a cs, so remove
2373 * the tasklet
2374 */
2375 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002376 cs_destroy(cs);
2377 cs = check->cs = NULL;
2378 conn = NULL;
Willy Tarreau00149122017-10-04 18:05:01 +02002379 }
2380
Olivier Houchard0923fa42019-01-11 18:43:04 +01002381 if (check->server) {
2382 if (check->result == CHK_RES_FAILED) {
2383 /* a failure or timeout detected */
2384 check_notify_failure(check);
2385 }
2386 else if (check->result == CHK_RES_CONDPASS) {
2387 /* check is OK but asks for stopping mode */
2388 check_notify_stopping(check);
2389 }
2390 else if (check->result == CHK_RES_PASSED) {
2391 /* a success was detected */
2392 check_notify_success(check);
2393 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002394 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002395 task_set_affinity(t, MAX_THREADS_MASK);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002396 check->state &= ~CHK_ST_INPROGRESS;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002397
Olivier Houchard0923fa42019-01-11 18:43:04 +01002398 if (check->server) {
2399 rv = 0;
2400 if (global.spread_checks > 0) {
2401 rv = srv_getinter(check) * global.spread_checks / 100;
2402 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2403 }
2404 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002405 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002406 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01002407
2408 reschedule:
2409 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09002410 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002411 out_unlock:
Olivier Houchard0923fa42019-01-11 18:43:04 +01002412 if (check->server)
2413 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau26c25062009-03-08 09:38:41 +01002414 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002415}
2416
Simon Horman98637e52014-06-20 12:30:16 +09002417/*
2418 * manages a server health-check. Returns
2419 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2420 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002421static struct task *process_chk(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002422{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002423 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002424
2425 if (check->type == PR_O2_EXT_CHK)
Olivier Houchard9f6af332018-05-25 14:04:04 +02002426 return process_chk_proc(t, context, state);
2427 return process_chk_conn(t, context, state);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002428
Simon Horman98637e52014-06-20 12:30:16 +09002429}
2430
Simon Horman5c942422013-11-25 10:46:32 +09002431static int start_check_task(struct check *check, int mininter,
2432 int nbcheck, int srvpos)
2433{
2434 struct task *t;
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002435 unsigned long thread_mask = MAX_THREADS_MASK;
2436
2437 if (check->type == PR_O2_EXT_CHK)
2438 thread_mask = 1;
2439
Simon Horman5c942422013-11-25 10:46:32 +09002440 /* task for the check */
Willy Tarreau6dd4ac82019-09-03 18:55:02 +02002441 if ((t = task_new(thread_mask)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002442 ha_alert("Starting [%s:%s] check: out of memory.\n",
2443 check->server->proxy->id, check->server->id);
Simon Horman5c942422013-11-25 10:46:32 +09002444 return 0;
2445 }
2446
2447 check->task = t;
2448 t->process = process_chk;
2449 t->context = check;
2450
Willy Tarreau1746eec2014-04-25 10:46:47 +02002451 if (mininter < srv_getinter(check))
2452 mininter = srv_getinter(check);
2453
2454 if (global.max_spread_checks && mininter > global.max_spread_checks)
2455 mininter = global.max_spread_checks;
2456
Simon Horman5c942422013-11-25 10:46:32 +09002457 /* check this every ms */
Willy Tarreau1746eec2014-04-25 10:46:47 +02002458 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
Simon Horman5c942422013-11-25 10:46:32 +09002459 check->start = now;
2460 task_queue(t);
2461
2462 return 1;
2463}
2464
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002465/*
2466 * Start health-check.
Willy Tarreau865c5142016-12-21 20:04:48 +01002467 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002468 */
Willy Tarreau865c5142016-12-21 20:04:48 +01002469static int start_checks()
2470{
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002471
2472 struct proxy *px;
2473 struct server *s;
2474 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09002475 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002476
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002477 /* 1- count the checkers to run simultaneously.
2478 * We also determine the minimum interval among all of those which
2479 * have an interval larger than SRV_CHK_INTER_THRES. This interval
2480 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04002481 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002482 * too short an interval for all others.
2483 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002484 for (px = proxies_list; px; px = px->next) {
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002485 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01002486 if (s->slowstart) {
Emeric Brunc60def82017-09-27 14:59:38 +02002487 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002488 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002489 return ERR_ALERT | ERR_FATAL;
Willy Tarreaue7b73482013-11-21 11:50:50 +01002490 }
2491 /* We need a warmup task that will be called when the server
2492 * state switches from down to up.
2493 */
2494 s->warmup = t;
2495 t->process = server_warmup;
2496 t->context = s;
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002497 /* server can be in this state only because of */
Emeric Brun52a91d32017-08-31 14:41:55 +02002498 if (s->next_state == SRV_ST_STARTING)
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002499 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 +01002500 }
2501
Willy Tarreaud8514a22013-12-11 21:10:14 +01002502 if (s->check.state & CHK_ST_CONFIGURED) {
2503 nbcheck++;
2504 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
2505 (!mininter || mininter > srv_getinter(&s->check)))
2506 mininter = srv_getinter(&s->check);
2507 }
Willy Tarreau15f39102013-12-11 20:41:18 +01002508
Willy Tarreaud8514a22013-12-11 21:10:14 +01002509 if (s->agent.state & CHK_ST_CONFIGURED) {
2510 nbcheck++;
2511 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
2512 (!mininter || mininter > srv_getinter(&s->agent)))
2513 mininter = srv_getinter(&s->agent);
2514 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002515 }
2516 }
2517
Simon Horman4a741432013-02-23 15:35:38 +09002518 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002519 return 0;
2520
2521 srand((unsigned)time(NULL));
2522
2523 /*
2524 * 2- start them as far as possible from each others. For this, we will
2525 * start them after their interval set to the min interval divided by
2526 * the number of servers, weighted by the server's position in the list.
2527 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002528 for (px = proxies_list; px; px = px->next) {
Simon Horman98637e52014-06-20 12:30:16 +09002529 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2530 if (init_pid_list()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002531 ha_alert("Starting [%s] check: out of memory.\n", px->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002532 return ERR_ALERT | ERR_FATAL;
Simon Horman98637e52014-06-20 12:30:16 +09002533 }
2534 }
2535
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002536 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09002537 /* A task for the main check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002538 if (s->check.state & CHK_ST_CONFIGURED) {
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002539 if (s->check.type == PR_O2_EXT_CHK) {
2540 if (!prepare_external_check(&s->check))
Willy Tarreau865c5142016-12-21 20:04:48 +01002541 return ERR_ALERT | ERR_FATAL;
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002542 }
Simon Hormand60d6912013-11-25 10:46:36 +09002543 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
Willy Tarreau865c5142016-12-21 20:04:48 +01002544 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002545 srvpos++;
2546 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002547
Simon Hormand60d6912013-11-25 10:46:36 +09002548 /* A task for a auxiliary agent check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002549 if (s->agent.state & CHK_ST_CONFIGURED) {
Simon Hormand60d6912013-11-25 10:46:36 +09002550 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
Willy Tarreau865c5142016-12-21 20:04:48 +01002551 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002552 }
2553 srvpos++;
2554 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002555 }
2556 }
2557 return 0;
2558}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002559
2560/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002561 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01002562 * The buffer MUST be terminated by a null byte before calling this function.
2563 * Sets server status appropriately. The caller is responsible for ensuring
2564 * that the buffer contains at least 13 characters. If <done> is zero, we may
2565 * return 0 to indicate that data is required to decide of a match.
2566 */
2567static int httpchk_expect(struct server *s, int done)
2568{
Christopher Faulet1bc04c72017-10-29 20:14:08 +01002569 static THREAD_LOCAL char status_msg[] = "HTTP status check returned code <000>";
Willy Tarreaubd741542010-03-16 18:46:54 +01002570 char status_code[] = "000";
2571 char *contentptr;
2572 int crlf;
2573 int ret;
2574
2575 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
2576 case PR_O2_EXP_STS:
2577 case PR_O2_EXP_RSTS:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002578 memcpy(status_code, b_head(&s->check.bi) + 9, 3);
2579 memcpy(status_msg + strlen(status_msg) - 4, b_head(&s->check.bi) + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01002580
2581 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
2582 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
2583 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002584 ret = regex_exec(s->proxy->expect_regex, status_code);
Willy Tarreaubd741542010-03-16 18:46:54 +01002585
2586 /* we necessarily have the response, so there are no partial failures */
2587 if (s->proxy->options2 & PR_O2_EXP_INV)
2588 ret = !ret;
2589
Simon Horman4a741432013-02-23 15:35:38 +09002590 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01002591 break;
2592
2593 case PR_O2_EXP_STR:
2594 case PR_O2_EXP_RSTR:
2595 /* very simple response parser: ignore CR and only count consecutive LFs,
2596 * stop with contentptr pointing to first char after the double CRLF or
2597 * to '\0' if crlf < 2.
2598 */
2599 crlf = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002600 for (contentptr = b_head(&s->check.bi); *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01002601 if (crlf >= 2)
2602 break;
2603 if (*contentptr == '\r')
2604 continue;
2605 else if (*contentptr == '\n')
2606 crlf++;
2607 else
2608 crlf = 0;
2609 }
2610
2611 /* Check that response contains a body... */
2612 if (crlf < 2) {
2613 if (!done)
2614 return 0;
2615
Simon Horman4a741432013-02-23 15:35:38 +09002616 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002617 "HTTP content check could not find a response body");
2618 return 1;
2619 }
2620
2621 /* Check that response body is not empty... */
2622 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02002623 if (!done)
2624 return 0;
2625
Simon Horman4a741432013-02-23 15:35:38 +09002626 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002627 "HTTP content check found empty response body");
2628 return 1;
2629 }
2630
2631 /* Check the response content against the supplied string
2632 * or regex... */
2633 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
2634 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
2635 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002636 ret = regex_exec(s->proxy->expect_regex, contentptr);
Willy Tarreaubd741542010-03-16 18:46:54 +01002637
2638 /* if we don't match, we may need to wait more */
2639 if (!ret && !done)
2640 return 0;
2641
2642 if (ret) {
2643 /* content matched */
2644 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002645 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002646 "HTTP check matched unwanted content");
2647 else
Simon Horman4a741432013-02-23 15:35:38 +09002648 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002649 "HTTP content check matched");
2650 }
2651 else {
2652 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002653 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002654 "HTTP check did not match unwanted content");
2655 else
Simon Horman4a741432013-02-23 15:35:38 +09002656 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002657 "HTTP content check did not match");
2658 }
2659 break;
2660 }
2661 return 1;
2662}
2663
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002664/*
2665 * return the id of a step in a send/expect session
2666 */
Simon Hormane16c1b32015-01-30 11:22:57 +09002667static int tcpcheck_get_step_id(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002668{
2669 struct tcpcheck_rule *cur = NULL, *next = NULL;
2670 int i = 0;
2671
Willy Tarreau213c6782014-10-02 14:51:02 +02002672 /* not even started anything yet => step 0 = initial connect */
Baptiste Assmannf95bc8e2015-04-25 16:03:06 +02002673 if (!check->current_step)
Willy Tarreau213c6782014-10-02 14:51:02 +02002674 return 0;
2675
Simon Hormane16c1b32015-01-30 11:22:57 +09002676 cur = check->last_started_step;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002677
2678 /* no step => first step */
2679 if (cur == NULL)
2680 return 1;
2681
2682 /* increment i until current step */
Simon Hormane16c1b32015-01-30 11:22:57 +09002683 list_for_each_entry(next, check->tcpcheck_rules, list) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002684 if (next->list.p == &cur->list)
2685 break;
2686 ++i;
2687 }
2688
2689 return i;
2690}
2691
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002692/*
2693 * return the latest known comment before (including) the given stepid
2694 * returns NULL if no comment found
2695 */
2696static char * tcpcheck_get_step_comment(struct check *check, int stepid)
2697{
2698 struct tcpcheck_rule *cur = NULL;
2699 char *ret = NULL;
2700 int i = 0;
2701
2702 /* not even started anything yet, return latest comment found before any action */
2703 if (!check->current_step) {
2704 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2705 if (cur->action == TCPCHK_ACT_COMMENT)
2706 ret = cur->comment;
2707 else
2708 goto return_comment;
2709 }
2710 }
2711
2712 i = 1;
2713 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2714 if (cur->comment)
2715 ret = cur->comment;
2716
2717 if (i >= stepid)
2718 goto return_comment;
2719
2720 ++i;
2721 }
2722
2723 return_comment:
2724 return ret;
2725}
2726
Willy Tarreaube74b882017-10-04 16:22:49 +02002727/* proceed with next steps for the TCP checks <check>. Note that this is called
2728 * both from the connection's wake() callback and from the check scheduling task.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002729 * It returns 0 on normal cases, or <0 if a close() has happened on an existing
2730 * connection, presenting the risk of an fd replacement.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002731 *
2732 * Please do NOT place any return statement in this function and only leave
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002733 * via the out_end_tcpcheck label after setting retcode.
Willy Tarreaube74b882017-10-04 16:22:49 +02002734 */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002735static int tcpcheck_main(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002736{
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002737 char *contentptr, *comment;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002738 struct tcpcheck_rule *next;
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002739 int done = 0, ret = 0, step = 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002740 struct conn_stream *cs = check->cs;
2741 struct connection *conn = cs_conn(cs);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002742 struct server *s = check->server;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002743 struct proxy *proxy = check->proxy;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002744 struct task *t = check->task;
Simon Hormane16c1b32015-01-30 11:22:57 +09002745 struct list *head = check->tcpcheck_rules;
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002746 int retcode = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002747
Willy Tarreauef953952014-10-02 14:30:14 +02002748 /* here, we know that the check is complete or that it failed */
2749 if (check->result != CHK_RES_UNKNOWN)
2750 goto out_end_tcpcheck;
2751
2752 /* We have 4 possibilities here :
2753 * 1. we've not yet attempted step 1, and step 1 is a connect, so no
Willy Tarreau00149122017-10-04 18:05:01 +02002754 * connection attempt was made yet ; conn==NULL;current_step==NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002755 * 2. we've not yet attempted step 1, and step 1 is a not connect or
2756 * does not exist (no rule), so a connection attempt was made
Willy Tarreau00149122017-10-04 18:05:01 +02002757 * before coming here, conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002758 * 3. we're coming back after having started with step 1, so we may
Willy Tarreau00149122017-10-04 18:05:01 +02002759 * be waiting for a connection attempt to complete. conn!=NULL.
2760 * 4. the connection + handshake are complete. conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002761 *
2762 * #2 and #3 are quite similar, we want both the connection and the
2763 * handshake to complete before going any further. Thus we must always
2764 * wait for a connection to complete unless we're before and existing
2765 * step 1.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002766 */
Willy Tarreau449f9522015-05-13 15:39:48 +02002767
2768 /* find first rule and skip comments */
2769 next = LIST_NEXT(head, struct tcpcheck_rule *, list);
2770 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
2771 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
2772
Willy Tarreau00149122017-10-04 18:05:01 +02002773 if ((check->current_step || &next->list == head) &&
2774 (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE))) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002775 /* we allow up to min(inter, timeout.connect) for a connection
2776 * to establish but only when timeout.check is set
2777 * as it may be to short for a full check otherwise
2778 */
2779 while (tick_is_expired(t->expire, now_ms)) {
2780 int t_con;
2781
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002782 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002783 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2784
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002785 if (proxy->timeout.check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002786 t->expire = tick_first(t->expire, t_con);
2787 }
Christopher Fauletb6102852017-11-28 10:06:29 +01002788 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002789 }
2790
Willy Tarreauef953952014-10-02 14:30:14 +02002791 /* special case: option tcp-check with no rule, a connect is enough */
Willy Tarreau449f9522015-05-13 15:39:48 +02002792 if (&next->list == head) {
Willy Tarreauef953952014-10-02 14:30:14 +02002793 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002794 goto out_end_tcpcheck;
Willy Tarreauef953952014-10-02 14:30:14 +02002795 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002796
Willy Tarreau213c6782014-10-02 14:51:02 +02002797 /* no step means first step initialisation */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002798 if (check->current_step == NULL) {
Willy Tarreau213c6782014-10-02 14:51:02 +02002799 check->last_started_step = NULL;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002800 b_reset(&check->bo);
2801 b_reset(&check->bi);
Willy Tarreau449f9522015-05-13 15:39:48 +02002802 check->current_step = next;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002803 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002804 if (proxy->timeout.check)
2805 t->expire = tick_add_ifset(now_ms, proxy->timeout.check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002806 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002807
Willy Tarreauabca5b62013-12-06 14:19:25 +01002808 while (1) {
Willy Tarreau263013d2015-05-13 11:59:14 +02002809 /* We have to try to flush the output buffer before reading, at
2810 * the end, or if we're about to send a string that does not fit
2811 * in the remaining space. That explains why we break out of the
Willy Tarreau00149122017-10-04 18:05:01 +02002812 * loop after this control. If we have data, conn is valid.
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002813 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002814 if (b_data(&check->bo) &&
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002815 (&check->current_step->list == head ||
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002816 check->current_step->action != TCPCHK_ACT_SEND ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002817 check->current_step->string_len >= b_room(&check->bo))) {
Willy Tarreaudeccd112018-06-14 18:38:55 +02002818 int ret;
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002819
Olivier Houcharded0f2072018-08-16 15:41:52 +02002820 ret = cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002821 b_realign_if_empty(&check->bo);
Willy Tarreaudeccd112018-06-14 18:38:55 +02002822
2823 if (ret <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002824 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002825 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002826 goto out_end_tcpcheck;
2827 }
Willy Tarreau263013d2015-05-13 11:59:14 +02002828 break;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002829 }
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002830 if (b_data(&check->bo)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002831 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002832 goto out;
2833 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01002834 }
2835
Willy Tarreau263013d2015-05-13 11:59:14 +02002836 if (&check->current_step->list == head)
Willy Tarreauabca5b62013-12-06 14:19:25 +01002837 break;
2838
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002839 /* have 'next' point to the next rule or NULL if we're on the
2840 * last one, connect() needs this.
2841 */
Willy Tarreau5581c272015-05-13 12:24:53 +02002842 next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002843
2844 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002845 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002846 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002847
2848 /* NULL if we're on the last rule */
Willy Tarreauf3d34822014-12-08 12:11:28 +01002849 if (&next->list == head)
2850 next = NULL;
2851
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002852 if (check->current_step->action == TCPCHK_ACT_CONNECT) {
2853 struct protocol *proto;
2854 struct xprt_ops *xprt;
2855
Willy Tarreau00149122017-10-04 18:05:01 +02002856 /* For a connect action we'll create a new connection.
2857 * We may also have to kill a previous one. But we don't
2858 * want to leave *without* a connection if we came here
2859 * from the connection layer, hence with a connection.
2860 * Thus we'll proceed in the following order :
2861 * 1: close but not release previous connection
2862 * 2: try to get a new connection
2863 * 3: release and replace the old one on success
2864 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002865 if (check->cs) {
Willy Tarreaua553ae92017-10-05 18:52:17 +02002866 cs_close(check->cs);
2867 retcode = -1; /* do not reuse the fd in the caller! */
Willy Tarreau00149122017-10-04 18:05:01 +02002868 }
2869
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002870 /* mark the step as started */
2871 check->last_started_step = check->current_step;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002872
2873 /* prepare new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002874 cs = cs_new(NULL);
2875 if (!cs) {
Willy Tarreau00149122017-10-04 18:05:01 +02002876 step = tcpcheck_get_step_id(check);
2877 chunk_printf(&trash, "TCPCHK error allocating connection at step %d", step);
2878 comment = tcpcheck_get_step_comment(check, step);
2879 if (comment)
2880 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002881 set_server_check_status(check, HCHK_STATUS_SOCKERR,
2882 trash.area);
Willy Tarreau00149122017-10-04 18:05:01 +02002883 check->current_step = NULL;
Christopher Fauletb6102852017-11-28 10:06:29 +01002884 goto out;
Willy Tarreau00149122017-10-04 18:05:01 +02002885 }
2886
Olivier Houchard49065542019-05-31 19:20:36 +02002887 if (check->cs) {
2888 if (check->wait_list.events)
2889 cs->conn->xprt->unsubscribe(cs->conn,
2890 cs->conn->xprt_ctx,
2891 check->wait_list.events,
2892 &check->wait_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02002893 /* We may have been scheduled to run, and the
2894 * I/O handler expects to have a cs, so remove
2895 * the tasklet
2896 */
2897 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Willy Tarreauac59f362017-10-08 11:10:19 +02002898 cs_destroy(check->cs);
Olivier Houchard49065542019-05-31 19:20:36 +02002899 }
Willy Tarreau00149122017-10-04 18:05:01 +02002900
Olivier Houchardff1e9f32019-09-20 17:18:35 +02002901 tasklet_set_tid(check->wait_list.tasklet, tid);
2902
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002903 check->cs = cs;
2904 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02002905 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002906 check->wait_list.events = 0;
Olivier Houchard0923fa42019-01-11 18:43:04 +01002907 conn->target = s ? &s->obj_type : &proxy->obj_type;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002908
2909 /* no client address */
Willy Tarreauca79f592019-07-17 19:04:47 +02002910
2911 if (!sockaddr_alloc(&conn->dst)) {
2912 ret = SF_ERR_RESOURCE;
2913 goto fail_check;
2914 }
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002915
Simon Horman41f58762015-01-30 11:22:56 +09002916 if (is_addr(&check->addr)) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002917 /* we'll connect to the check addr specified on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002918 *conn->dst = check->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002919 }
2920 else {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002921 /* we'll connect to the addr on the server */
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002922 *conn->dst = s->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002923 }
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002924 proto = protocol_by_family(conn->dst->ss_family);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002925
2926 /* port */
2927 if (check->current_step->port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002928 set_host_port(conn->dst, check->current_step->port);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002929 else if (check->port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002930 set_host_port(conn->dst, check->port);
Baptiste Assmann2f3a56b2018-03-19 12:22:41 +01002931 else if (s->svc_port)
Willy Tarreaub3c81cb2019-07-17 16:54:52 +02002932 set_host_port(conn->dst, s->svc_port);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002933
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002934 if (check->current_step->conn_opts & TCPCHK_OPT_SSL) {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002935 xprt = xprt_get(XPRT_SSL);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002936 }
2937 else {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002938 xprt = xprt_get(XPRT_RAW);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002939 }
Willy Tarreaube373152018-09-06 11:45:30 +02002940
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002941 conn_prepare(conn, proto, xprt);
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002942
2943 if (conn_install_mux(conn, &mux_pt_ops, cs, proxy, NULL) < 0) {
2944 ret = SF_ERR_RESOURCE;
2945 goto fail_check;
2946 }
2947
Willy Tarreaube373152018-09-06 11:45:30 +02002948 cs_attach(cs, check, &check_conn_cb);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002949
Willy Tarreaue7dff022015-04-03 01:14:29 +02002950 ret = SF_ERR_INTERNAL;
Ricardo Nabinger Sanchez4bccea92019-03-28 21:42:23 -03002951 if (proto && proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01002952 ret = proto->connect(conn,
Olivier Houchardfdcb0072019-05-06 18:32:29 +02002953 CONNECT_HAS_DATA /* I/O polling is always needed */ | (next && next->action == TCPCHK_ACT_EXPECT) ? 0 : CONNECT_DELACK_ALWAYS);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002954 if (check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) {
2955 conn->send_proxy_ofs = 1;
2956 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02002957 if (xprt_add_hs(conn) < 0)
2958 ret = SF_ERR_RESOURCE;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002959 }
2960
2961 /* It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002962 * - SF_ERR_NONE if everything's OK
2963 * - SF_ERR_SRVTO if there are no more servers
2964 * - SF_ERR_SRVCL if the connection was refused by the server
2965 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
2966 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
2967 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01002968 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002969 * Note that we try to prevent the network stack from sending the ACK during the
2970 * connect() when a pure TCP check is used (without PROXY protocol).
2971 */
Willy Tarreau2ab5c382019-07-17 18:48:07 +02002972 fail_check:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002973 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002974 case SF_ERR_NONE:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002975 /* we allow up to min(inter, timeout.connect) for a connection
2976 * to establish but only when timeout.check is set
2977 * as it may be to short for a full check otherwise
2978 */
2979 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2980
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002981 if (proxy->timeout.check && proxy->timeout.connect) {
2982 int t_con = tick_add(now_ms, proxy->timeout.connect);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002983 t->expire = tick_first(t->expire, t_con);
2984 }
2985 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002986 case SF_ERR_SRVTO: /* ETIMEDOUT */
2987 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002988 step = tcpcheck_get_step_id(check);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002989 chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002990 step, strerror(errno));
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002991 comment = tcpcheck_get_step_comment(check, step);
2992 if (comment)
2993 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002994 set_server_check_status(check, HCHK_STATUS_L4CON,
2995 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002996 goto out_end_tcpcheck;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002997 case SF_ERR_PRXCOND:
2998 case SF_ERR_RESOURCE:
2999 case SF_ERR_INTERNAL:
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003000 step = tcpcheck_get_step_id(check);
3001 chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003002 comment = tcpcheck_get_step_comment(check, step);
3003 if (comment)
3004 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003005 set_server_check_status(check, HCHK_STATUS_SOCKERR,
3006 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003007 goto out_end_tcpcheck;
3008 }
3009
3010 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003011 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003012
3013 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003014 while (&check->current_step->list != head &&
3015 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003016 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003017
Willy Tarreauf2c87352015-05-13 12:08:21 +02003018 if (&check->current_step->list == head)
3019 break;
3020
Willy Tarreau7df8ca62019-07-15 10:57:51 +02003021 /* don't do anything until the connection is established */
3022 if (!(conn->flags & CO_FL_CONNECTED))
3023 break;
3024
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003025 } /* end 'connect' */
3026 else if (check->current_step->action == TCPCHK_ACT_SEND) {
3027 /* mark the step as started */
3028 check->last_started_step = check->current_step;
3029
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003030 /* reset the read buffer */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003031 if (*b_head(&check->bi) != '\0') {
3032 *b_head(&check->bi) = '\0';
3033 b_reset(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003034 }
3035
Willy Tarreaubbae3f02017-08-30 09:59:52 +02003036 if (conn->flags & CO_FL_SOCK_WR_SH) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003037 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003038 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003039 goto out_end_tcpcheck;
3040 }
3041
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003042 if (check->current_step->string_len >= b_size(&check->bo)) {
Willy Tarreau506a29a2018-07-18 10:07:58 +02003043 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%u) at step %d",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003044 check->current_step->string_len, (unsigned int)b_size(&check->bo),
Simon Hormane16c1b32015-01-30 11:22:57 +09003045 tcpcheck_get_step_id(check));
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003046 set_server_check_status(check, HCHK_STATUS_L7RSP,
3047 trash.area);
Willy Tarreauabca5b62013-12-06 14:19:25 +01003048 goto out_end_tcpcheck;
3049 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003050
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003051 /* do not try to send if there is no space */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003052 if (check->current_step->string_len >= b_room(&check->bo))
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003053 continue;
3054
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003055 b_putblk(&check->bo, check->current_step->string, check->current_step->string_len);
3056 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003057
Willy Tarreauabca5b62013-12-06 14:19:25 +01003058 /* go to next rule and try to send */
Willy Tarreau5581c272015-05-13 12:24:53 +02003059 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003060
3061 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003062 while (&check->current_step->list != head &&
3063 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003064 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Willy Tarreauf2c87352015-05-13 12:08:21 +02003065
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003066 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003067 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003068 if (unlikely(check->result == CHK_RES_FAILED))
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003069 goto out_end_tcpcheck;
3070
Olivier Houchard0ba6c852019-07-18 15:09:08 +02003071 /* If we already subscribed, then we tried to received
3072 * and failed, so there's no point trying again.
3073 */
3074 if (check->wait_list.events & SUB_RETRY_RECV)
3075 break;
Olivier Houchard511efea2018-08-16 15:30:32 +02003076 if (cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0) <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02003077 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003078 done = 1;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003079 if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003080 /* Report network errors only if we got no other data. Otherwise
3081 * we'll let the upper layers decide whether the response is OK
3082 * or not. It is very common that an RST sent by the server is
3083 * reported as an error just after the last data chunk.
3084 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003085 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003086 goto out_end_tcpcheck;
3087 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003088 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003089 else {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003090 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Willy Tarreau263013d2015-05-13 11:59:14 +02003091 break;
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003092 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003093 }
3094
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003095 /* mark the step as started */
3096 check->last_started_step = check->current_step;
3097
3098
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003099 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003100 * Terminate string in b_head(&check->bi) buffer.
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003101 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003102 if (b_data(&check->bi) < b_size(&check->bi)) {
3103 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003104 }
3105 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003106 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003107 done = 1; /* buffer full, don't wait for more data */
3108 }
3109
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003110 contentptr = b_head(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003111
3112 /* Check that response body is not empty... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003113 if (!b_data(&check->bi)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003114 if (!done)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003115 continue;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003116
3117 /* empty response */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003118 step = tcpcheck_get_step_id(check);
3119 chunk_printf(&trash, "TCPCHK got an empty response at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003120 comment = tcpcheck_get_step_comment(check, step);
3121 if (comment)
3122 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003123 set_server_check_status(check, HCHK_STATUS_L7RSP,
3124 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003125
3126 goto out_end_tcpcheck;
3127 }
3128
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003129 if (!done && (check->current_step->string != NULL) && (b_data(&check->bi) < check->current_step->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01003130 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003131
Willy Tarreaua970c282013-12-06 12:47:19 +01003132 tcpcheck_expect:
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003133 if (check->current_step->string != NULL)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003134 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 +02003135 else if (check->current_step->expect_regex != NULL)
3136 ret = regex_exec(check->current_step->expect_regex, contentptr);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003137
3138 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01003139 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003140
3141 /* matched */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003142 step = tcpcheck_get_step_id(check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003143 if (ret) {
3144 /* matched but we did not want to => ERROR */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003145 if (check->current_step->inverse) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003146 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003147 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003148 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003149 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003150 }
3151 else {
3152 /* we were looking for a regex */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003153 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d", step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003154 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003155 comment = tcpcheck_get_step_comment(check, step);
3156 if (comment)
3157 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003158 set_server_check_status(check, HCHK_STATUS_L7RSP,
3159 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003160 goto out_end_tcpcheck;
3161 }
3162 /* matched and was supposed to => OK, next step */
3163 else {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003164 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003165 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003166
3167 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003168 while (&check->current_step->list != head &&
3169 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003170 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003171
Willy Tarreauf2c87352015-05-13 12:08:21 +02003172 if (&check->current_step->list == head)
3173 break;
3174
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003175 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003176 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003177 }
3178 }
3179 else {
3180 /* not matched */
3181 /* not matched and was not supposed to => OK, next step */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003182 if (check->current_step->inverse) {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003183 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003184 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003185
3186 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003187 while (&check->current_step->list != head &&
3188 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003189 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003190
Willy Tarreauf2c87352015-05-13 12:08:21 +02003191 if (&check->current_step->list == head)
3192 break;
3193
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003194 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003195 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003196 }
3197 /* not matched but was supposed to => ERROR */
3198 else {
3199 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003200 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003201 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003202 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003203 }
3204 else {
3205 /* we were looking for a regex */
3206 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003207 step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003208 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003209 comment = tcpcheck_get_step_comment(check, step);
3210 if (comment)
3211 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003212 set_server_check_status(check, HCHK_STATUS_L7RSP,
3213 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003214 goto out_end_tcpcheck;
3215 }
3216 }
3217 } /* end expect */
3218 } /* end loop over double chained step list */
3219
Baptiste Assmann248f1172018-03-01 21:49:01 +01003220 /* don't do anything until the connection is established */
3221 if (!(conn->flags & CO_FL_CONNECTED)) {
3222 /* update expire time, should be done by process_chk */
3223 /* we allow up to min(inter, timeout.connect) for a connection
3224 * to establish but only when timeout.check is set
3225 * as it may be to short for a full check otherwise
3226 */
3227 while (tick_is_expired(t->expire, now_ms)) {
3228 int t_con;
3229
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003230 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann248f1172018-03-01 21:49:01 +01003231 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
3232
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003233 if (proxy->timeout.check)
Baptiste Assmann248f1172018-03-01 21:49:01 +01003234 t->expire = tick_first(t->expire, t_con);
3235 }
3236 goto out;
3237 }
3238
Willy Tarreau263013d2015-05-13 11:59:14 +02003239 /* We're waiting for some I/O to complete, we've reached the end of the
3240 * rules, or both. Do what we have to do, otherwise we're done.
3241 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003242 if (&check->current_step->list == head && !b_data(&check->bo)) {
Willy Tarreau263013d2015-05-13 11:59:14 +02003243 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
3244 goto out_end_tcpcheck;
3245 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003246
Willy Tarreau53c5a042015-05-13 11:38:17 +02003247 if (&check->current_step->list != head &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003248 check->current_step->action == TCPCHK_ACT_EXPECT)
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003249 __event_srv_chk_r(cs);
Christopher Fauletb6102852017-11-28 10:06:29 +01003250 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003251
3252 out_end_tcpcheck:
3253 /* collect possible new errors */
Willy Tarreauef91c932019-07-23 14:37:47 +02003254 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003255 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003256
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003257 /* cleanup before leaving */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003258 check->current_step = NULL;
3259
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003260 if (check->result == CHK_RES_FAILED)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003261 conn->flags |= CO_FL_ERROR;
3262
Christopher Fauletb6102852017-11-28 10:06:29 +01003263 out:
Willy Tarreau6bdcab02017-10-04 18:41:00 +02003264 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003265}
3266
Simon Hormanb1900d52015-01-30 11:22:54 +09003267const char *init_check(struct check *check, int type)
3268{
3269 check->type = type;
3270
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003271 b_reset(&check->bi); check->bi.size = global.tune.chksize;
3272 b_reset(&check->bo); check->bo.size = global.tune.chksize;
Simon Hormanb1900d52015-01-30 11:22:54 +09003273
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003274 check->bi.area = calloc(check->bi.size, sizeof(char));
3275 check->bo.area = calloc(check->bo.size, sizeof(char));
3276
3277 if (!check->bi.area || !check->bo.area)
Simon Hormanb1900d52015-01-30 11:22:54 +09003278 return "out of memory while allocating check buffer";
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003279
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003280 check->wait_list.tasklet = tasklet_new();
3281 if (!check->wait_list.tasklet)
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02003282 return "out of memroy while allocating check tasklet";
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003283 check->wait_list.events = 0;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003284 check->wait_list.tasklet->process = event_srv_chk_io;
3285 check->wait_list.tasklet->context = check;
Simon Hormanb1900d52015-01-30 11:22:54 +09003286 return NULL;
3287}
3288
Simon Hormanbfb5d332015-01-30 11:22:55 +09003289void free_check(struct check *check)
3290{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003291 free(check->bi.area);
3292 free(check->bo.area);
Christopher Faulet23d86d12018-01-25 11:36:35 +01003293 if (check->cs) {
3294 free(check->cs->conn);
3295 check->cs->conn = NULL;
3296 cs_free(check->cs);
3297 check->cs = NULL;
3298 }
Simon Hormanbfb5d332015-01-30 11:22:55 +09003299}
3300
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003301void email_alert_free(struct email_alert *alert)
3302{
3303 struct tcpcheck_rule *rule, *back;
3304
3305 if (!alert)
3306 return;
3307
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003308 list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list) {
3309 LIST_DEL(&rule->list);
3310 free(rule->comment);
3311 free(rule->string);
Dragan Dosen26743032019-04-30 15:54:36 +02003312 regex_free(rule->expect_regex);
Willy Tarreaubafbe012017-11-24 17:34:44 +01003313 pool_free(pool_head_tcpcheck_rule, rule);
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003314 }
Willy Tarreaubafbe012017-11-24 17:34:44 +01003315 pool_free(pool_head_email_alert, alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003316}
3317
Olivier Houchard9f6af332018-05-25 14:04:04 +02003318static struct task *process_email_alert(struct task *t, void *context, unsigned short state)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003319{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003320 struct check *check = context;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003321 struct email_alertq *q;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003322 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003323
3324 q = container_of(check, typeof(*q), check);
3325
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003326 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003327 while (1) {
3328 if (!(check->state & CHK_ST_ENABLED)) {
3329 if (LIST_ISEMPTY(&q->email_alerts)) {
3330 /* All alerts processed, queue the task */
3331 t->expire = TICK_ETERNITY;
3332 task_queue(t);
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003333 goto end;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003334 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003335
3336 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003337 LIST_DEL(&alert->list);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003338 t->expire = now_ms;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003339 check->tcpcheck_rules = &alert->tcpcheck_rules;
Olivier Houchard0923fa42019-01-11 18:43:04 +01003340 check->status = HCHK_STATUS_INI;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003341 check->state |= CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003342 }
3343
Olivier Houchard9f6af332018-05-25 14:04:04 +02003344 process_chk(t, context, state);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003345 if (check->state & CHK_ST_INPROGRESS)
3346 break;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003347
3348 alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules);
3349 email_alert_free(alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003350 check->tcpcheck_rules = NULL;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003351 check->server = NULL;
3352 check->state &= ~CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003353 }
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003354 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003355 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003356 return t;
3357}
3358
Christopher Faulet0108bb32017-10-20 21:34:32 +02003359/* Initializes mailer alerts for the proxy <p> using <mls> parameters.
3360 *
3361 * The function returns 1 in success case, otherwise, it returns 0 and err is
3362 * filled.
3363 */
3364int init_email_alert(struct mailers *mls, struct proxy *p, char **err)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003365{
Christopher Faulet0108bb32017-10-20 21:34:32 +02003366 struct mailer *mailer;
3367 struct email_alertq *queues;
3368 const char *err_str;
3369 int i = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003370
Christopher Faulet0108bb32017-10-20 21:34:32 +02003371 if ((queues = calloc(mls->count, sizeof(*queues))) == NULL) {
3372 memprintf(err, "out of memory while allocating mailer alerts queues");
mildis5ab01cb2018-10-02 16:46:34 +02003373 goto fail_no_queue;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003374 }
3375
Christopher Faulet0108bb32017-10-20 21:34:32 +02003376 for (mailer = mls->mailer_list; mailer; i++, mailer = mailer->next) {
3377 struct email_alertq *q = &queues[i];
3378 struct check *check = &q->check;
3379 struct task *t;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003380
3381 LIST_INIT(&q->email_alerts);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003382 HA_SPIN_INIT(&q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003383 check->inter = mls->timeout.mail;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003384 check->rise = DEF_AGENT_RISETIME;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003385 check->proxy = p;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003386 check->fall = DEF_AGENT_FALLTIME;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003387 if ((err_str = init_check(check, PR_O2_TCPCHK_CHK))) {
3388 memprintf(err, "%s", err_str);
3389 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003390 }
3391
3392 check->xprt = mailer->xprt;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003393 check->addr = mailer->addr;
Christopher Fauletb797ae12018-03-27 15:35:35 +02003394 check->port = get_host_port(&mailer->addr);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003395
Emeric Brunc60def82017-09-27 14:59:38 +02003396 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003397 memprintf(err, "out of memory while allocating mailer alerts task");
3398 goto error;
3399 }
3400
3401 check->task = t;
3402 t->process = process_email_alert;
3403 t->context = check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003404
Christopher Faulet0108bb32017-10-20 21:34:32 +02003405 /* check this in one ms */
3406 t->expire = TICK_ETERNITY;
3407 check->start = now;
3408 task_queue(t);
3409 }
3410
3411 mls->users++;
3412 free(p->email_alert.mailers.name);
3413 p->email_alert.mailers.m = mls;
3414 p->email_alert.queues = queues;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003415 return 0;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003416
3417 error:
3418 for (i = 0; i < mls->count; i++) {
3419 struct email_alertq *q = &queues[i];
3420 struct check *check = &q->check;
3421
Willy Tarreauf6562792019-05-07 19:05:35 +02003422 task_destroy(check->task);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003423 free_check(check);
3424 }
3425 free(queues);
mildis5ab01cb2018-10-02 16:46:34 +02003426 fail_no_queue:
Christopher Faulet0108bb32017-10-20 21:34:32 +02003427 return 1;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003428}
3429
3430
3431static int add_tcpcheck_expect_str(struct list *list, const char *str)
3432{
3433 struct tcpcheck_rule *tcpcheck;
3434
Willy Tarreaubafbe012017-11-24 17:34:44 +01003435 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003436 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003437 memset(tcpcheck, 0, sizeof(*tcpcheck));
3438 tcpcheck->action = TCPCHK_ACT_EXPECT;
3439 tcpcheck->string = strdup(str);
3440 tcpcheck->expect_regex = NULL;
3441 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003442 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003443 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003444 return 0;
3445 }
3446
3447 LIST_ADDQ(list, &tcpcheck->list);
3448 return 1;
3449}
3450
3451static int add_tcpcheck_send_strs(struct list *list, const char * const *strs)
3452{
3453 struct tcpcheck_rule *tcpcheck;
Willy Tarreau64345aa2016-08-10 19:29:09 +02003454 const char *in;
3455 char *dst;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003456 int i;
3457
Willy Tarreaubafbe012017-11-24 17:34:44 +01003458 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003459 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003460 memset(tcpcheck, 0, sizeof(*tcpcheck));
3461 tcpcheck->action = TCPCHK_ACT_SEND;
3462 tcpcheck->expect_regex = NULL;
3463 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003464 tcpcheck->string_len = 0;
3465 for (i = 0; strs[i]; i++)
3466 tcpcheck->string_len += strlen(strs[i]);
3467
3468 tcpcheck->string = malloc(tcpcheck->string_len + 1);
3469 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003470 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003471 return 0;
3472 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003473
Willy Tarreau64345aa2016-08-10 19:29:09 +02003474 dst = tcpcheck->string;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003475 for (i = 0; strs[i]; i++)
Willy Tarreau64345aa2016-08-10 19:29:09 +02003476 for (in = strs[i]; (*dst = *in++); dst++);
3477 *dst = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003478
3479 LIST_ADDQ(list, &tcpcheck->list);
3480 return 1;
3481}
3482
Christopher Faulet0108bb32017-10-20 21:34:32 +02003483static int enqueue_one_email_alert(struct proxy *p, struct server *s,
3484 struct email_alertq *q, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003485{
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003486 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003487 struct tcpcheck_rule *tcpcheck;
3488 struct check *check = &q->check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003489
Willy Tarreaubafbe012017-11-24 17:34:44 +01003490 if ((alert = pool_alloc(pool_head_email_alert)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003491 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003492 LIST_INIT(&alert->list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003493 LIST_INIT(&alert->tcpcheck_rules);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003494 alert->srv = s;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003495
Willy Tarreaubafbe012017-11-24 17:34:44 +01003496 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003497 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003498 memset(tcpcheck, 0, sizeof(*tcpcheck));
3499 tcpcheck->action = TCPCHK_ACT_CONNECT;
3500 tcpcheck->comment = NULL;
3501 tcpcheck->string = NULL;
3502 tcpcheck->expect_regex = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003503 LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list);
3504
3505 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 "))
3506 goto error;
3507
3508 {
3509 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
3510 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3511 goto error;
3512 }
3513
3514 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3515 goto error;
3516
3517 {
3518 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
3519 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3520 goto error;
3521 }
3522
3523 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3524 goto error;
3525
3526 {
3527 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
3528 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3529 goto error;
3530 }
3531
3532 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3533 goto error;
3534
3535 {
3536 const char * const strs[2] = { "DATA\r\n" };
3537 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3538 goto error;
3539 }
3540
3541 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 "))
3542 goto error;
3543
3544 {
3545 struct tm tm;
3546 char datestr[48];
3547 const char * const strs[18] = {
Pieter Baauw5e0964e2016-02-13 16:27:35 +01003548 "From: ", p->email_alert.from, "\r\n",
3549 "To: ", p->email_alert.to, "\r\n",
3550 "Date: ", datestr, "\r\n",
3551 "Subject: [HAproxy Alert] ", msg, "\r\n",
3552 "\r\n",
3553 msg, "\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003554 "\r\n",
Pieter Baauwed35c372015-07-22 19:51:54 +02003555 ".\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003556 NULL
3557 };
3558
3559 get_localtime(date.tv_sec, &tm);
3560
3561 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
3562 goto error;
3563 }
3564
3565 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3566 goto error;
3567 }
3568
3569 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3570 goto error;
3571
3572 {
3573 const char * const strs[2] = { "QUIT\r\n" };
3574 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3575 goto error;
3576 }
3577
3578 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 "))
3579 goto error;
3580
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003581 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003582 task_wakeup(check->task, TASK_WOKEN_MSG);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003583 LIST_ADDQ(&q->email_alerts, &alert->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003584 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003585 return 1;
3586
3587error:
3588 email_alert_free(alert);
3589 return 0;
3590}
3591
Christopher Faulet0108bb32017-10-20 21:34:32 +02003592static void enqueue_email_alert(struct proxy *p, struct server *s, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003593{
3594 int i;
3595 struct mailer *mailer;
3596
3597 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3598 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003599 if (!enqueue_one_email_alert(p, s, &p->email_alert.queues[i], msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003600 ha_alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003601 return;
3602 }
3603 }
3604
3605 return;
3606}
3607
3608/*
3609 * Send email alert if configured.
3610 */
Simon Horman64e34162015-02-06 11:11:57 +09003611void send_email_alert(struct server *s, int level, const char *format, ...)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003612{
3613 va_list argp;
3614 char buf[1024];
3615 int len;
3616 struct proxy *p = s->proxy;
3617
Christopher Faulet0108bb32017-10-20 21:34:32 +02003618 if (!p->email_alert.mailers.m || level > p->email_alert.level || format == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003619 return;
3620
3621 va_start(argp, format);
3622 len = vsnprintf(buf, sizeof(buf), format, argp);
3623 va_end(argp);
3624
Thierry FOURNIER62c8a212017-02-09 12:19:27 +01003625 if (len < 0 || len >= sizeof(buf)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003626 ha_alert("Email alert [%s] could not format message\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003627 return;
3628 }
3629
Christopher Faulet0108bb32017-10-20 21:34:32 +02003630 enqueue_email_alert(p, s, buf);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003631}
3632
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003633/*
3634 * Return value:
3635 * the port to be used for the health check
3636 * 0 in case no port could be found for the check
3637 */
3638int srv_check_healthcheck_port(struct check *chk)
3639{
3640 int i = 0;
3641 struct server *srv = NULL;
3642
3643 srv = chk->server;
3644
3645 /* If neither a port nor an addr was specified and no check transport
3646 * layer is forced, then the transport layer used by the checks is the
3647 * same as for the production traffic. Otherwise we use raw_sock by
3648 * default, unless one is specified.
3649 */
3650 if (!chk->port && !is_addr(&chk->addr)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003651 chk->use_ssl |= (srv->use_ssl || (srv->proxy->options & PR_O_TCPCHK_SSL));
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003652 chk->send_proxy |= (srv->pp_opts);
3653 }
3654
3655 /* by default, we use the health check port ocnfigured */
3656 if (chk->port > 0)
3657 return chk->port;
3658
3659 /* try to get the port from check_core.addr if check.port not set */
3660 i = get_host_port(&chk->addr);
3661 if (i > 0)
3662 return i;
3663
3664 /* try to get the port from server address */
3665 /* prevent MAPPORTS from working at this point, since checks could
3666 * not be performed in such case (MAPPORTS impose a relative ports
3667 * based on live traffic)
3668 */
3669 if (srv->flags & SRV_F_MAPPORTS)
3670 return 0;
Willy Tarreau04276f32017-01-06 17:41:29 +01003671
3672 i = srv->svc_port; /* by default */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003673 if (i > 0)
3674 return i;
3675
3676 return 0;
3677}
3678
Willy Tarreau172f5ce2018-11-26 11:21:50 +01003679REGISTER_POST_CHECK(start_checks);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003680
Willy Tarreaubd741542010-03-16 18:46:54 +01003681/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003682 * Local variables:
3683 * c-indent-level: 8
3684 * c-basic-offset: 8
3685 * End:
3686 */