blob: cb5888552b5260060199964e3e4e2e2613173071 [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>
25#include <sys/socket.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040026#include <sys/types.h>
Simon Horman98637e52014-06-20 12:30:16 +090027#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <netinet/in.h>
Willy Tarreau1274bc42009-07-15 07:16:31 +020029#include <netinet/tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030#include <arpa/inet.h>
31
Willy Tarreauc7e42382012-08-24 19:22:53 +020032#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/compat.h>
34#include <common/config.h>
35#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020036#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020037#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
39#include <types/global.h>
Simon Horman0ba0e4a2015-01-30 11:23:00 +090040#include <types/mailers.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020041#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010042#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
44#include <proto/backend.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020045#include <proto/checks.h>
William Lallemand9ed62032016-11-21 17:49:11 +010046#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/fd.h>
48#include <proto/log.h>
49#include <proto/queue.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020050#include <proto/port_range.h>
Willy Tarreau3d300592007-03-18 18:34:41 +010051#include <proto/proto_http.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010052#include <proto/proto_tcp.h>
Baptiste Assmann69e273f2013-12-11 00:52:19 +010053#include <proto/protocol.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010054#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/server.h>
Willy Tarreau48d6bf22016-06-21 16:27:34 +020056#include <proto/signal.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010057#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020059#include <proto/log.h>
60#include <proto/dns.h>
61#include <proto/proto_udp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020062
Willy Tarreaubd741542010-03-16 18:46:54 +010063static int httpchk_expect(struct server *s, int done);
Simon Hormane16c1b32015-01-30 11:22:57 +090064static int tcpcheck_get_step_id(struct check *);
Baptiste Assmann22b09d22015-05-01 08:03:04 +020065static char * tcpcheck_get_step_comment(struct check *, int);
Willy Tarreau6bdcab02017-10-04 18:41:00 +020066static int tcpcheck_main(struct check *);
Willy Tarreaubd741542010-03-16 18:46:54 +010067
Simon Horman63a4a822012-03-19 07:24:41 +090068static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010069 [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" },
70 [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" },
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020071 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020072
Willy Tarreau23964182014-05-20 20:56:30 +020073 /* Below we have finished checks */
74 [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" },
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010075 [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010076
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010077 [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020078
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010079 [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" },
80 [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" },
81 [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020082
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010083 [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" },
84 [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" },
85 [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020086
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010087 [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" },
88 [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020089
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020090 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020091
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010092 [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" },
93 [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" },
94 [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" },
Simon Horman98637e52014-06-20 12:30:16 +090095
96 [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" },
97 [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" },
Cyril Bonté77010d82014-08-07 01:55:37 +020098 [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020099};
100
Cyril Bontéac92a062014-12-27 22:28:38 +0100101const struct extcheck_env extcheck_envs[EXTCHK_SIZE] = {
102 [EXTCHK_PATH] = { "PATH", EXTCHK_SIZE_EVAL_INIT },
103 [EXTCHK_HAPROXY_PROXY_NAME] = { "HAPROXY_PROXY_NAME", EXTCHK_SIZE_EVAL_INIT },
104 [EXTCHK_HAPROXY_PROXY_ID] = { "HAPROXY_PROXY_ID", EXTCHK_SIZE_EVAL_INIT },
105 [EXTCHK_HAPROXY_PROXY_ADDR] = { "HAPROXY_PROXY_ADDR", EXTCHK_SIZE_EVAL_INIT },
106 [EXTCHK_HAPROXY_PROXY_PORT] = { "HAPROXY_PROXY_PORT", EXTCHK_SIZE_EVAL_INIT },
107 [EXTCHK_HAPROXY_SERVER_NAME] = { "HAPROXY_SERVER_NAME", EXTCHK_SIZE_EVAL_INIT },
108 [EXTCHK_HAPROXY_SERVER_ID] = { "HAPROXY_SERVER_ID", EXTCHK_SIZE_EVAL_INIT },
109 [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_EVAL_INIT },
110 [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_EVAL_INIT },
111 [EXTCHK_HAPROXY_SERVER_MAXCONN] = { "HAPROXY_SERVER_MAXCONN", EXTCHK_SIZE_EVAL_INIT },
112 [EXTCHK_HAPROXY_SERVER_CURCONN] = { "HAPROXY_SERVER_CURCONN", EXTCHK_SIZE_ULONG },
113};
114
Simon Horman63a4a822012-03-19 07:24:41 +0900115static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100116 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
117
118 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
119 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
120
121 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
122 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
123 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
124 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
125
126 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
127 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
128 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
129};
130
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200131/*
132 * Convert check_status code to description
133 */
134const char *get_check_status_description(short check_status) {
135
136 const char *desc;
137
138 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200139 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200140 else
141 desc = NULL;
142
143 if (desc && *desc)
144 return desc;
145 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200146 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200147}
148
149/*
150 * Convert check_status code to short info
151 */
152const char *get_check_status_info(short check_status) {
153
154 const char *info;
155
156 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200157 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200158 else
159 info = NULL;
160
161 if (info && *info)
162 return info;
163 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200164 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200165}
166
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100167const char *get_analyze_status(short analyze_status) {
168
169 const char *desc;
170
171 if (analyze_status < HANA_STATUS_SIZE)
172 desc = analyze_statuses[analyze_status].desc;
173 else
174 desc = NULL;
175
176 if (desc && *desc)
177 return desc;
178 else
179 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
180}
181
Willy Tarreaua150cf12014-05-20 21:57:23 +0200182/* Builds a string containing some information about the health check's result.
183 * The output string is allocated from the trash chunks. If the check is NULL,
184 * NULL is returned. This is designed to be used when emitting logs about health
185 * checks.
Willy Tarreauddd329c2014-05-16 16:46:12 +0200186 */
Willy Tarreaua150cf12014-05-20 21:57:23 +0200187static const char *check_reason_string(struct check *check)
Willy Tarreauddd329c2014-05-16 16:46:12 +0200188{
Willy Tarreaua150cf12014-05-20 21:57:23 +0200189 struct chunk *msg;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200190
Willy Tarreaua150cf12014-05-20 21:57:23 +0200191 if (!check)
192 return NULL;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200193
Willy Tarreaua150cf12014-05-20 21:57:23 +0200194 msg = get_trash_chunk();
195 chunk_printf(msg, "reason: %s", get_check_status_description(check->status));
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200196
Willy Tarreaua150cf12014-05-20 21:57:23 +0200197 if (check->status >= HCHK_STATUS_L57DATA)
198 chunk_appendf(msg, ", code: %d", check->code);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200199
Willy Tarreaua150cf12014-05-20 21:57:23 +0200200 if (*check->desc) {
201 struct chunk src;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200202
Willy Tarreaua150cf12014-05-20 21:57:23 +0200203 chunk_appendf(msg, ", info: \"");
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200204
Willy Tarreaua150cf12014-05-20 21:57:23 +0200205 chunk_initlen(&src, check->desc, 0, strlen(check->desc));
206 chunk_asciiencode(msg, &src, '"');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200207
Willy Tarreaua150cf12014-05-20 21:57:23 +0200208 chunk_appendf(msg, "\"");
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200209 }
210
Willy Tarreaua150cf12014-05-20 21:57:23 +0200211 if (check->duration >= 0)
212 chunk_appendf(msg, ", check duration: %ldms", check->duration);
213
214 return msg->str;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200215}
216
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200217/*
Simon Horman4a741432013-02-23 15:35:38 +0900218 * Set check->status, update check->duration and fill check->result with
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200219 * an adequate CHK_RES_* value. The new check->health is computed based
220 * on the result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200221 *
222 * Show information in logs about failed health check if server is UP
223 * or succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200224 */
Simon Horman4a741432013-02-23 15:35:38 +0900225static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100226{
Simon Horman4a741432013-02-23 15:35:38 +0900227 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200228 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200229 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900230
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200231 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100232 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900233 check->desc[0] = '\0';
234 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200235 return;
236 }
237
Simon Horman4a741432013-02-23 15:35:38 +0900238 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200239 return;
240
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200241 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900242 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
243 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200244 } else
Simon Horman4a741432013-02-23 15:35:38 +0900245 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200246
Simon Horman4a741432013-02-23 15:35:38 +0900247 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200248 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900249 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200250
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100251 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900252 check->duration = -1;
253 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200254 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900255 check->duration = tv_ms_elapsed(&check->start, &now);
256 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200257 }
258
Willy Tarreau23964182014-05-20 20:56:30 +0200259 /* no change is expected if no state change occurred */
260 if (check->result == CHK_RES_NEUTRAL)
261 return;
262
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200263 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200264
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200265 switch (check->result) {
266 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200267 /* Failure to connect to the agent as a secondary check should not
268 * cause the server to be marked down.
269 */
270 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900271 (check->status >= HCHK_STATUS_L57DATA)) &&
Willy Tarreau12634e12014-05-23 11:32:36 +0200272 (check->health >= check->rise)) {
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200273 s->counters.failed_checks++;
274 report = 1;
275 check->health--;
276 if (check->health < check->rise)
277 check->health = 0;
278 }
279 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200280
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200281 case CHK_RES_PASSED:
282 case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */
283 if ((check->health < check->rise + check->fall - 1) &&
284 (check->result == CHK_RES_PASSED || check->health > 0)) {
285 report = 1;
286 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200287
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200288 if (check->health >= check->rise)
289 check->health = check->rise + check->fall - 1; /* OK now */
290 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200291
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200292 /* clear consecutive_errors if observing is enabled */
293 if (s->onerror)
294 s->consecutive_errors = 0;
295 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100296
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200297 default:
298 break;
299 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200300
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200301 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
302 (status != prev_status || report)) {
303 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200304 "%s check for %sserver %s/%s %s%s",
305 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200306 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100307 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100308 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200309 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200310
Willy Tarreaua150cf12014-05-20 21:57:23 +0200311 srv_append_status(&trash, s, check_reason_string(check), -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200312
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100313 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200314 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
315 (check->health >= check->rise) ? check->fall : check->rise,
316 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200317
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100318 Warning("%s.\n", trash.str);
319 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman7ea9be02015-04-30 13:10:33 +0900320 send_email_alert(s, LOG_INFO, "%s", trash.str);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200321 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200322}
323
Willy Tarreau4eec5472014-05-20 22:32:27 +0200324/* Marks the check <check>'s server down if the current check is already failed
325 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326 */
Willy Tarreau4eec5472014-05-20 22:32:27 +0200327static void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200328{
Simon Horman4a741432013-02-23 15:35:38 +0900329 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900330
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200331 /* The agent secondary check should only cause a server to be marked
332 * as down if check->status is HCHK_STATUS_L7STS, which indicates
333 * that the agent returned "fail", "stopped" or "down".
334 * The implication here is that failure to connect to the agent
335 * as a secondary check should not cause the server to be marked
336 * down. */
337 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
338 return;
339
Willy Tarreau4eec5472014-05-20 22:32:27 +0200340 if (check->health > 0)
341 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100342
Willy Tarreau4eec5472014-05-20 22:32:27 +0200343 /* We only report a reason for the check if we did not do so previously */
344 srv_set_stopped(s, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check_reason_string(check) : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200345}
346
Willy Tarreauaf549582014-05-16 17:37:50 +0200347/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200348 * it isn't in maintenance, it is not tracking a down server and other checks
349 * comply. The rule is simple : by default, a server is up, unless any of the
350 * following conditions is true :
351 * - health check failed (check->health < rise)
352 * - agent check failed (agent->health < rise)
353 * - the server tracks a down server (track && track->state == STOPPED)
354 * Note that if the server has a slowstart, it will switch to STARTING instead
355 * of RUNNING. Also, only the health checks support the nolb mode, so the
356 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200357 */
Willy Tarreau3e048382014-05-21 10:30:54 +0200358static void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200359{
Simon Horman4a741432013-02-23 15:35:38 +0900360 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100361
Emeric Brun52a91d32017-08-31 14:41:55 +0200362 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200363 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100364
Emeric Brun52a91d32017-08-31 14:41:55 +0200365 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200366 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100367
Willy Tarreau3e048382014-05-21 10:30:54 +0200368 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
369 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100370
Willy Tarreau3e048382014-05-21 10:30:54 +0200371 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
372 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200373
Emeric Brun52a91d32017-08-31 14:41:55 +0200374 if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING)
Willy Tarreau3e048382014-05-21 10:30:54 +0200375 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100376
Willy Tarreau3e048382014-05-21 10:30:54 +0200377 srv_set_running(s, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check_reason_string(check) : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100378}
379
Willy Tarreaudb58b792014-05-21 13:57:23 +0200380/* Marks the check <check> as valid and tries to set its server into stopping mode
381 * if it was running or starting, and provided it isn't in maintenance and other
382 * checks comply. The conditions for the server to be marked in stopping mode are
383 * the same as for it to be turned up. Also, only the health checks support the
384 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200385 */
Willy Tarreaudb58b792014-05-21 13:57:23 +0200386static void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200387{
Simon Horman4a741432013-02-23 15:35:38 +0900388 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100389
Emeric Brun52a91d32017-08-31 14:41:55 +0200390 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200391 return;
392
Willy Tarreaudb58b792014-05-21 13:57:23 +0200393 if (check->state & CHK_ST_AGENT)
394 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100395
Emeric Brun52a91d32017-08-31 14:41:55 +0200396 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreaudb58b792014-05-21 13:57:23 +0200397 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100398
Willy Tarreaudb58b792014-05-21 13:57:23 +0200399 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
400 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100401
Willy Tarreaudb58b792014-05-21 13:57:23 +0200402 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
403 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100404
Willy Tarreaudb58b792014-05-21 13:57:23 +0200405 srv_set_stopping(s, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check_reason_string(check) : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100406}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100408/* note: use health_adjust() only, which first checks that the observe mode is
409 * enabled.
410 */
411void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100412{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100413 int failed;
414 int expire;
415
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100416 if (s->observe >= HANA_OBS_SIZE)
417 return;
418
Willy Tarreaubb956662013-01-24 00:37:39 +0100419 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100420 return;
421
422 switch (analyze_statuses[status].lr[s->observe - 1]) {
423 case 1:
424 failed = 1;
425 break;
426
427 case 2:
428 failed = 0;
429 break;
430
431 default:
432 return;
433 }
434
435 if (!failed) {
436 /* good: clear consecutive_errors */
437 s->consecutive_errors = 0;
438 return;
439 }
440
441 s->consecutive_errors++;
442
443 if (s->consecutive_errors < s->consecutive_errors_limit)
444 return;
445
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100446 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
447 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100448
449 switch (s->onerror) {
450 case HANA_ONERR_FASTINTER:
451 /* force fastinter - nothing to do here as all modes force it */
452 break;
453
454 case HANA_ONERR_SUDDTH:
455 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900456 if (s->check.health > s->check.rise)
457 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100458
459 /* no break - fall through */
460
461 case HANA_ONERR_FAILCHK:
462 /* simulate a failed health check */
Simon Horman4a741432013-02-23 15:35:38 +0900463 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200464 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100465 break;
466
467 case HANA_ONERR_MARKDWN:
468 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900469 s->check.health = s->check.rise;
Simon Horman4a741432013-02-23 15:35:38 +0900470 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200471 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100472 break;
473
474 default:
475 /* write a warning? */
476 break;
477 }
478
479 s->consecutive_errors = 0;
480 s->counters.failed_hana++;
481
Simon Horman66183002013-02-23 10:16:43 +0900482 if (s->check.fastinter) {
483 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300484 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200485 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300486 /* requeue check task with new expire */
487 task_queue(s->check.task);
488 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100489 }
490}
491
Willy Tarreaua1dab552014-04-14 15:04:54 +0200492static int httpchk_build_status_header(struct server *s, char *buffer, int size)
Willy Tarreauef781042010-01-27 11:53:01 +0100493{
494 int sv_state;
495 int ratio;
496 int hlen = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800497 char addr[46];
498 char port[6];
Willy Tarreauef781042010-01-27 11:53:01 +0100499 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
500 "UP %d/%d", "UP",
501 "NOLB %d/%d", "NOLB",
502 "no check" };
503
504 memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24);
505 hlen += 24;
506
Willy Tarreauff5ae352013-12-11 20:36:34 +0100507 if (!(s->check.state & CHK_ST_ENABLED))
508 sv_state = 6;
Emeric Brun52a91d32017-08-31 14:41:55 +0200509 else if (s->cur_state != SRV_ST_STOPPED) {
Simon Horman58c32972013-11-25 10:46:38 +0900510 if (s->check.health == s->check.rise + s->check.fall - 1)
Willy Tarreauef781042010-01-27 11:53:01 +0100511 sv_state = 3; /* UP */
512 else
513 sv_state = 2; /* going down */
514
Emeric Brun52a91d32017-08-31 14:41:55 +0200515 if (s->cur_state == SRV_ST_STOPPING)
Willy Tarreauef781042010-01-27 11:53:01 +0100516 sv_state += 2;
517 } else {
Simon Horman125d0992013-02-24 17:23:38 +0900518 if (s->check.health)
Willy Tarreauef781042010-01-27 11:53:01 +0100519 sv_state = 1; /* going up */
520 else
521 sv_state = 0; /* DOWN */
522 }
523
Willy Tarreaua1dab552014-04-14 15:04:54 +0200524 hlen += snprintf(buffer + hlen, size - hlen,
Willy Tarreauef781042010-01-27 11:53:01 +0100525 srv_hlt_st[sv_state],
Emeric Brun52a91d32017-08-31 14:41:55 +0200526 (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
527 (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreauef781042010-01-27 11:53:01 +0100528
Joseph Lynch514061c2015-01-15 17:52:59 -0800529 addr_to_str(&s->addr, addr, sizeof(addr));
Willy Tarreau04276f32017-01-06 17:41:29 +0100530 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
531 snprintf(port, sizeof(port), "%u", s->svc_port);
532 else
533 *port = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800534
535 hlen += snprintf(buffer + hlen, size - hlen, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
536 addr, port, s->proxy->id, s->id,
Willy Tarreauef781042010-01-27 11:53:01 +0100537 global.node,
Emeric Brun52a91d32017-08-31 14:41:55 +0200538 (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
Willy Tarreauef781042010-01-27 11:53:01 +0100539 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
540 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
541 s->nbpend);
542
Emeric Brun52a91d32017-08-31 14:41:55 +0200543 if ((s->cur_state == SRV_ST_STARTING) &&
Willy Tarreauef781042010-01-27 11:53:01 +0100544 now.tv_sec < s->last_change + s->slowstart &&
545 now.tv_sec >= s->last_change) {
546 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
Willy Tarreaua1dab552014-04-14 15:04:54 +0200547 hlen += snprintf(buffer + hlen, size - hlen, "; throttle=%d%%", ratio);
Willy Tarreauef781042010-01-27 11:53:01 +0100548 }
549
550 buffer[hlen++] = '\r';
551 buffer[hlen++] = '\n';
552
553 return hlen;
554}
555
Willy Tarreau20a18342013-12-05 00:31:46 +0100556/* Check the connection. If an error has already been reported or the socket is
557 * closed, keep errno intact as it is supposed to contain the valid error code.
558 * If no error is reported, check the socket's error queue using getsockopt().
559 * Warning, this must be done only once when returning from poll, and never
560 * after an I/O error was attempted, otherwise the error queue might contain
561 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
562 * socket. Returns non-zero if an error was reported, zero if everything is
563 * clean (including a properly closed socket).
564 */
565static int retrieve_errno_from_socket(struct connection *conn)
566{
567 int skerr;
568 socklen_t lskerr = sizeof(skerr);
569
570 if (conn->flags & CO_FL_ERROR && ((errno && errno != EAGAIN) || !conn->ctrl))
571 return 1;
572
Willy Tarreau3c728722014-01-23 13:50:42 +0100573 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100574 return 0;
575
Willy Tarreau585744b2017-08-24 14:31:19 +0200576 if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
Willy Tarreau20a18342013-12-05 00:31:46 +0100577 errno = skerr;
578
579 if (errno == EAGAIN)
580 errno = 0;
581
582 if (!errno) {
583 /* we could not retrieve an error, that does not mean there is
584 * none. Just don't change anything and only report the prior
585 * error if any.
586 */
587 if (conn->flags & CO_FL_ERROR)
588 return 1;
589 else
590 return 0;
591 }
592
593 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
594 return 1;
595}
596
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100597/* Try to collect as much information as possible on the connection status,
598 * and adjust the server status accordingly. It may make use of <errno_bck>
599 * if non-null when the caller is absolutely certain of its validity (eg:
600 * checked just after a syscall). If the caller doesn't have a valid errno,
601 * it can pass zero, and retrieve_errno_from_socket() will be called to try
602 * to extract errno from the socket. If no error is reported, it will consider
603 * the <expired> flag. This is intended to be used when a connection error was
604 * reported in conn->flags or when a timeout was reported in <expired>. The
605 * function takes care of not updating a server status which was already set.
606 * All situations where at least one of <expired> or CO_FL_ERROR are set
607 * produce a status.
608 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200609static void chk_report_conn_err(struct check *check, int errno_bck, int expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100610{
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200611 struct connection *conn = check->conn;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100612 const char *err_msg;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200613 struct chunk *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200614 int step;
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200615 char *comment;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100616
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100617 if (check->result != CHK_RES_UNKNOWN)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100618 return;
619
620 errno = errno_bck;
621 if (!errno || errno == EAGAIN)
622 retrieve_errno_from_socket(conn);
623
624 if (!(conn->flags & CO_FL_ERROR) && !expired)
625 return;
626
627 /* we'll try to build a meaningful error message depending on the
628 * context of the error possibly present in conn->err_code, and the
629 * socket error possibly collected above. This is useful to know the
630 * exact step of the L6 layer (eg: SSL handshake).
631 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200632 chk = get_trash_chunk();
633
634 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormane16c1b32015-01-30 11:22:57 +0900635 step = tcpcheck_get_step_id(check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200636 if (!step)
637 chunk_printf(chk, " at initial connection step of tcp-check");
638 else {
639 chunk_printf(chk, " at step %d of tcp-check", step);
640 /* we were looking for a string */
641 if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_CONNECT) {
642 if (check->last_started_step->port)
643 chunk_appendf(chk, " (connect port %d)" ,check->last_started_step->port);
644 else
645 chunk_appendf(chk, " (connect)");
646 }
647 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) {
648 if (check->last_started_step->string)
Baptiste Assmann96a5c9b2015-05-01 08:09:29 +0200649 chunk_appendf(chk, " (expect string '%s')", check->last_started_step->string);
Willy Tarreau213c6782014-10-02 14:51:02 +0200650 else if (check->last_started_step->expect_regex)
651 chunk_appendf(chk, " (expect regex)");
652 }
653 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_SEND) {
654 chunk_appendf(chk, " (send)");
655 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200656
657 comment = tcpcheck_get_step_comment(check, step);
658 if (comment)
659 chunk_appendf(chk, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200660 }
661 }
662
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100663 if (conn->err_code) {
664 if (errno && errno != EAGAIN)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200665 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100666 else
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200667 chunk_printf(&trash, "%s%s", conn_err_code_str(conn), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100668 err_msg = trash.str;
669 }
670 else {
671 if (errno && errno != EAGAIN) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200672 chunk_printf(&trash, "%s%s", strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100673 err_msg = trash.str;
674 }
675 else {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200676 err_msg = chk->str;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100677 }
678 }
679
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200680 if (check->state & CHK_ST_PORT_MISS) {
681 /* NOTE: this is reported after <fall> tries */
682 chunk_printf(chk, "No port available for the TCP connection");
683 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
684 }
685
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100686 if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L4_CONN)) == CO_FL_WAIT_L4_CONN) {
687 /* L4 not established (yet) */
688 if (conn->flags & CO_FL_ERROR)
689 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
690 else if (expired)
691 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200692
693 /*
694 * might be due to a server IP change.
695 * Let's trigger a DNS resolution if none are currently running.
696 */
697 if ((check->server->resolution) && (check->server->resolution->step == RSLV_STEP_NONE))
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200698 dns_trigger_resolution(check->server->resolution);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200699
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100700 }
701 else if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L6_CONN)) == CO_FL_WAIT_L6_CONN) {
702 /* L6 not established (yet) */
703 if (conn->flags & CO_FL_ERROR)
704 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
705 else if (expired)
706 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
707 }
708 else if (conn->flags & CO_FL_ERROR) {
709 /* I/O error after connection was established and before we could diagnose */
710 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
711 }
712 else if (expired) {
713 /* connection established but expired check */
714 if (check->type == PR_O2_SSL3_CHK)
715 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
716 else /* HTTP, SMTP, ... */
717 set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg);
718 }
719
720 return;
721}
722
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723/*
724 * This function is used only for server health-checks. It handles
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200725 * the connection acknowledgement. If the proxy requires L7 health-checks,
726 * it sends the request. In other cases, it calls set_server_check_status()
Simon Horman4a741432013-02-23 15:35:38 +0900727 * to set check->status, check->duration and check->result.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200729static void event_srv_chk_w(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730{
Simon Horman4a741432013-02-23 15:35:38 +0900731 struct check *check = conn->owner;
732 struct server *s = check->server;
Simon Horman4a741432013-02-23 15:35:38 +0900733 struct task *t = check->task;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200734
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100735 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100736 goto out_wakeup;
737
Willy Tarreau310987a2014-01-22 19:46:33 +0100738 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100739 return;
740
Willy Tarreau20a18342013-12-05 00:31:46 +0100741 if (retrieve_errno_from_socket(conn)) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200742 chk_report_conn_err(check, errno, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100743 __conn_data_stop_both(conn);
744 goto out_wakeup;
745 }
Krzysztof Piotr Oledzki6492db52010-01-02 22:03:01 +0100746
Willy Tarreaubbae3f02017-08-30 09:59:52 +0200747 if (conn->flags & CO_FL_SOCK_WR_SH) {
Willy Tarreau20a18342013-12-05 00:31:46 +0100748 /* if the output is closed, we can't do anything */
749 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200750 chk_report_conn_err(check, 0, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100751 goto out_wakeup;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200752 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200753
Willy Tarreau06559ac2013-12-05 01:53:08 +0100754 /* here, we know that the connection is established. That's enough for
755 * a pure TCP check.
756 */
757 if (!check->type)
758 goto out_wakeup;
759
Willy Tarreauc09572f2017-10-04 11:58:22 +0200760 /* wake() will take care of calling tcpcheck_main() */
761 if (check->type == PR_O2_TCPCHK_CHK)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200762 return;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200763
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100764 if (check->bo->o) {
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100765 conn->xprt->snd_buf(conn, check->bo, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100766 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200767 chk_report_conn_err(check, errno, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100768 __conn_data_stop_both(conn);
769 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100771 if (check->bo->o)
772 return;
773 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200774
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100775 /* full request sent, we allow up to <timeout.check> if nonzero for a response */
776 if (s->proxy->timeout.check) {
777 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
778 task_queue(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100780 goto out_nowake;
781
Willy Tarreau83749182007-04-15 20:56:27 +0200782 out_wakeup:
Willy Tarreaufdccded2008-08-29 18:19:04 +0200783 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau83749182007-04-15 20:56:27 +0200784 out_nowake:
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200785 __conn_data_stop_send(conn); /* nothing more to write */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786}
787
Willy Tarreaubaaee002006-06-26 02:48:02 +0200788/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200789 * This function is used only for server health-checks. It handles the server's
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +0200790 * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls
Simon Horman4a741432013-02-23 15:35:38 +0900791 * set_server_check_status() to update check->status, check->duration
792 * and check->result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200793
794 * The set_server_check_status function is called with HCHK_STATUS_L7OKD if
795 * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server
796 * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in
797 * response to an SSL HELLO (the principle is that this is enough to
798 * distinguish between an SSL server and a pure TCP relay). All other cases will
799 * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP,
800 * etc.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200802static void event_srv_chk_r(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803{
Simon Horman4a741432013-02-23 15:35:38 +0900804 struct check *check = conn->owner;
805 struct server *s = check->server;
806 struct task *t = check->task;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200807 char *desc;
Willy Tarreau03938182010-03-17 21:52:07 +0100808 int done;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +0200809 unsigned short msglen;
Willy Tarreau83749182007-04-15 20:56:27 +0200810
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100811 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau83749182007-04-15 20:56:27 +0200812 goto out_wakeup;
Willy Tarreau83749182007-04-15 20:56:27 +0200813
Willy Tarreau310987a2014-01-22 19:46:33 +0100814 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200815 return;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200816
Willy Tarreauc09572f2017-10-04 11:58:22 +0200817 /* wake() will take care of calling tcpcheck_main() */
818 if (check->type == PR_O2_TCPCHK_CHK)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200819 return;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200820
Willy Tarreau83749182007-04-15 20:56:27 +0200821 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
822 * but the connection was closed on the remote end. Fortunately, recv still
823 * works correctly and we don't need to do the getsockopt() on linux.
824 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000825
826 /* Set buffer to point to the end of the data already read, and check
827 * that there is free space remaining. If the buffer is full, proceed
828 * with running the checks without attempting another socket read.
829 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000830
Willy Tarreau03938182010-03-17 21:52:07 +0100831 done = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +0000832
Simon Horman4a741432013-02-23 15:35:38 +0900833 conn->xprt->rcv_buf(conn, check->bi, check->bi->size);
Willy Tarreau54e917c2017-08-30 07:35:35 +0200834 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
Willy Tarreau03938182010-03-17 21:52:07 +0100835 done = 1;
Simon Horman4a741432013-02-23 15:35:38 +0900836 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
Willy Tarreauf1503172012-09-28 19:39:36 +0200837 /* Report network errors only if we got no other data. Otherwise
838 * we'll let the upper layers decide whether the response is OK
839 * or not. It is very common that an RST sent by the server is
840 * reported as an error just after the last data chunk.
841 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +0200842 chk_report_conn_err(check, errno, 0);
Willy Tarreauc1a07962010-03-16 20:55:43 +0100843 goto out_wakeup;
844 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200845 }
846
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100847
Willy Tarreau03938182010-03-17 21:52:07 +0100848 /* Intermediate or complete response received.
Simon Horman4a741432013-02-23 15:35:38 +0900849 * Terminate string in check->bi->data buffer.
Willy Tarreau03938182010-03-17 21:52:07 +0100850 */
Simon Horman4a741432013-02-23 15:35:38 +0900851 if (check->bi->i < check->bi->size)
852 check->bi->data[check->bi->i] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100853 else {
Simon Horman4a741432013-02-23 15:35:38 +0900854 check->bi->data[check->bi->i - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100855 done = 1; /* buffer full, don't wait for more data */
856 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200857
Nick Chalk57b1bf72010-03-16 15:50:46 +0000858 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +0900859 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +0200860 case PR_O2_HTTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900861 if (!done && check->bi->i < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100862 goto wait_more_data;
863
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100864 /* Check if the server speaks HTTP 1.X */
Simon Horman4a741432013-02-23 15:35:38 +0900865 if ((check->bi->i < strlen("HTTP/1.0 000\r")) ||
866 (memcmp(check->bi->data, "HTTP/1.", 7) != 0 ||
867 (*(check->bi->data + 12) != ' ' && *(check->bi->data + 12) != '\r')) ||
868 !isdigit((unsigned char) *(check->bi->data + 9)) || !isdigit((unsigned char) *(check->bi->data + 10)) ||
869 !isdigit((unsigned char) *(check->bi->data + 11))) {
870 cut_crlf(check->bi->data);
871 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200872
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100873 goto out_wakeup;
874 }
875
Simon Horman4a741432013-02-23 15:35:38 +0900876 check->code = str2uic(check->bi->data + 9);
877 desc = ltrim(check->bi->data + 12, ' ');
Nick Chalk57b1bf72010-03-16 15:50:46 +0000878
Willy Tarreaubd741542010-03-16 18:46:54 +0100879 if ((s->proxy->options & PR_O_DISABLE404) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200880 (s->next_state != SRV_ST_STOPPED) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +0000881 /* 404 may be accepted as "stopping" only if the server was up */
882 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900883 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000884 }
Willy Tarreaubd741542010-03-16 18:46:54 +0100885 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
886 /* Run content verification check... We know we have at least 13 chars */
887 if (!httpchk_expect(s, done))
888 goto wait_more_data;
889 }
890 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Simon Horman4a741432013-02-23 15:35:38 +0900891 else if (*(check->bi->data + 9) == '2' || *(check->bi->data + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +0100892 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900893 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +0100894 }
Nick Chalk57b1bf72010-03-16 15:50:46 +0000895 else {
896 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900897 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000898 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200899 break;
900
901 case PR_O2_SSL3_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900902 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +0100903 goto wait_more_data;
904
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100905 /* Check for SSLv3 alert or handshake */
Simon Horman4a741432013-02-23 15:35:38 +0900906 if ((check->bi->i >= 5) && (*check->bi->data == 0x15 || *check->bi->data == 0x16))
907 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200908 else
Simon Horman4a741432013-02-23 15:35:38 +0900909 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200910 break;
911
912 case PR_O2_SMTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900913 if (!done && check->bi->i < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100914 goto wait_more_data;
915
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200916 /* Check if the server speaks SMTP */
Simon Horman4a741432013-02-23 15:35:38 +0900917 if ((check->bi->i < strlen("000\r")) ||
918 (*(check->bi->data + 3) != ' ' && *(check->bi->data + 3) != '\r') ||
919 !isdigit((unsigned char) *check->bi->data) || !isdigit((unsigned char) *(check->bi->data + 1)) ||
920 !isdigit((unsigned char) *(check->bi->data + 2))) {
921 cut_crlf(check->bi->data);
922 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200923
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200924 goto out_wakeup;
925 }
926
Simon Horman4a741432013-02-23 15:35:38 +0900927 check->code = str2uic(check->bi->data);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200928
Simon Horman4a741432013-02-23 15:35:38 +0900929 desc = ltrim(check->bi->data + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200930 cut_crlf(desc);
931
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100932 /* Check for SMTP code 2xx (should be 250) */
Simon Horman4a741432013-02-23 15:35:38 +0900933 if (*check->bi->data == '2')
934 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200935 else
Simon Horman4a741432013-02-23 15:35:38 +0900936 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200937 break;
938
Simon Hormana2b9dad2013-02-12 10:45:54 +0900939 case PR_O2_LB_AGENT_CHK: {
Willy Tarreau81f5d942013-12-09 20:51:51 +0100940 int status = HCHK_STATUS_CHECKED;
941 const char *hs = NULL; /* health status */
942 const char *as = NULL; /* admin status */
943 const char *ps = NULL; /* performance status */
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200944 const char *cs = NULL; /* maxconn */
Willy Tarreau81f5d942013-12-09 20:51:51 +0100945 const char *err = NULL; /* first error to report */
946 const char *wrn = NULL; /* first warning to report */
947 char *cmd, *p;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900948
Willy Tarreau81f5d942013-12-09 20:51:51 +0100949 /* We're getting an agent check response. The agent could
950 * have been disabled in the mean time with a long check
951 * still pending. It is important that we ignore the whole
952 * response.
953 */
954 if (!(check->server->agent.state & CHK_ST_ENABLED))
955 break;
956
957 /* The agent supports strings made of a single line ended by the
958 * first CR ('\r') or LF ('\n'). This line is composed of words
959 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
960 * line may optionally contained a description of a state change
961 * after a sharp ('#'), which is only considered if a health state
962 * is announced.
963 *
964 * Words may be composed of :
965 * - a numeric weight suffixed by the percent character ('%').
966 * - a health status among "up", "down", "stopped", and "fail".
967 * - an admin status among "ready", "drain", "maint".
968 *
969 * These words may appear in any order. If multiple words of the
970 * same category appear, the last one wins.
971 */
972
Willy Tarreau9809b782013-12-11 21:40:11 +0100973 p = check->bi->data;
974 while (*p && *p != '\n' && *p != '\r')
975 p++;
976
977 if (!*p) {
978 if (!done)
979 goto wait_more_data;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900980
Willy Tarreau9809b782013-12-11 21:40:11 +0100981 /* at least inform the admin that the agent is mis-behaving */
982 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
983 break;
984 }
Willy Tarreau81f5d942013-12-09 20:51:51 +0100985
Willy Tarreau9809b782013-12-11 21:40:11 +0100986 *p = 0;
Willy Tarreau81f5d942013-12-09 20:51:51 +0100987 cmd = check->bi->data;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900988
Willy Tarreau81f5d942013-12-09 20:51:51 +0100989 while (*cmd) {
990 /* look for next word */
991 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
992 cmd++;
993 continue;
994 }
Simon Horman671b6f02013-11-25 10:46:39 +0900995
Willy Tarreau81f5d942013-12-09 20:51:51 +0100996 if (*cmd == '#') {
997 /* this is the beginning of a health status description,
998 * skip the sharp and blanks.
999 */
1000 cmd++;
1001 while (*cmd == '\t' || *cmd == ' ')
1002 cmd++;
Simon Horman671b6f02013-11-25 10:46:39 +09001003 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001004 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001005
1006 /* find the end of the word so that we have a null-terminated
1007 * word between <cmd> and <p>.
1008 */
1009 p = cmd + 1;
1010 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1011 p++;
1012 if (*p)
1013 *p++ = 0;
1014
1015 /* first, health statuses */
1016 if (strcasecmp(cmd, "up") == 0) {
1017 check->health = check->rise + check->fall - 1;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001018 status = HCHK_STATUS_L7OKD;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001019 hs = cmd;
1020 }
1021 else if (strcasecmp(cmd, "down") == 0) {
1022 check->health = 0;
1023 status = HCHK_STATUS_L7STS;
1024 hs = cmd;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001025 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001026 else if (strcasecmp(cmd, "stopped") == 0) {
1027 check->health = 0;
1028 status = HCHK_STATUS_L7STS;
1029 hs = cmd;
1030 }
1031 else if (strcasecmp(cmd, "fail") == 0) {
1032 check->health = 0;
1033 status = HCHK_STATUS_L7STS;
1034 hs = cmd;
1035 }
1036 /* admin statuses */
1037 else if (strcasecmp(cmd, "ready") == 0) {
1038 as = cmd;
1039 }
1040 else if (strcasecmp(cmd, "drain") == 0) {
1041 as = cmd;
1042 }
1043 else if (strcasecmp(cmd, "maint") == 0) {
1044 as = cmd;
1045 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001046 /* try to parse a weight here and keep the last one */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001047 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1048 ps = cmd;
1049 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001050 /* try to parse a maxconn here */
1051 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1052 cs = cmd;
1053 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001054 else {
1055 /* keep a copy of the first error */
1056 if (!err)
1057 err = cmd;
1058 }
1059 /* skip to next word */
1060 cmd = p;
1061 }
1062 /* here, cmd points either to \0 or to the beginning of a
1063 * description. Skip possible leading spaces.
1064 */
1065 while (*cmd == ' ' || *cmd == '\n')
1066 cmd++;
1067
1068 /* First, update the admin status so that we avoid sending other
1069 * possibly useless warnings and can also update the health if
1070 * present after going back up.
1071 */
1072 if (as) {
1073 if (strcasecmp(as, "drain") == 0)
1074 srv_adm_set_drain(check->server);
1075 else if (strcasecmp(as, "maint") == 0)
1076 srv_adm_set_maint(check->server);
1077 else
1078 srv_adm_set_ready(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001079 }
1080
Willy Tarreau81f5d942013-12-09 20:51:51 +01001081 /* now change weights */
1082 if (ps) {
1083 const char *msg;
1084
1085 msg = server_parse_weight_change_request(s, ps);
1086 if (!wrn || !*wrn)
1087 wrn = msg;
1088 }
1089
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001090 if (cs) {
1091 const char *msg;
1092
1093 cs += strlen("maxconn:");
1094
1095 msg = server_parse_maxconn_change_request(s, cs);
1096 if (!wrn || !*wrn)
1097 wrn = msg;
1098 }
1099
Willy Tarreau81f5d942013-12-09 20:51:51 +01001100 /* and finally health status */
1101 if (hs) {
1102 /* We'll report some of the warnings and errors we have
1103 * here. Down reports are critical, we leave them untouched.
1104 * Lack of report, or report of 'UP' leaves the room for
1105 * ERR first, then WARN.
Simon Hormana2b9dad2013-02-12 10:45:54 +09001106 */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001107 const char *msg = cmd;
1108 struct chunk *t;
1109
1110 if (!*msg || status == HCHK_STATUS_L7OKD) {
1111 if (err && *err)
1112 msg = err;
1113 else if (wrn && *wrn)
1114 msg = wrn;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001115 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001116
1117 t = get_trash_chunk();
1118 chunk_printf(t, "via agent : %s%s%s%s",
1119 hs, *msg ? " (" : "",
1120 msg, *msg ? ")" : "");
1121
1122 set_server_check_status(check, status, t->str);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001123 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001124 else if (err && *err) {
1125 /* No status change but we'd like to report something odd.
1126 * Just report the current state and copy the message.
1127 */
1128 chunk_printf(&trash, "agent reports an error : %s", err);
1129 set_server_check_status(check, status/*check->status*/, trash.str);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001130
Willy Tarreau81f5d942013-12-09 20:51:51 +01001131 }
1132 else if (wrn && *wrn) {
1133 /* No status change but we'd like to report something odd.
1134 * Just report the current state and copy the message.
1135 */
1136 chunk_printf(&trash, "agent warns : %s", wrn);
1137 set_server_check_status(check, status/*check->status*/, trash.str);
1138 }
1139 else
1140 set_server_check_status(check, status, NULL);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001141 break;
1142 }
1143
Willy Tarreau1620ec32011-08-06 17:05:02 +02001144 case PR_O2_PGSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001145 if (!done && check->bi->i < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001146 goto wait_more_data;
1147
Simon Horman4a741432013-02-23 15:35:38 +09001148 if (check->bi->data[0] == 'R') {
1149 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001150 }
1151 else {
Simon Horman4a741432013-02-23 15:35:38 +09001152 if ((check->bi->data[0] == 'E') && (check->bi->data[5]!=0) && (check->bi->data[6]!=0))
1153 desc = &check->bi->data[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001154 else
1155 desc = "PostgreSQL unknown error";
1156
Simon Horman4a741432013-02-23 15:35:38 +09001157 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001158 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001159 break;
1160
1161 case PR_O2_REDIS_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001162 if (!done && check->bi->i < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001163 goto wait_more_data;
1164
Simon Horman4a741432013-02-23 15:35:38 +09001165 if (strcmp(check->bi->data, "+PONG\r\n") == 0) {
1166 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001167 }
1168 else {
Simon Horman4a741432013-02-23 15:35:38 +09001169 set_server_check_status(check, HCHK_STATUS_L7STS, check->bi->data);
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001170 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001171 break;
1172
1173 case PR_O2_MYSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001174 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001175 goto wait_more_data;
1176
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001177 if (s->proxy->check_len == 0) { // old mode
Simon Horman4a741432013-02-23 15:35:38 +09001178 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001179 /* We set the MySQL Version in description for information purpose
1180 * FIXME : it can be cool to use MySQL Version for other purpose,
1181 * like mark as down old MySQL server.
1182 */
Simon Horman4a741432013-02-23 15:35:38 +09001183 if (check->bi->i > 51) {
1184 desc = ltrim(check->bi->data + 5, ' ');
1185 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001186 }
1187 else {
1188 if (!done)
1189 goto wait_more_data;
1190 /* it seems we have a OK packet but without a valid length,
1191 * it must be a protocol error
1192 */
Simon Horman4a741432013-02-23 15:35:38 +09001193 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001194 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001195 }
1196 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001197 /* An error message is attached in the Error packet */
Simon Horman4a741432013-02-23 15:35:38 +09001198 desc = ltrim(check->bi->data + 7, ' ');
1199 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001200 }
1201 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001202 unsigned int first_packet_len = ((unsigned int) *check->bi->data) +
1203 (((unsigned int) *(check->bi->data + 1)) << 8) +
1204 (((unsigned int) *(check->bi->data + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001205
Simon Horman4a741432013-02-23 15:35:38 +09001206 if (check->bi->i == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001207 /* MySQL Error packet always begin with field_count = 0xff */
Simon Horman4a741432013-02-23 15:35:38 +09001208 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001209 /* We have only one MySQL packet and it is a Handshake Initialization packet
1210 * but we need to have a second packet to know if it is alright
1211 */
Simon Horman4a741432013-02-23 15:35:38 +09001212 if (!done && check->bi->i < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001213 goto wait_more_data;
1214 }
1215 else {
1216 /* We have only one packet and it is an Error packet,
1217 * an error message is attached, so we can display it
1218 */
Simon Horman4a741432013-02-23 15:35:38 +09001219 desc = &check->bi->data[7];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001220 //Warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001221 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001222 }
Simon Horman4a741432013-02-23 15:35:38 +09001223 } else if (check->bi->i > first_packet_len + 4) {
1224 unsigned int second_packet_len = ((unsigned int) *(check->bi->data + first_packet_len + 4)) +
1225 (((unsigned int) *(check->bi->data + first_packet_len + 5)) << 8) +
1226 (((unsigned int) *(check->bi->data + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001227
Simon Horman4a741432013-02-23 15:35:38 +09001228 if (check->bi->i == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001229 /* We have 2 packets and that's good */
1230 /* Check if the second packet is a MySQL Error packet or not */
Simon Horman4a741432013-02-23 15:35:38 +09001231 if (*(check->bi->data + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001232 /* No error packet */
1233 /* We set the MySQL Version in description for information purpose */
Simon Horman4a741432013-02-23 15:35:38 +09001234 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001235 //Warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001236 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001237 }
1238 else {
1239 /* An error message is attached in the Error packet
1240 * so we can display it ! :)
1241 */
Simon Horman4a741432013-02-23 15:35:38 +09001242 desc = &check->bi->data[first_packet_len+11];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001243 //Warning("2packetERR: %s\n", desc);
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 }
1247 }
1248 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001249 if (!done)
1250 goto wait_more_data;
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001251 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001252 * it must be a protocol error
1253 */
Simon Horman4a741432013-02-23 15:35:38 +09001254 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001255 //Warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001256 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001257 }
1258 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001259 break;
1260
1261 case PR_O2_LDAP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001262 if (!done && check->bi->i < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001263 goto wait_more_data;
1264
1265 /* Check if the server speaks LDAP (ASN.1/BER)
1266 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1267 * http://tools.ietf.org/html/rfc4511
1268 */
1269
1270 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1271 * LDAPMessage: 0x30: SEQUENCE
1272 */
Simon Horman4a741432013-02-23 15:35:38 +09001273 if ((check->bi->i < 14) || (*(check->bi->data) != '\x30')) {
1274 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001275 }
1276 else {
1277 /* size of LDAPMessage */
Simon Horman4a741432013-02-23 15:35:38 +09001278 msglen = (*(check->bi->data + 1) & 0x80) ? (*(check->bi->data + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001279
1280 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1281 * messageID: 0x02 0x01 0x01: INTEGER 1
1282 * protocolOp: 0x61: bindResponse
1283 */
1284 if ((msglen > 2) ||
Simon Horman4a741432013-02-23 15:35:38 +09001285 (memcmp(check->bi->data + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
1286 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001287
1288 goto out_wakeup;
1289 }
1290
1291 /* size of bindResponse */
Simon Horman4a741432013-02-23 15:35:38 +09001292 msglen += (*(check->bi->data + msglen + 6) & 0x80) ? (*(check->bi->data + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001293
1294 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1295 * ldapResult: 0x0a 0x01: ENUMERATION
1296 */
1297 if ((msglen > 4) ||
Simon Horman4a741432013-02-23 15:35:38 +09001298 (memcmp(check->bi->data + 7 + msglen, "\x0a\x01", 2) != 0)) {
1299 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001300
1301 goto out_wakeup;
1302 }
1303
1304 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1305 * resultCode
1306 */
Simon Horman4a741432013-02-23 15:35:38 +09001307 check->code = *(check->bi->data + msglen + 9);
1308 if (check->code) {
1309 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 +02001310 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001311 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001312 }
1313 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001314 break;
1315
Christopher Fauletba7bc162016-11-07 21:07:38 +01001316 case PR_O2_SPOP_CHK: {
1317 unsigned int framesz;
1318 char err[HCHK_DESC_LEN];
1319
1320 if (!done && check->bi->i < 4)
1321 goto wait_more_data;
1322
1323 memcpy(&framesz, check->bi->data, 4);
1324 framesz = ntohl(framesz);
1325
1326 if (!done && check->bi->i < (4+framesz))
1327 goto wait_more_data;
1328
Christopher Faulet8ef75252017-02-20 22:56:03 +01001329 if (!spoe_handle_healthcheck_response(check->bi->data+4, framesz, err, HCHK_DESC_LEN-1))
Christopher Fauletba7bc162016-11-07 21:07:38 +01001330 set_server_check_status(check, HCHK_STATUS_L7OKD, "SPOA server is ok");
1331 else
1332 set_server_check_status(check, HCHK_STATUS_L7STS, err);
1333 break;
1334 }
1335
Willy Tarreau1620ec32011-08-06 17:05:02 +02001336 default:
Willy Tarreau06559ac2013-12-05 01:53:08 +01001337 /* for other checks (eg: pure TCP), delegate to the main task */
Willy Tarreau1620ec32011-08-06 17:05:02 +02001338 break;
1339 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001340
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001341 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001342 /* collect possible new errors */
1343 if (conn->flags & CO_FL_ERROR)
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001344 chk_report_conn_err(check, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001345
Nick Chalk57b1bf72010-03-16 15:50:46 +00001346 /* Reset the check buffer... */
Simon Horman4a741432013-02-23 15:35:38 +09001347 *check->bi->data = '\0';
1348 check->bi->i = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +00001349
Steven Davidovitz544d4812017-03-08 11:06:20 -08001350 /* Close the connection... We still attempt to nicely close if,
1351 * for instance, SSL needs to send a "close notify." Later, we perform
1352 * a hard close and reset the connection if some data are pending,
1353 * otherwise we end up with many TIME_WAITs and eat all the source port
1354 * range quickly. To avoid sending RSTs all the time, we first try to
1355 * drain pending data.
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001356 */
Willy Tarreaub4017d02015-03-12 23:11:26 +01001357 __conn_data_stop_both(conn);
Steven Davidovitz544d4812017-03-08 11:06:20 -08001358 conn_data_shutw(conn);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001359
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001360 /* OK, let's not stay here forever */
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001361 if (check->result == CHK_RES_FAILED)
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001362 conn->flags |= CO_FL_ERROR;
1363
Willy Tarreaufdccded2008-08-29 18:19:04 +02001364 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau3267d362012-08-17 23:53:56 +02001365 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001366
1367 wait_more_data:
Willy Tarreauf817e9f2014-01-10 16:58:45 +01001368 __conn_data_want_recv(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001369}
1370
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001371/*
1372 * This function is used only for server health-checks. It handles connection
1373 * status updates including errors. If necessary, it wakes the check task up.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001374 * It returns 0 on normal cases, <0 if at least one close() has happened on the
1375 * connection (eg: reconnect).
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001376 */
1377static int wake_srv_chk(struct connection *conn)
Willy Tarreau20bea422012-07-06 12:00:49 +02001378{
Simon Horman4a741432013-02-23 15:35:38 +09001379 struct check *check = conn->owner;
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001380 int ret = 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001381
Willy Tarreauc09572f2017-10-04 11:58:22 +02001382 /* we may have to make progress on the TCP checks */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001383 if (check->type == PR_O2_TCPCHK_CHK) {
1384 ret = tcpcheck_main(check);
1385 }
Willy Tarreauc09572f2017-10-04 11:58:22 +02001386
Willy Tarreau6c560da2012-11-24 11:14:45 +01001387 if (unlikely(conn->flags & CO_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001388 /* We may get error reports bypassing the I/O handlers, typically
1389 * the case when sending a pure TCP check which fails, then the I/O
1390 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001391 * main processing task so let's simply wake it up. If we get here,
1392 * we expect errno to still be valid.
1393 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02001394 chk_report_conn_err(check, errno, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001395
Willy Tarreau2d351b62013-12-05 02:36:25 +01001396 __conn_data_stop_both(conn);
1397 task_wakeup(check->task, TASK_WOKEN_IO);
1398 }
Willy Tarreau3be293f2014-02-05 18:31:24 +01001399 else if (!(conn->flags & (CO_FL_DATA_RD_ENA|CO_FL_DATA_WR_ENA|CO_FL_HANDSHAKE))) {
1400 /* we may get here if only a connection probe was required : we
1401 * don't have any data to send nor anything expected in response,
1402 * so the completion of the connection establishment is enough.
1403 */
1404 task_wakeup(check->task, TASK_WOKEN_IO);
1405 }
Willy Tarreau2d351b62013-12-05 02:36:25 +01001406
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001407 if (check->result != CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001408 /* We're here because nobody wants to handle the error, so we
1409 * sure want to abort the hard way.
Willy Tarreau02b0f582013-12-03 15:42:33 +01001410 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01001411 conn_sock_drain(conn);
Willy Tarreauf79c8172013-10-21 16:30:56 +02001412 conn_force_close(conn);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001413 ret = -1;
Willy Tarreau2d351b62013-12-05 02:36:25 +01001414 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02001415
1416 /* if a connection got replaced, we must absolutely prevent the connection
1417 * handler from touching its fd, and perform the FD polling updates ourselves
1418 */
1419 if (ret < 0)
1420 conn_cond_update_polling(conn);
1421
1422 return ret;
Willy Tarreau20bea422012-07-06 12:00:49 +02001423}
1424
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001425struct data_cb check_conn_cb = {
1426 .recv = event_srv_chk_r,
1427 .send = event_srv_chk_w,
1428 .wake = wake_srv_chk,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01001429 .name = "CHCK",
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001430};
1431
Willy Tarreaubaaee002006-06-26 02:48:02 +02001432/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001433 * updates the server's weight during a warmup stage. Once the final weight is
1434 * reached, the task automatically stops. Note that any server status change
1435 * must have updated s->last_change accordingly.
1436 */
1437static struct task *server_warmup(struct task *t)
1438{
1439 struct server *s = t->context;
1440
1441 /* by default, plan on stopping the task */
1442 t->expire = TICK_ETERNITY;
Emeric Brun52a91d32017-08-31 14:41:55 +02001443 if ((s->next_admin & SRV_ADMF_MAINT) ||
1444 (s->next_state != SRV_ST_STARTING))
Willy Tarreau2e993902011-10-31 11:53:20 +01001445 return t;
1446
Willy Tarreau892337c2014-05-13 23:41:20 +02001447 /* recalculate the weights and update the state */
Willy Tarreau004e0452013-11-21 11:22:01 +01001448 server_recalc_eweight(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001449
1450 /* probably that we can refill this server with a bit more connections */
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001451 pendconn_grab_from_px(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001452
1453 /* get back there in 1 second or 1/20th of the slowstart interval,
1454 * whichever is greater, resulting in small 5% steps.
1455 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001456 if (s->next_state == SRV_ST_STARTING)
Willy Tarreau2e993902011-10-31 11:53:20 +01001457 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1458 return t;
1459}
1460
Willy Tarreau894c6422017-10-04 15:58:52 +02001461/* returns the first NON-COMMENT tcp-check rule from list <list> or NULL if
1462 * none was found.
1463 */
1464static struct tcpcheck_rule *get_first_tcpcheck_rule(struct list *list)
1465{
1466 struct tcpcheck_rule *r;
1467
1468 list_for_each_entry(r, list, list) {
1469 if (r->action != TCPCHK_ACT_COMMENT)
1470 return r;
1471 }
1472 return NULL;
1473}
1474
Willy Tarreau2e993902011-10-31 11:53:20 +01001475/*
Simon Horman98637e52014-06-20 12:30:16 +09001476 * establish a server health-check that makes use of a connection.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001477 *
1478 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001479 * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called
1480 * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called
1481 * - SF_ERR_SRVTO if there are no more servers
1482 * - SF_ERR_SRVCL if the connection was refused by the server
1483 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1484 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1485 * - SF_ERR_INTERNAL for any other purely internal errors
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001486 * - 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 +01001487 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001488 * Note that we try to prevent the network stack from sending the ACK during the
1489 * connect() when a pure TCP check is used (without PROXY protocol).
1490 */
Simon Horman98637e52014-06-20 12:30:16 +09001491static int connect_conn_chk(struct task *t)
Simon Hormanb00d17a2014-06-13 16:18:16 +09001492{
1493 struct check *check = t->context;
1494 struct server *s = check->server;
1495 struct connection *conn = check->conn;
1496 struct protocol *proto;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001497 struct tcpcheck_rule *tcp_rule = NULL;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001498 int ret;
Willy Tarreauf3d34822014-12-08 12:11:28 +01001499 int quickack;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001500
1501 /* tcpcheck send/expect initialisation */
Willy Tarreauf411cce2017-10-04 16:21:19 +02001502 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001503 check->current_step = NULL;
Willy Tarreauf411cce2017-10-04 16:21:19 +02001504 tcp_rule = get_first_tcpcheck_rule(check->tcpcheck_rules);
1505 }
Simon Hormanb00d17a2014-06-13 16:18:16 +09001506
1507 /* prepare the check buffer.
1508 * This should not be used if check is the secondary agent check
1509 * of a server as s->proxy->check_req will relate to the
1510 * configuration of the primary check. Similarly, tcp-check uses
1511 * its own strings.
1512 */
1513 if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) {
1514 bo_putblk(check->bo, s->proxy->check_req, s->proxy->check_len);
1515
1516 /* we want to check if this host replies to HTTP or SSLv3 requests
1517 * so we'll send the request, and won't wake the checker up now.
1518 */
1519 if ((check->type) == PR_O2_SSL3_CHK) {
1520 /* SSL requires that we put Unix time in the request */
1521 int gmt_time = htonl(date.tv_sec);
1522 memcpy(check->bo->data + 11, &gmt_time, 4);
1523 }
1524 else if ((check->type) == PR_O2_HTTP_CHK) {
1525 if (s->proxy->options2 & PR_O2_CHK_SNDST)
1526 bo_putblk(check->bo, trash.str, httpchk_build_status_header(s, trash.str, trash.size));
Cyril Bonté32602d22015-01-30 00:07:07 +01001527 /* prevent HTTP keep-alive when "http-check expect" is used */
1528 if (s->proxy->options2 & PR_O2_EXP_TYPE)
1529 bo_putstr(check->bo, "Connection: close\r\n");
Simon Hormanb00d17a2014-06-13 16:18:16 +09001530 bo_putstr(check->bo, "\r\n");
1531 *check->bo->p = '\0'; /* to make gdb output easier to read */
1532 }
1533 }
1534
James Brown55f9ff12015-10-21 18:19:05 -07001535 if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) {
1536 bo_putblk(check->bo, check->send_string, check->send_string_len);
1537 }
1538
Willy Tarreauf411cce2017-10-04 16:21:19 +02001539 /* for tcp-checks, the initial connection setup is handled separately as
1540 * it may be sent to a specific port and not to the server's.
1541 */
1542 if (tcp_rule && tcp_rule->action == TCPCHK_ACT_CONNECT) {
1543 tcpcheck_main(check);
1544 return SF_ERR_UP;
1545 }
1546
Simon Hormanb00d17a2014-06-13 16:18:16 +09001547 /* prepare a new connection */
1548 conn_init(conn);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001549
Simon Horman41f58762015-01-30 11:22:56 +09001550 if (is_addr(&check->addr)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001551 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09001552 conn->addr.to = check->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001553 }
1554 else {
1555 /* we'll connect to the addr on the server */
1556 conn->addr.to = s->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001557 }
1558
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001559 if ((conn->addr.to.ss_family == AF_INET) || (conn->addr.to.ss_family == AF_INET6)) {
1560 int i = 0;
1561
1562 i = srv_check_healthcheck_port(check);
1563 if (i == 0) {
1564 conn->owner = check;
1565 return SF_ERR_CHK_PORT;
1566 }
1567
1568 set_host_port(&conn->addr.to, i);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001569 }
1570
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001571 proto = protocol_by_family(conn->addr.to.ss_family);
1572
1573 conn_prepare(conn, proto, check->xprt);
1574 conn_attach(conn, check, &check_conn_cb);
1575 conn->target = &s->obj_type;
1576
1577 /* no client address */
1578 clear_addr(&conn->addr.from);
1579
Willy Tarreauf3d34822014-12-08 12:11:28 +01001580 /* only plain tcp-check supports quick ACK */
1581 quickack = check->type == 0 || check->type == PR_O2_TCPCHK_CHK;
1582
Willy Tarreauf411cce2017-10-04 16:21:19 +02001583 if (tcp_rule && tcp_rule->action == TCPCHK_ACT_EXPECT)
1584 quickack = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001585
Willy Tarreaue7dff022015-04-03 01:14:29 +02001586 ret = SF_ERR_INTERNAL;
Olivier Houchardb68fda42017-08-04 18:39:01 +02001587 if (proto && proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01001588 ret = proto->connect(conn, check->type, quickack ? 2 : 0);
Willy Tarreauf4949772017-05-06 08:45:28 +02001589 if (s->check.send_proxy && !(check->state & CHK_ST_AGENT)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001590 conn->send_proxy_ofs = 1;
1591 conn->flags |= CO_FL_SEND_PROXY;
1592 }
1593
1594 return ret;
1595}
1596
Simon Horman98637e52014-06-20 12:30:16 +09001597static struct list pid_list = LIST_HEAD_INIT(pid_list);
1598static struct pool_head *pool2_pid_list;
1599
1600void block_sigchld(void)
1601{
1602 sigset_t set;
1603 sigemptyset(&set);
1604 sigaddset(&set, SIGCHLD);
Willy Tarreauebc92442016-06-21 17:29:46 +02001605 assert(sigprocmask(SIG_BLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001606}
1607
1608void unblock_sigchld(void)
1609{
1610 sigset_t set;
1611 sigemptyset(&set);
Willy Tarreauebc92442016-06-21 17:29:46 +02001612 sigaddset(&set, SIGCHLD);
1613 assert(sigprocmask(SIG_UNBLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001614}
1615
Simon Horman98637e52014-06-20 12:30:16 +09001616static struct pid_list *pid_list_add(pid_t pid, struct task *t)
1617{
1618 struct pid_list *elem;
1619 struct check *check = t->context;
1620
1621 elem = pool_alloc2(pool2_pid_list);
1622 if (!elem)
1623 return NULL;
1624 elem->pid = pid;
1625 elem->t = t;
1626 elem->exited = 0;
1627 check->curpid = elem;
1628 LIST_INIT(&elem->list);
1629 LIST_ADD(&pid_list, &elem->list);
1630 return elem;
1631}
1632
Simon Horman98637e52014-06-20 12:30:16 +09001633static void pid_list_del(struct pid_list *elem)
1634{
1635 struct check *check;
1636
1637 if (!elem)
1638 return;
1639
Simon Horman98637e52014-06-20 12:30:16 +09001640 LIST_DEL(&elem->list);
Simon Horman98637e52014-06-20 12:30:16 +09001641 if (!elem->exited)
1642 kill(elem->pid, SIGTERM);
1643
1644 check = elem->t->context;
1645 check->curpid = NULL;
1646 pool_free2(pool2_pid_list, elem);
1647}
1648
1649/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
1650static void pid_list_expire(pid_t pid, int status)
1651{
1652 struct pid_list *elem;
1653
1654 list_for_each_entry(elem, &pid_list, list) {
1655 if (elem->pid == pid) {
1656 elem->t->expire = now_ms;
1657 elem->status = status;
1658 elem->exited = 1;
Cyril Bonté9dbcfab2014-08-07 01:55:39 +02001659 task_wakeup(elem->t, TASK_WOKEN_IO);
Simon Horman98637e52014-06-20 12:30:16 +09001660 return;
1661 }
1662 }
1663}
1664
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001665static void sigchld_handler(struct sig_handler *sh)
Simon Horman98637e52014-06-20 12:30:16 +09001666{
1667 pid_t pid;
1668 int status;
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001669
Simon Horman98637e52014-06-20 12:30:16 +09001670 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
1671 pid_list_expire(pid, status);
1672}
1673
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001674static int init_pid_list(void)
1675{
Simon Horman98637e52014-06-20 12:30:16 +09001676 if (pool2_pid_list != NULL)
1677 /* Nothing to do */
1678 return 0;
1679
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001680 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
Simon Horman98637e52014-06-20 12:30:16 +09001681 Alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
1682 strerror(errno));
1683 return 1;
1684 }
1685
1686 pool2_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
1687 if (pool2_pid_list == NULL) {
1688 Alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
1689 strerror(errno));
1690 return 1;
1691 }
1692
1693 return 0;
1694}
1695
Cyril Bontéac92a062014-12-27 22:28:38 +01001696/* helper macro to set an environment variable and jump to a specific label on failure. */
1697#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001698
1699/*
Cyril Bontéac92a062014-12-27 22:28:38 +01001700 * helper function to allocate enough memory to store an environment variable.
1701 * It will also check that the environment variable is updatable, and silently
1702 * fail if not.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001703 */
Cyril Bontéac92a062014-12-27 22:28:38 +01001704static int extchk_setenv(struct check *check, int idx, const char *value)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001705{
1706 int len, ret;
Cyril Bontéac92a062014-12-27 22:28:38 +01001707 char *envname;
1708 int vmaxlen;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001709
Cyril Bontéac92a062014-12-27 22:28:38 +01001710 if (idx < 0 || idx >= EXTCHK_SIZE) {
1711 Alert("Illegal environment variable index %d. Aborting.\n", idx);
1712 return 1;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001713 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001714
1715 envname = extcheck_envs[idx].name;
1716 vmaxlen = extcheck_envs[idx].vmaxlen;
1717
1718 /* Check if the environment variable is already set, and silently reject
1719 * the update if this one is not updatable. */
1720 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
1721 return 0;
1722
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001723 /* Instead of sending NOT_USED, sending an empty value is preferable */
1724 if (strcmp(value, "NOT_USED") == 0) {
1725 value = "";
1726 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001727
1728 len = strlen(envname) + 1;
1729 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
1730 len += strlen(value);
1731 else
1732 len += vmaxlen;
1733
1734 if (!check->envp[idx])
1735 check->envp[idx] = malloc(len + 1);
1736
1737 if (!check->envp[idx]) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001738 Alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
1739 return 1;
1740 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001741 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001742 if (ret < 0) {
1743 Alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
1744 return 1;
1745 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001746 else if (ret > len) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001747 Alert("Environment variable '%s' was truncated. Aborting.\n", envname);
1748 return 1;
1749 }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001750 return 0;
1751}
Simon Horman98637e52014-06-20 12:30:16 +09001752
1753static int prepare_external_check(struct check *check)
1754{
1755 struct server *s = check->server;
1756 struct proxy *px = s->proxy;
1757 struct listener *listener = NULL, *l;
1758 int i;
Simon Horman98637e52014-06-20 12:30:16 +09001759 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001760 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001761
1762 list_for_each_entry(l, &px->conf.listeners, by_fe)
1763 /* Use the first INET, INET6 or UNIX listener */
1764 if (l->addr.ss_family == AF_INET ||
1765 l->addr.ss_family == AF_INET6 ||
1766 l->addr.ss_family == AF_UNIX) {
1767 listener = l;
1768 break;
1769 }
1770
Simon Horman98637e52014-06-20 12:30:16 +09001771 check->curpid = NULL;
Cyril Bontéac92a062014-12-27 22:28:38 +01001772 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
1773 if (!check->envp) {
1774 Alert("Failed to allocate memory for environment variables. Aborting\n");
1775 goto err;
1776 }
Simon Horman98637e52014-06-20 12:30:16 +09001777
Cyril Bontéac92a062014-12-27 22:28:38 +01001778 check->argv = calloc(6, sizeof(char *));
1779 if (!check->argv) {
1780 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001781 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001782 }
Simon Horman98637e52014-06-20 12:30:16 +09001783
1784 check->argv[0] = px->check_command;
1785
Cyril Bonté777be862014-12-02 21:21:35 +01001786 if (!listener) {
1787 check->argv[1] = strdup("NOT_USED");
1788 check->argv[2] = strdup("NOT_USED");
1789 }
1790 else if (listener->addr.ss_family == AF_INET ||
Simon Horman98637e52014-06-20 12:30:16 +09001791 listener->addr.ss_family == AF_INET6) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001792 addr_to_str(&listener->addr, buf, sizeof(buf));
1793 check->argv[1] = strdup(buf);
1794 port_to_str(&listener->addr, buf, sizeof(buf));
1795 check->argv[2] = strdup(buf);
Cyril Bonté777be862014-12-02 21:21:35 +01001796 }
1797 else if (listener->addr.ss_family == AF_UNIX) {
Simon Horman98637e52014-06-20 12:30:16 +09001798 const struct sockaddr_un *un;
1799
1800 un = (struct sockaddr_un *)&listener->addr;
1801 check->argv[1] = strdup(un->sun_path);
1802 check->argv[2] = strdup("NOT_USED");
Cyril Bonté777be862014-12-02 21:21:35 +01001803 }
1804 else {
Cyril Bontéac92a062014-12-27 22:28:38 +01001805 Alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001806 goto err;
1807 }
1808
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001809 addr_to_str(&s->addr, buf, sizeof(buf));
1810 check->argv[3] = strdup(buf);
Willy Tarreau04276f32017-01-06 17:41:29 +01001811
1812 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
1813 snprintf(buf, sizeof(buf), "%u", s->svc_port);
1814 else
1815 *buf = 0;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001816 check->argv[4] = strdup(buf);
Simon Horman98637e52014-06-20 12:30:16 +09001817
Cyril Bontéac92a062014-12-27 22:28:38 +01001818 for (i = 0; i < 5; i++) {
1819 if (!check->argv[i]) {
1820 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001821 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001822 }
1823 }
Simon Horman98637e52014-06-20 12:30:16 +09001824
Cyril Bontéac92a062014-12-27 22:28:38 +01001825 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001826 /* Add proxy environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001827 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
1828 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
1829 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
1830 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001831 /* Add server environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001832 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
1833 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
1834 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
1835 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
1836 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
1837 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
1838
1839 /* Ensure that we don't leave any hole in check->envp */
1840 for (i = 0; i < EXTCHK_SIZE; i++)
1841 if (!check->envp[i])
1842 EXTCHK_SETENV(check, i, "", err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001843
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001844 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09001845err:
1846 if (check->envp) {
Cyril Bontéac92a062014-12-27 22:28:38 +01001847 for (i = 0; i < EXTCHK_SIZE; i++)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001848 free(check->envp[i]);
Simon Horman98637e52014-06-20 12:30:16 +09001849 free(check->envp);
1850 check->envp = NULL;
1851 }
1852
1853 if (check->argv) {
1854 for (i = 1; i < 5; i++)
1855 free(check->argv[i]);
1856 free(check->argv);
1857 check->argv = NULL;
1858 }
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001859 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09001860}
1861
Simon Hormanb00d17a2014-06-13 16:18:16 +09001862/*
Simon Horman98637e52014-06-20 12:30:16 +09001863 * establish a server health-check that makes use of a process.
1864 *
1865 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001866 * - SF_ERR_NONE if everything's OK
Willy Tarreaue7dff022015-04-03 01:14:29 +02001867 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
Tim Düsterhus4896c442016-11-29 02:15:19 +01001868 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Horman98637e52014-06-20 12:30:16 +09001869 *
1870 * Blocks and then unblocks SIGCHLD
1871 */
1872static int connect_proc_chk(struct task *t)
1873{
Cyril Bontéac92a062014-12-27 22:28:38 +01001874 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001875 struct check *check = t->context;
1876 struct server *s = check->server;
1877 struct proxy *px = s->proxy;
1878 int status;
1879 pid_t pid;
1880
Willy Tarreaue7dff022015-04-03 01:14:29 +02001881 status = SF_ERR_RESOURCE;
Simon Horman98637e52014-06-20 12:30:16 +09001882
1883 block_sigchld();
1884
1885 pid = fork();
1886 if (pid < 0) {
1887 Alert("Failed to fork process for external health check: %s. Aborting.\n",
1888 strerror(errno));
1889 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1890 goto out;
1891 }
1892 if (pid == 0) {
1893 /* Child */
1894 extern char **environ;
Willy Tarreaub7b24782016-06-21 15:32:29 +02001895 int fd;
1896
1897 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
1898 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
1899
1900 while (fd < global.rlimit_nofile)
1901 close(fd++);
1902
Simon Horman98637e52014-06-20 12:30:16 +09001903 environ = check->envp;
Cyril Bontéac92a062014-12-27 22:28:38 +01001904 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Simon Horman98637e52014-06-20 12:30:16 +09001905 execvp(px->check_command, check->argv);
1906 Alert("Failed to exec process for external health check: %s. Aborting.\n",
1907 strerror(errno));
1908 exit(-1);
1909 }
1910
1911 /* Parent */
1912 if (check->result == CHK_RES_UNKNOWN) {
1913 if (pid_list_add(pid, t) != NULL) {
1914 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
1915
1916 if (px->timeout.check && px->timeout.connect) {
1917 int t_con = tick_add(now_ms, px->timeout.connect);
1918 t->expire = tick_first(t->expire, t_con);
1919 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02001920 status = SF_ERR_NONE;
Simon Horman98637e52014-06-20 12:30:16 +09001921 goto out;
1922 }
1923 else {
1924 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1925 }
1926 kill(pid, SIGTERM); /* process creation error */
1927 }
1928 else
1929 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1930
1931out:
1932 unblock_sigchld();
1933 return status;
1934}
1935
1936/*
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02001937 * manages a server health-check that uses an external process. Returns
Willy Tarreaubaaee002006-06-26 02:48:02 +02001938 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
1939 */
Simon Horman98637e52014-06-20 12:30:16 +09001940static struct task *process_chk_proc(struct task *t)
1941{
1942 struct check *check = t->context;
1943 struct server *s = check->server;
Simon Horman98637e52014-06-20 12:30:16 +09001944 int rv;
1945 int ret;
1946 int expired = tick_is_expired(t->expire, now_ms);
1947
1948 if (!(check->state & CHK_ST_INPROGRESS)) {
1949 /* no check currently running */
1950 if (!expired) /* woke up too early */
1951 return t;
1952
1953 /* we don't send any health-checks when the proxy is
1954 * stopped, the server should not be checked or the check
1955 * is disabled.
1956 */
1957 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
1958 s->proxy->state == PR_STSTOPPED)
1959 goto reschedule;
1960
1961 /* we'll initiate a new check */
1962 set_server_check_status(check, HCHK_STATUS_START, NULL);
1963
1964 check->state |= CHK_ST_INPROGRESS;
1965
Simon Hormandbf70192015-01-30 11:22:53 +09001966 ret = connect_proc_chk(t);
Willy Tarreaud7c3fbd2017-10-04 15:19:26 +02001967 if (ret == SF_ERR_NONE) {
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02001968 /* the process was forked, we allow up to min(inter,
1969 * timeout.connect) for it to report its status, but
1970 * only when timeout.check is set as it may be to short
1971 * for a full check otherwise.
Simon Horman98637e52014-06-20 12:30:16 +09001972 */
1973 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
1974
1975 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
1976 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
1977 t->expire = tick_first(t->expire, t_con);
1978 }
1979
1980 goto reschedule;
Simon Horman98637e52014-06-20 12:30:16 +09001981 }
1982
Willy Tarreau1e62e2a2017-10-04 15:07:02 +02001983 /* here, we failed to start the check */
Simon Horman98637e52014-06-20 12:30:16 +09001984
1985 check->state &= ~CHK_ST_INPROGRESS;
1986 check_notify_failure(check);
1987
1988 /* we allow up to min(inter, timeout.connect) for a connection
1989 * to establish but only when timeout.check is set
1990 * as it may be to short for a full check otherwise
1991 */
1992 while (tick_is_expired(t->expire, now_ms)) {
1993 int t_con;
1994
1995 t_con = tick_add(t->expire, s->proxy->timeout.connect);
1996 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
1997
1998 if (s->proxy->timeout.check)
1999 t->expire = tick_first(t->expire, t_con);
2000 }
2001 }
2002 else {
2003 /* there was a test running.
2004 * First, let's check whether there was an uncaught error,
2005 * which can happen on connect timeout or error.
2006 */
2007 if (check->result == CHK_RES_UNKNOWN) {
2008 /* good connection is enough for pure TCP check */
2009 struct pid_list *elem = check->curpid;
2010 int status = HCHK_STATUS_UNKNOWN;
2011
2012 if (elem->exited) {
2013 status = elem->status; /* Save in case the process exits between use below */
2014 if (!WIFEXITED(status))
2015 check->code = -1;
2016 else
2017 check->code = WEXITSTATUS(status);
2018 if (!WIFEXITED(status) || WEXITSTATUS(status))
2019 status = HCHK_STATUS_PROCERR;
2020 else
2021 status = HCHK_STATUS_PROCOK;
2022 } else if (expired) {
2023 status = HCHK_STATUS_PROCTOUT;
Willy Tarreaudc3d1902014-07-08 00:56:27 +02002024 Warning("kill %d\n", (int)elem->pid);
Simon Horman98637e52014-06-20 12:30:16 +09002025 kill(elem->pid, SIGTERM);
2026 }
2027 set_server_check_status(check, status, NULL);
2028 }
2029
2030 if (check->result == CHK_RES_FAILED) {
2031 /* a failure or timeout detected */
2032 check_notify_failure(check);
2033 }
2034 else if (check->result == CHK_RES_CONDPASS) {
2035 /* check is OK but asks for stopping mode */
2036 check_notify_stopping(check);
2037 }
2038 else if (check->result == CHK_RES_PASSED) {
2039 /* a success was detected */
2040 check_notify_success(check);
2041 }
2042 check->state &= ~CHK_ST_INPROGRESS;
2043
2044 pid_list_del(check->curpid);
2045
2046 rv = 0;
2047 if (global.spread_checks > 0) {
2048 rv = srv_getinter(check) * global.spread_checks / 100;
2049 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2050 }
2051 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
2052 }
2053
2054 reschedule:
2055 while (tick_is_expired(t->expire, now_ms))
2056 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2057 return t;
2058}
2059
2060/*
2061 * manages a server health-check that uses a connection. Returns
2062 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2063 */
2064static struct task *process_chk_conn(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002065{
Simon Horman4a741432013-02-23 15:35:38 +09002066 struct check *check = t->context;
2067 struct server *s = check->server;
2068 struct connection *conn = check->conn;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002069 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002070 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002071 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002072
Willy Tarreau2c115e52013-12-11 19:41:16 +01002073 if (!(check->state & CHK_ST_INPROGRESS)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01002074 /* no check currently running */
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002075 if (!expired) /* woke up too early */
Willy Tarreau26c25062009-03-08 09:38:41 +01002076 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002077
Simon Horman671b6f02013-11-25 10:46:39 +09002078 /* we don't send any health-checks when the proxy is
2079 * stopped, the server should not be checked or the check
2080 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002081 */
Willy Tarreau0d924cc2013-12-11 21:26:24 +01002082 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Willy Tarreau33a08db2013-12-11 21:03:31 +01002083 s->proxy->state == PR_STSTOPPED)
Willy Tarreau5a78f362012-11-23 12:47:05 +01002084 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002085
2086 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09002087 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002088
Willy Tarreau2c115e52013-12-11 19:41:16 +01002089 check->state |= CHK_ST_INPROGRESS;
Simon Horman4a741432013-02-23 15:35:38 +09002090 check->bi->p = check->bi->data;
2091 check->bi->i = 0;
2092 check->bo->p = check->bo->data;
2093 check->bo->o = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002094
Simon Hormandbf70192015-01-30 11:22:53 +09002095 ret = connect_conn_chk(t);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002096 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002097 case SF_ERR_UP:
Simon Hormanb00d17a2014-06-13 16:18:16 +09002098 return t;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002099 case SF_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002100 /* we allow up to min(inter, timeout.connect) for a connection
2101 * to establish but only when timeout.check is set
2102 * as it may be to short for a full check otherwise
2103 */
Simon Horman4a741432013-02-23 15:35:38 +09002104 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002105
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002106 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2107 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2108 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002109 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002110
2111 if (check->type)
2112 conn_data_want_recv(conn); /* prepare for reading a possible reply */
2113
Willy Tarreau5a78f362012-11-23 12:47:05 +01002114 goto reschedule;
2115
Willy Tarreaue7dff022015-04-03 01:14:29 +02002116 case SF_ERR_SRVTO: /* ETIMEDOUT */
2117 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Willy Tarreau4bd07de2014-01-24 16:10:57 +01002118 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002119 chk_report_conn_err(check, errno, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002120 break;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02002121 /* should share same code than cases below */
2122 case SF_ERR_CHK_PORT:
2123 check->state |= CHK_ST_PORT_MISS;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002124 case SF_ERR_PRXCOND:
2125 case SF_ERR_RESOURCE:
2126 case SF_ERR_INTERNAL:
Willy Tarreau4bd07de2014-01-24 16:10:57 +01002127 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002128 chk_report_conn_err(check, 0, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002129 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002130 }
2131
Willy Tarreau5a78f362012-11-23 12:47:05 +01002132 /* here, we have seen a synchronous error, no fd was allocated */
Willy Tarreau6b0a8502012-11-23 08:51:32 +01002133
Willy Tarreau2c115e52013-12-11 19:41:16 +01002134 check->state &= ~CHK_ST_INPROGRESS;
Willy Tarreau4eec5472014-05-20 22:32:27 +02002135 check_notify_failure(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002136
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002137 /* we allow up to min(inter, timeout.connect) for a connection
2138 * to establish but only when timeout.check is set
2139 * as it may be to short for a full check otherwise
2140 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002141 while (tick_is_expired(t->expire, now_ms)) {
2142 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002143
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002144 t_con = tick_add(t->expire, s->proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09002145 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002146
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002147 if (s->proxy->timeout.check)
2148 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002149 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002150 }
2151 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02002152 /* there was a test running.
2153 * First, let's check whether there was an uncaught error,
2154 * which can happen on connect timeout or error.
2155 */
Simon Hormanccaabcd2014-06-20 12:29:47 +09002156 if (check->result == CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002157 /* good connection is enough for pure TCP check */
2158 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
Simon Horman4a741432013-02-23 15:35:38 +09002159 if (check->use_ssl)
2160 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02002161 else
Simon Horman4a741432013-02-23 15:35:38 +09002162 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002163 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002164 else if ((conn->flags & CO_FL_ERROR) || expired) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002165 chk_report_conn_err(check, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02002166 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002167 else
2168 goto out_wait; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02002169 }
2170
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002171 /* check complete or aborted */
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002172 if (conn->xprt) {
2173 /* The check was aborted and the connection was not yet closed.
2174 * This can happen upon timeout, or when an external event such
2175 * as a failed response coupled with "observe layer7" caused the
2176 * server state to be suddenly changed.
2177 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01002178 conn_sock_drain(conn);
Willy Tarreauf79c8172013-10-21 16:30:56 +02002179 conn_force_close(conn);
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002180 }
2181
Willy Tarreauaf549582014-05-16 17:37:50 +02002182 if (check->result == CHK_RES_FAILED) {
2183 /* a failure or timeout detected */
Willy Tarreau4eec5472014-05-20 22:32:27 +02002184 check_notify_failure(check);
Willy Tarreauaf549582014-05-16 17:37:50 +02002185 }
Willy Tarreaudb58b792014-05-21 13:57:23 +02002186 else if (check->result == CHK_RES_CONDPASS) {
2187 /* check is OK but asks for stopping mode */
2188 check_notify_stopping(check);
Willy Tarreauaf549582014-05-16 17:37:50 +02002189 }
Willy Tarreau3e048382014-05-21 10:30:54 +02002190 else if (check->result == CHK_RES_PASSED) {
2191 /* a success was detected */
2192 check_notify_success(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002193 }
Willy Tarreau2c115e52013-12-11 19:41:16 +01002194 check->state &= ~CHK_ST_INPROGRESS;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002195
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002196 rv = 0;
2197 if (global.spread_checks > 0) {
Simon Horman4a741432013-02-23 15:35:38 +09002198 rv = srv_getinter(check) * global.spread_checks / 100;
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002199 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002200 }
Simon Horman4a741432013-02-23 15:35:38 +09002201 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002202 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01002203
2204 reschedule:
2205 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09002206 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002207 out_wait:
Willy Tarreau26c25062009-03-08 09:38:41 +01002208 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002209}
2210
Simon Horman98637e52014-06-20 12:30:16 +09002211/*
2212 * manages a server health-check. Returns
2213 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2214 */
2215static struct task *process_chk(struct task *t)
2216{
2217 struct check *check = t->context;
2218
2219 if (check->type == PR_O2_EXT_CHK)
2220 return process_chk_proc(t);
2221 return process_chk_conn(t);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002222
Simon Horman98637e52014-06-20 12:30:16 +09002223}
2224
Simon Horman5c942422013-11-25 10:46:32 +09002225static int start_check_task(struct check *check, int mininter,
2226 int nbcheck, int srvpos)
2227{
2228 struct task *t;
2229 /* task for the check */
2230 if ((t = task_new()) == NULL) {
2231 Alert("Starting [%s:%s] check: out of memory.\n",
2232 check->server->proxy->id, check->server->id);
2233 return 0;
2234 }
2235
2236 check->task = t;
2237 t->process = process_chk;
2238 t->context = check;
2239
Willy Tarreau1746eec2014-04-25 10:46:47 +02002240 if (mininter < srv_getinter(check))
2241 mininter = srv_getinter(check);
2242
2243 if (global.max_spread_checks && mininter > global.max_spread_checks)
2244 mininter = global.max_spread_checks;
2245
Simon Horman5c942422013-11-25 10:46:32 +09002246 /* check this every ms */
Willy Tarreau1746eec2014-04-25 10:46:47 +02002247 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
Simon Horman5c942422013-11-25 10:46:32 +09002248 check->start = now;
2249 task_queue(t);
2250
2251 return 1;
2252}
2253
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002254/*
2255 * Start health-check.
Willy Tarreau865c5142016-12-21 20:04:48 +01002256 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002257 */
Willy Tarreau865c5142016-12-21 20:04:48 +01002258static int start_checks()
2259{
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002260
2261 struct proxy *px;
2262 struct server *s;
2263 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09002264 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002265
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002266 /* 1- count the checkers to run simultaneously.
2267 * We also determine the minimum interval among all of those which
2268 * have an interval larger than SRV_CHK_INTER_THRES. This interval
2269 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04002270 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002271 * too short an interval for all others.
2272 */
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002273 for (px = proxy; px; px = px->next) {
2274 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01002275 if (s->slowstart) {
2276 if ((t = task_new()) == NULL) {
2277 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002278 return ERR_ALERT | ERR_FATAL;
Willy Tarreaue7b73482013-11-21 11:50:50 +01002279 }
2280 /* We need a warmup task that will be called when the server
2281 * state switches from down to up.
2282 */
2283 s->warmup = t;
2284 t->process = server_warmup;
2285 t->context = s;
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002286 /* server can be in this state only because of */
Emeric Brun52a91d32017-08-31 14:41:55 +02002287 if (s->next_state == SRV_ST_STARTING)
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002288 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 +01002289 }
2290
Willy Tarreaud8514a22013-12-11 21:10:14 +01002291 if (s->check.state & CHK_ST_CONFIGURED) {
2292 nbcheck++;
2293 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
2294 (!mininter || mininter > srv_getinter(&s->check)))
2295 mininter = srv_getinter(&s->check);
2296 }
Willy Tarreau15f39102013-12-11 20:41:18 +01002297
Willy Tarreaud8514a22013-12-11 21:10:14 +01002298 if (s->agent.state & CHK_ST_CONFIGURED) {
2299 nbcheck++;
2300 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
2301 (!mininter || mininter > srv_getinter(&s->agent)))
2302 mininter = srv_getinter(&s->agent);
2303 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002304 }
2305 }
2306
Simon Horman4a741432013-02-23 15:35:38 +09002307 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002308 return 0;
2309
2310 srand((unsigned)time(NULL));
2311
2312 /*
2313 * 2- start them as far as possible from each others. For this, we will
2314 * start them after their interval set to the min interval divided by
2315 * the number of servers, weighted by the server's position in the list.
2316 */
2317 for (px = proxy; px; px = px->next) {
Simon Horman98637e52014-06-20 12:30:16 +09002318 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2319 if (init_pid_list()) {
2320 Alert("Starting [%s] check: out of memory.\n", px->id);
Willy Tarreau865c5142016-12-21 20:04:48 +01002321 return ERR_ALERT | ERR_FATAL;
Simon Horman98637e52014-06-20 12:30:16 +09002322 }
2323 }
2324
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002325 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09002326 /* A task for the main check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002327 if (s->check.state & CHK_ST_CONFIGURED) {
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002328 if (s->check.type == PR_O2_EXT_CHK) {
2329 if (!prepare_external_check(&s->check))
Willy Tarreau865c5142016-12-21 20:04:48 +01002330 return ERR_ALERT | ERR_FATAL;
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002331 }
Simon Hormand60d6912013-11-25 10:46:36 +09002332 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
Willy Tarreau865c5142016-12-21 20:04:48 +01002333 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002334 srvpos++;
2335 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002336
Simon Hormand60d6912013-11-25 10:46:36 +09002337 /* A task for a auxiliary agent check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002338 if (s->agent.state & CHK_ST_CONFIGURED) {
Simon Hormand60d6912013-11-25 10:46:36 +09002339 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
Willy Tarreau865c5142016-12-21 20:04:48 +01002340 return ERR_ALERT | ERR_FATAL;
Simon Hormand60d6912013-11-25 10:46:36 +09002341 }
2342 srvpos++;
2343 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002344 }
2345 }
2346 return 0;
2347}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002348
2349/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002350 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01002351 * The buffer MUST be terminated by a null byte before calling this function.
2352 * Sets server status appropriately. The caller is responsible for ensuring
2353 * that the buffer contains at least 13 characters. If <done> is zero, we may
2354 * return 0 to indicate that data is required to decide of a match.
2355 */
2356static int httpchk_expect(struct server *s, int done)
2357{
2358 static char status_msg[] = "HTTP status check returned code <000>";
2359 char status_code[] = "000";
2360 char *contentptr;
2361 int crlf;
2362 int ret;
2363
2364 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
2365 case PR_O2_EXP_STS:
2366 case PR_O2_EXP_RSTS:
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002367 memcpy(status_code, s->check.bi->data + 9, 3);
2368 memcpy(status_msg + strlen(status_msg) - 4, s->check.bi->data + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01002369
2370 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
2371 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
2372 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002373 ret = regex_exec(s->proxy->expect_regex, status_code);
Willy Tarreaubd741542010-03-16 18:46:54 +01002374
2375 /* we necessarily have the response, so there are no partial failures */
2376 if (s->proxy->options2 & PR_O2_EXP_INV)
2377 ret = !ret;
2378
Simon Horman4a741432013-02-23 15:35:38 +09002379 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01002380 break;
2381
2382 case PR_O2_EXP_STR:
2383 case PR_O2_EXP_RSTR:
2384 /* very simple response parser: ignore CR and only count consecutive LFs,
2385 * stop with contentptr pointing to first char after the double CRLF or
2386 * to '\0' if crlf < 2.
2387 */
2388 crlf = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002389 for (contentptr = s->check.bi->data; *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01002390 if (crlf >= 2)
2391 break;
2392 if (*contentptr == '\r')
2393 continue;
2394 else if (*contentptr == '\n')
2395 crlf++;
2396 else
2397 crlf = 0;
2398 }
2399
2400 /* Check that response contains a body... */
2401 if (crlf < 2) {
2402 if (!done)
2403 return 0;
2404
Simon Horman4a741432013-02-23 15:35:38 +09002405 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002406 "HTTP content check could not find a response body");
2407 return 1;
2408 }
2409
2410 /* Check that response body is not empty... */
2411 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02002412 if (!done)
2413 return 0;
2414
Simon Horman4a741432013-02-23 15:35:38 +09002415 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002416 "HTTP content check found empty response body");
2417 return 1;
2418 }
2419
2420 /* Check the response content against the supplied string
2421 * or regex... */
2422 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
2423 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
2424 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002425 ret = regex_exec(s->proxy->expect_regex, contentptr);
Willy Tarreaubd741542010-03-16 18:46:54 +01002426
2427 /* if we don't match, we may need to wait more */
2428 if (!ret && !done)
2429 return 0;
2430
2431 if (ret) {
2432 /* content matched */
2433 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002434 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002435 "HTTP check matched unwanted content");
2436 else
Simon Horman4a741432013-02-23 15:35:38 +09002437 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002438 "HTTP content check matched");
2439 }
2440 else {
2441 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002442 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002443 "HTTP check did not match unwanted content");
2444 else
Simon Horman4a741432013-02-23 15:35:38 +09002445 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002446 "HTTP content check did not match");
2447 }
2448 break;
2449 }
2450 return 1;
2451}
2452
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002453/*
2454 * return the id of a step in a send/expect session
2455 */
Simon Hormane16c1b32015-01-30 11:22:57 +09002456static int tcpcheck_get_step_id(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002457{
2458 struct tcpcheck_rule *cur = NULL, *next = NULL;
2459 int i = 0;
2460
Willy Tarreau213c6782014-10-02 14:51:02 +02002461 /* not even started anything yet => step 0 = initial connect */
Baptiste Assmannf95bc8e2015-04-25 16:03:06 +02002462 if (!check->current_step)
Willy Tarreau213c6782014-10-02 14:51:02 +02002463 return 0;
2464
Simon Hormane16c1b32015-01-30 11:22:57 +09002465 cur = check->last_started_step;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002466
2467 /* no step => first step */
2468 if (cur == NULL)
2469 return 1;
2470
2471 /* increment i until current step */
Simon Hormane16c1b32015-01-30 11:22:57 +09002472 list_for_each_entry(next, check->tcpcheck_rules, list) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002473 if (next->list.p == &cur->list)
2474 break;
2475 ++i;
2476 }
2477
2478 return i;
2479}
2480
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002481/*
2482 * return the latest known comment before (including) the given stepid
2483 * returns NULL if no comment found
2484 */
2485static char * tcpcheck_get_step_comment(struct check *check, int stepid)
2486{
2487 struct tcpcheck_rule *cur = NULL;
2488 char *ret = NULL;
2489 int i = 0;
2490
2491 /* not even started anything yet, return latest comment found before any action */
2492 if (!check->current_step) {
2493 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2494 if (cur->action == TCPCHK_ACT_COMMENT)
2495 ret = cur->comment;
2496 else
2497 goto return_comment;
2498 }
2499 }
2500
2501 i = 1;
2502 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2503 if (cur->comment)
2504 ret = cur->comment;
2505
2506 if (i >= stepid)
2507 goto return_comment;
2508
2509 ++i;
2510 }
2511
2512 return_comment:
2513 return ret;
2514}
2515
Willy Tarreaube74b882017-10-04 16:22:49 +02002516/* proceed with next steps for the TCP checks <check>. Note that this is called
2517 * both from the connection's wake() callback and from the check scheduling task.
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002518 * It returns 0 on normal cases, or <0 if a close() has happened on an existing
2519 * connection, presenting the risk of an fd replacement.
Willy Tarreaube74b882017-10-04 16:22:49 +02002520 */
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002521static int tcpcheck_main(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002522{
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002523 char *contentptr, *comment;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002524 struct tcpcheck_rule *next;
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002525 int done = 0, ret = 0, step = 0;
Willy Tarreaube74b882017-10-04 16:22:49 +02002526 struct connection *conn = check->conn;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002527 struct server *s = check->server;
2528 struct task *t = check->task;
Simon Hormane16c1b32015-01-30 11:22:57 +09002529 struct list *head = check->tcpcheck_rules;
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002530 int retcode = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002531
Willy Tarreauef953952014-10-02 14:30:14 +02002532 /* here, we know that the check is complete or that it failed */
2533 if (check->result != CHK_RES_UNKNOWN)
2534 goto out_end_tcpcheck;
2535
2536 /* We have 4 possibilities here :
2537 * 1. we've not yet attempted step 1, and step 1 is a connect, so no
2538 * connection attempt was made yet ;
2539 * 2. we've not yet attempted step 1, and step 1 is a not connect or
2540 * does not exist (no rule), so a connection attempt was made
2541 * before coming here.
2542 * 3. we're coming back after having started with step 1, so we may
2543 * be waiting for a connection attempt to complete.
2544 * 4. the connection + handshake are complete
2545 *
2546 * #2 and #3 are quite similar, we want both the connection and the
2547 * handshake to complete before going any further. Thus we must always
2548 * wait for a connection to complete unless we're before and existing
2549 * step 1.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002550 */
Willy Tarreau449f9522015-05-13 15:39:48 +02002551
2552 /* find first rule and skip comments */
2553 next = LIST_NEXT(head, struct tcpcheck_rule *, list);
2554 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
2555 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
2556
Willy Tarreauef953952014-10-02 14:30:14 +02002557 if ((!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE)) &&
Willy Tarreau449f9522015-05-13 15:39:48 +02002558 (check->current_step || &next->list == head)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002559 /* we allow up to min(inter, timeout.connect) for a connection
2560 * to establish but only when timeout.check is set
2561 * as it may be to short for a full check otherwise
2562 */
2563 while (tick_is_expired(t->expire, now_ms)) {
2564 int t_con;
2565
2566 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2567 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2568
2569 if (s->proxy->timeout.check)
2570 t->expire = tick_first(t->expire, t_con);
2571 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002572 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002573 }
2574
Willy Tarreauef953952014-10-02 14:30:14 +02002575 /* special case: option tcp-check with no rule, a connect is enough */
Willy Tarreau449f9522015-05-13 15:39:48 +02002576 if (&next->list == head) {
Willy Tarreauef953952014-10-02 14:30:14 +02002577 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002578 goto out_end_tcpcheck;
Willy Tarreauef953952014-10-02 14:30:14 +02002579 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002580
Willy Tarreau213c6782014-10-02 14:51:02 +02002581 /* no step means first step initialisation */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002582 if (check->current_step == NULL) {
Willy Tarreau213c6782014-10-02 14:51:02 +02002583 check->last_started_step = NULL;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002584 check->bo->p = check->bo->data;
2585 check->bo->o = 0;
2586 check->bi->p = check->bi->data;
2587 check->bi->i = 0;
Willy Tarreau449f9522015-05-13 15:39:48 +02002588 check->current_step = next;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002589 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2590 if (s->proxy->timeout.check)
2591 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
2592 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002593
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002594 /* It's only the rules which will enable send/recv */
2595 __conn_data_stop_both(conn);
2596
Willy Tarreauabca5b62013-12-06 14:19:25 +01002597 while (1) {
Willy Tarreau263013d2015-05-13 11:59:14 +02002598 /* We have to try to flush the output buffer before reading, at
2599 * the end, or if we're about to send a string that does not fit
2600 * in the remaining space. That explains why we break out of the
2601 * loop after this control.
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002602 */
2603 if (check->bo->o &&
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002604 (&check->current_step->list == head ||
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002605 check->current_step->action != TCPCHK_ACT_SEND ||
2606 check->current_step->string_len >= buffer_total_space(check->bo))) {
2607
Willy Tarreaua3782e72017-10-04 08:45:19 +02002608 __conn_data_want_send(conn);
Willy Tarreau1049b1f2014-02-02 01:51:17 +01002609 if (conn->xprt->snd_buf(conn, check->bo, 0) <= 0) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002610 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002611 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002612 __conn_data_stop_both(conn);
2613 goto out_end_tcpcheck;
2614 }
Willy Tarreau263013d2015-05-13 11:59:14 +02002615 break;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002616 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01002617 }
2618
Willy Tarreau263013d2015-05-13 11:59:14 +02002619 if (&check->current_step->list == head)
Willy Tarreauabca5b62013-12-06 14:19:25 +01002620 break;
2621
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002622 /* have 'next' point to the next rule or NULL if we're on the
2623 * last one, connect() needs this.
2624 */
Willy Tarreau5581c272015-05-13 12:24:53 +02002625 next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002626
2627 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002628 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002629 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002630
2631 /* NULL if we're on the last rule */
Willy Tarreauf3d34822014-12-08 12:11:28 +01002632 if (&next->list == head)
2633 next = NULL;
2634
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002635 if (check->current_step->action == TCPCHK_ACT_CONNECT) {
2636 struct protocol *proto;
2637 struct xprt_ops *xprt;
2638
2639 /* mark the step as started */
2640 check->last_started_step = check->current_step;
2641 /* first, shut existing connection */
2642 conn_force_close(conn);
2643
2644 /* prepare new connection */
2645 /* initialization */
2646 conn_init(conn);
2647 conn_attach(conn, check, &check_conn_cb);
2648 conn->target = &s->obj_type;
2649
2650 /* no client address */
2651 clear_addr(&conn->addr.from);
2652
Simon Horman41f58762015-01-30 11:22:56 +09002653 if (is_addr(&check->addr)) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002654 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09002655 conn->addr.to = check->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002656 }
2657 else {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002658 /* we'll connect to the addr on the server */
2659 conn->addr.to = s->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002660 }
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01002661 proto = protocol_by_family(conn->addr.to.ss_family);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002662
2663 /* port */
2664 if (check->current_step->port)
2665 set_host_port(&conn->addr.to, check->current_step->port);
2666 else if (check->port)
2667 set_host_port(&conn->addr.to, check->port);
2668
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002669 if (check->current_step->conn_opts & TCPCHK_OPT_SSL) {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002670 xprt = xprt_get(XPRT_SSL);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002671 }
2672 else {
Willy Tarreaua261e9b2016-12-22 20:44:00 +01002673 xprt = xprt_get(XPRT_RAW);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002674 }
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002675 conn_prepare(conn, proto, xprt);
2676
Willy Tarreaue7dff022015-04-03 01:14:29 +02002677 ret = SF_ERR_INTERNAL;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002678 if (proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01002679 ret = proto->connect(conn,
2680 1 /* I/O polling is always needed */,
2681 (next && next->action == TCPCHK_ACT_EXPECT) ? 0 : 2);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002682 if (check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) {
2683 conn->send_proxy_ofs = 1;
2684 conn->flags |= CO_FL_SEND_PROXY;
2685 }
2686
2687 /* It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002688 * - SF_ERR_NONE if everything's OK
2689 * - SF_ERR_SRVTO if there are no more servers
2690 * - SF_ERR_SRVCL if the connection was refused by the server
2691 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
2692 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
2693 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01002694 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002695 * Note that we try to prevent the network stack from sending the ACK during the
2696 * connect() when a pure TCP check is used (without PROXY protocol).
2697 */
2698 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002699 case SF_ERR_NONE:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002700 /* we allow up to min(inter, timeout.connect) for a connection
2701 * to establish but only when timeout.check is set
2702 * as it may be to short for a full check otherwise
2703 */
2704 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2705
2706 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2707 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2708 t->expire = tick_first(t->expire, t_con);
2709 }
2710 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002711 case SF_ERR_SRVTO: /* ETIMEDOUT */
2712 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002713 step = tcpcheck_get_step_id(check);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002714 chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002715 step, strerror(errno));
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002716 comment = tcpcheck_get_step_comment(check, step);
2717 if (comment)
2718 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002719 set_server_check_status(check, HCHK_STATUS_L4CON, trash.str);
2720 goto out_end_tcpcheck;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002721 case SF_ERR_PRXCOND:
2722 case SF_ERR_RESOURCE:
2723 case SF_ERR_INTERNAL:
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002724 step = tcpcheck_get_step_id(check);
2725 chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002726 comment = tcpcheck_get_step_comment(check, step);
2727 if (comment)
2728 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002729 set_server_check_status(check, HCHK_STATUS_SOCKERR, trash.str);
2730 goto out_end_tcpcheck;
2731 }
2732
2733 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002734 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002735
2736 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002737 while (&check->current_step->list != head &&
2738 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002739 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002740
Willy Tarreauf2c87352015-05-13 12:08:21 +02002741 if (&check->current_step->list == head)
2742 break;
2743
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002744 /* don't do anything until the connection is established */
2745 if (!(conn->flags & CO_FL_CONNECTED)) {
2746 /* update expire time, should be done by process_chk */
2747 /* we allow up to min(inter, timeout.connect) for a connection
2748 * to establish but only when timeout.check is set
2749 * as it may be to short for a full check otherwise
2750 */
2751 while (tick_is_expired(t->expire, now_ms)) {
2752 int t_con;
2753
2754 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2755 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2756
2757 if (s->proxy->timeout.check)
2758 t->expire = tick_first(t->expire, t_con);
2759 }
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002760 return retcode;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002761 }
2762
2763 } /* end 'connect' */
2764 else if (check->current_step->action == TCPCHK_ACT_SEND) {
2765 /* mark the step as started */
2766 check->last_started_step = check->current_step;
2767
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002768 /* reset the read buffer */
2769 if (*check->bi->data != '\0') {
2770 *check->bi->data = '\0';
2771 check->bi->i = 0;
2772 }
2773
Willy Tarreaubbae3f02017-08-30 09:59:52 +02002774 if (conn->flags & CO_FL_SOCK_WR_SH) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002775 conn->flags |= CO_FL_ERROR;
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002776 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002777 goto out_end_tcpcheck;
2778 }
2779
Willy Tarreauabca5b62013-12-06 14:19:25 +01002780 if (check->current_step->string_len >= check->bo->size) {
2781 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%d) at step %d",
2782 check->current_step->string_len, check->bo->size,
Simon Hormane16c1b32015-01-30 11:22:57 +09002783 tcpcheck_get_step_id(check));
Willy Tarreauabca5b62013-12-06 14:19:25 +01002784 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2785 goto out_end_tcpcheck;
2786 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002787
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002788 /* do not try to send if there is no space */
2789 if (check->current_step->string_len >= buffer_total_space(check->bo))
2790 continue;
2791
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002792 bo_putblk(check->bo, check->current_step->string, check->current_step->string_len);
2793 *check->bo->p = '\0'; /* to make gdb output easier to read */
2794
Willy Tarreauabca5b62013-12-06 14:19:25 +01002795 /* go to next rule and try to send */
Willy Tarreau5581c272015-05-13 12:24:53 +02002796 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002797
2798 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002799 while (&check->current_step->list != head &&
2800 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002801 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Willy Tarreauf2c87352015-05-13 12:08:21 +02002802
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002803 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002804 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01002805 if (unlikely(check->result == CHK_RES_FAILED))
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002806 goto out_end_tcpcheck;
2807
Willy Tarreaua3782e72017-10-04 08:45:19 +02002808 __conn_data_want_recv(conn);
Willy Tarreau310987a2014-01-22 19:46:33 +01002809 if (conn->xprt->rcv_buf(conn, check->bi, check->bi->size) <= 0) {
Willy Tarreau54e917c2017-08-30 07:35:35 +02002810 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002811 done = 1;
2812 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
2813 /* Report network errors only if we got no other data. Otherwise
2814 * we'll let the upper layers decide whether the response is OK
2815 * or not. It is very common that an RST sent by the server is
2816 * reported as an error just after the last data chunk.
2817 */
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002818 chk_report_conn_err(check, errno, 0);
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002819 goto out_end_tcpcheck;
2820 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002821 }
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002822 else
Willy Tarreau263013d2015-05-13 11:59:14 +02002823 break;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002824 }
2825
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002826 /* mark the step as started */
2827 check->last_started_step = check->current_step;
2828
2829
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002830 /* Intermediate or complete response received.
2831 * Terminate string in check->bi->data buffer.
2832 */
2833 if (check->bi->i < check->bi->size) {
2834 check->bi->data[check->bi->i] = '\0';
2835 }
2836 else {
2837 check->bi->data[check->bi->i - 1] = '\0';
2838 done = 1; /* buffer full, don't wait for more data */
2839 }
2840
2841 contentptr = check->bi->data;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002842
2843 /* Check that response body is not empty... */
Willy Tarreauec6b0122014-05-13 17:57:29 +02002844 if (!check->bi->i) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002845 if (!done)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002846 continue;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002847
2848 /* empty response */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002849 step = tcpcheck_get_step_id(check);
2850 chunk_printf(&trash, "TCPCHK got an empty response at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002851 comment = tcpcheck_get_step_comment(check, step);
2852 if (comment)
2853 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002854 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2855
2856 goto out_end_tcpcheck;
2857 }
2858
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002859 if (!done && (check->current_step->string != NULL) && (check->bi->i < check->current_step->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01002860 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002861
Willy Tarreaua970c282013-12-06 12:47:19 +01002862 tcpcheck_expect:
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002863 if (check->current_step->string != NULL)
2864 ret = my_memmem(contentptr, check->bi->i, check->current_step->string, check->current_step->string_len) != NULL;
2865 else if (check->current_step->expect_regex != NULL)
2866 ret = regex_exec(check->current_step->expect_regex, contentptr);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002867
2868 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01002869 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002870
2871 /* matched */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002872 step = tcpcheck_get_step_id(check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002873 if (ret) {
2874 /* matched but we did not want to => ERROR */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002875 if (check->current_step->inverse) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002876 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002877 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002878 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002879 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002880 }
2881 else {
2882 /* we were looking for a regex */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002883 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d", step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002884 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002885 comment = tcpcheck_get_step_comment(check, step);
2886 if (comment)
2887 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002888 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2889 goto out_end_tcpcheck;
2890 }
2891 /* matched and was supposed to => OK, next step */
2892 else {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002893 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002894 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002895
2896 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002897 while (&check->current_step->list != head &&
2898 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002899 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002900
Willy Tarreauf2c87352015-05-13 12:08:21 +02002901 if (&check->current_step->list == head)
2902 break;
2903
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002904 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002905 goto tcpcheck_expect;
2906 __conn_data_stop_recv(conn);
2907 }
2908 }
2909 else {
2910 /* not matched */
2911 /* not matched and was not supposed to => OK, next step */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002912 if (check->current_step->inverse) {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002913 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002914 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002915
2916 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002917 while (&check->current_step->list != head &&
2918 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002919 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002920
Willy Tarreauf2c87352015-05-13 12:08:21 +02002921 if (&check->current_step->list == head)
2922 break;
2923
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002924 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002925 goto tcpcheck_expect;
2926 __conn_data_stop_recv(conn);
2927 }
2928 /* not matched but was supposed to => ERROR */
2929 else {
2930 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002931 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002932 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002933 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002934 }
2935 else {
2936 /* we were looking for a regex */
2937 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002938 step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002939 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002940 comment = tcpcheck_get_step_comment(check, step);
2941 if (comment)
2942 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002943 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2944 goto out_end_tcpcheck;
2945 }
2946 }
2947 } /* end expect */
2948 } /* end loop over double chained step list */
2949
Willy Tarreau263013d2015-05-13 11:59:14 +02002950 /* We're waiting for some I/O to complete, we've reached the end of the
2951 * rules, or both. Do what we have to do, otherwise we're done.
2952 */
2953 if (&check->current_step->list == head && !check->bo->o) {
2954 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
2955 goto out_end_tcpcheck;
2956 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002957
Willy Tarreau53c5a042015-05-13 11:38:17 +02002958 /* warning, current_step may now point to the head */
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002959 if (check->bo->o)
2960 __conn_data_want_send(conn);
2961
Willy Tarreau53c5a042015-05-13 11:38:17 +02002962 if (&check->current_step->list != head &&
2963 check->current_step->action == TCPCHK_ACT_EXPECT)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002964 __conn_data_want_recv(conn);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002965 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002966
2967 out_end_tcpcheck:
2968 /* collect possible new errors */
2969 if (conn->flags & CO_FL_ERROR)
Willy Tarreaub5259bf2017-10-04 14:47:29 +02002970 chk_report_conn_err(check, 0, 0);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002971
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002972 /* cleanup before leaving */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002973 check->current_step = NULL;
2974
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01002975 if (check->result == CHK_RES_FAILED)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002976 conn->flags |= CO_FL_ERROR;
2977
2978 __conn_data_stop_both(conn);
Willy Tarreau6bdcab02017-10-04 18:41:00 +02002979 return retcode;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002980}
2981
Simon Hormanb1900d52015-01-30 11:22:54 +09002982const char *init_check(struct check *check, int type)
2983{
2984 check->type = type;
2985
2986 /* Allocate buffer for requests... */
2987 if ((check->bi = calloc(sizeof(struct buffer) + global.tune.chksize, sizeof(char))) == NULL) {
2988 return "out of memory while allocating check buffer";
2989 }
2990 check->bi->size = global.tune.chksize;
2991
2992 /* Allocate buffer for responses... */
2993 if ((check->bo = calloc(sizeof(struct buffer) + global.tune.chksize, sizeof(char))) == NULL) {
2994 return "out of memory while allocating check buffer";
2995 }
2996 check->bo->size = global.tune.chksize;
2997
Willy Tarreaub398e642017-10-04 15:25:38 +02002998 if (check->type != PR_O2_EXT_CHK &&
2999 (check->conn = calloc(1, sizeof(struct connection))) == NULL) {
Simon Hormanb1900d52015-01-30 11:22:54 +09003000 return "out of memory while allocating check connection";
3001 }
3002
Simon Hormanb1900d52015-01-30 11:22:54 +09003003 return NULL;
3004}
3005
Simon Hormanbfb5d332015-01-30 11:22:55 +09003006void free_check(struct check *check)
3007{
3008 free(check->bi);
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01003009 check->bi = NULL;
Simon Hormanbfb5d332015-01-30 11:22:55 +09003010 free(check->bo);
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01003011 check->bo = NULL;
Simon Hormanbfb5d332015-01-30 11:22:55 +09003012 free(check->conn);
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01003013 check->conn = NULL;
Simon Hormanbfb5d332015-01-30 11:22:55 +09003014}
3015
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003016void email_alert_free(struct email_alert *alert)
3017{
3018 struct tcpcheck_rule *rule, *back;
3019
3020 if (!alert)
3021 return;
3022
3023 list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list)
3024 free(rule);
3025 free(alert);
3026}
3027
3028static struct task *process_email_alert(struct task *t)
3029{
3030 struct check *check = t->context;
3031 struct email_alertq *q;
3032
3033 q = container_of(check, typeof(*q), check);
3034
3035 if (!(check->state & CHK_ST_ENABLED)) {
3036 if (LIST_ISEMPTY(&q->email_alerts)) {
3037 /* All alerts processed, delete check */
3038 task_delete(t);
3039 task_free(t);
3040 check->task = NULL;
3041 return NULL;
3042 } else {
3043 struct email_alert *alert;
3044
3045 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
3046 check->tcpcheck_rules = &alert->tcpcheck_rules;
3047 LIST_DEL(&alert->list);
3048
3049 check->state |= CHK_ST_ENABLED;
3050 }
3051
3052 }
3053
3054 process_chk(t);
3055
3056 if (!(check->state & CHK_ST_INPROGRESS) && check->tcpcheck_rules) {
3057 struct email_alert *alert;
3058
3059 alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules);
3060 email_alert_free(alert);
3061
3062 check->tcpcheck_rules = NULL;
3063 check->state &= ~CHK_ST_ENABLED;
3064 }
3065 return t;
3066}
3067
3068static int init_email_alert_checks(struct server *s)
3069{
3070 int i;
3071 struct mailer *mailer;
3072 const char *err_str;
3073 struct proxy *p = s->proxy;
3074
3075 if (p->email_alert.queues)
3076 /* Already initialised, nothing to do */
3077 return 1;
3078
3079 p->email_alert.queues = calloc(p->email_alert.mailers.m->count, sizeof *p->email_alert.queues);
3080 if (!p->email_alert.queues) {
3081 err_str = "out of memory while allocating checks array";
3082 goto error_alert;
3083 }
3084
3085 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3086 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
3087 struct email_alertq *q = &p->email_alert.queues[i];
3088 struct check *check = &q->check;
3089
3090
3091 LIST_INIT(&q->email_alerts);
3092
Pieter Baauw235fcfc2016-02-13 15:33:40 +01003093 check->inter = p->email_alert.mailers.m->timeout.mail;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003094 check->rise = DEF_AGENT_RISETIME;
3095 check->fall = DEF_AGENT_FALLTIME;
3096 err_str = init_check(check, PR_O2_TCPCHK_CHK);
3097 if (err_str) {
3098 goto error_free;
3099 }
3100
3101 check->xprt = mailer->xprt;
3102 if (!get_host_port(&mailer->addr))
3103 /* Default to submission port */
3104 check->port = 587;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003105 check->addr = mailer->addr;
3106 check->server = s;
3107 }
3108
3109 return 1;
3110
3111error_free:
3112 while (i-- > 1)
3113 task_free(p->email_alert.queues[i].check.task);
3114 free(p->email_alert.queues);
3115 p->email_alert.queues = NULL;
3116error_alert:
3117 Alert("Email alert [%s] could not be initialised: %s\n", p->id, err_str);
3118 return 0;
3119}
3120
3121
3122static int add_tcpcheck_expect_str(struct list *list, const char *str)
3123{
3124 struct tcpcheck_rule *tcpcheck;
3125
3126 tcpcheck = calloc(1, sizeof *tcpcheck);
3127 if (!tcpcheck)
3128 return 0;
3129
3130 tcpcheck->action = TCPCHK_ACT_EXPECT;
3131 tcpcheck->string = strdup(str);
3132 if (!tcpcheck->string) {
3133 free(tcpcheck);
3134 return 0;
3135 }
3136
3137 LIST_ADDQ(list, &tcpcheck->list);
3138 return 1;
3139}
3140
3141static int add_tcpcheck_send_strs(struct list *list, const char * const *strs)
3142{
3143 struct tcpcheck_rule *tcpcheck;
Willy Tarreau64345aa2016-08-10 19:29:09 +02003144 const char *in;
3145 char *dst;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003146 int i;
3147
3148 tcpcheck = calloc(1, sizeof *tcpcheck);
3149 if (!tcpcheck)
3150 return 0;
3151
3152 tcpcheck->action = TCPCHK_ACT_SEND;
3153
3154 tcpcheck->string_len = 0;
3155 for (i = 0; strs[i]; i++)
3156 tcpcheck->string_len += strlen(strs[i]);
3157
3158 tcpcheck->string = malloc(tcpcheck->string_len + 1);
3159 if (!tcpcheck->string) {
3160 free(tcpcheck);
3161 return 0;
3162 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003163
Willy Tarreau64345aa2016-08-10 19:29:09 +02003164 dst = tcpcheck->string;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003165 for (i = 0; strs[i]; i++)
Willy Tarreau64345aa2016-08-10 19:29:09 +02003166 for (in = strs[i]; (*dst = *in++); dst++);
3167 *dst = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003168
3169 LIST_ADDQ(list, &tcpcheck->list);
3170 return 1;
3171}
3172
3173static int enqueue_one_email_alert(struct email_alertq *q, const char *msg)
3174{
3175 struct email_alert *alert = NULL;
3176 struct tcpcheck_rule *tcpcheck;
3177 struct check *check = &q->check;
3178 struct proxy *p = check->server->proxy;
3179
3180 alert = calloc(1, sizeof *alert);
3181 if (!alert) {
3182 goto error;
3183 }
3184 LIST_INIT(&alert->tcpcheck_rules);
3185
3186 tcpcheck = calloc(1, sizeof *tcpcheck);
3187 if (!tcpcheck)
3188 goto error;
3189 tcpcheck->action = TCPCHK_ACT_CONNECT;
3190 LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list);
3191
3192 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 "))
3193 goto error;
3194
3195 {
3196 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
3197 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3198 goto error;
3199 }
3200
3201 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3202 goto error;
3203
3204 {
3205 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
3206 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3207 goto error;
3208 }
3209
3210 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3211 goto error;
3212
3213 {
3214 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
3215 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3216 goto error;
3217 }
3218
3219 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3220 goto error;
3221
3222 {
3223 const char * const strs[2] = { "DATA\r\n" };
3224 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3225 goto error;
3226 }
3227
3228 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 "))
3229 goto error;
3230
3231 {
3232 struct tm tm;
3233 char datestr[48];
3234 const char * const strs[18] = {
Pieter Baauw5e0964e2016-02-13 16:27:35 +01003235 "From: ", p->email_alert.from, "\r\n",
3236 "To: ", p->email_alert.to, "\r\n",
3237 "Date: ", datestr, "\r\n",
3238 "Subject: [HAproxy Alert] ", msg, "\r\n",
3239 "\r\n",
3240 msg, "\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003241 "\r\n",
Pieter Baauwed35c372015-07-22 19:51:54 +02003242 ".\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003243 NULL
3244 };
3245
3246 get_localtime(date.tv_sec, &tm);
3247
3248 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
3249 goto error;
3250 }
3251
3252 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3253 goto error;
3254 }
3255
3256 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3257 goto error;
3258
3259 {
3260 const char * const strs[2] = { "QUIT\r\n" };
3261 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3262 goto error;
3263 }
3264
3265 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 "))
3266 goto error;
3267
3268 if (!check->task) {
3269 struct task *t;
3270
3271 if ((t = task_new()) == NULL)
3272 goto error;
3273
3274 check->task = t;
3275 t->process = process_email_alert;
3276 t->context = check;
3277
3278 /* check this in one ms */
3279 t->expire = tick_add(now_ms, MS_TO_TICKS(1));
3280 check->start = now;
3281 task_queue(t);
3282 }
3283
3284 LIST_ADDQ(&q->email_alerts, &alert->list);
3285
3286 return 1;
3287
3288error:
3289 email_alert_free(alert);
3290 return 0;
3291}
3292
3293static void enqueue_email_alert(struct proxy *p, const char *msg)
3294{
3295 int i;
3296 struct mailer *mailer;
3297
3298 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3299 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
3300 if (!enqueue_one_email_alert(&p->email_alert.queues[i], msg)) {
3301 Alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
3302 return;
3303 }
3304 }
3305
3306 return;
3307}
3308
3309/*
3310 * Send email alert if configured.
3311 */
Simon Horman64e34162015-02-06 11:11:57 +09003312void send_email_alert(struct server *s, int level, const char *format, ...)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003313{
3314 va_list argp;
3315 char buf[1024];
3316 int len;
3317 struct proxy *p = s->proxy;
3318
Simon Horman64e34162015-02-06 11:11:57 +09003319 if (!p->email_alert.mailers.m || level > p->email_alert.level ||
3320 format == NULL || !init_email_alert_checks(s))
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003321 return;
3322
3323 va_start(argp, format);
3324 len = vsnprintf(buf, sizeof(buf), format, argp);
3325 va_end(argp);
3326
Thierry FOURNIER62c8a212017-02-09 12:19:27 +01003327 if (len < 0 || len >= sizeof(buf)) {
Cyril Bontéb65e0332015-12-04 03:07:08 +01003328 Alert("Email alert [%s] could not format message\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003329 return;
3330 }
3331
3332 enqueue_email_alert(p, buf);
3333}
3334
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003335/*
3336 * Return value:
3337 * the port to be used for the health check
3338 * 0 in case no port could be found for the check
3339 */
3340int srv_check_healthcheck_port(struct check *chk)
3341{
3342 int i = 0;
3343 struct server *srv = NULL;
3344
3345 srv = chk->server;
3346
3347 /* If neither a port nor an addr was specified and no check transport
3348 * layer is forced, then the transport layer used by the checks is the
3349 * same as for the production traffic. Otherwise we use raw_sock by
3350 * default, unless one is specified.
3351 */
3352 if (!chk->port && !is_addr(&chk->addr)) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003353 chk->use_ssl |= (srv->use_ssl || (srv->proxy->options & PR_O_TCPCHK_SSL));
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003354 chk->send_proxy |= (srv->pp_opts);
3355 }
3356
3357 /* by default, we use the health check port ocnfigured */
3358 if (chk->port > 0)
3359 return chk->port;
3360
3361 /* try to get the port from check_core.addr if check.port not set */
3362 i = get_host_port(&chk->addr);
3363 if (i > 0)
3364 return i;
3365
3366 /* try to get the port from server address */
3367 /* prevent MAPPORTS from working at this point, since checks could
3368 * not be performed in such case (MAPPORTS impose a relative ports
3369 * based on live traffic)
3370 */
3371 if (srv->flags & SRV_F_MAPPORTS)
3372 return 0;
Willy Tarreau04276f32017-01-06 17:41:29 +01003373
3374 i = srv->svc_port; /* by default */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003375 if (i > 0)
3376 return i;
3377
3378 return 0;
3379}
3380
Willy Tarreau865c5142016-12-21 20:04:48 +01003381__attribute__((constructor))
3382static void __check_init(void)
3383{
3384 hap_register_post_check(start_checks);
3385}
3386
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003387
Willy Tarreaubd741542010-03-16 18:46:54 +01003388/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003389 * Local variables:
3390 * c-indent-level: 8
3391 * c-basic-offset: 8
3392 * End:
3393 */