blob: ca33316b1cc4f0eceb49fb913f3815badb880c68 [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 Houchard81badc42019-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 Houchard81badc42019-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 Tarreau100cc4b2019-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 Tarreau25e2ab52013-12-04 11:17:05 +0100878
Willy Tarreau03938182010-03-17 21:52:07 +0100879 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200880 * Terminate string in b_head(&check->bi) buffer.
Willy Tarreau03938182010-03-17 21:52:07 +0100881 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200882 if (b_data(&check->bi) < b_size(&check->bi))
883 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100884 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200885 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100886 done = 1; /* buffer full, don't wait for more data */
887 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200888
Nick Chalk57b1bf72010-03-16 15:50:46 +0000889 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +0900890 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +0200891 case PR_O2_HTTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200892 if (!done && b_data(&check->bi) < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100893 goto wait_more_data;
894
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100895 /* Check if the server speaks HTTP 1.X */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200896 if ((b_data(&check->bi) < strlen("HTTP/1.0 000\r")) ||
897 (memcmp(b_head(&check->bi), "HTTP/1.", 7) != 0 ||
898 (*(b_head(&check->bi) + 12) != ' ' && *(b_head(&check->bi) + 12) != '\r')) ||
899 !isdigit((unsigned char) *(b_head(&check->bi) + 9)) || !isdigit((unsigned char) *(b_head(&check->bi) + 10)) ||
900 !isdigit((unsigned char) *(b_head(&check->bi) + 11))) {
901 cut_crlf(b_head(&check->bi));
902 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200903
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100904 goto out_wakeup;
905 }
906
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200907 check->code = str2uic(b_head(&check->bi) + 9);
908 desc = ltrim(b_head(&check->bi) + 12, ' ');
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200909
Willy Tarreaubd741542010-03-16 18:46:54 +0100910 if ((s->proxy->options & PR_O_DISABLE404) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200911 (s->next_state != SRV_ST_STOPPED) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +0000912 /* 404 may be accepted as "stopping" only if the server was up */
913 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900914 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000915 }
Willy Tarreaubd741542010-03-16 18:46:54 +0100916 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
917 /* Run content verification check... We know we have at least 13 chars */
918 if (!httpchk_expect(s, done))
919 goto wait_more_data;
920 }
921 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200922 else if (*(b_head(&check->bi) + 9) == '2' || *(b_head(&check->bi) + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +0100923 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900924 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +0100925 }
Nick Chalk57b1bf72010-03-16 15:50:46 +0000926 else {
927 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900928 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000929 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200930 break;
931
932 case PR_O2_SSL3_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200933 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +0100934 goto wait_more_data;
935
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100936 /* Check for SSLv3 alert or handshake */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200937 if ((b_data(&check->bi) >= 5) && (*b_head(&check->bi) == 0x15 || *b_head(&check->bi) == 0x16))
Simon Horman4a741432013-02-23 15:35:38 +0900938 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200939 else
Simon Horman4a741432013-02-23 15:35:38 +0900940 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200941 break;
942
943 case PR_O2_SMTP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200944 if (!done && b_data(&check->bi) < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100945 goto wait_more_data;
946
Willy Tarreau55706782019-08-06 16:26:31 +0200947 /* do not reset when closing, servers don't like this */
948 if (conn_ctrl_ready(cs->conn))
949 fdtab[cs->conn->handle.fd].linger_risk = 0;
950
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200951 /* Check if the server speaks SMTP */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200952 if ((b_data(&check->bi) < strlen("000\r")) ||
953 (*(b_head(&check->bi) + 3) != ' ' && *(b_head(&check->bi) + 3) != '\r') ||
954 !isdigit((unsigned char) *b_head(&check->bi)) || !isdigit((unsigned char) *(b_head(&check->bi) + 1)) ||
955 !isdigit((unsigned char) *(b_head(&check->bi) + 2))) {
956 cut_crlf(b_head(&check->bi));
957 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200958 goto out_wakeup;
959 }
960
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200961 check->code = str2uic(b_head(&check->bi));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200962
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200963 desc = ltrim(b_head(&check->bi) + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200964 cut_crlf(desc);
965
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100966 /* Check for SMTP code 2xx (should be 250) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200967 if (*b_head(&check->bi) == '2')
Simon Horman4a741432013-02-23 15:35:38 +0900968 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200969 else
Simon Horman4a741432013-02-23 15:35:38 +0900970 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200971 break;
972
Simon Hormana2b9dad2013-02-12 10:45:54 +0900973 case PR_O2_LB_AGENT_CHK: {
Willy Tarreau81f5d942013-12-09 20:51:51 +0100974 int status = HCHK_STATUS_CHECKED;
975 const char *hs = NULL; /* health status */
976 const char *as = NULL; /* admin status */
977 const char *ps = NULL; /* performance status */
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200978 const char *cs = NULL; /* maxconn */
Willy Tarreau81f5d942013-12-09 20:51:51 +0100979 const char *err = NULL; /* first error to report */
980 const char *wrn = NULL; /* first warning to report */
981 char *cmd, *p;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900982
Willy Tarreau81f5d942013-12-09 20:51:51 +0100983 /* We're getting an agent check response. The agent could
984 * have been disabled in the mean time with a long check
985 * still pending. It is important that we ignore the whole
986 * response.
987 */
988 if (!(check->server->agent.state & CHK_ST_ENABLED))
989 break;
990
991 /* The agent supports strings made of a single line ended by the
992 * first CR ('\r') or LF ('\n'). This line is composed of words
993 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
994 * line may optionally contained a description of a state change
995 * after a sharp ('#'), which is only considered if a health state
996 * is announced.
997 *
998 * Words may be composed of :
999 * - a numeric weight suffixed by the percent character ('%').
1000 * - a health status among "up", "down", "stopped", and "fail".
1001 * - an admin status among "ready", "drain", "maint".
1002 *
1003 * These words may appear in any order. If multiple words of the
1004 * same category appear, the last one wins.
1005 */
1006
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001007 p = b_head(&check->bi);
Willy Tarreau9809b782013-12-11 21:40:11 +01001008 while (*p && *p != '\n' && *p != '\r')
1009 p++;
1010
1011 if (!*p) {
1012 if (!done)
1013 goto wait_more_data;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001014
Willy Tarreau9809b782013-12-11 21:40:11 +01001015 /* at least inform the admin that the agent is mis-behaving */
1016 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
1017 break;
1018 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001019
Willy Tarreau9809b782013-12-11 21:40:11 +01001020 *p = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001021 cmd = b_head(&check->bi);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001022
Willy Tarreau81f5d942013-12-09 20:51:51 +01001023 while (*cmd) {
1024 /* look for next word */
1025 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
1026 cmd++;
1027 continue;
1028 }
Simon Horman671b6f02013-11-25 10:46:39 +09001029
Willy Tarreau81f5d942013-12-09 20:51:51 +01001030 if (*cmd == '#') {
1031 /* this is the beginning of a health status description,
1032 * skip the sharp and blanks.
1033 */
1034 cmd++;
1035 while (*cmd == '\t' || *cmd == ' ')
1036 cmd++;
Simon Horman671b6f02013-11-25 10:46:39 +09001037 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001038 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001039
1040 /* find the end of the word so that we have a null-terminated
1041 * word between <cmd> and <p>.
1042 */
1043 p = cmd + 1;
1044 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1045 p++;
1046 if (*p)
1047 *p++ = 0;
1048
1049 /* first, health statuses */
1050 if (strcasecmp(cmd, "up") == 0) {
1051 check->health = check->rise + check->fall - 1;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001052 status = HCHK_STATUS_L7OKD;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001053 hs = cmd;
1054 }
1055 else if (strcasecmp(cmd, "down") == 0) {
1056 check->health = 0;
1057 status = HCHK_STATUS_L7STS;
1058 hs = cmd;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001059 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001060 else if (strcasecmp(cmd, "stopped") == 0) {
1061 check->health = 0;
1062 status = HCHK_STATUS_L7STS;
1063 hs = cmd;
1064 }
1065 else if (strcasecmp(cmd, "fail") == 0) {
1066 check->health = 0;
1067 status = HCHK_STATUS_L7STS;
1068 hs = cmd;
1069 }
1070 /* admin statuses */
1071 else if (strcasecmp(cmd, "ready") == 0) {
1072 as = cmd;
1073 }
1074 else if (strcasecmp(cmd, "drain") == 0) {
1075 as = cmd;
1076 }
1077 else if (strcasecmp(cmd, "maint") == 0) {
1078 as = cmd;
1079 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001080 /* try to parse a weight here and keep the last one */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001081 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1082 ps = cmd;
1083 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001084 /* try to parse a maxconn here */
1085 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1086 cs = cmd;
1087 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001088 else {
1089 /* keep a copy of the first error */
1090 if (!err)
1091 err = cmd;
1092 }
1093 /* skip to next word */
1094 cmd = p;
1095 }
1096 /* here, cmd points either to \0 or to the beginning of a
1097 * description. Skip possible leading spaces.
1098 */
1099 while (*cmd == ' ' || *cmd == '\n')
1100 cmd++;
1101
1102 /* First, update the admin status so that we avoid sending other
1103 * possibly useless warnings and can also update the health if
1104 * present after going back up.
1105 */
1106 if (as) {
1107 if (strcasecmp(as, "drain") == 0)
1108 srv_adm_set_drain(check->server);
1109 else if (strcasecmp(as, "maint") == 0)
1110 srv_adm_set_maint(check->server);
1111 else
1112 srv_adm_set_ready(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001113 }
1114
Willy Tarreau81f5d942013-12-09 20:51:51 +01001115 /* now change weights */
1116 if (ps) {
1117 const char *msg;
1118
1119 msg = server_parse_weight_change_request(s, ps);
1120 if (!wrn || !*wrn)
1121 wrn = msg;
1122 }
1123
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001124 if (cs) {
1125 const char *msg;
1126
1127 cs += strlen("maxconn:");
1128
1129 msg = server_parse_maxconn_change_request(s, cs);
1130 if (!wrn || !*wrn)
1131 wrn = msg;
1132 }
1133
Willy Tarreau81f5d942013-12-09 20:51:51 +01001134 /* and finally health status */
1135 if (hs) {
1136 /* We'll report some of the warnings and errors we have
1137 * here. Down reports are critical, we leave them untouched.
1138 * Lack of report, or report of 'UP' leaves the room for
1139 * ERR first, then WARN.
Simon Hormana2b9dad2013-02-12 10:45:54 +09001140 */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001141 const char *msg = cmd;
Willy Tarreau83061a82018-07-13 11:56:34 +02001142 struct buffer *t;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001143
1144 if (!*msg || status == HCHK_STATUS_L7OKD) {
1145 if (err && *err)
1146 msg = err;
1147 else if (wrn && *wrn)
1148 msg = wrn;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001149 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001150
1151 t = get_trash_chunk();
1152 chunk_printf(t, "via agent : %s%s%s%s",
1153 hs, *msg ? " (" : "",
1154 msg, *msg ? ")" : "");
1155
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001156 set_server_check_status(check, status, t->area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001157 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001158 else if (err && *err) {
1159 /* No status change but we'd like to report something odd.
1160 * Just report the current state and copy the message.
1161 */
1162 chunk_printf(&trash, "agent reports an error : %s", err);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001163 set_server_check_status(check, status/*check->status*/,
1164 trash.area);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001165
Willy Tarreau81f5d942013-12-09 20:51:51 +01001166 }
1167 else if (wrn && *wrn) {
1168 /* No status change but we'd like to report something odd.
1169 * Just report the current state and copy the message.
1170 */
1171 chunk_printf(&trash, "agent warns : %s", wrn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001172 set_server_check_status(check, status/*check->status*/,
1173 trash.area);
Willy Tarreau81f5d942013-12-09 20:51:51 +01001174 }
1175 else
1176 set_server_check_status(check, status, NULL);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001177 break;
1178 }
1179
Willy Tarreau1620ec32011-08-06 17:05:02 +02001180 case PR_O2_PGSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001181 if (!done && b_data(&check->bi) < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001182 goto wait_more_data;
1183
Willy Tarreau55706782019-08-06 16:26:31 +02001184 /* do not reset when closing, servers don't like this */
1185 if (conn_ctrl_ready(cs->conn))
1186 fdtab[cs->conn->handle.fd].linger_risk = 0;
1187
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001188 if (b_head(&check->bi)[0] == 'R') {
Simon Horman4a741432013-02-23 15:35:38 +09001189 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001190 }
1191 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001192 if ((b_head(&check->bi)[0] == 'E') && (b_head(&check->bi)[5]!=0) && (b_head(&check->bi)[6]!=0))
1193 desc = &b_head(&check->bi)[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001194 else
1195 desc = "PostgreSQL unknown error";
1196
Simon Horman4a741432013-02-23 15:35:38 +09001197 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001198 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001199 break;
1200
1201 case PR_O2_REDIS_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001202 if (!done && b_data(&check->bi) < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001203 goto wait_more_data;
1204
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001205 if (strcmp(b_head(&check->bi), "+PONG\r\n") == 0) {
Simon Horman4a741432013-02-23 15:35:38 +09001206 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001207 }
1208 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001209 set_server_check_status(check, HCHK_STATUS_L7STS, b_head(&check->bi));
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001210 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001211 break;
1212
1213 case PR_O2_MYSQL_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001214 if (!done && b_data(&check->bi) < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001215 goto wait_more_data;
1216
Willy Tarreau55706782019-08-06 16:26:31 +02001217 /* do not reset when closing, servers don't like this */
1218 if (conn_ctrl_ready(cs->conn))
1219 fdtab[cs->conn->handle.fd].linger_risk = 0;
1220
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001221 if (s->proxy->check_len == 0) { // old mode
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001222 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001223 /* We set the MySQL Version in description for information purpose
1224 * FIXME : it can be cool to use MySQL Version for other purpose,
1225 * like mark as down old MySQL server.
1226 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001227 if (b_data(&check->bi) > 51) {
1228 desc = ltrim(b_head(&check->bi) + 5, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001229 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001230 }
1231 else {
1232 if (!done)
1233 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001234
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001235 /* it seems we have a OK packet but without a valid length,
1236 * it must be a protocol error
1237 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001238 set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi));
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001239 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001240 }
1241 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001242 /* An error message is attached in the Error packet */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001243 desc = ltrim(b_head(&check->bi) + 7, ' ');
Simon Horman4a741432013-02-23 15:35:38 +09001244 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001245 }
1246 } else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001247 unsigned int first_packet_len = ((unsigned int) *b_head(&check->bi)) +
1248 (((unsigned int) *(b_head(&check->bi) + 1)) << 8) +
1249 (((unsigned int) *(b_head(&check->bi) + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001250
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001251 if (b_data(&check->bi) == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001252 /* MySQL Error packet always begin with field_count = 0xff */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001253 if (*(b_head(&check->bi) + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001254 /* We have only one MySQL packet and it is a Handshake Initialization packet
1255 * but we need to have a second packet to know if it is alright
1256 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001257 if (!done && b_data(&check->bi) < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001258 goto wait_more_data;
1259 }
1260 else {
1261 /* We have only one packet and it is an Error packet,
1262 * an error message is attached, so we can display it
1263 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001264 desc = &b_head(&check->bi)[7];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001265 //ha_warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001266 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001267 }
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001268 } else if (b_data(&check->bi) > first_packet_len + 4) {
1269 unsigned int second_packet_len = ((unsigned int) *(b_head(&check->bi) + first_packet_len + 4)) +
1270 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 5)) << 8) +
1271 (((unsigned int) *(b_head(&check->bi) + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001272
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001273 if (b_data(&check->bi) == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001274 /* We have 2 packets and that's good */
1275 /* Check if the second packet is a MySQL Error packet or not */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001276 if (*(b_head(&check->bi) + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001277 /* No error packet */
1278 /* We set the MySQL Version in description for information purpose */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001279 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 //ha_warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001281 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001282 }
1283 else {
1284 /* An error message is attached in the Error packet
1285 * so we can display it ! :)
1286 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001287 desc = &b_head(&check->bi)[first_packet_len+11];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001288 //ha_warning("2packetERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001289 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001290 }
1291 }
1292 }
1293 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001294 if (!done)
1295 goto wait_more_data;
Emeric Brun9f0b4582017-10-23 14:39:51 +02001296
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001297 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001298 * it must be a protocol error
1299 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001300 desc = &b_head(&check->bi)[5];
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 //ha_warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001302 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001303 }
1304 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001305 break;
1306
1307 case PR_O2_LDAP_CHK:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001308 if (!done && b_data(&check->bi) < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001309 goto wait_more_data;
1310
1311 /* Check if the server speaks LDAP (ASN.1/BER)
1312 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1313 * http://tools.ietf.org/html/rfc4511
1314 */
1315
1316 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1317 * LDAPMessage: 0x30: SEQUENCE
1318 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001319 if ((b_data(&check->bi) < 14) || (*(b_head(&check->bi)) != '\x30')) {
Simon Horman4a741432013-02-23 15:35:38 +09001320 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001321 }
1322 else {
1323 /* size of LDAPMessage */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001324 msglen = (*(b_head(&check->bi) + 1) & 0x80) ? (*(b_head(&check->bi) + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001325
1326 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1327 * messageID: 0x02 0x01 0x01: INTEGER 1
1328 * protocolOp: 0x61: bindResponse
1329 */
1330 if ((msglen > 2) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001331 (memcmp(b_head(&check->bi) + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
Simon Horman4a741432013-02-23 15:35:38 +09001332 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001333 goto out_wakeup;
1334 }
1335
1336 /* size of bindResponse */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001337 msglen += (*(b_head(&check->bi) + msglen + 6) & 0x80) ? (*(b_head(&check->bi) + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001338
1339 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1340 * ldapResult: 0x0a 0x01: ENUMERATION
1341 */
1342 if ((msglen > 4) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001343 (memcmp(b_head(&check->bi) + 7 + msglen, "\x0a\x01", 2) != 0)) {
Simon Horman4a741432013-02-23 15:35:38 +09001344 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001345 goto out_wakeup;
1346 }
1347
1348 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1349 * resultCode
1350 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001351 check->code = *(b_head(&check->bi) + msglen + 9);
Simon Horman4a741432013-02-23 15:35:38 +09001352 if (check->code) {
1353 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 +02001354 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001355 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001356 }
1357 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001358 break;
1359
Christopher Fauletba7bc162016-11-07 21:07:38 +01001360 case PR_O2_SPOP_CHK: {
1361 unsigned int framesz;
1362 char err[HCHK_DESC_LEN];
1363
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001364 if (!done && b_data(&check->bi) < 4)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001365 goto wait_more_data;
1366
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001367 memcpy(&framesz, b_head(&check->bi), 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001368 framesz = ntohl(framesz);
1369
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001370 if (!done && b_data(&check->bi) < (4+framesz))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001371 goto wait_more_data;
1372
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001373 if (!spoe_handle_healthcheck_response(b_head(&check->bi)+4, framesz, err, HCHK_DESC_LEN-1))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001374 set_server_check_status(check, HCHK_STATUS_L7OKD, "SPOA server is ok");
1375 else
1376 set_server_check_status(check, HCHK_STATUS_L7STS, err);
1377 break;
1378 }
1379
Willy Tarreau1620ec32011-08-06 17:05:02 +02001380 default:
Willy Tarreau06559ac2013-12-05 01:53:08 +01001381 /* for other checks (eg: pure TCP), delegate to the main task */
Willy Tarreau1620ec32011-08-06 17:05:02 +02001382 break;
1383 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001384
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001385 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001386 /* collect possible new errors */
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001387 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001388 chk_report_conn_err(check, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001389
Nick Chalk57b1bf72010-03-16 15:50:46 +00001390 /* Reset the check buffer... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001391 *b_head(&check->bi) = '\0';
1392 b_reset(&check->bi);
Nick Chalk57b1bf72010-03-16 15:50:46 +00001393
Steven Davidovitz544d4812017-03-08 11:06:20 -08001394 /* Close the connection... We still attempt to nicely close if,
1395 * for instance, SSL needs to send a "close notify." Later, we perform
1396 * a hard close and reset the connection if some data are pending,
1397 * otherwise we end up with many TIME_WAITs and eat all the source port
1398 * range quickly. To avoid sending RSTs all the time, we first try to
1399 * drain pending data.
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001400 */
Olivier Houchard8aa445d2019-07-02 16:35:18 +02001401 /* Call cs_shutr() first, to add the CO_FL_SOCK_RD_SH flag on the
1402 * connection, to make sure cs_shutw() will not lead to a shutdown()
1403 * that would provoke TIME_WAITs.
1404 */
1405 cs_shutr(cs, CS_SHR_DRAIN);
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001406 cs_shutw(cs, CS_SHW_NORMAL);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001407
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001408 /* OK, let's not stay here forever */
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001409 if (check->result == CHK_RES_FAILED)
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001410 conn->flags |= CO_FL_ERROR;
1411
Willy Tarreaufdccded2008-08-29 18:19:04 +02001412 task_wakeup(t, TASK_WOKEN_IO);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001413out:
Willy Tarreau3267d362012-08-17 23:53:56 +02001414 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001415
1416 wait_more_data:
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001417 cs->conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02001418 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001419}
1420
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001421/*
1422 * This function is used only for server health-checks. It handles connection
1423 * status updates including errors. If necessary, it wakes the check task up.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001424 * It returns 0 on normal cases, <0 if at least one close() has happened on the
1425 * connection (eg: reconnect).
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001426 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001427static int wake_srv_chk(struct conn_stream *cs)
Willy Tarreau20bea422012-07-06 12:00:49 +02001428{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001429 struct connection *conn = cs->conn;
1430 struct check *check = cs->data;
Olivier Houchard0923fa42019-01-11 18:43:04 +01001431 struct email_alertq *q = container_of(check, typeof(*q), check);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001432 int ret = 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001433
Olivier Houchard0923fa42019-01-11 18:43:04 +01001434 if (check->server)
1435 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
1436 else
1437 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001438
Willy Tarreauc09572f2017-10-04 11:58:22 +02001439 /* we may have to make progress on the TCP checks */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001440 if (check->type == PR_O2_TCPCHK_CHK) {
1441 ret = tcpcheck_main(check);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001442 cs = check->cs;
Willy Tarreau543abd42018-09-20 11:25:12 +02001443 conn = cs->conn;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001444 } else if (!(check->wait_list.events & SUB_RETRY_SEND))
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001445 __event_srv_chk_w(cs);
Willy Tarreauc09572f2017-10-04 11:58:22 +02001446
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001447 if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001448 /* We may get error reports bypassing the I/O handlers, typically
1449 * the case when sending a pure TCP check which fails, then the I/O
1450 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001451 * main processing task so let's simply wake it up. If we get here,
1452 * we expect errno to still be valid.
1453 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001454 chk_report_conn_err(check, errno, 0);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001455 task_wakeup(check->task, TASK_WOKEN_IO);
1456 }
Olivier Houchard53216e72018-10-10 15:46:36 +02001457 else if (!(conn->flags & CO_FL_HANDSHAKE) && !check->type) {
Willy Tarreau3be293f2014-02-05 18:31:24 +01001458 /* we may get here if only a connection probe was required : we
1459 * don't have any data to send nor anything expected in response,
1460 * so the completion of the connection establishment is enough.
1461 */
1462 task_wakeup(check->task, TASK_WOKEN_IO);
1463 }
Willy Tarreau2d351b62013-12-05 02:36:25 +01001464
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001465 if (check->result != CHK_RES_UNKNOWN) {
Christopher Faulet774c4862019-01-21 14:15:50 +01001466 /* Check complete or aborted. If connection not yet closed do it
1467 * now and wake the check task up to be sure the result is
1468 * handled ASAP. */
Willy Tarreaud85c4852015-03-13 00:40:28 +01001469 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02001470 cs_close(cs);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001471 ret = -1;
Olivier Houchard865ed9b2019-07-02 17:42:22 +02001472 /* We may have been scheduled to run, and the
1473 * I/O handler expects to have a cs, so remove
1474 * the tasklet
1475 */
1476 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Christopher Faulet774c4862019-01-21 14:15:50 +01001477 task_wakeup(check->task, TASK_WOKEN_IO);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001478 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001479
Olivier Houchard0923fa42019-01-11 18:43:04 +01001480 if (check->server)
1481 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
1482 else
1483 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Emeric Brunf6ba17d2017-11-02 14:35:27 +01001484
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001485 /* if a connection got replaced, we must absolutely prevent the connection
1486 * handler from touching its fd, and perform the FD polling updates ourselves
1487 */
1488 if (ret < 0)
1489 conn_cond_update_polling(conn);
1490
1491 return ret;
Willy Tarreau20bea422012-07-06 12:00:49 +02001492}
1493
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001494struct data_cb check_conn_cb = {
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001495 .wake = wake_srv_chk,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01001496 .name = "CHCK",
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001497};
1498
Willy Tarreaubaaee002006-06-26 02:48:02 +02001499/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001500 * updates the server's weight during a warmup stage. Once the final weight is
1501 * reached, the task automatically stops. Note that any server status change
1502 * must have updated s->last_change accordingly.
1503 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001504static struct task *server_warmup(struct task *t, void *context, unsigned short state)
Willy Tarreau2e993902011-10-31 11:53:20 +01001505{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001506 struct server *s = context;
Willy Tarreau2e993902011-10-31 11:53:20 +01001507
1508 /* by default, plan on stopping the task */
1509 t->expire = TICK_ETERNITY;
Emeric Brun52a91d32017-08-31 14:41:55 +02001510 if ((s->next_admin & SRV_ADMF_MAINT) ||
1511 (s->next_state != SRV_ST_STARTING))
Willy Tarreau2e993902011-10-31 11:53:20 +01001512 return t;
1513
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001514 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
1515
Willy Tarreau892337c2014-05-13 23:41:20 +02001516 /* recalculate the weights and update the state */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001517 server_recalc_eweight(s, 1);
Willy Tarreau2e993902011-10-31 11:53:20 +01001518
1519 /* probably that we can refill this server with a bit more connections */
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001520 pendconn_grab_from_px(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001521
Willy Tarreau4fc49a92019-05-05 06:54:22 +02001522 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
1523
Willy Tarreau2e993902011-10-31 11:53:20 +01001524 /* get back there in 1 second or 1/20th of the slowstart interval,
1525 * whichever is greater, resulting in small 5% steps.
1526 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001527 if (s->next_state == SRV_ST_STARTING)
Willy Tarreau2e993902011-10-31 11:53:20 +01001528 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1529 return t;
1530}
1531
Willy Tarreau894c6422017-10-04 15:58:52 +02001532/* returns the first NON-COMMENT tcp-check rule from list <list> or NULL if
1533 * none was found.
1534 */
1535static struct tcpcheck_rule *get_first_tcpcheck_rule(struct list *list)
1536{
1537 struct tcpcheck_rule *r;
1538
1539 list_for_each_entry(r, list, list) {
1540 if (r->action != TCPCHK_ACT_COMMENT)
1541 return r;
1542 }
1543 return NULL;
1544}
1545
Willy Tarreau2e993902011-10-31 11:53:20 +01001546/*
Simon Horman98637e52014-06-20 12:30:16 +09001547 * establish a server health-check that makes use of a connection.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001548 *
1549 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001550 * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called
1551 * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called
1552 * - SF_ERR_SRVTO if there are no more servers
1553 * - SF_ERR_SRVCL if the connection was refused by the server
1554 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1555 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1556 * - SF_ERR_INTERNAL for any other purely internal errors
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001557 * - 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 +01001558 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001559 * Note that we try to prevent the network stack from sending the ACK during the
1560 * connect() when a pure TCP check is used (without PROXY protocol).
1561 */
Simon Horman98637e52014-06-20 12:30:16 +09001562static int connect_conn_chk(struct task *t)
Simon Hormanb00d17a2014-06-13 16:18:16 +09001563{
1564 struct check *check = t->context;
1565 struct server *s = check->server;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001566 struct conn_stream *cs = check->cs;
1567 struct connection *conn = cs_conn(cs);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001568 struct protocol *proto;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001569 struct tcpcheck_rule *tcp_rule = NULL;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001570 int ret;
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001571 int connflags = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001572
Willy Tarreau00149122017-10-04 18:05:01 +02001573 /* we cannot have a connection here */
1574 if (conn)
1575 return SF_ERR_INTERNAL;
1576
Simon Hormanb00d17a2014-06-13 16:18:16 +09001577 /* tcpcheck send/expect initialisation */
Willy Tarreauf411cce2017-10-04 16:21:19 +02001578 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001579 check->current_step = NULL;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001580 tcp_rule = get_first_tcpcheck_rule(check->tcpcheck_rules);
1581 }
Simon Hormanb00d17a2014-06-13 16:18:16 +09001582
1583 /* prepare the check buffer.
1584 * This should not be used if check is the secondary agent check
1585 * of a server as s->proxy->check_req will relate to the
1586 * configuration of the primary check. Similarly, tcp-check uses
1587 * its own strings.
1588 */
1589 if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001590 b_putblk(&check->bo, s->proxy->check_req, s->proxy->check_len);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001591
1592 /* we want to check if this host replies to HTTP or SSLv3 requests
1593 * so we'll send the request, and won't wake the checker up now.
1594 */
1595 if ((check->type) == PR_O2_SSL3_CHK) {
1596 /* SSL requires that we put Unix time in the request */
1597 int gmt_time = htonl(date.tv_sec);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001598 memcpy(b_head(&check->bo) + 11, &gmt_time, 4);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001599 }
1600 else if ((check->type) == PR_O2_HTTP_CHK) {
1601 if (s->proxy->options2 & PR_O2_CHK_SNDST)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001602 b_putblk(&check->bo, trash.area,
1603 httpchk_build_status_header(s, trash.area, trash.size));
Cyril Bonté32602d22015-01-30 00:07:07 +01001604 /* prevent HTTP keep-alive when "http-check expect" is used */
1605 if (s->proxy->options2 & PR_O2_EXP_TYPE)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001606 b_putist(&check->bo, ist("Connection: close\r\n"));
1607 b_putist(&check->bo, ist("\r\n"));
1608 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Simon Hormanb00d17a2014-06-13 16:18:16 +09001609 }
1610 }
1611
James Brown55f9ff12015-10-21 18:19:05 -07001612 if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001613 b_putblk(&check->bo, check->send_string, check->send_string_len);
James Brown55f9ff12015-10-21 18:19:05 -07001614 }
1615
Willy Tarreauf411cce2017-10-04 16:21:19 +02001616 /* for tcp-checks, the initial connection setup is handled separately as
1617 * it may be sent to a specific port and not to the server's.
1618 */
1619 if (tcp_rule && tcp_rule->action == TCPCHK_ACT_CONNECT) {
1620 tcpcheck_main(check);
1621 return SF_ERR_UP;
1622 }
1623
Simon Hormanb00d17a2014-06-13 16:18:16 +09001624 /* prepare a new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001625 cs = check->cs = cs_new(NULL);
1626 if (!check->cs)
Willy Tarreau00149122017-10-04 18:05:01 +02001627 return SF_ERR_RESOURCE;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001628 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02001629 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001630 check->wait_list.events = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001631
Simon Horman41f58762015-01-30 11:22:56 +09001632 if (is_addr(&check->addr)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001633 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09001634 conn->addr.to = check->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001635 }
1636 else {
1637 /* we'll connect to the addr on the server */
1638 conn->addr.to = s->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001639 }
1640
Alexander Liu2a54bb72019-05-22 19:44:48 +08001641 if (s->check.via_socks4 && (s->flags & SRV_F_SOCKS4_PROXY)) {
1642 conn->send_proxy_ofs = 1;
1643 conn->flags |= CO_FL_SOCKS4;
1644 }
1645
Olivier Houchard6377a002017-12-01 22:04:05 +01001646 proto = protocol_by_family(conn->addr.to.ss_family);
Olivier Houchard6377a002017-12-01 22:04:05 +01001647 conn->target = &s->obj_type;
1648
Willy Tarreaube373152018-09-06 11:45:30 +02001649 if ((conn->addr.to.ss_family == AF_INET) || (conn->addr.to.ss_family == AF_INET6)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001650 int i = 0;
1651
1652 i = srv_check_healthcheck_port(check);
Olivier Houchard6377a002017-12-01 22:04:05 +01001653 if (i == 0)
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001654 return SF_ERR_CHK_PORT;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001655
1656 set_host_port(&conn->addr.to, i);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001657 }
1658
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001659 /* no client address */
1660 clear_addr(&conn->addr.from);
1661
Willy Tarreaube373152018-09-06 11:45:30 +02001662 conn_prepare(conn, proto, check->xprt);
Olivier Houchardf67be932019-01-29 15:47:43 +01001663 if (conn_install_mux(conn, &mux_pt_ops, cs, s->proxy, NULL) < 0)
1664 return SF_ERR_RESOURCE;
Willy Tarreaube373152018-09-06 11:45:30 +02001665 cs_attach(cs, check, &check_conn_cb);
1666
Willy Tarreauf3d34822014-12-08 12:11:28 +01001667 /* only plain tcp-check supports quick ACK */
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001668 if (check->type != 0)
1669 connflags |= CONNECT_HAS_DATA;
1670 if ((check->type == 0 || check->type == PR_O2_TCPCHK_CHK) &&
1671 (!tcp_rule || tcp_rule->action != TCPCHK_ACT_EXPECT))
1672 connflags |= CONNECT_DELACK_ALWAYS;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001673
Willy Tarreaue7dff022015-04-03 01:14:29 +02001674 ret = SF_ERR_INTERNAL;
Olivier Houchardb68fda42017-08-04 18:39:01 +02001675 if (proto && proto->connect)
Olivier Houchardfdcb0072019-05-06 18:32:29 +02001676 ret = proto->connect(conn, connflags);
Willy Tarreau16257f62017-11-02 15:45:00 +01001677
Willy Tarreau16257f62017-11-02 15:45:00 +01001678
Olivier Houchard9130a962017-10-17 17:33:43 +02001679#ifdef USE_OPENSSL
Olivier Houcharda48437b2019-01-29 16:37:52 +01001680 if (ret == SF_ERR_NONE) {
1681 if (s->check.sni)
1682 ssl_sock_set_servername(conn, s->check.sni);
1683 if (s->check.alpn_str)
1684 ssl_sock_set_alpn(conn, (unsigned char *)s->check.alpn_str,
1685 s->check.alpn_len);
1686 }
Olivier Houchard9130a962017-10-17 17:33:43 +02001687#endif
Willy Tarreauf4949772017-05-06 08:45:28 +02001688 if (s->check.send_proxy && !(check->state & CHK_ST_AGENT)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001689 conn->send_proxy_ofs = 1;
1690 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001691 if (xprt_add_hs(conn) < 0)
1692 ret = SF_ERR_RESOURCE;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001693 }
1694
1695 return ret;
1696}
1697
Simon Horman98637e52014-06-20 12:30:16 +09001698static struct list pid_list = LIST_HEAD_INIT(pid_list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001699static struct pool_head *pool_head_pid_list;
Willy Tarreau86abe442018-11-25 20:12:18 +01001700__decl_spinlock(pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001701
1702void block_sigchld(void)
1703{
1704 sigset_t set;
1705 sigemptyset(&set);
1706 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001707 assert(ha_sigmask(SIG_BLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001708}
1709
1710void unblock_sigchld(void)
1711{
1712 sigset_t set;
1713 sigemptyset(&set);
Willy Tarreauebc92442016-06-21 17:29:46 +02001714 sigaddset(&set, SIGCHLD);
William Lallemand6e1796e2018-06-07 11:23:40 +02001715 assert(ha_sigmask(SIG_UNBLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001716}
1717
Simon Horman98637e52014-06-20 12:30:16 +09001718static struct pid_list *pid_list_add(pid_t pid, struct task *t)
1719{
1720 struct pid_list *elem;
1721 struct check *check = t->context;
1722
Willy Tarreaubafbe012017-11-24 17:34:44 +01001723 elem = pool_alloc(pool_head_pid_list);
Simon Horman98637e52014-06-20 12:30:16 +09001724 if (!elem)
1725 return NULL;
1726 elem->pid = pid;
1727 elem->t = t;
1728 elem->exited = 0;
1729 check->curpid = elem;
1730 LIST_INIT(&elem->list);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001731
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001732 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001733 LIST_ADD(&pid_list, &elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001734 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001735
Simon Horman98637e52014-06-20 12:30:16 +09001736 return elem;
1737}
1738
Simon Horman98637e52014-06-20 12:30:16 +09001739static void pid_list_del(struct pid_list *elem)
1740{
1741 struct check *check;
1742
1743 if (!elem)
1744 return;
1745
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001746 HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001747 LIST_DEL(&elem->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001748 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001749
Simon Horman98637e52014-06-20 12:30:16 +09001750 if (!elem->exited)
1751 kill(elem->pid, SIGTERM);
1752
1753 check = elem->t->context;
1754 check->curpid = NULL;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001755 pool_free(pool_head_pid_list, elem);
Simon Horman98637e52014-06-20 12:30:16 +09001756}
1757
1758/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
1759static void pid_list_expire(pid_t pid, int status)
1760{
1761 struct pid_list *elem;
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_for_each_entry(elem, &pid_list, list) {
1765 if (elem->pid == pid) {
1766 elem->t->expire = now_ms;
1767 elem->status = status;
1768 elem->exited = 1;
Cyril Bonté9dbcfab2014-08-07 01:55:39 +02001769 task_wakeup(elem->t, TASK_WOKEN_IO);
Christopher Fauletcfda8472017-10-20 15:40:23 +02001770 break;
Simon Horman98637e52014-06-20 12:30:16 +09001771 }
1772 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001773 HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock);
Simon Horman98637e52014-06-20 12:30:16 +09001774}
1775
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001776static void sigchld_handler(struct sig_handler *sh)
Simon Horman98637e52014-06-20 12:30:16 +09001777{
1778 pid_t pid;
1779 int status;
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001780
Simon Horman98637e52014-06-20 12:30:16 +09001781 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
1782 pid_list_expire(pid, status);
1783}
1784
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001785static int init_pid_list(void)
1786{
Willy Tarreaubafbe012017-11-24 17:34:44 +01001787 if (pool_head_pid_list != NULL)
Simon Horman98637e52014-06-20 12:30:16 +09001788 /* Nothing to do */
1789 return 0;
1790
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001791 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001792 ha_alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
1793 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001794 return 1;
1795 }
1796
Willy Tarreaubafbe012017-11-24 17:34:44 +01001797 pool_head_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
1798 if (pool_head_pid_list == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001799 ha_alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
1800 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09001801 return 1;
1802 }
1803
1804 return 0;
1805}
1806
Cyril Bontéac92a062014-12-27 22:28:38 +01001807/* helper macro to set an environment variable and jump to a specific label on failure. */
1808#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001809
1810/*
Cyril Bontéac92a062014-12-27 22:28:38 +01001811 * helper function to allocate enough memory to store an environment variable.
1812 * It will also check that the environment variable is updatable, and silently
1813 * fail if not.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001814 */
Cyril Bontéac92a062014-12-27 22:28:38 +01001815static int extchk_setenv(struct check *check, int idx, const char *value)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001816{
1817 int len, ret;
Cyril Bontéac92a062014-12-27 22:28:38 +01001818 char *envname;
1819 int vmaxlen;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001820
Cyril Bontéac92a062014-12-27 22:28:38 +01001821 if (idx < 0 || idx >= EXTCHK_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001822 ha_alert("Illegal environment variable index %d. Aborting.\n", idx);
Cyril Bontéac92a062014-12-27 22:28:38 +01001823 return 1;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001824 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001825
1826 envname = extcheck_envs[idx].name;
1827 vmaxlen = extcheck_envs[idx].vmaxlen;
1828
1829 /* Check if the environment variable is already set, and silently reject
1830 * the update if this one is not updatable. */
1831 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
1832 return 0;
1833
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001834 /* Instead of sending NOT_USED, sending an empty value is preferable */
1835 if (strcmp(value, "NOT_USED") == 0) {
1836 value = "";
1837 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001838
1839 len = strlen(envname) + 1;
1840 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
1841 len += strlen(value);
1842 else
1843 len += vmaxlen;
1844
1845 if (!check->envp[idx])
1846 check->envp[idx] = malloc(len + 1);
1847
1848 if (!check->envp[idx]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001849 ha_alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001850 return 1;
1851 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001852 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001853 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001854 ha_alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001855 return 1;
1856 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001857 else if (ret > len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001858 ha_alert("Environment variable '%s' was truncated. Aborting.\n", envname);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001859 return 1;
1860 }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001861 return 0;
1862}
Simon Horman98637e52014-06-20 12:30:16 +09001863
1864static int prepare_external_check(struct check *check)
1865{
1866 struct server *s = check->server;
1867 struct proxy *px = s->proxy;
1868 struct listener *listener = NULL, *l;
1869 int i;
Simon Horman98637e52014-06-20 12:30:16 +09001870 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001871 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001872
1873 list_for_each_entry(l, &px->conf.listeners, by_fe)
1874 /* Use the first INET, INET6 or UNIX listener */
1875 if (l->addr.ss_family == AF_INET ||
1876 l->addr.ss_family == AF_INET6 ||
1877 l->addr.ss_family == AF_UNIX) {
1878 listener = l;
1879 break;
1880 }
1881
Simon Horman98637e52014-06-20 12:30:16 +09001882 check->curpid = NULL;
Cyril Bontéac92a062014-12-27 22:28:38 +01001883 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
1884 if (!check->envp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001885 ha_alert("Failed to allocate memory for environment variables. Aborting\n");
Cyril Bontéac92a062014-12-27 22:28:38 +01001886 goto err;
1887 }
Simon Horman98637e52014-06-20 12:30:16 +09001888
Cyril Bontéac92a062014-12-27 22:28:38 +01001889 check->argv = calloc(6, sizeof(char *));
1890 if (!check->argv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001891 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001892 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001893 }
Simon Horman98637e52014-06-20 12:30:16 +09001894
1895 check->argv[0] = px->check_command;
1896
Cyril Bonté777be862014-12-02 21:21:35 +01001897 if (!listener) {
1898 check->argv[1] = strdup("NOT_USED");
1899 check->argv[2] = strdup("NOT_USED");
1900 }
1901 else if (listener->addr.ss_family == AF_INET ||
Simon Horman98637e52014-06-20 12:30:16 +09001902 listener->addr.ss_family == AF_INET6) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001903 addr_to_str(&listener->addr, buf, sizeof(buf));
1904 check->argv[1] = strdup(buf);
1905 port_to_str(&listener->addr, buf, sizeof(buf));
1906 check->argv[2] = strdup(buf);
Cyril Bonté777be862014-12-02 21:21:35 +01001907 }
1908 else if (listener->addr.ss_family == AF_UNIX) {
Simon Horman98637e52014-06-20 12:30:16 +09001909 const struct sockaddr_un *un;
1910
1911 un = (struct sockaddr_un *)&listener->addr;
1912 check->argv[1] = strdup(un->sun_path);
1913 check->argv[2] = strdup("NOT_USED");
Cyril Bonté777be862014-12-02 21:21:35 +01001914 }
1915 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001916 ha_alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001917 goto err;
1918 }
1919
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001920 addr_to_str(&s->addr, buf, sizeof(buf));
1921 check->argv[3] = strdup(buf);
Willy Tarreau04276f32017-01-06 17:41:29 +01001922
1923 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
1924 snprintf(buf, sizeof(buf), "%u", s->svc_port);
1925 else
1926 *buf = 0;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001927 check->argv[4] = strdup(buf);
Simon Horman98637e52014-06-20 12:30:16 +09001928
Cyril Bontéac92a062014-12-27 22:28:38 +01001929 for (i = 0; i < 5; i++) {
1930 if (!check->argv[i]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001931 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001932 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001933 }
1934 }
Simon Horman98637e52014-06-20 12:30:16 +09001935
Cyril Bontéac92a062014-12-27 22:28:38 +01001936 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001937 /* Add proxy environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001938 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
1939 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
1940 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
1941 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001942 /* Add server environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001943 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
1944 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
1945 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
1946 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
1947 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
1948 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
1949
1950 /* Ensure that we don't leave any hole in check->envp */
1951 for (i = 0; i < EXTCHK_SIZE; i++)
1952 if (!check->envp[i])
1953 EXTCHK_SETENV(check, i, "", err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001954
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001955 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09001956err:
1957 if (check->envp) {
Cyril Bontéac92a062014-12-27 22:28:38 +01001958 for (i = 0; i < EXTCHK_SIZE; i++)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001959 free(check->envp[i]);
Simon Horman98637e52014-06-20 12:30:16 +09001960 free(check->envp);
1961 check->envp = NULL;
1962 }
1963
1964 if (check->argv) {
1965 for (i = 1; i < 5; i++)
1966 free(check->argv[i]);
1967 free(check->argv);
1968 check->argv = NULL;
1969 }
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001970 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09001971}
1972
Simon Hormanb00d17a2014-06-13 16:18:16 +09001973/*
Simon Horman98637e52014-06-20 12:30:16 +09001974 * establish a server health-check that makes use of a process.
1975 *
1976 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001977 * - SF_ERR_NONE if everything's OK
Willy Tarreaue7dff022015-04-03 01:14:29 +02001978 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
Tim Düsterhus4896c442016-11-29 02:15:19 +01001979 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Horman98637e52014-06-20 12:30:16 +09001980 *
1981 * Blocks and then unblocks SIGCHLD
1982 */
1983static int connect_proc_chk(struct task *t)
1984{
Cyril Bontéac92a062014-12-27 22:28:38 +01001985 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001986 struct check *check = t->context;
1987 struct server *s = check->server;
1988 struct proxy *px = s->proxy;
1989 int status;
1990 pid_t pid;
1991
Willy Tarreaue7dff022015-04-03 01:14:29 +02001992 status = SF_ERR_RESOURCE;
Simon Horman98637e52014-06-20 12:30:16 +09001993
1994 block_sigchld();
1995
1996 pid = fork();
1997 if (pid < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001998 ha_alert("Failed to fork process for external health check: %s. Aborting.\n",
1999 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002000 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2001 goto out;
2002 }
2003 if (pid == 0) {
2004 /* Child */
2005 extern char **environ;
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002006 struct rlimit limit;
Willy Tarreaub7b24782016-06-21 15:32:29 +02002007 int fd;
2008
2009 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
2010 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
2011
Willy Tarreau2555ccf2019-02-21 22:22:06 +01002012 my_closefrom(fd);
Willy Tarreaub7b24782016-06-21 15:32:29 +02002013
Willy Tarreau9f6dc722019-03-01 11:15:10 +01002014 /* restore the initial FD limits */
2015 limit.rlim_cur = rlim_fd_cur_at_boot;
2016 limit.rlim_max = rlim_fd_max_at_boot;
2017 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
2018 getrlimit(RLIMIT_NOFILE, &limit);
2019 ha_warning("External check: failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
2020 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
2021 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
2022 }
2023
Simon Horman98637e52014-06-20 12:30:16 +09002024 environ = check->envp;
Cyril Bontéac92a062014-12-27 22:28:38 +01002025 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Willy Tarreauafc313e2019-07-01 07:51:29 +02002026 haproxy_unblock_signals();
Simon Horman98637e52014-06-20 12:30:16 +09002027 execvp(px->check_command, check->argv);
Christopher Faulet767a84b2017-11-24 16:50:31 +01002028 ha_alert("Failed to exec process for external health check: %s. Aborting.\n",
2029 strerror(errno));
Simon Horman98637e52014-06-20 12:30:16 +09002030 exit(-1);
2031 }
2032
2033 /* Parent */
2034 if (check->result == CHK_RES_UNKNOWN) {
2035 if (pid_list_add(pid, t) != NULL) {
2036 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2037
2038 if (px->timeout.check && px->timeout.connect) {
2039 int t_con = tick_add(now_ms, px->timeout.connect);
2040 t->expire = tick_first(t->expire, t_con);
2041 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002042 status = SF_ERR_NONE;
Simon Horman98637e52014-06-20 12:30:16 +09002043 goto out;
2044 }
2045 else {
2046 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2047 }
2048 kill(pid, SIGTERM); /* process creation error */
2049 }
2050 else
2051 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
2052
2053out:
2054 unblock_sigchld();
2055 return status;
2056}
2057
2058/*
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002059 * manages a server health-check that uses an external process. Returns
Willy Tarreaubaaee002006-06-26 02:48:02 +02002060 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002061 *
2062 * Please do NOT place any return statement in this function and only leave
2063 * via the out_unlock label.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002064 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002065static struct task *process_chk_proc(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002066{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002067 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002068 struct server *s = check->server;
Simon Horman98637e52014-06-20 12:30:16 +09002069 int rv;
2070 int ret;
2071 int expired = tick_is_expired(t->expire, now_ms);
2072
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002073 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002074 if (!(check->state & CHK_ST_INPROGRESS)) {
2075 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002076 if (!expired) /* woke up too early */
2077 goto out_unlock;
Simon Horman98637e52014-06-20 12:30:16 +09002078
2079 /* we don't send any health-checks when the proxy is
2080 * stopped, the server should not be checked or the check
2081 * is disabled.
2082 */
2083 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
2084 s->proxy->state == PR_STSTOPPED)
2085 goto reschedule;
2086
2087 /* we'll initiate a new check */
2088 set_server_check_status(check, HCHK_STATUS_START, NULL);
2089
2090 check->state |= CHK_ST_INPROGRESS;
2091
Simon Hormandbf70192015-01-30 11:22:53 +09002092 ret = connect_proc_chk(t);
Willy Tarreaud7c3fbd2017-10-04 15:19:26 +02002093 if (ret == SF_ERR_NONE) {
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002094 /* the process was forked, we allow up to min(inter,
2095 * timeout.connect) for it to report its status, but
2096 * only when timeout.check is set as it may be to short
2097 * for a full check otherwise.
Simon Horman98637e52014-06-20 12:30:16 +09002098 */
2099 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2100
2101 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2102 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2103 t->expire = tick_first(t->expire, t_con);
2104 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002105 task_set_affinity(t, tid_bit);
Simon Horman98637e52014-06-20 12:30:16 +09002106 goto reschedule;
Simon Horman98637e52014-06-20 12:30:16 +09002107 }
2108
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02002109 /* here, we failed to start the check */
Simon Horman98637e52014-06-20 12:30:16 +09002110
2111 check->state &= ~CHK_ST_INPROGRESS;
2112 check_notify_failure(check);
2113
2114 /* we allow up to min(inter, timeout.connect) for a connection
2115 * to establish but only when timeout.check is set
2116 * as it may be to short for a full check otherwise
2117 */
2118 while (tick_is_expired(t->expire, now_ms)) {
2119 int t_con;
2120
2121 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2122 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2123
2124 if (s->proxy->timeout.check)
2125 t->expire = tick_first(t->expire, t_con);
2126 }
2127 }
2128 else {
2129 /* there was a test running.
2130 * First, let's check whether there was an uncaught error,
2131 * which can happen on connect timeout or error.
2132 */
2133 if (check->result == CHK_RES_UNKNOWN) {
2134 /* good connection is enough for pure TCP check */
2135 struct pid_list *elem = check->curpid;
2136 int status = HCHK_STATUS_UNKNOWN;
2137
2138 if (elem->exited) {
2139 status = elem->status; /* Save in case the process exits between use below */
2140 if (!WIFEXITED(status))
2141 check->code = -1;
2142 else
2143 check->code = WEXITSTATUS(status);
2144 if (!WIFEXITED(status) || WEXITSTATUS(status))
2145 status = HCHK_STATUS_PROCERR;
2146 else
2147 status = HCHK_STATUS_PROCOK;
2148 } else if (expired) {
2149 status = HCHK_STATUS_PROCTOUT;
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 ha_warning("kill %d\n", (int)elem->pid);
Simon Horman98637e52014-06-20 12:30:16 +09002151 kill(elem->pid, SIGTERM);
2152 }
2153 set_server_check_status(check, status, NULL);
2154 }
2155
2156 if (check->result == CHK_RES_FAILED) {
2157 /* a failure or timeout detected */
2158 check_notify_failure(check);
2159 }
2160 else if (check->result == CHK_RES_CONDPASS) {
2161 /* check is OK but asks for stopping mode */
2162 check_notify_stopping(check);
2163 }
2164 else if (check->result == CHK_RES_PASSED) {
2165 /* a success was detected */
2166 check_notify_success(check);
2167 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002168 task_set_affinity(t, MAX_THREADS_MASK);
Simon Horman98637e52014-06-20 12:30:16 +09002169 check->state &= ~CHK_ST_INPROGRESS;
2170
2171 pid_list_del(check->curpid);
2172
2173 rv = 0;
2174 if (global.spread_checks > 0) {
2175 rv = srv_getinter(check) * global.spread_checks / 100;
2176 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2177 }
2178 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
2179 }
2180
2181 reschedule:
2182 while (tick_is_expired(t->expire, now_ms))
2183 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002184
2185 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002186 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Simon Horman98637e52014-06-20 12:30:16 +09002187 return t;
2188}
2189
2190/*
2191 * manages a server health-check that uses a connection. Returns
2192 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002193 *
2194 * Please do NOT place any return statement in this function and only leave
2195 * via the out_unlock label.
Simon Horman98637e52014-06-20 12:30:16 +09002196 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002197static struct task *process_chk_conn(struct task *t, void *context, unsigned short state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002198{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002199 struct check *check = context;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002200 struct proxy *proxy = check->proxy;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002201 struct conn_stream *cs = check->cs;
2202 struct connection *conn = cs_conn(cs);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002203 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002204 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002205 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002206
Olivier Houchard0923fa42019-01-11 18:43:04 +01002207 if (check->server)
2208 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002209 if (!(check->state & CHK_ST_INPROGRESS)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01002210 /* no check currently running */
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002211 if (!expired) /* woke up too early */
2212 goto out_unlock;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002213
Simon Horman671b6f02013-11-25 10:46:39 +09002214 /* we don't send any health-checks when the proxy is
2215 * stopped, the server should not be checked or the check
2216 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002217 */
Willy Tarreau0d924cc2013-12-11 21:26:24 +01002218 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002219 proxy->state == PR_STSTOPPED)
Willy Tarreau5a78f362012-11-23 12:47:05 +01002220 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002221
2222 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09002223 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002224
Willy Tarreau2c115e52013-12-11 19:41:16 +01002225 check->state |= CHK_ST_INPROGRESS;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002226 b_reset(&check->bi);
2227 b_reset(&check->bo);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002228
Simon Hormandbf70192015-01-30 11:22:53 +09002229 ret = connect_conn_chk(t);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002230 cs = check->cs;
2231 conn = cs_conn(cs);
Willy Tarreau00149122017-10-04 18:05:01 +02002232
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002233 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002234 case SF_ERR_UP:
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002235 goto out_unlock;
2236
Willy Tarreaue7dff022015-04-03 01:14:29 +02002237 case SF_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002238 /* we allow up to min(inter, timeout.connect) for a connection
2239 * to establish but only when timeout.check is set
2240 * as it may be to short for a full check otherwise
2241 */
Simon Horman4a741432013-02-23 15:35:38 +09002242 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002243
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002244 if (proxy->timeout.check && proxy->timeout.connect) {
2245 int t_con = tick_add(now_ms, proxy->timeout.connect);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002246 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002247 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002248
Willy Tarreaud19a3b92019-09-05 17:51:30 +02002249 if (check->type) {
2250 /* send the request if we have one. We avoid receiving
2251 * if not connected, unless we didn't subscribe for
2252 * sending since otherwise we won't be woken up.
2253 */
2254 __event_srv_chk_w(cs);
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002255 __event_srv_chk_r(cs);
Willy Tarreaud19a3b92019-09-05 17:51:30 +02002256 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002257
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002258 task_set_affinity(t, tid_bit);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002259 goto reschedule;
2260
Willy Tarreaue7dff022015-04-03 01:14:29 +02002261 case SF_ERR_SRVTO: /* ETIMEDOUT */
2262 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Willy Tarreau00149122017-10-04 18:05:01 +02002263 if (conn)
2264 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002265 chk_report_conn_err(check, errno, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002266 break;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02002267 /* should share same code than cases below */
2268 case SF_ERR_CHK_PORT:
2269 check->state |= CHK_ST_PORT_MISS;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002270 case SF_ERR_PRXCOND:
2271 case SF_ERR_RESOURCE:
2272 case SF_ERR_INTERNAL:
Willy Tarreau00149122017-10-04 18:05:01 +02002273 if (conn)
2274 conn->flags |= CO_FL_ERROR;
2275 chk_report_conn_err(check, conn ? 0 : ENOMEM, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002276 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002277 }
2278
Willy Tarreau5a78f362012-11-23 12:47:05 +01002279 /* here, we have seen a synchronous error, no fd was allocated */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002280 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002281 if (check->wait_list.events)
2282 cs->conn->xprt->unsubscribe(cs->conn,
2283 cs->conn->xprt_ctx,
2284 check->wait_list.events,
2285 &check->wait_list);
2286 /* We may have been scheduled to run, and the
2287 * I/O handler expects to have a cs, so remove
2288 * the tasklet
2289 */
Willy Tarreau86eded62019-06-14 14:47:49 +02002290 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002291 cs_destroy(cs);
2292 cs = check->cs = NULL;
2293 conn = NULL;
Olivier Houchard390485a2017-10-24 19:03:30 +02002294 }
Willy Tarreau6b0a8502012-11-23 08:51:32 +01002295
Willy Tarreau2c115e52013-12-11 19:41:16 +01002296 check->state &= ~CHK_ST_INPROGRESS;
Willy Tarreau4eec5472014-05-20 22:32:27 +02002297 check_notify_failure(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002298
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002299 /* we allow up to min(inter, timeout.connect) for a connection
2300 * to establish but only when timeout.check is set
2301 * as it may be to short for a full check otherwise
2302 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002303 while (tick_is_expired(t->expire, now_ms)) {
2304 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002305
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002306 t_con = tick_add(t->expire, proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09002307 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002308
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002309 if (proxy->timeout.check)
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002310 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002311 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002312 }
2313 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02002314 /* there was a test running.
2315 * First, let's check whether there was an uncaught error,
2316 * which can happen on connect timeout or error.
2317 */
Simon Hormanccaabcd2014-06-20 12:29:47 +09002318 if (check->result == CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002319 /* good connection is enough for pure TCP check */
2320 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
Simon Horman4a741432013-02-23 15:35:38 +09002321 if (check->use_ssl)
2322 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02002323 else
Simon Horman4a741432013-02-23 15:35:38 +09002324 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002325 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002326 else if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002327 chk_report_conn_err(check, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02002328 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002329 else
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002330 goto out_unlock; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02002331 }
2332
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002333 /* check complete or aborted */
Willy Tarreau00149122017-10-04 18:05:01 +02002334 if (conn && conn->xprt) {
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002335 /* The check was aborted and the connection was not yet closed.
2336 * This can happen upon timeout, or when an external event such
2337 * as a failed response coupled with "observe layer7" caused the
2338 * server state to be suddenly changed.
2339 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01002340 conn_sock_drain(conn);
Willy Tarreaua553ae92017-10-05 18:52:17 +02002341 cs_close(cs);
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002342 }
2343
Willy Tarreauac59f362017-10-08 11:10:19 +02002344 if (cs) {
Olivier Houchard49065542019-05-31 19:20:36 +02002345 if (check->wait_list.events)
2346 cs->conn->xprt->unsubscribe(cs->conn,
2347 cs->conn->xprt_ctx,
2348 check->wait_list.events,
2349 &check->wait_list);
2350 /* We may have been scheduled to run, and the
Willy Tarreau86eded62019-06-14 14:47:49 +02002351 * I/O handler expects to have a cs, so remove
2352 * the tasklet
2353 */
2354 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002355 cs_destroy(cs);
2356 cs = check->cs = NULL;
2357 conn = NULL;
Willy Tarreau00149122017-10-04 18:05:01 +02002358 }
2359
Olivier Houchard0923fa42019-01-11 18:43:04 +01002360 if (check->server) {
2361 if (check->result == CHK_RES_FAILED) {
2362 /* a failure or timeout detected */
2363 check_notify_failure(check);
2364 }
2365 else if (check->result == CHK_RES_CONDPASS) {
2366 /* check is OK but asks for stopping mode */
2367 check_notify_stopping(check);
2368 }
2369 else if (check->result == CHK_RES_PASSED) {
2370 /* a success was detected */
2371 check_notify_success(check);
2372 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002373 }
Christopher Faulet88ce5d12017-10-20 15:41:18 +02002374 task_set_affinity(t, MAX_THREADS_MASK);
Willy Tarreau2c115e52013-12-11 19:41:16 +01002375 check->state &= ~CHK_ST_INPROGRESS;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002376
Olivier Houchard0923fa42019-01-11 18:43:04 +01002377 if (check->server) {
2378 rv = 0;
2379 if (global.spread_checks > 0) {
2380 rv = srv_getinter(check) * global.spread_checks / 100;
2381 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2382 }
2383 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002384 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002385 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01002386
2387 reschedule:
2388 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09002389 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002390 out_unlock:
Olivier Houchard0923fa42019-01-11 18:43:04 +01002391 if (check->server)
2392 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Willy Tarreau26c25062009-03-08 09:38:41 +01002393 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002394}
2395
Simon Horman98637e52014-06-20 12:30:16 +09002396/*
2397 * manages a server health-check. Returns
2398 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2399 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002400static struct task *process_chk(struct task *t, void *context, unsigned short state)
Simon Horman98637e52014-06-20 12:30:16 +09002401{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002402 struct check *check = context;
Simon Horman98637e52014-06-20 12:30:16 +09002403
2404 if (check->type == PR_O2_EXT_CHK)
Olivier Houchard9f6af332018-05-25 14:04:04 +02002405 return process_chk_proc(t, context, state);
2406 return process_chk_conn(t, context, state);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002407
Simon Horman98637e52014-06-20 12:30:16 +09002408}
2409
Simon Horman5c942422013-11-25 10:46:32 +09002410static int start_check_task(struct check *check, int mininter,
2411 int nbcheck, int srvpos)
2412{
2413 struct task *t;
2414 /* task for the check */
Emeric Brunc60def82017-09-27 14:59:38 +02002415 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002416 ha_alert("Starting [%s:%s] check: out of memory.\n",
2417 check->server->proxy->id, check->server->id);
Simon Horman5c942422013-11-25 10:46:32 +09002418 return 0;
2419 }
2420
2421 check->task = t;
2422 t->process = process_chk;
2423 t->context = check;
2424
Willy Tarreau1746eec2014-04-25 10:46:47 +02002425 if (mininter < srv_getinter(check))
2426 mininter = srv_getinter(check);
2427
2428 if (global.max_spread_checks && mininter > global.max_spread_checks)
2429 mininter = global.max_spread_checks;
2430
Simon Horman5c942422013-11-25 10:46:32 +09002431 /* check this every ms */
Willy Tarreau1746eec2014-04-25 10:46:47 +02002432 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
Simon Horman5c942422013-11-25 10:46:32 +09002433 check->start = now;
2434 task_queue(t);
2435
2436 return 1;
2437}
2438
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002439/*
2440 * Start health-check.
Willy Tarreau865c5142016-12-21 20:04:48 +01002441 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002442 */
Willy Tarreau865c5142016-12-21 20:04:48 +01002443static int start_checks()
2444{
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002445
2446 struct proxy *px;
2447 struct server *s;
2448 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09002449 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002450
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002451 /* 1- count the checkers to run simultaneously.
2452 * We also determine the minimum interval among all of those which
2453 * have an interval larger than SRV_CHK_INTER_THRES. This interval
2454 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04002455 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002456 * too short an interval for all others.
2457 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002458 for (px = proxies_list; px; px = px->next) {
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002459 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01002460 if (s->slowstart) {
Emeric Brunc60def82017-09-27 14:59:38 +02002461 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002462 ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002463 return ERR_ALERT | ERR_FATAL;
Willy Tarreaue7b73482013-11-21 11:50:50 +01002464 }
2465 /* We need a warmup task that will be called when the server
2466 * state switches from down to up.
2467 */
2468 s->warmup = t;
2469 t->process = server_warmup;
2470 t->context = s;
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002471 /* server can be in this state only because of */
Emeric Brun52a91d32017-08-31 14:41:55 +02002472 if (s->next_state == SRV_ST_STARTING)
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002473 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 +01002474 }
2475
Willy Tarreaud8514a22013-12-11 21:10:14 +01002476 if (s->check.state & CHK_ST_CONFIGURED) {
2477 nbcheck++;
2478 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
2479 (!mininter || mininter > srv_getinter(&s->check)))
2480 mininter = srv_getinter(&s->check);
2481 }
Willy Tarreau15f39102013-12-11 20:41:18 +01002482
Willy Tarreaud8514a22013-12-11 21:10:14 +01002483 if (s->agent.state & CHK_ST_CONFIGURED) {
2484 nbcheck++;
2485 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
2486 (!mininter || mininter > srv_getinter(&s->agent)))
2487 mininter = srv_getinter(&s->agent);
2488 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002489 }
2490 }
2491
Simon Horman4a741432013-02-23 15:35:38 +09002492 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002493 return 0;
2494
2495 srand((unsigned)time(NULL));
2496
2497 /*
2498 * 2- start them as far as possible from each others. For this, we will
2499 * start them after their interval set to the min interval divided by
2500 * the number of servers, weighted by the server's position in the list.
2501 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002502 for (px = proxies_list; px; px = px->next) {
Simon Horman98637e52014-06-20 12:30:16 +09002503 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2504 if (init_pid_list()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002505 ha_alert("Starting [%s] check: out of memory.\n", px->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002506 return ERR_ALERT | ERR_FATAL;
Simon Horman98637e52014-06-20 12:30:16 +09002507 }
2508 }
2509
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002510 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09002511 /* A task for the main check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002512 if (s->check.state & CHK_ST_CONFIGURED) {
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002513 if (s->check.type == PR_O2_EXT_CHK) {
2514 if (!prepare_external_check(&s->check))
Willy Tarreau865c5142016-12-21 20:04:48 +01002515 return ERR_ALERT | ERR_FATAL;
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002516 }
Simon Hormand60d6912013-11-25 10:46:36 +09002517 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
Willy Tarreau865c5142016-12-21 20:04:48 +01002518 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002519 srvpos++;
2520 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002521
Simon Hormand60d6912013-11-25 10:46:36 +09002522 /* A task for a auxiliary agent check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002523 if (s->agent.state & CHK_ST_CONFIGURED) {
Simon Hormand60d6912013-11-25 10:46:36 +09002524 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
Willy Tarreau865c5142016-12-21 20:04:48 +01002525 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002526 }
2527 srvpos++;
2528 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002529 }
2530 }
2531 return 0;
2532}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002533
2534/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002535 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01002536 * The buffer MUST be terminated by a null byte before calling this function.
2537 * Sets server status appropriately. The caller is responsible for ensuring
2538 * that the buffer contains at least 13 characters. If <done> is zero, we may
2539 * return 0 to indicate that data is required to decide of a match.
2540 */
2541static int httpchk_expect(struct server *s, int done)
2542{
Christopher Faulet1bc04c72017-10-29 20:14:08 +01002543 static THREAD_LOCAL char status_msg[] = "HTTP status check returned code <000>";
Willy Tarreaubd741542010-03-16 18:46:54 +01002544 char status_code[] = "000";
2545 char *contentptr;
2546 int crlf;
2547 int ret;
2548
2549 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
2550 case PR_O2_EXP_STS:
2551 case PR_O2_EXP_RSTS:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002552 memcpy(status_code, b_head(&s->check.bi) + 9, 3);
2553 memcpy(status_msg + strlen(status_msg) - 4, b_head(&s->check.bi) + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01002554
2555 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
2556 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
2557 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002558 ret = regex_exec(s->proxy->expect_regex, status_code);
Willy Tarreaubd741542010-03-16 18:46:54 +01002559
2560 /* we necessarily have the response, so there are no partial failures */
2561 if (s->proxy->options2 & PR_O2_EXP_INV)
2562 ret = !ret;
2563
Simon Horman4a741432013-02-23 15:35:38 +09002564 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01002565 break;
2566
2567 case PR_O2_EXP_STR:
2568 case PR_O2_EXP_RSTR:
2569 /* very simple response parser: ignore CR and only count consecutive LFs,
2570 * stop with contentptr pointing to first char after the double CRLF or
2571 * to '\0' if crlf < 2.
2572 */
2573 crlf = 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002574 for (contentptr = b_head(&s->check.bi); *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01002575 if (crlf >= 2)
2576 break;
2577 if (*contentptr == '\r')
2578 continue;
2579 else if (*contentptr == '\n')
2580 crlf++;
2581 else
2582 crlf = 0;
2583 }
2584
2585 /* Check that response contains a body... */
2586 if (crlf < 2) {
2587 if (!done)
2588 return 0;
2589
Simon Horman4a741432013-02-23 15:35:38 +09002590 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002591 "HTTP content check could not find a response body");
2592 return 1;
2593 }
2594
2595 /* Check that response body is not empty... */
2596 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02002597 if (!done)
2598 return 0;
2599
Simon Horman4a741432013-02-23 15:35:38 +09002600 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002601 "HTTP content check found empty response body");
2602 return 1;
2603 }
2604
2605 /* Check the response content against the supplied string
2606 * or regex... */
2607 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
2608 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
2609 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002610 ret = regex_exec(s->proxy->expect_regex, contentptr);
Willy Tarreaubd741542010-03-16 18:46:54 +01002611
2612 /* if we don't match, we may need to wait more */
2613 if (!ret && !done)
2614 return 0;
2615
2616 if (ret) {
2617 /* content matched */
2618 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002619 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002620 "HTTP check matched unwanted content");
2621 else
Simon Horman4a741432013-02-23 15:35:38 +09002622 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002623 "HTTP content check matched");
2624 }
2625 else {
2626 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002627 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002628 "HTTP check did not match unwanted content");
2629 else
Simon Horman4a741432013-02-23 15:35:38 +09002630 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002631 "HTTP content check did not match");
2632 }
2633 break;
2634 }
2635 return 1;
2636}
2637
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002638/*
2639 * return the id of a step in a send/expect session
2640 */
Simon Hormane16c1b32015-01-30 11:22:57 +09002641static int tcpcheck_get_step_id(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002642{
2643 struct tcpcheck_rule *cur = NULL, *next = NULL;
2644 int i = 0;
2645
Willy Tarreau213c6782014-10-02 14:51:02 +02002646 /* not even started anything yet => step 0 = initial connect */
Baptiste Assmannf95bc8e2015-04-25 16:03:06 +02002647 if (!check->current_step)
Willy Tarreau213c6782014-10-02 14:51:02 +02002648 return 0;
2649
Simon Hormane16c1b32015-01-30 11:22:57 +09002650 cur = check->last_started_step;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002651
2652 /* no step => first step */
2653 if (cur == NULL)
2654 return 1;
2655
2656 /* increment i until current step */
Simon Hormane16c1b32015-01-30 11:22:57 +09002657 list_for_each_entry(next, check->tcpcheck_rules, list) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002658 if (next->list.p == &cur->list)
2659 break;
2660 ++i;
2661 }
2662
2663 return i;
2664}
2665
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002666/*
2667 * return the latest known comment before (including) the given stepid
2668 * returns NULL if no comment found
2669 */
2670static char * tcpcheck_get_step_comment(struct check *check, int stepid)
2671{
2672 struct tcpcheck_rule *cur = NULL;
2673 char *ret = NULL;
2674 int i = 0;
2675
2676 /* not even started anything yet, return latest comment found before any action */
2677 if (!check->current_step) {
2678 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2679 if (cur->action == TCPCHK_ACT_COMMENT)
2680 ret = cur->comment;
2681 else
2682 goto return_comment;
2683 }
2684 }
2685
2686 i = 1;
2687 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2688 if (cur->comment)
2689 ret = cur->comment;
2690
2691 if (i >= stepid)
2692 goto return_comment;
2693
2694 ++i;
2695 }
2696
2697 return_comment:
2698 return ret;
2699}
2700
Willy Tarreaube74b882017-10-04 16:22:49 +02002701/* proceed with next steps for the TCP checks <check>. Note that this is called
2702 * both from the connection's wake() callback and from the check scheduling task.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002703 * It returns 0 on normal cases, or <0 if a close() has happened on an existing
2704 * connection, presenting the risk of an fd replacement.
Willy Tarreau62ac84f2017-11-05 10:11:13 +01002705 *
2706 * Please do NOT place any return statement in this function and only leave
Willy Tarreau495c3a42019-07-17 18:48:07 +02002707 * via the out_end_tcpcheck label after setting retcode.
Willy Tarreaube74b882017-10-04 16:22:49 +02002708 */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002709static int tcpcheck_main(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002710{
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002711 char *contentptr, *comment;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002712 struct tcpcheck_rule *next;
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002713 int done = 0, ret = 0, step = 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002714 struct conn_stream *cs = check->cs;
2715 struct connection *conn = cs_conn(cs);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002716 struct server *s = check->server;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002717 struct proxy *proxy = check->proxy;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002718 struct task *t = check->task;
Simon Hormane16c1b32015-01-30 11:22:57 +09002719 struct list *head = check->tcpcheck_rules;
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002720 int retcode = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002721
Willy Tarreauef953952014-10-02 14:30:14 +02002722 /* here, we know that the check is complete or that it failed */
2723 if (check->result != CHK_RES_UNKNOWN)
2724 goto out_end_tcpcheck;
2725
2726 /* We have 4 possibilities here :
2727 * 1. we've not yet attempted step 1, and step 1 is a connect, so no
Willy Tarreau00149122017-10-04 18:05:01 +02002728 * connection attempt was made yet ; conn==NULL;current_step==NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002729 * 2. we've not yet attempted step 1, and step 1 is a not connect or
2730 * does not exist (no rule), so a connection attempt was made
Willy Tarreau00149122017-10-04 18:05:01 +02002731 * before coming here, conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002732 * 3. we're coming back after having started with step 1, so we may
Willy Tarreau00149122017-10-04 18:05:01 +02002733 * be waiting for a connection attempt to complete. conn!=NULL.
2734 * 4. the connection + handshake are complete. conn!=NULL.
Willy Tarreauef953952014-10-02 14:30:14 +02002735 *
2736 * #2 and #3 are quite similar, we want both the connection and the
2737 * handshake to complete before going any further. Thus we must always
2738 * wait for a connection to complete unless we're before and existing
2739 * step 1.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002740 */
Willy Tarreau449f9522015-05-13 15:39:48 +02002741
2742 /* find first rule and skip comments */
2743 next = LIST_NEXT(head, struct tcpcheck_rule *, list);
2744 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
2745 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
2746
Willy Tarreau00149122017-10-04 18:05:01 +02002747 if ((check->current_step || &next->list == head) &&
2748 (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE))) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002749 /* we allow up to min(inter, timeout.connect) for a connection
2750 * to establish but only when timeout.check is set
2751 * as it may be to short for a full check otherwise
2752 */
2753 while (tick_is_expired(t->expire, now_ms)) {
2754 int t_con;
2755
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002756 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002757 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2758
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002759 if (proxy->timeout.check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002760 t->expire = tick_first(t->expire, t_con);
2761 }
Christopher Fauletb6102852017-11-28 10:06:29 +01002762 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002763 }
2764
Willy Tarreauef953952014-10-02 14:30:14 +02002765 /* special case: option tcp-check with no rule, a connect is enough */
Willy Tarreau449f9522015-05-13 15:39:48 +02002766 if (&next->list == head) {
Willy Tarreauef953952014-10-02 14:30:14 +02002767 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002768 goto out_end_tcpcheck;
Willy Tarreauef953952014-10-02 14:30:14 +02002769 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002770
Willy Tarreau213c6782014-10-02 14:51:02 +02002771 /* no step means first step initialisation */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002772 if (check->current_step == NULL) {
Willy Tarreau213c6782014-10-02 14:51:02 +02002773 check->last_started_step = NULL;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002774 b_reset(&check->bo);
2775 b_reset(&check->bi);
Willy Tarreau449f9522015-05-13 15:39:48 +02002776 check->current_step = next;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002777 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002778 if (proxy->timeout.check)
2779 t->expire = tick_add_ifset(now_ms, proxy->timeout.check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002780 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002781
Willy Tarreauabca5b62013-12-06 14:19:25 +01002782 while (1) {
Willy Tarreau263013d2015-05-13 11:59:14 +02002783 /* We have to try to flush the output buffer before reading, at
2784 * the end, or if we're about to send a string that does not fit
2785 * in the remaining space. That explains why we break out of the
Willy Tarreau00149122017-10-04 18:05:01 +02002786 * loop after this control. If we have data, conn is valid.
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002787 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002788 if (b_data(&check->bo) &&
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002789 (&check->current_step->list == head ||
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002790 check->current_step->action != TCPCHK_ACT_SEND ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002791 check->current_step->string_len >= b_room(&check->bo))) {
Willy Tarreaudeccd112018-06-14 18:38:55 +02002792 int ret;
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002793
Olivier Houcharded0f2072018-08-16 15:41:52 +02002794 ret = cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002795 b_realign_if_empty(&check->bo);
Willy Tarreaudeccd112018-06-14 18:38:55 +02002796
2797 if (ret <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02002798 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002799 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002800 goto out_end_tcpcheck;
2801 }
Willy Tarreau263013d2015-05-13 11:59:14 +02002802 break;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002803 }
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002804 if (b_data(&check->bo)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002805 cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list);
Olivier Houchard4501c3e2018-08-28 19:36:18 +02002806 goto out;
2807 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01002808 }
2809
Willy Tarreau263013d2015-05-13 11:59:14 +02002810 if (&check->current_step->list == head)
Willy Tarreauabca5b62013-12-06 14:19:25 +01002811 break;
2812
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002813 /* have 'next' point to the next rule or NULL if we're on the
2814 * last one, connect() needs this.
2815 */
Willy Tarreau5581c272015-05-13 12:24:53 +02002816 next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002817
2818 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002819 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002820 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002821
2822 /* NULL if we're on the last rule */
Willy Tarreauf3d34822014-12-08 12:11:28 +01002823 if (&next->list == head)
2824 next = NULL;
2825
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002826 if (check->current_step->action == TCPCHK_ACT_CONNECT) {
2827 struct protocol *proto;
2828 struct xprt_ops *xprt;
2829
Willy Tarreau00149122017-10-04 18:05:01 +02002830 /* For a connect action we'll create a new connection.
2831 * We may also have to kill a previous one. But we don't
2832 * want to leave *without* a connection if we came here
2833 * from the connection layer, hence with a connection.
2834 * Thus we'll proceed in the following order :
2835 * 1: close but not release previous connection
2836 * 2: try to get a new connection
2837 * 3: release and replace the old one on success
2838 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002839 if (check->cs) {
Willy Tarreaua553ae92017-10-05 18:52:17 +02002840 cs_close(check->cs);
2841 retcode = -1; /* do not reuse the fd in the caller! */
Willy Tarreau00149122017-10-04 18:05:01 +02002842 }
2843
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002844 /* mark the step as started */
2845 check->last_started_step = check->current_step;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002846
2847 /* prepare new connection */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002848 cs = cs_new(NULL);
2849 if (!cs) {
Willy Tarreau00149122017-10-04 18:05:01 +02002850 step = tcpcheck_get_step_id(check);
2851 chunk_printf(&trash, "TCPCHK error allocating connection at step %d", step);
2852 comment = tcpcheck_get_step_comment(check, step);
2853 if (comment)
2854 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002855 set_server_check_status(check, HCHK_STATUS_SOCKERR,
2856 trash.area);
Willy Tarreau00149122017-10-04 18:05:01 +02002857 check->current_step = NULL;
Christopher Fauletb6102852017-11-28 10:06:29 +01002858 goto out;
Willy Tarreau00149122017-10-04 18:05:01 +02002859 }
2860
Olivier Houchard49065542019-05-31 19:20:36 +02002861 if (check->cs) {
2862 if (check->wait_list.events)
2863 cs->conn->xprt->unsubscribe(cs->conn,
2864 cs->conn->xprt_ctx,
2865 check->wait_list.events,
2866 &check->wait_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02002867 /* We may have been scheduled to run, and the
2868 * I/O handler expects to have a cs, so remove
2869 * the tasklet
2870 */
2871 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
Willy Tarreauac59f362017-10-08 11:10:19 +02002872 cs_destroy(check->cs);
Olivier Houchard49065542019-05-31 19:20:36 +02002873 }
Willy Tarreau00149122017-10-04 18:05:01 +02002874
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002875 check->cs = cs;
2876 conn = cs->conn;
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02002877 /* Maybe there were an older connection we were waiting on */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002878 check->wait_list.events = 0;
Olivier Houchard0923fa42019-01-11 18:43:04 +01002879 conn->target = s ? &s->obj_type : &proxy->obj_type;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002880
2881 /* no client address */
2882 clear_addr(&conn->addr.from);
2883
Simon Horman41f58762015-01-30 11:22:56 +09002884 if (is_addr(&check->addr)) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002885 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09002886 conn->addr.to = check->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002887 }
2888 else {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002889 /* we'll connect to the addr on the server */
2890 conn->addr.to = s->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002891 }
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01002892 proto = protocol_by_family(conn->addr.to.ss_family);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002893
2894 /* port */
2895 if (check->current_step->port)
2896 set_host_port(&conn->addr.to, check->current_step->port);
2897 else if (check->port)
2898 set_host_port(&conn->addr.to, check->port);
Baptiste Assmann2f3a56b2018-03-19 12:22:41 +01002899 else if (s->svc_port)
2900 set_host_port(&conn->addr.to, s->svc_port);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002901
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002902 if (check->current_step->conn_opts & TCPCHK_OPT_SSL) {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002903 xprt = xprt_get(XPRT_SSL);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002904 }
2905 else {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002906 xprt = xprt_get(XPRT_RAW);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002907 }
Willy Tarreaube373152018-09-06 11:45:30 +02002908
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002909 conn_prepare(conn, proto, xprt);
Willy Tarreau495c3a42019-07-17 18:48:07 +02002910
2911 if (conn_install_mux(conn, &mux_pt_ops, cs, proxy, NULL) < 0) {
2912 ret = SF_ERR_RESOURCE;
2913 goto fail_check;
2914 }
2915
Willy Tarreaube373152018-09-06 11:45:30 +02002916 cs_attach(cs, check, &check_conn_cb);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002917
Willy Tarreaue7dff022015-04-03 01:14:29 +02002918 ret = SF_ERR_INTERNAL;
Ricardo Nabinger Sanchez4bccea92019-03-28 21:42:23 -03002919 if (proto && proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01002920 ret = proto->connect(conn,
Olivier Houchardfdcb0072019-05-06 18:32:29 +02002921 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 +01002922 if (check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) {
2923 conn->send_proxy_ofs = 1;
2924 conn->flags |= CO_FL_SEND_PROXY;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02002925 if (xprt_add_hs(conn) < 0)
2926 ret = SF_ERR_RESOURCE;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002927 }
2928
2929 /* It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002930 * - SF_ERR_NONE if everything's OK
2931 * - SF_ERR_SRVTO if there are no more servers
2932 * - SF_ERR_SRVCL if the connection was refused by the server
2933 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
2934 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
2935 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01002936 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002937 * Note that we try to prevent the network stack from sending the ACK during the
2938 * connect() when a pure TCP check is used (without PROXY protocol).
2939 */
Willy Tarreau495c3a42019-07-17 18:48:07 +02002940 fail_check:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002941 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002942 case SF_ERR_NONE:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002943 /* we allow up to min(inter, timeout.connect) for a connection
2944 * to establish but only when timeout.check is set
2945 * as it may be to short for a full check otherwise
2946 */
2947 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2948
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002949 if (proxy->timeout.check && proxy->timeout.connect) {
2950 int t_con = tick_add(now_ms, proxy->timeout.connect);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002951 t->expire = tick_first(t->expire, t_con);
2952 }
2953 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002954 case SF_ERR_SRVTO: /* ETIMEDOUT */
2955 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002956 step = tcpcheck_get_step_id(check);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002957 chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002958 step, strerror(errno));
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002959 comment = tcpcheck_get_step_comment(check, step);
2960 if (comment)
2961 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002962 set_server_check_status(check, HCHK_STATUS_L4CON,
2963 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002964 goto out_end_tcpcheck;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002965 case SF_ERR_PRXCOND:
2966 case SF_ERR_RESOURCE:
2967 case SF_ERR_INTERNAL:
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002968 step = tcpcheck_get_step_id(check);
2969 chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002970 comment = tcpcheck_get_step_comment(check, step);
2971 if (comment)
2972 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002973 set_server_check_status(check, HCHK_STATUS_SOCKERR,
2974 trash.area);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002975 goto out_end_tcpcheck;
2976 }
2977
2978 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002979 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002980
2981 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002982 while (&check->current_step->list != head &&
2983 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002984 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002985
Willy Tarreauf2c87352015-05-13 12:08:21 +02002986 if (&check->current_step->list == head)
2987 break;
2988
Willy Tarreau7199e962019-07-15 10:57:51 +02002989 /* don't do anything until the connection is established */
2990 if (!(conn->flags & CO_FL_CONNECTED))
2991 break;
2992
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002993 } /* end 'connect' */
2994 else if (check->current_step->action == TCPCHK_ACT_SEND) {
2995 /* mark the step as started */
2996 check->last_started_step = check->current_step;
2997
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002998 /* reset the read buffer */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002999 if (*b_head(&check->bi) != '\0') {
3000 *b_head(&check->bi) = '\0';
3001 b_reset(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003002 }
3003
Willy Tarreaubbae3f02017-08-30 09:59:52 +02003004 if (conn->flags & CO_FL_SOCK_WR_SH) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003005 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003006 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003007 goto out_end_tcpcheck;
3008 }
3009
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003010 if (check->current_step->string_len >= b_size(&check->bo)) {
Willy Tarreau506a29a2018-07-18 10:07:58 +02003011 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%u) at step %d",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003012 check->current_step->string_len, (unsigned int)b_size(&check->bo),
Simon Hormane16c1b32015-01-30 11:22:57 +09003013 tcpcheck_get_step_id(check));
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003014 set_server_check_status(check, HCHK_STATUS_L7RSP,
3015 trash.area);
Willy Tarreauabca5b62013-12-06 14:19:25 +01003016 goto out_end_tcpcheck;
3017 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003018
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003019 /* do not try to send if there is no space */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003020 if (check->current_step->string_len >= b_room(&check->bo))
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003021 continue;
3022
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003023 b_putblk(&check->bo, check->current_step->string, check->current_step->string_len);
3024 *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003025
Willy Tarreauabca5b62013-12-06 14:19:25 +01003026 /* go to next rule and try to send */
Willy Tarreau5581c272015-05-13 12:24:53 +02003027 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003028
3029 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003030 while (&check->current_step->list != head &&
3031 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003032 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Willy Tarreauf2c87352015-05-13 12:08:21 +02003033
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003034 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003035 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003036 if (unlikely(check->result == CHK_RES_FAILED))
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003037 goto out_end_tcpcheck;
3038
Olivier Houchard48bf0572019-07-18 15:09:08 +02003039 /* If we already subscribed, then we tried to received
3040 * and failed, so there's no point trying again.
3041 */
3042 if (check->wait_list.events & SUB_RETRY_RECV)
3043 break;
Olivier Houchard511efea2018-08-16 15:30:32 +02003044 if (cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0) <= 0) {
Willy Tarreau4ff3b892017-10-16 15:17:17 +02003045 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003046 done = 1;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003047 if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003048 /* Report network errors only if we got no other data. Otherwise
3049 * we'll let the upper layers decide whether the response is OK
3050 * or not. It is very common that an RST sent by the server is
3051 * reported as an error just after the last data chunk.
3052 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003053 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003054 goto out_end_tcpcheck;
3055 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003056 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003057 else {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003058 conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list);
Willy Tarreau263013d2015-05-13 11:59:14 +02003059 break;
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003060 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003061 }
3062
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003063 /* mark the step as started */
3064 check->last_started_step = check->current_step;
3065
3066
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003067 /* Intermediate or complete response received.
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003068 * Terminate string in b_head(&check->bi) buffer.
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003069 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003070 if (b_data(&check->bi) < b_size(&check->bi)) {
3071 b_head(&check->bi)[b_data(&check->bi)] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003072 }
3073 else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003074 b_head(&check->bi)[b_data(&check->bi) - 1] = '\0';
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003075 done = 1; /* buffer full, don't wait for more data */
3076 }
3077
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003078 contentptr = b_head(&check->bi);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003079
3080 /* Check that response body is not empty... */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003081 if (!b_data(&check->bi)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003082 if (!done)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003083 continue;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003084
3085 /* empty response */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003086 step = tcpcheck_get_step_id(check);
3087 chunk_printf(&trash, "TCPCHK got an empty response at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003088 comment = tcpcheck_get_step_comment(check, step);
3089 if (comment)
3090 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003091 set_server_check_status(check, HCHK_STATUS_L7RSP,
3092 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003093
3094 goto out_end_tcpcheck;
3095 }
3096
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003097 if (!done && (check->current_step->string != NULL) && (b_data(&check->bi) < check->current_step->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01003098 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003099
Willy Tarreaua970c282013-12-06 12:47:19 +01003100 tcpcheck_expect:
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003101 if (check->current_step->string != NULL)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003102 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 +02003103 else if (check->current_step->expect_regex != NULL)
3104 ret = regex_exec(check->current_step->expect_regex, contentptr);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003105
3106 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01003107 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003108
3109 /* matched */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003110 step = tcpcheck_get_step_id(check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003111 if (ret) {
3112 /* matched but we did not want to => ERROR */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003113 if (check->current_step->inverse) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003114 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003115 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003116 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003117 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003118 }
3119 else {
3120 /* we were looking for a regex */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003121 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d", step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003122 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003123 comment = tcpcheck_get_step_comment(check, step);
3124 if (comment)
3125 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003126 set_server_check_status(check, HCHK_STATUS_L7RSP,
3127 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003128 goto out_end_tcpcheck;
3129 }
3130 /* matched and was supposed to => OK, next step */
3131 else {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003132 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003133 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003134
3135 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003136 while (&check->current_step->list != head &&
3137 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003138 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003139
Willy Tarreauf2c87352015-05-13 12:08:21 +02003140 if (&check->current_step->list == head)
3141 break;
3142
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003143 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003144 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003145 }
3146 }
3147 else {
3148 /* not matched */
3149 /* not matched and was not supposed to => OK, next step */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003150 if (check->current_step->inverse) {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003151 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02003152 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003153
3154 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02003155 while (&check->current_step->list != head &&
3156 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02003157 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003158
Willy Tarreauf2c87352015-05-13 12:08:21 +02003159 if (&check->current_step->list == head)
3160 break;
3161
Willy Tarreau98aec9f2013-12-06 16:16:41 +01003162 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003163 goto tcpcheck_expect;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003164 }
3165 /* not matched but was supposed to => ERROR */
3166 else {
3167 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003168 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003169 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02003170 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003171 }
3172 else {
3173 /* we were looking for a regex */
3174 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02003175 step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003176 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02003177 comment = tcpcheck_get_step_comment(check, step);
3178 if (comment)
3179 chunk_appendf(&trash, " comment: '%s'", comment);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003180 set_server_check_status(check, HCHK_STATUS_L7RSP,
3181 trash.area);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003182 goto out_end_tcpcheck;
3183 }
3184 }
3185 } /* end expect */
3186 } /* end loop over double chained step list */
3187
Baptiste Assmann248f1172018-03-01 21:49:01 +01003188 /* don't do anything until the connection is established */
3189 if (!(conn->flags & CO_FL_CONNECTED)) {
3190 /* update expire time, should be done by process_chk */
3191 /* we allow up to min(inter, timeout.connect) for a connection
3192 * to establish but only when timeout.check is set
3193 * as it may be to short for a full check otherwise
3194 */
3195 while (tick_is_expired(t->expire, now_ms)) {
3196 int t_con;
3197
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003198 t_con = tick_add(t->expire, proxy->timeout.connect);
Baptiste Assmann248f1172018-03-01 21:49:01 +01003199 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
3200
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003201 if (proxy->timeout.check)
Baptiste Assmann248f1172018-03-01 21:49:01 +01003202 t->expire = tick_first(t->expire, t_con);
3203 }
3204 goto out;
3205 }
3206
Willy Tarreau263013d2015-05-13 11:59:14 +02003207 /* We're waiting for some I/O to complete, we've reached the end of the
3208 * rules, or both. Do what we have to do, otherwise we're done.
3209 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003210 if (&check->current_step->list == head && !b_data(&check->bo)) {
Willy Tarreau263013d2015-05-13 11:59:14 +02003211 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
3212 goto out_end_tcpcheck;
3213 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003214
Willy Tarreau53c5a042015-05-13 11:38:17 +02003215 if (&check->current_step->list != head &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003216 check->current_step->action == TCPCHK_ACT_EXPECT)
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003217 __event_srv_chk_r(cs);
Christopher Fauletb6102852017-11-28 10:06:29 +01003218 goto out;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003219
3220 out_end_tcpcheck:
3221 /* collect possible new errors */
Willy Tarreau3d84b1c2019-07-23 14:37:47 +02003222 if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR))
Willy Tarreaub5259bf2017-10-04 14:47:29 +02003223 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003224
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003225 /* cleanup before leaving */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003226 check->current_step = NULL;
3227
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003228 if (check->result == CHK_RES_FAILED)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003229 conn->flags |= CO_FL_ERROR;
3230
Christopher Fauletb6102852017-11-28 10:06:29 +01003231 out:
Willy Tarreau6bdcab02017-10-04 18:41:00 +02003232 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003233}
3234
Simon Hormanb1900d52015-01-30 11:22:54 +09003235const char *init_check(struct check *check, int type)
3236{
3237 check->type = type;
3238
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003239 b_reset(&check->bi); check->bi.size = global.tune.chksize;
3240 b_reset(&check->bo); check->bo.size = global.tune.chksize;
Simon Hormanb1900d52015-01-30 11:22:54 +09003241
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003242 check->bi.area = calloc(check->bi.size, sizeof(char));
3243 check->bo.area = calloc(check->bo.size, sizeof(char));
3244
3245 if (!check->bi.area || !check->bo.area)
Simon Hormanb1900d52015-01-30 11:22:54 +09003246 return "out of memory while allocating check buffer";
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003247
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003248 check->wait_list.tasklet = tasklet_new();
3249 if (!check->wait_list.tasklet)
Olivier Houchard26e1a8f2018-09-12 15:15:12 +02003250 return "out of memroy while allocating check tasklet";
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003251 check->wait_list.events = 0;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003252 check->wait_list.tasklet->process = event_srv_chk_io;
3253 check->wait_list.tasklet->context = check;
Simon Hormanb1900d52015-01-30 11:22:54 +09003254 return NULL;
3255}
3256
Simon Hormanbfb5d332015-01-30 11:22:55 +09003257void free_check(struct check *check)
3258{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003259 free(check->bi.area);
3260 free(check->bo.area);
Christopher Faulet23d86d12018-01-25 11:36:35 +01003261 if (check->cs) {
3262 free(check->cs->conn);
3263 check->cs->conn = NULL;
3264 cs_free(check->cs);
3265 check->cs = NULL;
3266 }
Simon Hormanbfb5d332015-01-30 11:22:55 +09003267}
3268
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003269void email_alert_free(struct email_alert *alert)
3270{
3271 struct tcpcheck_rule *rule, *back;
3272
3273 if (!alert)
3274 return;
3275
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003276 list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list) {
3277 LIST_DEL(&rule->list);
3278 free(rule->comment);
3279 free(rule->string);
Dragan Dosen26743032019-04-30 15:54:36 +02003280 regex_free(rule->expect_regex);
Willy Tarreaubafbe012017-11-24 17:34:44 +01003281 pool_free(pool_head_tcpcheck_rule, rule);
Christopher Fauletde1a75b2017-10-23 15:38:19 +02003282 }
Willy Tarreaubafbe012017-11-24 17:34:44 +01003283 pool_free(pool_head_email_alert, alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003284}
3285
Olivier Houchard9f6af332018-05-25 14:04:04 +02003286static struct task *process_email_alert(struct task *t, void *context, unsigned short state)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003287{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003288 struct check *check = context;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003289 struct email_alertq *q;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003290 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003291
3292 q = container_of(check, typeof(*q), check);
3293
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003294 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003295 while (1) {
3296 if (!(check->state & CHK_ST_ENABLED)) {
3297 if (LIST_ISEMPTY(&q->email_alerts)) {
3298 /* All alerts processed, queue the task */
3299 t->expire = TICK_ETERNITY;
3300 task_queue(t);
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003301 goto end;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003302 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003303
3304 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003305 LIST_DEL(&alert->list);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003306 t->expire = now_ms;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003307 check->tcpcheck_rules = &alert->tcpcheck_rules;
Olivier Houchard0923fa42019-01-11 18:43:04 +01003308 check->status = HCHK_STATUS_INI;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003309 check->state |= CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003310 }
3311
Olivier Houchard9f6af332018-05-25 14:04:04 +02003312 process_chk(t, context, state);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003313 if (check->state & CHK_ST_INPROGRESS)
3314 break;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003315
3316 alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules);
3317 email_alert_free(alert);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003318 check->tcpcheck_rules = NULL;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003319 check->server = NULL;
3320 check->state &= ~CHK_ST_ENABLED;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003321 }
Christopher Fauletc2a89a62017-10-23 15:54:24 +02003322 end:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003323 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003324 return t;
3325}
3326
Christopher Faulet0108bb32017-10-20 21:34:32 +02003327/* Initializes mailer alerts for the proxy <p> using <mls> parameters.
3328 *
3329 * The function returns 1 in success case, otherwise, it returns 0 and err is
3330 * filled.
3331 */
3332int init_email_alert(struct mailers *mls, struct proxy *p, char **err)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003333{
Christopher Faulet0108bb32017-10-20 21:34:32 +02003334 struct mailer *mailer;
3335 struct email_alertq *queues;
3336 const char *err_str;
3337 int i = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003338
Christopher Faulet0108bb32017-10-20 21:34:32 +02003339 if ((queues = calloc(mls->count, sizeof(*queues))) == NULL) {
3340 memprintf(err, "out of memory while allocating mailer alerts queues");
mildis5ab01cb2018-10-02 16:46:34 +02003341 goto fail_no_queue;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003342 }
3343
Christopher Faulet0108bb32017-10-20 21:34:32 +02003344 for (mailer = mls->mailer_list; mailer; i++, mailer = mailer->next) {
3345 struct email_alertq *q = &queues[i];
3346 struct check *check = &q->check;
3347 struct task *t;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003348
3349 LIST_INIT(&q->email_alerts);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003350 HA_SPIN_INIT(&q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003351 check->inter = mls->timeout.mail;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003352 check->rise = DEF_AGENT_RISETIME;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01003353 check->proxy = p;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003354 check->fall = DEF_AGENT_FALLTIME;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003355 if ((err_str = init_check(check, PR_O2_TCPCHK_CHK))) {
3356 memprintf(err, "%s", err_str);
3357 goto error;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003358 }
3359
3360 check->xprt = mailer->xprt;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003361 check->addr = mailer->addr;
Christopher Fauletb797ae12018-03-27 15:35:35 +02003362 check->port = get_host_port(&mailer->addr);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003363
Emeric Brunc60def82017-09-27 14:59:38 +02003364 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003365 memprintf(err, "out of memory while allocating mailer alerts task");
3366 goto error;
3367 }
3368
3369 check->task = t;
3370 t->process = process_email_alert;
3371 t->context = check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003372
Christopher Faulet0108bb32017-10-20 21:34:32 +02003373 /* check this in one ms */
3374 t->expire = TICK_ETERNITY;
3375 check->start = now;
3376 task_queue(t);
3377 }
3378
3379 mls->users++;
3380 free(p->email_alert.mailers.name);
3381 p->email_alert.mailers.m = mls;
3382 p->email_alert.queues = queues;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003383 return 0;
Christopher Faulet0108bb32017-10-20 21:34:32 +02003384
3385 error:
3386 for (i = 0; i < mls->count; i++) {
3387 struct email_alertq *q = &queues[i];
3388 struct check *check = &q->check;
3389
Willy Tarreauf6562792019-05-07 19:05:35 +02003390 task_destroy(check->task);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003391 free_check(check);
3392 }
3393 free(queues);
mildis5ab01cb2018-10-02 16:46:34 +02003394 fail_no_queue:
Christopher Faulet0108bb32017-10-20 21:34:32 +02003395 return 1;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003396}
3397
3398
3399static int add_tcpcheck_expect_str(struct list *list, const char *str)
3400{
3401 struct tcpcheck_rule *tcpcheck;
3402
Willy Tarreaubafbe012017-11-24 17:34:44 +01003403 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003404 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003405 memset(tcpcheck, 0, sizeof(*tcpcheck));
3406 tcpcheck->action = TCPCHK_ACT_EXPECT;
3407 tcpcheck->string = strdup(str);
3408 tcpcheck->expect_regex = NULL;
3409 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003410 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003411 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003412 return 0;
3413 }
3414
3415 LIST_ADDQ(list, &tcpcheck->list);
3416 return 1;
3417}
3418
3419static int add_tcpcheck_send_strs(struct list *list, const char * const *strs)
3420{
3421 struct tcpcheck_rule *tcpcheck;
Willy Tarreau64345aa2016-08-10 19:29:09 +02003422 const char *in;
3423 char *dst;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003424 int i;
3425
Willy Tarreaubafbe012017-11-24 17:34:44 +01003426 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003427 return 0;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003428 memset(tcpcheck, 0, sizeof(*tcpcheck));
3429 tcpcheck->action = TCPCHK_ACT_SEND;
3430 tcpcheck->expect_regex = NULL;
3431 tcpcheck->comment = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003432 tcpcheck->string_len = 0;
3433 for (i = 0; strs[i]; i++)
3434 tcpcheck->string_len += strlen(strs[i]);
3435
3436 tcpcheck->string = malloc(tcpcheck->string_len + 1);
3437 if (!tcpcheck->string) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003438 pool_free(pool_head_tcpcheck_rule, tcpcheck);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003439 return 0;
3440 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003441
Willy Tarreau64345aa2016-08-10 19:29:09 +02003442 dst = tcpcheck->string;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003443 for (i = 0; strs[i]; i++)
Willy Tarreau64345aa2016-08-10 19:29:09 +02003444 for (in = strs[i]; (*dst = *in++); dst++);
3445 *dst = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003446
3447 LIST_ADDQ(list, &tcpcheck->list);
3448 return 1;
3449}
3450
Christopher Faulet0108bb32017-10-20 21:34:32 +02003451static int enqueue_one_email_alert(struct proxy *p, struct server *s,
3452 struct email_alertq *q, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003453{
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003454 struct email_alert *alert;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003455 struct tcpcheck_rule *tcpcheck;
3456 struct check *check = &q->check;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003457
Willy Tarreaubafbe012017-11-24 17:34:44 +01003458 if ((alert = pool_alloc(pool_head_email_alert)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003459 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003460 LIST_INIT(&alert->list);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003461 LIST_INIT(&alert->tcpcheck_rules);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003462 alert->srv = s;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003463
Willy Tarreaubafbe012017-11-24 17:34:44 +01003464 if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003465 goto error;
Christopher Faulet31dff9b2017-10-23 15:45:20 +02003466 memset(tcpcheck, 0, sizeof(*tcpcheck));
3467 tcpcheck->action = TCPCHK_ACT_CONNECT;
3468 tcpcheck->comment = NULL;
3469 tcpcheck->string = NULL;
3470 tcpcheck->expect_regex = NULL;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003471 LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list);
3472
3473 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 "))
3474 goto error;
3475
3476 {
3477 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
3478 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3479 goto error;
3480 }
3481
3482 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3483 goto error;
3484
3485 {
3486 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
3487 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3488 goto error;
3489 }
3490
3491 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3492 goto error;
3493
3494 {
3495 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
3496 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3497 goto error;
3498 }
3499
3500 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3501 goto error;
3502
3503 {
3504 const char * const strs[2] = { "DATA\r\n" };
3505 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3506 goto error;
3507 }
3508
3509 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 "))
3510 goto error;
3511
3512 {
3513 struct tm tm;
3514 char datestr[48];
3515 const char * const strs[18] = {
Pieter Baauw5e0964e2016-02-13 16:27:35 +01003516 "From: ", p->email_alert.from, "\r\n",
3517 "To: ", p->email_alert.to, "\r\n",
3518 "Date: ", datestr, "\r\n",
3519 "Subject: [HAproxy Alert] ", msg, "\r\n",
3520 "\r\n",
3521 msg, "\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003522 "\r\n",
Pieter Baauwed35c372015-07-22 19:51:54 +02003523 ".\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003524 NULL
3525 };
3526
3527 get_localtime(date.tv_sec, &tm);
3528
3529 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
3530 goto error;
3531 }
3532
3533 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3534 goto error;
3535 }
3536
3537 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3538 goto error;
3539
3540 {
3541 const char * const strs[2] = { "QUIT\r\n" };
3542 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3543 goto error;
3544 }
3545
3546 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 "))
3547 goto error;
3548
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003549 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003550 task_wakeup(check->task, TASK_WOKEN_MSG);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003551 LIST_ADDQ(&q->email_alerts, &alert->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003552 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003553 return 1;
3554
3555error:
3556 email_alert_free(alert);
3557 return 0;
3558}
3559
Christopher Faulet0108bb32017-10-20 21:34:32 +02003560static void enqueue_email_alert(struct proxy *p, struct server *s, const char *msg)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003561{
3562 int i;
3563 struct mailer *mailer;
3564
3565 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3566 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02003567 if (!enqueue_one_email_alert(p, s, &p->email_alert.queues[i], msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003568 ha_alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003569 return;
3570 }
3571 }
3572
3573 return;
3574}
3575
3576/*
3577 * Send email alert if configured.
3578 */
Simon Horman64e34162015-02-06 11:11:57 +09003579void send_email_alert(struct server *s, int level, const char *format, ...)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003580{
3581 va_list argp;
3582 char buf[1024];
3583 int len;
3584 struct proxy *p = s->proxy;
3585
Christopher Faulet0108bb32017-10-20 21:34:32 +02003586 if (!p->email_alert.mailers.m || level > p->email_alert.level || format == NULL)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003587 return;
3588
3589 va_start(argp, format);
3590 len = vsnprintf(buf, sizeof(buf), format, argp);
3591 va_end(argp);
3592
Thierry FOURNIER62c8a212017-02-09 12:19:27 +01003593 if (len < 0 || len >= sizeof(buf)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003594 ha_alert("Email alert [%s] could not format message\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003595 return;
3596 }
3597
Christopher Faulet0108bb32017-10-20 21:34:32 +02003598 enqueue_email_alert(p, s, buf);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003599}
3600
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003601/*
3602 * Return value:
3603 * the port to be used for the health check
3604 * 0 in case no port could be found for the check
3605 */
3606int srv_check_healthcheck_port(struct check *chk)
3607{
3608 int i = 0;
3609 struct server *srv = NULL;
3610
3611 srv = chk->server;
3612
3613 /* If neither a port nor an addr was specified and no check transport
3614 * layer is forced, then the transport layer used by the checks is the
3615 * same as for the production traffic. Otherwise we use raw_sock by
3616 * default, unless one is specified.
3617 */
3618 if (!chk->port && !is_addr(&chk->addr)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003619 chk->use_ssl |= (srv->use_ssl || (srv->proxy->options & PR_O_TCPCHK_SSL));
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003620 chk->send_proxy |= (srv->pp_opts);
3621 }
3622
3623 /* by default, we use the health check port ocnfigured */
3624 if (chk->port > 0)
3625 return chk->port;
3626
3627 /* try to get the port from check_core.addr if check.port not set */
3628 i = get_host_port(&chk->addr);
3629 if (i > 0)
3630 return i;
3631
3632 /* try to get the port from server address */
3633 /* prevent MAPPORTS from working at this point, since checks could
3634 * not be performed in such case (MAPPORTS impose a relative ports
3635 * based on live traffic)
3636 */
3637 if (srv->flags & SRV_F_MAPPORTS)
3638 return 0;
Willy Tarreau04276f32017-01-06 17:41:29 +01003639
3640 i = srv->svc_port; /* by default */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003641 if (i > 0)
3642 return i;
3643
3644 return 0;
3645}
3646
Willy Tarreau172f5ce2018-11-26 11:21:50 +01003647REGISTER_POST_CHECK(start_checks);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003648
Willy Tarreaubd741542010-03-16 18:46:54 +01003649/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003650 * Local variables:
3651 * c-indent-level: 8
3652 * c-basic-offset: 8
3653 * End:
3654 */