blob: 65d003743b0d3f7babec8ffbb71d7371d879ccf8 [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042
Baptiste Assmann69e273f2013-12-11 00:52:19 +010043#ifdef USE_OPENSSL
44#include <types/ssl_sock.h>
45#include <proto/ssl_sock.h>
46#endif /* USE_OPENSSL */
47
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/backend.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020049#include <proto/checks.h>
Simon Hormana2b9dad2013-02-12 10:45:54 +090050#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/fd.h>
52#include <proto/log.h>
53#include <proto/queue.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020054#include <proto/port_range.h>
Willy Tarreau3d300592007-03-18 18:34:41 +010055#include <proto/proto_http.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010056#include <proto/proto_tcp.h>
Baptiste Assmann69e273f2013-12-11 00:52:19 +010057#include <proto/protocol.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010058#include <proto/proxy.h>
Willy Tarreaufb56aab2012-09-28 14:40:02 +020059#include <proto/raw_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020060#include <proto/server.h>
Willy Tarreau48d6bf22016-06-21 16:27:34 +020061#include <proto/signal.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010062#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020063#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020064#include <proto/log.h>
65#include <proto/dns.h>
66#include <proto/proto_udp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020067
Willy Tarreaubd741542010-03-16 18:46:54 +010068static int httpchk_expect(struct server *s, int done);
Simon Hormane16c1b32015-01-30 11:22:57 +090069static int tcpcheck_get_step_id(struct check *);
Baptiste Assmann22b09d22015-05-01 08:03:04 +020070static char * tcpcheck_get_step_comment(struct check *, int);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +020071static void tcpcheck_main(struct connection *);
Willy Tarreaubd741542010-03-16 18:46:54 +010072
Simon Horman63a4a822012-03-19 07:24:41 +090073static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010074 [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" },
75 [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" },
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020076 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020077
Willy Tarreau23964182014-05-20 20:56:30 +020078 /* Below we have finished checks */
79 [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" },
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010080 [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010081
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010082 [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020083
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010084 [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" },
85 [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" },
86 [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020087
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010088 [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" },
89 [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" },
90 [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020091
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010092 [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" },
93 [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020094
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020095 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020096
Willy Tarreau6aaa1b82013-12-11 17:09:34 +010097 [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" },
98 [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" },
99 [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" },
Simon Horman98637e52014-06-20 12:30:16 +0900100
101 [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" },
102 [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" },
Cyril Bonté77010d82014-08-07 01:55:37 +0200103 [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200104};
105
Cyril Bontéac92a062014-12-27 22:28:38 +0100106const struct extcheck_env extcheck_envs[EXTCHK_SIZE] = {
107 [EXTCHK_PATH] = { "PATH", EXTCHK_SIZE_EVAL_INIT },
108 [EXTCHK_HAPROXY_PROXY_NAME] = { "HAPROXY_PROXY_NAME", EXTCHK_SIZE_EVAL_INIT },
109 [EXTCHK_HAPROXY_PROXY_ID] = { "HAPROXY_PROXY_ID", EXTCHK_SIZE_EVAL_INIT },
110 [EXTCHK_HAPROXY_PROXY_ADDR] = { "HAPROXY_PROXY_ADDR", EXTCHK_SIZE_EVAL_INIT },
111 [EXTCHK_HAPROXY_PROXY_PORT] = { "HAPROXY_PROXY_PORT", EXTCHK_SIZE_EVAL_INIT },
112 [EXTCHK_HAPROXY_SERVER_NAME] = { "HAPROXY_SERVER_NAME", EXTCHK_SIZE_EVAL_INIT },
113 [EXTCHK_HAPROXY_SERVER_ID] = { "HAPROXY_SERVER_ID", EXTCHK_SIZE_EVAL_INIT },
114 [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_EVAL_INIT },
115 [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_EVAL_INIT },
116 [EXTCHK_HAPROXY_SERVER_MAXCONN] = { "HAPROXY_SERVER_MAXCONN", EXTCHK_SIZE_EVAL_INIT },
117 [EXTCHK_HAPROXY_SERVER_CURCONN] = { "HAPROXY_SERVER_CURCONN", EXTCHK_SIZE_ULONG },
118};
119
Simon Horman63a4a822012-03-19 07:24:41 +0900120static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100121 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
122
123 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
124 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
125
126 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
127 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
128 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
129 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
130
131 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
132 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
133 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
134};
135
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200136/*
137 * Convert check_status code to description
138 */
139const char *get_check_status_description(short check_status) {
140
141 const char *desc;
142
143 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200144 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200145 else
146 desc = NULL;
147
148 if (desc && *desc)
149 return desc;
150 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200151 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200152}
153
154/*
155 * Convert check_status code to short info
156 */
157const char *get_check_status_info(short check_status) {
158
159 const char *info;
160
161 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200162 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200163 else
164 info = NULL;
165
166 if (info && *info)
167 return info;
168 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200169 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200170}
171
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100172const char *get_analyze_status(short analyze_status) {
173
174 const char *desc;
175
176 if (analyze_status < HANA_STATUS_SIZE)
177 desc = analyze_statuses[analyze_status].desc;
178 else
179 desc = NULL;
180
181 if (desc && *desc)
182 return desc;
183 else
184 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
185}
186
Willy Tarreaua150cf12014-05-20 21:57:23 +0200187/* Builds a string containing some information about the health check's result.
188 * The output string is allocated from the trash chunks. If the check is NULL,
189 * NULL is returned. This is designed to be used when emitting logs about health
190 * checks.
Willy Tarreauddd329c2014-05-16 16:46:12 +0200191 */
Willy Tarreaua150cf12014-05-20 21:57:23 +0200192static const char *check_reason_string(struct check *check)
Willy Tarreauddd329c2014-05-16 16:46:12 +0200193{
Willy Tarreaua150cf12014-05-20 21:57:23 +0200194 struct chunk *msg;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200195
Willy Tarreaua150cf12014-05-20 21:57:23 +0200196 if (!check)
197 return NULL;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200198
Willy Tarreaua150cf12014-05-20 21:57:23 +0200199 msg = get_trash_chunk();
200 chunk_printf(msg, "reason: %s", get_check_status_description(check->status));
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200201
Willy Tarreaua150cf12014-05-20 21:57:23 +0200202 if (check->status >= HCHK_STATUS_L57DATA)
203 chunk_appendf(msg, ", code: %d", check->code);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200204
Willy Tarreaua150cf12014-05-20 21:57:23 +0200205 if (*check->desc) {
206 struct chunk src;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200207
Willy Tarreaua150cf12014-05-20 21:57:23 +0200208 chunk_appendf(msg, ", info: \"");
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200209
Willy Tarreaua150cf12014-05-20 21:57:23 +0200210 chunk_initlen(&src, check->desc, 0, strlen(check->desc));
211 chunk_asciiencode(msg, &src, '"');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200212
Willy Tarreaua150cf12014-05-20 21:57:23 +0200213 chunk_appendf(msg, "\"");
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200214 }
215
Willy Tarreaua150cf12014-05-20 21:57:23 +0200216 if (check->duration >= 0)
217 chunk_appendf(msg, ", check duration: %ldms", check->duration);
218
219 return msg->str;
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200220}
221
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200222/*
Simon Horman4a741432013-02-23 15:35:38 +0900223 * Set check->status, update check->duration and fill check->result with
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200224 * an adequate CHK_RES_* value. The new check->health is computed based
225 * on the result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200226 *
227 * Show information in logs about failed health check if server is UP
228 * or succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200229 */
Simon Horman4a741432013-02-23 15:35:38 +0900230static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100231{
Simon Horman4a741432013-02-23 15:35:38 +0900232 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200233 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200234 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900235
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200236 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100237 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900238 check->desc[0] = '\0';
239 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200240 return;
241 }
242
Simon Horman4a741432013-02-23 15:35:38 +0900243 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200244 return;
245
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200246 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900247 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
248 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200249 } else
Simon Horman4a741432013-02-23 15:35:38 +0900250 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200251
Simon Horman4a741432013-02-23 15:35:38 +0900252 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200253 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900254 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200255
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100256 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900257 check->duration = -1;
258 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200259 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900260 check->duration = tv_ms_elapsed(&check->start, &now);
261 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200262 }
263
Willy Tarreau23964182014-05-20 20:56:30 +0200264 /* no change is expected if no state change occurred */
265 if (check->result == CHK_RES_NEUTRAL)
266 return;
267
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200268 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200269
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200270 switch (check->result) {
271 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200272 /* Failure to connect to the agent as a secondary check should not
273 * cause the server to be marked down.
274 */
275 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900276 (check->status >= HCHK_STATUS_L57DATA)) &&
Willy Tarreau12634e12014-05-23 11:32:36 +0200277 (check->health >= check->rise)) {
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200278 s->counters.failed_checks++;
279 report = 1;
280 check->health--;
281 if (check->health < check->rise)
282 check->health = 0;
283 }
284 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200285
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200286 case CHK_RES_PASSED:
287 case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */
288 if ((check->health < check->rise + check->fall - 1) &&
289 (check->result == CHK_RES_PASSED || check->health > 0)) {
290 report = 1;
291 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200292
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200293 if (check->health >= check->rise)
294 check->health = check->rise + check->fall - 1; /* OK now */
295 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200296
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200297 /* clear consecutive_errors if observing is enabled */
298 if (s->onerror)
299 s->consecutive_errors = 0;
300 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100301
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200302 default:
303 break;
304 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200305
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200306 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
307 (status != prev_status || report)) {
308 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200309 "%s check for %sserver %s/%s %s%s",
310 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200311 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100312 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100313 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200314 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200315
Willy Tarreaua150cf12014-05-20 21:57:23 +0200316 srv_append_status(&trash, s, check_reason_string(check), -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200317
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100318 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200319 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
320 (check->health >= check->rise) ? check->fall : check->rise,
321 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200322
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100323 Warning("%s.\n", trash.str);
324 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman7ea9be02015-04-30 13:10:33 +0900325 send_email_alert(s, LOG_INFO, "%s", trash.str);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200326 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200327}
328
Willy Tarreau4eec5472014-05-20 22:32:27 +0200329/* Marks the check <check>'s server down if the current check is already failed
330 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200331 */
Willy Tarreau4eec5472014-05-20 22:32:27 +0200332static void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200333{
Simon Horman4a741432013-02-23 15:35:38 +0900334 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900335
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200336 /* The agent secondary check should only cause a server to be marked
337 * as down if check->status is HCHK_STATUS_L7STS, which indicates
338 * that the agent returned "fail", "stopped" or "down".
339 * The implication here is that failure to connect to the agent
340 * as a secondary check should not cause the server to be marked
341 * down. */
342 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
343 return;
344
Willy Tarreau4eec5472014-05-20 22:32:27 +0200345 if (check->health > 0)
346 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100347
Willy Tarreau4eec5472014-05-20 22:32:27 +0200348 /* We only report a reason for the check if we did not do so previously */
349 srv_set_stopped(s, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check_reason_string(check) : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200350}
351
Willy Tarreauaf549582014-05-16 17:37:50 +0200352/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200353 * it isn't in maintenance, it is not tracking a down server and other checks
354 * comply. The rule is simple : by default, a server is up, unless any of the
355 * following conditions is true :
356 * - health check failed (check->health < rise)
357 * - agent check failed (agent->health < rise)
358 * - the server tracks a down server (track && track->state == STOPPED)
359 * Note that if the server has a slowstart, it will switch to STARTING instead
360 * of RUNNING. Also, only the health checks support the nolb mode, so the
361 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200362 */
Willy Tarreau3e048382014-05-21 10:30:54 +0200363static void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200364{
Simon Horman4a741432013-02-23 15:35:38 +0900365 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100366
Willy Tarreauaf549582014-05-16 17:37:50 +0200367 if (s->admin & SRV_ADMF_MAINT)
368 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100369
Willy Tarreau3e048382014-05-21 10:30:54 +0200370 if (s->track && s->track->state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200371 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100372
Willy Tarreau3e048382014-05-21 10:30:54 +0200373 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
374 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100375
Willy Tarreau3e048382014-05-21 10:30:54 +0200376 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
377 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200378
Willy Tarreau3e048382014-05-21 10:30:54 +0200379 if ((check->state & CHK_ST_AGENT) && s->state == SRV_ST_STOPPING)
380 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100381
Willy Tarreau3e048382014-05-21 10:30:54 +0200382 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 +0100383}
384
Willy Tarreaudb58b792014-05-21 13:57:23 +0200385/* Marks the check <check> as valid and tries to set its server into stopping mode
386 * if it was running or starting, and provided it isn't in maintenance and other
387 * checks comply. The conditions for the server to be marked in stopping mode are
388 * the same as for it to be turned up. Also, only the health checks support the
389 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200390 */
Willy Tarreaudb58b792014-05-21 13:57:23 +0200391static void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200392{
Simon Horman4a741432013-02-23 15:35:38 +0900393 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100394
Willy Tarreauaf549582014-05-16 17:37:50 +0200395 if (s->admin & SRV_ADMF_MAINT)
396 return;
397
Willy Tarreaudb58b792014-05-21 13:57:23 +0200398 if (check->state & CHK_ST_AGENT)
399 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100400
Willy Tarreaudb58b792014-05-21 13:57:23 +0200401 if (s->track && s->track->state == SRV_ST_STOPPED)
402 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100403
Willy Tarreaudb58b792014-05-21 13:57:23 +0200404 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
405 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100406
Willy Tarreaudb58b792014-05-21 13:57:23 +0200407 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
408 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100409
Willy Tarreaudb58b792014-05-21 13:57:23 +0200410 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 +0100411}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200412
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100413/* note: use health_adjust() only, which first checks that the observe mode is
414 * enabled.
415 */
416void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100417{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100418 int failed;
419 int expire;
420
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100421 if (s->observe >= HANA_OBS_SIZE)
422 return;
423
Willy Tarreaubb956662013-01-24 00:37:39 +0100424 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100425 return;
426
427 switch (analyze_statuses[status].lr[s->observe - 1]) {
428 case 1:
429 failed = 1;
430 break;
431
432 case 2:
433 failed = 0;
434 break;
435
436 default:
437 return;
438 }
439
440 if (!failed) {
441 /* good: clear consecutive_errors */
442 s->consecutive_errors = 0;
443 return;
444 }
445
446 s->consecutive_errors++;
447
448 if (s->consecutive_errors < s->consecutive_errors_limit)
449 return;
450
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100451 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
452 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100453
454 switch (s->onerror) {
455 case HANA_ONERR_FASTINTER:
456 /* force fastinter - nothing to do here as all modes force it */
457 break;
458
459 case HANA_ONERR_SUDDTH:
460 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900461 if (s->check.health > s->check.rise)
462 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100463
464 /* no break - fall through */
465
466 case HANA_ONERR_FAILCHK:
467 /* simulate a failed health check */
Simon Horman4a741432013-02-23 15:35:38 +0900468 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200469 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100470 break;
471
472 case HANA_ONERR_MARKDWN:
473 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900474 s->check.health = s->check.rise;
Simon Horman4a741432013-02-23 15:35:38 +0900475 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200476 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100477 break;
478
479 default:
480 /* write a warning? */
481 break;
482 }
483
484 s->consecutive_errors = 0;
485 s->counters.failed_hana++;
486
Simon Horman66183002013-02-23 10:16:43 +0900487 if (s->check.fastinter) {
488 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300489 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200490 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300491 /* requeue check task with new expire */
492 task_queue(s->check.task);
493 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100494 }
495}
496
Willy Tarreaua1dab552014-04-14 15:04:54 +0200497static int httpchk_build_status_header(struct server *s, char *buffer, int size)
Willy Tarreauef781042010-01-27 11:53:01 +0100498{
499 int sv_state;
500 int ratio;
501 int hlen = 0;
Joseph Lynch514061c2015-01-15 17:52:59 -0800502 char addr[46];
503 char port[6];
Willy Tarreauef781042010-01-27 11:53:01 +0100504 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
505 "UP %d/%d", "UP",
506 "NOLB %d/%d", "NOLB",
507 "no check" };
508
509 memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24);
510 hlen += 24;
511
Willy Tarreauff5ae352013-12-11 20:36:34 +0100512 if (!(s->check.state & CHK_ST_ENABLED))
513 sv_state = 6;
Willy Tarreau892337c2014-05-13 23:41:20 +0200514 else if (s->state != SRV_ST_STOPPED) {
Simon Horman58c32972013-11-25 10:46:38 +0900515 if (s->check.health == s->check.rise + s->check.fall - 1)
Willy Tarreauef781042010-01-27 11:53:01 +0100516 sv_state = 3; /* UP */
517 else
518 sv_state = 2; /* going down */
519
Willy Tarreau892337c2014-05-13 23:41:20 +0200520 if (s->state == SRV_ST_STOPPING)
Willy Tarreauef781042010-01-27 11:53:01 +0100521 sv_state += 2;
522 } else {
Simon Horman125d0992013-02-24 17:23:38 +0900523 if (s->check.health)
Willy Tarreauef781042010-01-27 11:53:01 +0100524 sv_state = 1; /* going up */
525 else
526 sv_state = 0; /* DOWN */
527 }
528
Willy Tarreaua1dab552014-04-14 15:04:54 +0200529 hlen += snprintf(buffer + hlen, size - hlen,
Willy Tarreauef781042010-01-27 11:53:01 +0100530 srv_hlt_st[sv_state],
Willy Tarreau892337c2014-05-13 23:41:20 +0200531 (s->state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
532 (s->state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreauef781042010-01-27 11:53:01 +0100533
Joseph Lynch514061c2015-01-15 17:52:59 -0800534 addr_to_str(&s->addr, addr, sizeof(addr));
535 port_to_str(&s->addr, port, sizeof(port));
536
537 hlen += snprintf(buffer + hlen, size - hlen, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
538 addr, port, s->proxy->id, s->id,
Willy Tarreauef781042010-01-27 11:53:01 +0100539 global.node,
540 (s->eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
541 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
542 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
543 s->nbpend);
544
Willy Tarreau892337c2014-05-13 23:41:20 +0200545 if ((s->state == SRV_ST_STARTING) &&
Willy Tarreauef781042010-01-27 11:53:01 +0100546 now.tv_sec < s->last_change + s->slowstart &&
547 now.tv_sec >= s->last_change) {
548 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
Willy Tarreaua1dab552014-04-14 15:04:54 +0200549 hlen += snprintf(buffer + hlen, size - hlen, "; throttle=%d%%", ratio);
Willy Tarreauef781042010-01-27 11:53:01 +0100550 }
551
552 buffer[hlen++] = '\r';
553 buffer[hlen++] = '\n';
554
555 return hlen;
556}
557
Willy Tarreau20a18342013-12-05 00:31:46 +0100558/* Check the connection. If an error has already been reported or the socket is
559 * closed, keep errno intact as it is supposed to contain the valid error code.
560 * If no error is reported, check the socket's error queue using getsockopt().
561 * Warning, this must be done only once when returning from poll, and never
562 * after an I/O error was attempted, otherwise the error queue might contain
563 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
564 * socket. Returns non-zero if an error was reported, zero if everything is
565 * clean (including a properly closed socket).
566 */
567static int retrieve_errno_from_socket(struct connection *conn)
568{
569 int skerr;
570 socklen_t lskerr = sizeof(skerr);
571
572 if (conn->flags & CO_FL_ERROR && ((errno && errno != EAGAIN) || !conn->ctrl))
573 return 1;
574
Willy Tarreau3c728722014-01-23 13:50:42 +0100575 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100576 return 0;
577
578 if (getsockopt(conn->t.sock.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
579 errno = skerr;
580
581 if (errno == EAGAIN)
582 errno = 0;
583
584 if (!errno) {
585 /* we could not retrieve an error, that does not mean there is
586 * none. Just don't change anything and only report the prior
587 * error if any.
588 */
589 if (conn->flags & CO_FL_ERROR)
590 return 1;
591 else
592 return 0;
593 }
594
595 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
596 return 1;
597}
598
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100599/* Try to collect as much information as possible on the connection status,
600 * and adjust the server status accordingly. It may make use of <errno_bck>
601 * if non-null when the caller is absolutely certain of its validity (eg:
602 * checked just after a syscall). If the caller doesn't have a valid errno,
603 * it can pass zero, and retrieve_errno_from_socket() will be called to try
604 * to extract errno from the socket. If no error is reported, it will consider
605 * the <expired> flag. This is intended to be used when a connection error was
606 * reported in conn->flags or when a timeout was reported in <expired>. The
607 * function takes care of not updating a server status which was already set.
608 * All situations where at least one of <expired> or CO_FL_ERROR are set
609 * produce a status.
610 */
611static void chk_report_conn_err(struct connection *conn, int errno_bck, int expired)
612{
613 struct check *check = conn->owner;
614 const char *err_msg;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200615 struct chunk *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200616 int step;
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200617 char *comment;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100618
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100619 if (check->result != CHK_RES_UNKNOWN)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100620 return;
621
622 errno = errno_bck;
623 if (!errno || errno == EAGAIN)
624 retrieve_errno_from_socket(conn);
625
626 if (!(conn->flags & CO_FL_ERROR) && !expired)
627 return;
628
629 /* we'll try to build a meaningful error message depending on the
630 * context of the error possibly present in conn->err_code, and the
631 * socket error possibly collected above. This is useful to know the
632 * exact step of the L6 layer (eg: SSL handshake).
633 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200634 chk = get_trash_chunk();
635
636 if (check->type == PR_O2_TCPCHK_CHK) {
Simon Hormane16c1b32015-01-30 11:22:57 +0900637 step = tcpcheck_get_step_id(check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200638 if (!step)
639 chunk_printf(chk, " at initial connection step of tcp-check");
640 else {
641 chunk_printf(chk, " at step %d of tcp-check", step);
642 /* we were looking for a string */
643 if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_CONNECT) {
644 if (check->last_started_step->port)
645 chunk_appendf(chk, " (connect port %d)" ,check->last_started_step->port);
646 else
647 chunk_appendf(chk, " (connect)");
648 }
649 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) {
650 if (check->last_started_step->string)
Baptiste Assmann96a5c9b2015-05-01 08:09:29 +0200651 chunk_appendf(chk, " (expect string '%s')", check->last_started_step->string);
Willy Tarreau213c6782014-10-02 14:51:02 +0200652 else if (check->last_started_step->expect_regex)
653 chunk_appendf(chk, " (expect regex)");
654 }
655 else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_SEND) {
656 chunk_appendf(chk, " (send)");
657 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200658
659 comment = tcpcheck_get_step_comment(check, step);
660 if (comment)
661 chunk_appendf(chk, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200662 }
663 }
664
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100665 if (conn->err_code) {
666 if (errno && errno != EAGAIN)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200667 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100668 else
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200669 chunk_printf(&trash, "%s%s", conn_err_code_str(conn), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100670 err_msg = trash.str;
671 }
672 else {
673 if (errno && errno != EAGAIN) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200674 chunk_printf(&trash, "%s%s", strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100675 err_msg = trash.str;
676 }
677 else {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200678 err_msg = chk->str;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100679 }
680 }
681
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200682 if (check->state & CHK_ST_PORT_MISS) {
683 /* NOTE: this is reported after <fall> tries */
684 chunk_printf(chk, "No port available for the TCP connection");
685 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
686 }
687
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100688 if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L4_CONN)) == CO_FL_WAIT_L4_CONN) {
689 /* L4 not established (yet) */
690 if (conn->flags & CO_FL_ERROR)
691 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
692 else if (expired)
693 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200694
695 /*
696 * might be due to a server IP change.
697 * Let's trigger a DNS resolution if none are currently running.
698 */
699 if ((check->server->resolution) && (check->server->resolution->step == RSLV_STEP_NONE))
700 trigger_resolution(check->server);
701
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100702 }
703 else if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L6_CONN)) == CO_FL_WAIT_L6_CONN) {
704 /* L6 not established (yet) */
705 if (conn->flags & CO_FL_ERROR)
706 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
707 else if (expired)
708 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
709 }
710 else if (conn->flags & CO_FL_ERROR) {
711 /* I/O error after connection was established and before we could diagnose */
712 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
713 }
714 else if (expired) {
715 /* connection established but expired check */
716 if (check->type == PR_O2_SSL3_CHK)
717 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
718 else /* HTTP, SMTP, ... */
719 set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg);
720 }
721
722 return;
723}
724
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725/*
726 * This function is used only for server health-checks. It handles
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200727 * the connection acknowledgement. If the proxy requires L7 health-checks,
728 * it sends the request. In other cases, it calls set_server_check_status()
Simon Horman4a741432013-02-23 15:35:38 +0900729 * to set check->status, check->duration and check->result.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200731static void event_srv_chk_w(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732{
Simon Horman4a741432013-02-23 15:35:38 +0900733 struct check *check = conn->owner;
734 struct server *s = check->server;
Simon Horman4a741432013-02-23 15:35:38 +0900735 struct task *t = check->task;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200736
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100737 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100738 goto out_wakeup;
739
Willy Tarreau310987a2014-01-22 19:46:33 +0100740 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100741 return;
742
Willy Tarreau20a18342013-12-05 00:31:46 +0100743 if (retrieve_errno_from_socket(conn)) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100744 chk_report_conn_err(conn, errno, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100745 __conn_data_stop_both(conn);
746 goto out_wakeup;
747 }
Krzysztof Piotr Oledzki6492db52010-01-02 22:03:01 +0100748
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100749 if (conn->flags & (CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH)) {
Willy Tarreau20a18342013-12-05 00:31:46 +0100750 /* if the output is closed, we can't do anything */
751 conn->flags |= CO_FL_ERROR;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100752 chk_report_conn_err(conn, 0, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100753 goto out_wakeup;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200754 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200755
Willy Tarreau06559ac2013-12-05 01:53:08 +0100756 /* here, we know that the connection is established. That's enough for
757 * a pure TCP check.
758 */
759 if (!check->type)
760 goto out_wakeup;
761
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200762 if (check->type == PR_O2_TCPCHK_CHK) {
763 tcpcheck_main(conn);
764 return;
765 }
766
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100767 if (check->bo->o) {
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100768 conn->xprt->snd_buf(conn, check->bo, 0);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100769 if (conn->flags & CO_FL_ERROR) {
770 chk_report_conn_err(conn, errno, 0);
771 __conn_data_stop_both(conn);
772 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200773 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100774 if (check->bo->o)
775 return;
776 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200777
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100778 /* full request sent, we allow up to <timeout.check> if nonzero for a response */
779 if (s->proxy->timeout.check) {
780 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
781 task_queue(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200782 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100783 goto out_nowake;
784
Willy Tarreau83749182007-04-15 20:56:27 +0200785 out_wakeup:
Willy Tarreaufdccded2008-08-29 18:19:04 +0200786 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau83749182007-04-15 20:56:27 +0200787 out_nowake:
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200788 __conn_data_stop_send(conn); /* nothing more to write */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789}
790
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200792 * This function is used only for server health-checks. It handles the server's
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +0200793 * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls
Simon Horman4a741432013-02-23 15:35:38 +0900794 * set_server_check_status() to update check->status, check->duration
795 * and check->result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200796
797 * The set_server_check_status function is called with HCHK_STATUS_L7OKD if
798 * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server
799 * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in
800 * response to an SSL HELLO (the principle is that this is enough to
801 * distinguish between an SSL server and a pure TCP relay). All other cases will
802 * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP,
803 * etc.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200805static void event_srv_chk_r(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200806{
Simon Horman4a741432013-02-23 15:35:38 +0900807 struct check *check = conn->owner;
808 struct server *s = check->server;
809 struct task *t = check->task;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200810 char *desc;
Willy Tarreau03938182010-03-17 21:52:07 +0100811 int done;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +0200812 unsigned short msglen;
Willy Tarreau83749182007-04-15 20:56:27 +0200813
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100814 if (unlikely(check->result == CHK_RES_FAILED))
Willy Tarreau83749182007-04-15 20:56:27 +0200815 goto out_wakeup;
Willy Tarreau83749182007-04-15 20:56:27 +0200816
Willy Tarreau310987a2014-01-22 19:46:33 +0100817 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200818 return;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200819
820 if (check->type == PR_O2_TCPCHK_CHK) {
821 tcpcheck_main(conn);
822 return;
823 }
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200824
Willy Tarreau83749182007-04-15 20:56:27 +0200825 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
826 * but the connection was closed on the remote end. Fortunately, recv still
827 * works correctly and we don't need to do the getsockopt() on linux.
828 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000829
830 /* Set buffer to point to the end of the data already read, and check
831 * that there is free space remaining. If the buffer is full, proceed
832 * with running the checks without attempting another socket read.
833 */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000834
Willy Tarreau03938182010-03-17 21:52:07 +0100835 done = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +0000836
Simon Horman4a741432013-02-23 15:35:38 +0900837 conn->xprt->rcv_buf(conn, check->bi, check->bi->size);
Willy Tarreauf1503172012-09-28 19:39:36 +0200838 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH)) {
Willy Tarreau03938182010-03-17 21:52:07 +0100839 done = 1;
Simon Horman4a741432013-02-23 15:35:38 +0900840 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
Willy Tarreauf1503172012-09-28 19:39:36 +0200841 /* Report network errors only if we got no other data. Otherwise
842 * we'll let the upper layers decide whether the response is OK
843 * or not. It is very common that an RST sent by the server is
844 * reported as an error just after the last data chunk.
845 */
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100846 chk_report_conn_err(conn, errno, 0);
Willy Tarreauc1a07962010-03-16 20:55:43 +0100847 goto out_wakeup;
848 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200849 }
850
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100851
Willy Tarreau03938182010-03-17 21:52:07 +0100852 /* Intermediate or complete response received.
Simon Horman4a741432013-02-23 15:35:38 +0900853 * Terminate string in check->bi->data buffer.
Willy Tarreau03938182010-03-17 21:52:07 +0100854 */
Simon Horman4a741432013-02-23 15:35:38 +0900855 if (check->bi->i < check->bi->size)
856 check->bi->data[check->bi->i] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100857 else {
Simon Horman4a741432013-02-23 15:35:38 +0900858 check->bi->data[check->bi->i - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +0100859 done = 1; /* buffer full, don't wait for more data */
860 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200861
Nick Chalk57b1bf72010-03-16 15:50:46 +0000862 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +0900863 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +0200864 case PR_O2_HTTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900865 if (!done && check->bi->i < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100866 goto wait_more_data;
867
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100868 /* Check if the server speaks HTTP 1.X */
Simon Horman4a741432013-02-23 15:35:38 +0900869 if ((check->bi->i < strlen("HTTP/1.0 000\r")) ||
870 (memcmp(check->bi->data, "HTTP/1.", 7) != 0 ||
871 (*(check->bi->data + 12) != ' ' && *(check->bi->data + 12) != '\r')) ||
872 !isdigit((unsigned char) *(check->bi->data + 9)) || !isdigit((unsigned char) *(check->bi->data + 10)) ||
873 !isdigit((unsigned char) *(check->bi->data + 11))) {
874 cut_crlf(check->bi->data);
875 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200876
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100877 goto out_wakeup;
878 }
879
Simon Horman4a741432013-02-23 15:35:38 +0900880 check->code = str2uic(check->bi->data + 9);
881 desc = ltrim(check->bi->data + 12, ' ');
Nick Chalk57b1bf72010-03-16 15:50:46 +0000882
Willy Tarreaubd741542010-03-16 18:46:54 +0100883 if ((s->proxy->options & PR_O_DISABLE404) &&
Willy Tarreau892337c2014-05-13 23:41:20 +0200884 (s->state != SRV_ST_STOPPED) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +0000885 /* 404 may be accepted as "stopping" only if the server was up */
886 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900887 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000888 }
Willy Tarreaubd741542010-03-16 18:46:54 +0100889 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
890 /* Run content verification check... We know we have at least 13 chars */
891 if (!httpchk_expect(s, done))
892 goto wait_more_data;
893 }
894 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Simon Horman4a741432013-02-23 15:35:38 +0900895 else if (*(check->bi->data + 9) == '2' || *(check->bi->data + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +0100896 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900897 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +0100898 }
Nick Chalk57b1bf72010-03-16 15:50:46 +0000899 else {
900 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +0900901 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000902 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200903 break;
904
905 case PR_O2_SSL3_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900906 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +0100907 goto wait_more_data;
908
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100909 /* Check for SSLv3 alert or handshake */
Simon Horman4a741432013-02-23 15:35:38 +0900910 if ((check->bi->i >= 5) && (*check->bi->data == 0x15 || *check->bi->data == 0x16))
911 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200912 else
Simon Horman4a741432013-02-23 15:35:38 +0900913 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200914 break;
915
916 case PR_O2_SMTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +0900917 if (!done && check->bi->i < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +0100918 goto wait_more_data;
919
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200920 /* Check if the server speaks SMTP */
Simon Horman4a741432013-02-23 15:35:38 +0900921 if ((check->bi->i < strlen("000\r")) ||
922 (*(check->bi->data + 3) != ' ' && *(check->bi->data + 3) != '\r') ||
923 !isdigit((unsigned char) *check->bi->data) || !isdigit((unsigned char) *(check->bi->data + 1)) ||
924 !isdigit((unsigned char) *(check->bi->data + 2))) {
925 cut_crlf(check->bi->data);
926 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200927
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200928 goto out_wakeup;
929 }
930
Simon Horman4a741432013-02-23 15:35:38 +0900931 check->code = str2uic(check->bi->data);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200932
Simon Horman4a741432013-02-23 15:35:38 +0900933 desc = ltrim(check->bi->data + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200934 cut_crlf(desc);
935
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100936 /* Check for SMTP code 2xx (should be 250) */
Simon Horman4a741432013-02-23 15:35:38 +0900937 if (*check->bi->data == '2')
938 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200939 else
Simon Horman4a741432013-02-23 15:35:38 +0900940 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +0200941 break;
942
Simon Hormana2b9dad2013-02-12 10:45:54 +0900943 case PR_O2_LB_AGENT_CHK: {
Willy Tarreau81f5d942013-12-09 20:51:51 +0100944 int status = HCHK_STATUS_CHECKED;
945 const char *hs = NULL; /* health status */
946 const char *as = NULL; /* admin status */
947 const char *ps = NULL; /* performance status */
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200948 const char *cs = NULL; /* maxconn */
Willy Tarreau81f5d942013-12-09 20:51:51 +0100949 const char *err = NULL; /* first error to report */
950 const char *wrn = NULL; /* first warning to report */
951 char *cmd, *p;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900952
Willy Tarreau81f5d942013-12-09 20:51:51 +0100953 /* We're getting an agent check response. The agent could
954 * have been disabled in the mean time with a long check
955 * still pending. It is important that we ignore the whole
956 * response.
957 */
958 if (!(check->server->agent.state & CHK_ST_ENABLED))
959 break;
960
961 /* The agent supports strings made of a single line ended by the
962 * first CR ('\r') or LF ('\n'). This line is composed of words
963 * delimited by spaces (' '), tabs ('\t'), or commas (','). The
964 * line may optionally contained a description of a state change
965 * after a sharp ('#'), which is only considered if a health state
966 * is announced.
967 *
968 * Words may be composed of :
969 * - a numeric weight suffixed by the percent character ('%').
970 * - a health status among "up", "down", "stopped", and "fail".
971 * - an admin status among "ready", "drain", "maint".
972 *
973 * These words may appear in any order. If multiple words of the
974 * same category appear, the last one wins.
975 */
976
Willy Tarreau9809b782013-12-11 21:40:11 +0100977 p = check->bi->data;
978 while (*p && *p != '\n' && *p != '\r')
979 p++;
980
981 if (!*p) {
982 if (!done)
983 goto wait_more_data;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900984
Willy Tarreau9809b782013-12-11 21:40:11 +0100985 /* at least inform the admin that the agent is mis-behaving */
986 set_server_check_status(check, check->status, "Ignoring incomplete line from agent");
987 break;
988 }
Willy Tarreau81f5d942013-12-09 20:51:51 +0100989
Willy Tarreau9809b782013-12-11 21:40:11 +0100990 *p = 0;
Willy Tarreau81f5d942013-12-09 20:51:51 +0100991 cmd = check->bi->data;
Simon Hormana2b9dad2013-02-12 10:45:54 +0900992
Willy Tarreau81f5d942013-12-09 20:51:51 +0100993 while (*cmd) {
994 /* look for next word */
995 if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') {
996 cmd++;
997 continue;
998 }
Simon Horman671b6f02013-11-25 10:46:39 +0900999
Willy Tarreau81f5d942013-12-09 20:51:51 +01001000 if (*cmd == '#') {
1001 /* this is the beginning of a health status description,
1002 * skip the sharp and blanks.
1003 */
1004 cmd++;
1005 while (*cmd == '\t' || *cmd == ' ')
1006 cmd++;
Simon Horman671b6f02013-11-25 10:46:39 +09001007 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001008 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001009
1010 /* find the end of the word so that we have a null-terminated
1011 * word between <cmd> and <p>.
1012 */
1013 p = cmd + 1;
1014 while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',')
1015 p++;
1016 if (*p)
1017 *p++ = 0;
1018
1019 /* first, health statuses */
1020 if (strcasecmp(cmd, "up") == 0) {
1021 check->health = check->rise + check->fall - 1;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001022 status = HCHK_STATUS_L7OKD;
Willy Tarreau81f5d942013-12-09 20:51:51 +01001023 hs = cmd;
1024 }
1025 else if (strcasecmp(cmd, "down") == 0) {
1026 check->health = 0;
1027 status = HCHK_STATUS_L7STS;
1028 hs = cmd;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001029 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001030 else if (strcasecmp(cmd, "stopped") == 0) {
1031 check->health = 0;
1032 status = HCHK_STATUS_L7STS;
1033 hs = cmd;
1034 }
1035 else if (strcasecmp(cmd, "fail") == 0) {
1036 check->health = 0;
1037 status = HCHK_STATUS_L7STS;
1038 hs = cmd;
1039 }
1040 /* admin statuses */
1041 else if (strcasecmp(cmd, "ready") == 0) {
1042 as = cmd;
1043 }
1044 else if (strcasecmp(cmd, "drain") == 0) {
1045 as = cmd;
1046 }
1047 else if (strcasecmp(cmd, "maint") == 0) {
1048 as = cmd;
1049 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001050 /* try to parse a weight here and keep the last one */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001051 else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) {
1052 ps = cmd;
1053 }
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001054 /* try to parse a maxconn here */
1055 else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) {
1056 cs = cmd;
1057 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001058 else {
1059 /* keep a copy of the first error */
1060 if (!err)
1061 err = cmd;
1062 }
1063 /* skip to next word */
1064 cmd = p;
1065 }
1066 /* here, cmd points either to \0 or to the beginning of a
1067 * description. Skip possible leading spaces.
1068 */
1069 while (*cmd == ' ' || *cmd == '\n')
1070 cmd++;
1071
1072 /* First, update the admin status so that we avoid sending other
1073 * possibly useless warnings and can also update the health if
1074 * present after going back up.
1075 */
1076 if (as) {
1077 if (strcasecmp(as, "drain") == 0)
1078 srv_adm_set_drain(check->server);
1079 else if (strcasecmp(as, "maint") == 0)
1080 srv_adm_set_maint(check->server);
1081 else
1082 srv_adm_set_ready(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001083 }
1084
Willy Tarreau81f5d942013-12-09 20:51:51 +01001085 /* now change weights */
1086 if (ps) {
1087 const char *msg;
1088
1089 msg = server_parse_weight_change_request(s, ps);
1090 if (!wrn || !*wrn)
1091 wrn = msg;
1092 }
1093
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001094 if (cs) {
1095 const char *msg;
1096
1097 cs += strlen("maxconn:");
1098
1099 msg = server_parse_maxconn_change_request(s, cs);
1100 if (!wrn || !*wrn)
1101 wrn = msg;
1102 }
1103
Willy Tarreau81f5d942013-12-09 20:51:51 +01001104 /* and finally health status */
1105 if (hs) {
1106 /* We'll report some of the warnings and errors we have
1107 * here. Down reports are critical, we leave them untouched.
1108 * Lack of report, or report of 'UP' leaves the room for
1109 * ERR first, then WARN.
Simon Hormana2b9dad2013-02-12 10:45:54 +09001110 */
Willy Tarreau81f5d942013-12-09 20:51:51 +01001111 const char *msg = cmd;
1112 struct chunk *t;
1113
1114 if (!*msg || status == HCHK_STATUS_L7OKD) {
1115 if (err && *err)
1116 msg = err;
1117 else if (wrn && *wrn)
1118 msg = wrn;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001119 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001120
1121 t = get_trash_chunk();
1122 chunk_printf(t, "via agent : %s%s%s%s",
1123 hs, *msg ? " (" : "",
1124 msg, *msg ? ")" : "");
1125
1126 set_server_check_status(check, status, t->str);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001127 }
Willy Tarreau81f5d942013-12-09 20:51:51 +01001128 else if (err && *err) {
1129 /* No status change but we'd like to report something odd.
1130 * Just report the current state and copy the message.
1131 */
1132 chunk_printf(&trash, "agent reports an error : %s", err);
1133 set_server_check_status(check, status/*check->status*/, trash.str);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001134
Willy Tarreau81f5d942013-12-09 20:51:51 +01001135 }
1136 else if (wrn && *wrn) {
1137 /* No status change but we'd like to report something odd.
1138 * Just report the current state and copy the message.
1139 */
1140 chunk_printf(&trash, "agent warns : %s", wrn);
1141 set_server_check_status(check, status/*check->status*/, trash.str);
1142 }
1143 else
1144 set_server_check_status(check, status, NULL);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001145 break;
1146 }
1147
Willy Tarreau1620ec32011-08-06 17:05:02 +02001148 case PR_O2_PGSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001149 if (!done && check->bi->i < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001150 goto wait_more_data;
1151
Simon Horman4a741432013-02-23 15:35:38 +09001152 if (check->bi->data[0] == 'R') {
1153 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001154 }
1155 else {
Simon Horman4a741432013-02-23 15:35:38 +09001156 if ((check->bi->data[0] == 'E') && (check->bi->data[5]!=0) && (check->bi->data[6]!=0))
1157 desc = &check->bi->data[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001158 else
1159 desc = "PostgreSQL unknown error";
1160
Simon Horman4a741432013-02-23 15:35:38 +09001161 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001162 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001163 break;
1164
1165 case PR_O2_REDIS_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001166 if (!done && check->bi->i < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001167 goto wait_more_data;
1168
Simon Horman4a741432013-02-23 15:35:38 +09001169 if (strcmp(check->bi->data, "+PONG\r\n") == 0) {
1170 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001171 }
1172 else {
Simon Horman4a741432013-02-23 15:35:38 +09001173 set_server_check_status(check, HCHK_STATUS_L7STS, check->bi->data);
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001174 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001175 break;
1176
1177 case PR_O2_MYSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001178 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001179 goto wait_more_data;
1180
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001181 if (s->proxy->check_len == 0) { // old mode
Simon Horman4a741432013-02-23 15:35:38 +09001182 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001183 /* We set the MySQL Version in description for information purpose
1184 * FIXME : it can be cool to use MySQL Version for other purpose,
1185 * like mark as down old MySQL server.
1186 */
Simon Horman4a741432013-02-23 15:35:38 +09001187 if (check->bi->i > 51) {
1188 desc = ltrim(check->bi->data + 5, ' ');
1189 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001190 }
1191 else {
1192 if (!done)
1193 goto wait_more_data;
1194 /* it seems we have a OK packet but without a valid length,
1195 * it must be a protocol error
1196 */
Simon Horman4a741432013-02-23 15:35:38 +09001197 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001198 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001199 }
1200 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001201 /* An error message is attached in the Error packet */
Simon Horman4a741432013-02-23 15:35:38 +09001202 desc = ltrim(check->bi->data + 7, ' ');
1203 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001204 }
1205 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001206 unsigned int first_packet_len = ((unsigned int) *check->bi->data) +
1207 (((unsigned int) *(check->bi->data + 1)) << 8) +
1208 (((unsigned int) *(check->bi->data + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001209
Simon Horman4a741432013-02-23 15:35:38 +09001210 if (check->bi->i == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001211 /* MySQL Error packet always begin with field_count = 0xff */
Simon Horman4a741432013-02-23 15:35:38 +09001212 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001213 /* We have only one MySQL packet and it is a Handshake Initialization packet
1214 * but we need to have a second packet to know if it is alright
1215 */
Simon Horman4a741432013-02-23 15:35:38 +09001216 if (!done && check->bi->i < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001217 goto wait_more_data;
1218 }
1219 else {
1220 /* We have only one packet and it is an Error packet,
1221 * an error message is attached, so we can display it
1222 */
Simon Horman4a741432013-02-23 15:35:38 +09001223 desc = &check->bi->data[7];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001224 //Warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001225 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001226 }
Simon Horman4a741432013-02-23 15:35:38 +09001227 } else if (check->bi->i > first_packet_len + 4) {
1228 unsigned int second_packet_len = ((unsigned int) *(check->bi->data + first_packet_len + 4)) +
1229 (((unsigned int) *(check->bi->data + first_packet_len + 5)) << 8) +
1230 (((unsigned int) *(check->bi->data + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001231
Simon Horman4a741432013-02-23 15:35:38 +09001232 if (check->bi->i == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001233 /* We have 2 packets and that's good */
1234 /* Check if the second packet is a MySQL Error packet or not */
Simon Horman4a741432013-02-23 15:35:38 +09001235 if (*(check->bi->data + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001236 /* No error packet */
1237 /* We set the MySQL Version in description for information purpose */
Simon Horman4a741432013-02-23 15:35:38 +09001238 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001239 //Warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001240 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001241 }
1242 else {
1243 /* An error message is attached in the Error packet
1244 * so we can display it ! :)
1245 */
Simon Horman4a741432013-02-23 15:35:38 +09001246 desc = &check->bi->data[first_packet_len+11];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001247 //Warning("2packetERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001248 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001249 }
1250 }
1251 }
1252 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001253 if (!done)
1254 goto wait_more_data;
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001255 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001256 * it must be a protocol error
1257 */
Simon Horman4a741432013-02-23 15:35:38 +09001258 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001259 //Warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001260 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001261 }
1262 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001263 break;
1264
1265 case PR_O2_LDAP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001266 if (!done && check->bi->i < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001267 goto wait_more_data;
1268
1269 /* Check if the server speaks LDAP (ASN.1/BER)
1270 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1271 * http://tools.ietf.org/html/rfc4511
1272 */
1273
1274 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1275 * LDAPMessage: 0x30: SEQUENCE
1276 */
Simon Horman4a741432013-02-23 15:35:38 +09001277 if ((check->bi->i < 14) || (*(check->bi->data) != '\x30')) {
1278 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001279 }
1280 else {
1281 /* size of LDAPMessage */
Simon Horman4a741432013-02-23 15:35:38 +09001282 msglen = (*(check->bi->data + 1) & 0x80) ? (*(check->bi->data + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001283
1284 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1285 * messageID: 0x02 0x01 0x01: INTEGER 1
1286 * protocolOp: 0x61: bindResponse
1287 */
1288 if ((msglen > 2) ||
Simon Horman4a741432013-02-23 15:35:38 +09001289 (memcmp(check->bi->data + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
1290 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001291
1292 goto out_wakeup;
1293 }
1294
1295 /* size of bindResponse */
Simon Horman4a741432013-02-23 15:35:38 +09001296 msglen += (*(check->bi->data + msglen + 6) & 0x80) ? (*(check->bi->data + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001297
1298 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1299 * ldapResult: 0x0a 0x01: ENUMERATION
1300 */
1301 if ((msglen > 4) ||
Simon Horman4a741432013-02-23 15:35:38 +09001302 (memcmp(check->bi->data + 7 + msglen, "\x0a\x01", 2) != 0)) {
1303 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001304
1305 goto out_wakeup;
1306 }
1307
1308 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1309 * resultCode
1310 */
Simon Horman4a741432013-02-23 15:35:38 +09001311 check->code = *(check->bi->data + msglen + 9);
1312 if (check->code) {
1313 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 +02001314 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001315 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001316 }
1317 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001318 break;
1319
1320 default:
Willy Tarreau06559ac2013-12-05 01:53:08 +01001321 /* for other checks (eg: pure TCP), delegate to the main task */
Willy Tarreau1620ec32011-08-06 17:05:02 +02001322 break;
1323 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001324
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001325 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001326 /* collect possible new errors */
1327 if (conn->flags & CO_FL_ERROR)
1328 chk_report_conn_err(conn, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001329
Nick Chalk57b1bf72010-03-16 15:50:46 +00001330 /* Reset the check buffer... */
Simon Horman4a741432013-02-23 15:35:38 +09001331 *check->bi->data = '\0';
1332 check->bi->i = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +00001333
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001334 /* Close the connection... We absolutely want to perform a hard close
1335 * and reset the connection if some data are pending, otherwise we end
1336 * up with many TIME_WAITs and eat all the source port range quickly.
1337 * To avoid sending RSTs all the time, we first try to drain pending
1338 * data.
1339 */
Willy Tarreaub4017d02015-03-12 23:11:26 +01001340 __conn_data_stop_both(conn);
1341 conn_data_shutw_hard(conn);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001342
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001343 /* OK, let's not stay here forever */
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001344 if (check->result == CHK_RES_FAILED)
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001345 conn->flags |= CO_FL_ERROR;
1346
Willy Tarreaufdccded2008-08-29 18:19:04 +02001347 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau3267d362012-08-17 23:53:56 +02001348 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001349
1350 wait_more_data:
Willy Tarreauf817e9f2014-01-10 16:58:45 +01001351 __conn_data_want_recv(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001352}
1353
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001354/*
1355 * This function is used only for server health-checks. It handles connection
1356 * status updates including errors. If necessary, it wakes the check task up.
1357 * It always returns 0.
1358 */
1359static int wake_srv_chk(struct connection *conn)
Willy Tarreau20bea422012-07-06 12:00:49 +02001360{
Simon Horman4a741432013-02-23 15:35:38 +09001361 struct check *check = conn->owner;
Willy Tarreau20bea422012-07-06 12:00:49 +02001362
Willy Tarreau6c560da2012-11-24 11:14:45 +01001363 if (unlikely(conn->flags & CO_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001364 /* We may get error reports bypassing the I/O handlers, typically
1365 * the case when sending a pure TCP check which fails, then the I/O
1366 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001367 * main processing task so let's simply wake it up. If we get here,
1368 * we expect errno to still be valid.
1369 */
1370 chk_report_conn_err(conn, errno, 0);
1371
Willy Tarreau2d351b62013-12-05 02:36:25 +01001372 __conn_data_stop_both(conn);
1373 task_wakeup(check->task, TASK_WOKEN_IO);
1374 }
Willy Tarreau3be293f2014-02-05 18:31:24 +01001375 else if (!(conn->flags & (CO_FL_DATA_RD_ENA|CO_FL_DATA_WR_ENA|CO_FL_HANDSHAKE))) {
1376 /* we may get here if only a connection probe was required : we
1377 * don't have any data to send nor anything expected in response,
1378 * so the completion of the connection establishment is enough.
1379 */
1380 task_wakeup(check->task, TASK_WOKEN_IO);
1381 }
Willy Tarreau2d351b62013-12-05 02:36:25 +01001382
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01001383 if (check->result != CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001384 /* We're here because nobody wants to handle the error, so we
1385 * sure want to abort the hard way.
Willy Tarreau02b0f582013-12-03 15:42:33 +01001386 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01001387 conn_sock_drain(conn);
Willy Tarreauf79c8172013-10-21 16:30:56 +02001388 conn_force_close(conn);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001389 }
Willy Tarreau3267d362012-08-17 23:53:56 +02001390 return 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001391}
1392
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001393struct data_cb check_conn_cb = {
1394 .recv = event_srv_chk_r,
1395 .send = event_srv_chk_w,
1396 .wake = wake_srv_chk,
1397};
1398
Willy Tarreaubaaee002006-06-26 02:48:02 +02001399/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001400 * updates the server's weight during a warmup stage. Once the final weight is
1401 * reached, the task automatically stops. Note that any server status change
1402 * must have updated s->last_change accordingly.
1403 */
1404static struct task *server_warmup(struct task *t)
1405{
1406 struct server *s = t->context;
1407
1408 /* by default, plan on stopping the task */
1409 t->expire = TICK_ETERNITY;
Willy Tarreau20125212014-05-13 19:44:56 +02001410 if ((s->admin & SRV_ADMF_MAINT) ||
Willy Tarreau892337c2014-05-13 23:41:20 +02001411 (s->state != SRV_ST_STARTING))
Willy Tarreau2e993902011-10-31 11:53:20 +01001412 return t;
1413
Willy Tarreau892337c2014-05-13 23:41:20 +02001414 /* recalculate the weights and update the state */
Willy Tarreau004e0452013-11-21 11:22:01 +01001415 server_recalc_eweight(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001416
1417 /* probably that we can refill this server with a bit more connections */
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001418 pendconn_grab_from_px(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001419
1420 /* get back there in 1 second or 1/20th of the slowstart interval,
1421 * whichever is greater, resulting in small 5% steps.
1422 */
Willy Tarreau892337c2014-05-13 23:41:20 +02001423 if (s->state == SRV_ST_STARTING)
Willy Tarreau2e993902011-10-31 11:53:20 +01001424 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1425 return t;
1426}
1427
1428/*
Simon Horman98637e52014-06-20 12:30:16 +09001429 * establish a server health-check that makes use of a connection.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001430 *
1431 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001432 * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called
1433 * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called
1434 * - SF_ERR_SRVTO if there are no more servers
1435 * - SF_ERR_SRVCL if the connection was refused by the server
1436 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1437 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1438 * - SF_ERR_INTERNAL for any other purely internal errors
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001439 * - SF_ERR_CHK_PORT if no port could be found to run a health check on an AF_INET* socket
Willy Tarreaue7dff022015-04-03 01:14:29 +02001440 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Hormanb00d17a2014-06-13 16:18:16 +09001441 * Note that we try to prevent the network stack from sending the ACK during the
1442 * connect() when a pure TCP check is used (without PROXY protocol).
1443 */
Simon Horman98637e52014-06-20 12:30:16 +09001444static int connect_conn_chk(struct task *t)
Simon Hormanb00d17a2014-06-13 16:18:16 +09001445{
1446 struct check *check = t->context;
1447 struct server *s = check->server;
1448 struct connection *conn = check->conn;
1449 struct protocol *proto;
1450 int ret;
Willy Tarreauf3d34822014-12-08 12:11:28 +01001451 int quickack;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001452
1453 /* tcpcheck send/expect initialisation */
1454 if (check->type == PR_O2_TCPCHK_CHK)
1455 check->current_step = NULL;
1456
1457 /* prepare the check buffer.
1458 * This should not be used if check is the secondary agent check
1459 * of a server as s->proxy->check_req will relate to the
1460 * configuration of the primary check. Similarly, tcp-check uses
1461 * its own strings.
1462 */
1463 if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) {
1464 bo_putblk(check->bo, s->proxy->check_req, s->proxy->check_len);
1465
1466 /* we want to check if this host replies to HTTP or SSLv3 requests
1467 * so we'll send the request, and won't wake the checker up now.
1468 */
1469 if ((check->type) == PR_O2_SSL3_CHK) {
1470 /* SSL requires that we put Unix time in the request */
1471 int gmt_time = htonl(date.tv_sec);
1472 memcpy(check->bo->data + 11, &gmt_time, 4);
1473 }
1474 else if ((check->type) == PR_O2_HTTP_CHK) {
1475 if (s->proxy->options2 & PR_O2_CHK_SNDST)
1476 bo_putblk(check->bo, trash.str, httpchk_build_status_header(s, trash.str, trash.size));
Cyril Bonté32602d22015-01-30 00:07:07 +01001477 /* prevent HTTP keep-alive when "http-check expect" is used */
1478 if (s->proxy->options2 & PR_O2_EXP_TYPE)
1479 bo_putstr(check->bo, "Connection: close\r\n");
Simon Hormanb00d17a2014-06-13 16:18:16 +09001480 bo_putstr(check->bo, "\r\n");
1481 *check->bo->p = '\0'; /* to make gdb output easier to read */
1482 }
1483 }
1484
James Brown55f9ff12015-10-21 18:19:05 -07001485 if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) {
1486 bo_putblk(check->bo, check->send_string, check->send_string_len);
1487 }
1488
Simon Hormanb00d17a2014-06-13 16:18:16 +09001489 /* prepare a new connection */
1490 conn_init(conn);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001491
Simon Horman41f58762015-01-30 11:22:56 +09001492 if (is_addr(&check->addr)) {
Simon Hormanb00d17a2014-06-13 16:18:16 +09001493 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09001494 conn->addr.to = check->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001495 }
1496 else {
1497 /* we'll connect to the addr on the server */
1498 conn->addr.to = s->addr;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001499 }
1500
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001501 if ((conn->addr.to.ss_family == AF_INET) || (conn->addr.to.ss_family == AF_INET6)) {
1502 int i = 0;
1503
1504 i = srv_check_healthcheck_port(check);
1505 if (i == 0) {
1506 conn->owner = check;
1507 return SF_ERR_CHK_PORT;
1508 }
1509
1510 set_host_port(&conn->addr.to, i);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001511 }
1512
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001513 proto = protocol_by_family(conn->addr.to.ss_family);
1514
1515 conn_prepare(conn, proto, check->xprt);
1516 conn_attach(conn, check, &check_conn_cb);
1517 conn->target = &s->obj_type;
1518
1519 /* no client address */
1520 clear_addr(&conn->addr.from);
1521
Willy Tarreauf3d34822014-12-08 12:11:28 +01001522 /* only plain tcp-check supports quick ACK */
1523 quickack = check->type == 0 || check->type == PR_O2_TCPCHK_CHK;
1524
Simon Hormane16c1b32015-01-30 11:22:57 +09001525 if (check->type == PR_O2_TCPCHK_CHK && !LIST_ISEMPTY(check->tcpcheck_rules)) {
Willy Tarreau5581c272015-05-13 12:24:53 +02001526 struct tcpcheck_rule *r;
1527
1528 r = LIST_NEXT(check->tcpcheck_rules, struct tcpcheck_rule *, list);
1529
Simon Hormanb00d17a2014-06-13 16:18:16 +09001530 /* if first step is a 'connect', then tcpcheck_main must run it */
1531 if (r->action == TCPCHK_ACT_CONNECT) {
1532 tcpcheck_main(conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001533 return SF_ERR_UP;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001534 }
Willy Tarreauf3d34822014-12-08 12:11:28 +01001535 if (r->action == TCPCHK_ACT_EXPECT)
1536 quickack = 0;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001537 }
1538
Willy Tarreaue7dff022015-04-03 01:14:29 +02001539 ret = SF_ERR_INTERNAL;
Simon Hormanb00d17a2014-06-13 16:18:16 +09001540 if (proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01001541 ret = proto->connect(conn, check->type, quickack ? 2 : 0);
Simon Hormanb00d17a2014-06-13 16:18:16 +09001542 conn->flags |= CO_FL_WAKE_DATA;
1543 if (s->check.send_proxy) {
1544 conn->send_proxy_ofs = 1;
1545 conn->flags |= CO_FL_SEND_PROXY;
1546 }
1547
1548 return ret;
1549}
1550
Simon Horman98637e52014-06-20 12:30:16 +09001551static struct list pid_list = LIST_HEAD_INIT(pid_list);
1552static struct pool_head *pool2_pid_list;
1553
1554void block_sigchld(void)
1555{
1556 sigset_t set;
1557 sigemptyset(&set);
1558 sigaddset(&set, SIGCHLD);
Willy Tarreauebc92442016-06-21 17:29:46 +02001559 assert(sigprocmask(SIG_BLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001560}
1561
1562void unblock_sigchld(void)
1563{
1564 sigset_t set;
1565 sigemptyset(&set);
Willy Tarreauebc92442016-06-21 17:29:46 +02001566 sigaddset(&set, SIGCHLD);
1567 assert(sigprocmask(SIG_UNBLOCK, &set, NULL) == 0);
Simon Horman98637e52014-06-20 12:30:16 +09001568}
1569
Simon Horman98637e52014-06-20 12:30:16 +09001570static struct pid_list *pid_list_add(pid_t pid, struct task *t)
1571{
1572 struct pid_list *elem;
1573 struct check *check = t->context;
1574
1575 elem = pool_alloc2(pool2_pid_list);
1576 if (!elem)
1577 return NULL;
1578 elem->pid = pid;
1579 elem->t = t;
1580 elem->exited = 0;
1581 check->curpid = elem;
1582 LIST_INIT(&elem->list);
1583 LIST_ADD(&pid_list, &elem->list);
1584 return elem;
1585}
1586
Simon Horman98637e52014-06-20 12:30:16 +09001587static void pid_list_del(struct pid_list *elem)
1588{
1589 struct check *check;
1590
1591 if (!elem)
1592 return;
1593
Simon Horman98637e52014-06-20 12:30:16 +09001594 LIST_DEL(&elem->list);
Simon Horman98637e52014-06-20 12:30:16 +09001595 if (!elem->exited)
1596 kill(elem->pid, SIGTERM);
1597
1598 check = elem->t->context;
1599 check->curpid = NULL;
1600 pool_free2(pool2_pid_list, elem);
1601}
1602
1603/* Called from inside SIGCHLD handler, SIGCHLD is blocked */
1604static void pid_list_expire(pid_t pid, int status)
1605{
1606 struct pid_list *elem;
1607
1608 list_for_each_entry(elem, &pid_list, list) {
1609 if (elem->pid == pid) {
1610 elem->t->expire = now_ms;
1611 elem->status = status;
1612 elem->exited = 1;
Cyril Bonté9dbcfab2014-08-07 01:55:39 +02001613 task_wakeup(elem->t, TASK_WOKEN_IO);
Simon Horman98637e52014-06-20 12:30:16 +09001614 return;
1615 }
1616 }
1617}
1618
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001619static void sigchld_handler(struct sig_handler *sh)
Simon Horman98637e52014-06-20 12:30:16 +09001620{
1621 pid_t pid;
1622 int status;
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001623
Simon Horman98637e52014-06-20 12:30:16 +09001624 while ((pid = waitpid(0, &status, WNOHANG)) > 0)
1625 pid_list_expire(pid, status);
1626}
1627
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001628static int init_pid_list(void)
1629{
Simon Horman98637e52014-06-20 12:30:16 +09001630 if (pool2_pid_list != NULL)
1631 /* Nothing to do */
1632 return 0;
1633
Willy Tarreau48d6bf22016-06-21 16:27:34 +02001634 if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) {
Simon Horman98637e52014-06-20 12:30:16 +09001635 Alert("Failed to set signal handler for external health checks: %s. Aborting.\n",
1636 strerror(errno));
1637 return 1;
1638 }
1639
1640 pool2_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED);
1641 if (pool2_pid_list == NULL) {
1642 Alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n",
1643 strerror(errno));
1644 return 1;
1645 }
1646
1647 return 0;
1648}
1649
Cyril Bontéac92a062014-12-27 22:28:38 +01001650/* helper macro to set an environment variable and jump to a specific label on failure. */
1651#define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001652
1653/*
Cyril Bontéac92a062014-12-27 22:28:38 +01001654 * helper function to allocate enough memory to store an environment variable.
1655 * It will also check that the environment variable is updatable, and silently
1656 * fail if not.
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001657 */
Cyril Bontéac92a062014-12-27 22:28:38 +01001658static int extchk_setenv(struct check *check, int idx, const char *value)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001659{
1660 int len, ret;
Cyril Bontéac92a062014-12-27 22:28:38 +01001661 char *envname;
1662 int vmaxlen;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001663
Cyril Bontéac92a062014-12-27 22:28:38 +01001664 if (idx < 0 || idx >= EXTCHK_SIZE) {
1665 Alert("Illegal environment variable index %d. Aborting.\n", idx);
1666 return 1;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001667 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001668
1669 envname = extcheck_envs[idx].name;
1670 vmaxlen = extcheck_envs[idx].vmaxlen;
1671
1672 /* Check if the environment variable is already set, and silently reject
1673 * the update if this one is not updatable. */
1674 if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx]))
1675 return 0;
1676
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001677 /* Instead of sending NOT_USED, sending an empty value is preferable */
1678 if (strcmp(value, "NOT_USED") == 0) {
1679 value = "";
1680 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001681
1682 len = strlen(envname) + 1;
1683 if (vmaxlen == EXTCHK_SIZE_EVAL_INIT)
1684 len += strlen(value);
1685 else
1686 len += vmaxlen;
1687
1688 if (!check->envp[idx])
1689 check->envp[idx] = malloc(len + 1);
1690
1691 if (!check->envp[idx]) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001692 Alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname);
1693 return 1;
1694 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001695 ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001696 if (ret < 0) {
1697 Alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno));
1698 return 1;
1699 }
Cyril Bontéac92a062014-12-27 22:28:38 +01001700 else if (ret > len) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001701 Alert("Environment variable '%s' was truncated. Aborting.\n", envname);
1702 return 1;
1703 }
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001704 return 0;
1705}
Simon Horman98637e52014-06-20 12:30:16 +09001706
1707static int prepare_external_check(struct check *check)
1708{
1709 struct server *s = check->server;
1710 struct proxy *px = s->proxy;
1711 struct listener *listener = NULL, *l;
1712 int i;
Simon Horman98637e52014-06-20 12:30:16 +09001713 const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH;
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001714 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001715
1716 list_for_each_entry(l, &px->conf.listeners, by_fe)
1717 /* Use the first INET, INET6 or UNIX listener */
1718 if (l->addr.ss_family == AF_INET ||
1719 l->addr.ss_family == AF_INET6 ||
1720 l->addr.ss_family == AF_UNIX) {
1721 listener = l;
1722 break;
1723 }
1724
Simon Horman98637e52014-06-20 12:30:16 +09001725 check->curpid = NULL;
Cyril Bontéac92a062014-12-27 22:28:38 +01001726 check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *));
1727 if (!check->envp) {
1728 Alert("Failed to allocate memory for environment variables. Aborting\n");
1729 goto err;
1730 }
Simon Horman98637e52014-06-20 12:30:16 +09001731
Cyril Bontéac92a062014-12-27 22:28:38 +01001732 check->argv = calloc(6, sizeof(char *));
1733 if (!check->argv) {
1734 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001735 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001736 }
Simon Horman98637e52014-06-20 12:30:16 +09001737
1738 check->argv[0] = px->check_command;
1739
Cyril Bonté777be862014-12-02 21:21:35 +01001740 if (!listener) {
1741 check->argv[1] = strdup("NOT_USED");
1742 check->argv[2] = strdup("NOT_USED");
1743 }
1744 else if (listener->addr.ss_family == AF_INET ||
Simon Horman98637e52014-06-20 12:30:16 +09001745 listener->addr.ss_family == AF_INET6) {
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001746 addr_to_str(&listener->addr, buf, sizeof(buf));
1747 check->argv[1] = strdup(buf);
1748 port_to_str(&listener->addr, buf, sizeof(buf));
1749 check->argv[2] = strdup(buf);
Cyril Bonté777be862014-12-02 21:21:35 +01001750 }
1751 else if (listener->addr.ss_family == AF_UNIX) {
Simon Horman98637e52014-06-20 12:30:16 +09001752 const struct sockaddr_un *un;
1753
1754 un = (struct sockaddr_un *)&listener->addr;
1755 check->argv[1] = strdup(un->sun_path);
1756 check->argv[2] = strdup("NOT_USED");
Cyril Bonté777be862014-12-02 21:21:35 +01001757 }
1758 else {
Cyril Bontéac92a062014-12-27 22:28:38 +01001759 Alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001760 goto err;
1761 }
1762
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001763 addr_to_str(&s->addr, buf, sizeof(buf));
1764 check->argv[3] = strdup(buf);
1765 port_to_str(&s->addr, buf, sizeof(buf));
1766 check->argv[4] = strdup(buf);
Simon Horman98637e52014-06-20 12:30:16 +09001767
Cyril Bontéac92a062014-12-27 22:28:38 +01001768 for (i = 0; i < 5; i++) {
1769 if (!check->argv[i]) {
1770 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
Simon Horman98637e52014-06-20 12:30:16 +09001771 goto err;
Cyril Bontéac92a062014-12-27 22:28:38 +01001772 }
1773 }
Simon Horman98637e52014-06-20 12:30:16 +09001774
Cyril Bontéac92a062014-12-27 22:28:38 +01001775 EXTCHK_SETENV(check, EXTCHK_PATH, path, err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001776 /* Add proxy environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001777 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err);
1778 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err);
1779 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err);
1780 EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001781 /* Add server environment variables */
Cyril Bontéac92a062014-12-27 22:28:38 +01001782 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err);
1783 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err);
1784 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err);
1785 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err);
1786 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err);
1787 EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err);
1788
1789 /* Ensure that we don't leave any hole in check->envp */
1790 for (i = 0; i < EXTCHK_SIZE; i++)
1791 if (!check->envp[i])
1792 EXTCHK_SETENV(check, i, "", err);
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001793
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001794 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09001795err:
1796 if (check->envp) {
Cyril Bontéac92a062014-12-27 22:28:38 +01001797 for (i = 0; i < EXTCHK_SIZE; i++)
Cyril Bonté9ede66b2014-12-02 21:21:36 +01001798 free(check->envp[i]);
Simon Horman98637e52014-06-20 12:30:16 +09001799 free(check->envp);
1800 check->envp = NULL;
1801 }
1802
1803 if (check->argv) {
1804 for (i = 1; i < 5; i++)
1805 free(check->argv[i]);
1806 free(check->argv);
1807 check->argv = NULL;
1808 }
Cyril Bonté99c5bf52014-08-07 01:55:38 +02001809 return 0;
Simon Horman98637e52014-06-20 12:30:16 +09001810}
1811
Simon Hormanb00d17a2014-06-13 16:18:16 +09001812/*
Simon Horman98637e52014-06-20 12:30:16 +09001813 * establish a server health-check that makes use of a process.
1814 *
1815 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001816 * - SF_ERR_NONE if everything's OK
1817 * - SF_ERR_SRVTO if there are no more servers
1818 * - SF_ERR_SRVCL if the connection was refused by the server
1819 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1820 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1821 * - SF_ERR_INTERNAL for any other purely internal errors
1822 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Simon Horman98637e52014-06-20 12:30:16 +09001823 *
1824 * Blocks and then unblocks SIGCHLD
1825 */
1826static int connect_proc_chk(struct task *t)
1827{
Cyril Bontéac92a062014-12-27 22:28:38 +01001828 char buf[256];
Simon Horman98637e52014-06-20 12:30:16 +09001829 struct check *check = t->context;
1830 struct server *s = check->server;
1831 struct proxy *px = s->proxy;
1832 int status;
1833 pid_t pid;
1834
Willy Tarreaue7dff022015-04-03 01:14:29 +02001835 status = SF_ERR_RESOURCE;
Simon Horman98637e52014-06-20 12:30:16 +09001836
1837 block_sigchld();
1838
1839 pid = fork();
1840 if (pid < 0) {
1841 Alert("Failed to fork process for external health check: %s. Aborting.\n",
1842 strerror(errno));
1843 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1844 goto out;
1845 }
1846 if (pid == 0) {
1847 /* Child */
1848 extern char **environ;
Willy Tarreaub7b24782016-06-21 15:32:29 +02001849 int fd;
1850
1851 /* close all FDs. Keep stdin/stdout/stderr in verbose mode */
1852 fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3;
1853
1854 while (fd < global.rlimit_nofile)
1855 close(fd++);
1856
Simon Horman98637e52014-06-20 12:30:16 +09001857 environ = check->envp;
Cyril Bontéac92a062014-12-27 22:28:38 +01001858 extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)));
Simon Horman98637e52014-06-20 12:30:16 +09001859 execvp(px->check_command, check->argv);
1860 Alert("Failed to exec process for external health check: %s. Aborting.\n",
1861 strerror(errno));
1862 exit(-1);
1863 }
1864
1865 /* Parent */
1866 if (check->result == CHK_RES_UNKNOWN) {
1867 if (pid_list_add(pid, t) != NULL) {
1868 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
1869
1870 if (px->timeout.check && px->timeout.connect) {
1871 int t_con = tick_add(now_ms, px->timeout.connect);
1872 t->expire = tick_first(t->expire, t_con);
1873 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02001874 status = SF_ERR_NONE;
Simon Horman98637e52014-06-20 12:30:16 +09001875 goto out;
1876 }
1877 else {
1878 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1879 }
1880 kill(pid, SIGTERM); /* process creation error */
1881 }
1882 else
1883 set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno));
1884
1885out:
1886 unblock_sigchld();
1887 return status;
1888}
1889
1890/*
Simon Horman98637e52014-06-20 12:30:16 +09001891 * manages a server health-check that uses a process. Returns
Willy Tarreaubaaee002006-06-26 02:48:02 +02001892 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
1893 */
Simon Horman98637e52014-06-20 12:30:16 +09001894static struct task *process_chk_proc(struct task *t)
1895{
1896 struct check *check = t->context;
1897 struct server *s = check->server;
1898 struct connection *conn = check->conn;
1899 int rv;
1900 int ret;
1901 int expired = tick_is_expired(t->expire, now_ms);
1902
1903 if (!(check->state & CHK_ST_INPROGRESS)) {
1904 /* no check currently running */
1905 if (!expired) /* woke up too early */
1906 return t;
1907
1908 /* we don't send any health-checks when the proxy is
1909 * stopped, the server should not be checked or the check
1910 * is disabled.
1911 */
1912 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
1913 s->proxy->state == PR_STSTOPPED)
1914 goto reschedule;
1915
1916 /* we'll initiate a new check */
1917 set_server_check_status(check, HCHK_STATUS_START, NULL);
1918
1919 check->state |= CHK_ST_INPROGRESS;
1920
Simon Hormandbf70192015-01-30 11:22:53 +09001921 ret = connect_proc_chk(t);
Simon Horman98637e52014-06-20 12:30:16 +09001922 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001923 case SF_ERR_UP:
Simon Horman98637e52014-06-20 12:30:16 +09001924 return t;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001925 case SF_ERR_NONE:
Simon Horman98637e52014-06-20 12:30:16 +09001926 /* we allow up to min(inter, timeout.connect) for a connection
1927 * to establish but only when timeout.check is set
1928 * as it may be to short for a full check otherwise
1929 */
1930 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
1931
1932 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
1933 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
1934 t->expire = tick_first(t->expire, t_con);
1935 }
1936
1937 goto reschedule;
1938
Willy Tarreaue7dff022015-04-03 01:14:29 +02001939 case SF_ERR_SRVTO: /* ETIMEDOUT */
1940 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Simon Horman98637e52014-06-20 12:30:16 +09001941 conn->flags |= CO_FL_ERROR;
1942 chk_report_conn_err(conn, errno, 0);
1943 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001944 case SF_ERR_PRXCOND:
1945 case SF_ERR_RESOURCE:
1946 case SF_ERR_INTERNAL:
Simon Horman98637e52014-06-20 12:30:16 +09001947 conn->flags |= CO_FL_ERROR;
1948 chk_report_conn_err(conn, 0, 0);
1949 break;
1950 }
1951
1952 /* here, we have seen a synchronous error, no fd was allocated */
1953
1954 check->state &= ~CHK_ST_INPROGRESS;
1955 check_notify_failure(check);
1956
1957 /* we allow up to min(inter, timeout.connect) for a connection
1958 * to establish but only when timeout.check is set
1959 * as it may be to short for a full check otherwise
1960 */
1961 while (tick_is_expired(t->expire, now_ms)) {
1962 int t_con;
1963
1964 t_con = tick_add(t->expire, s->proxy->timeout.connect);
1965 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
1966
1967 if (s->proxy->timeout.check)
1968 t->expire = tick_first(t->expire, t_con);
1969 }
1970 }
1971 else {
1972 /* there was a test running.
1973 * First, let's check whether there was an uncaught error,
1974 * which can happen on connect timeout or error.
1975 */
1976 if (check->result == CHK_RES_UNKNOWN) {
1977 /* good connection is enough for pure TCP check */
1978 struct pid_list *elem = check->curpid;
1979 int status = HCHK_STATUS_UNKNOWN;
1980
1981 if (elem->exited) {
1982 status = elem->status; /* Save in case the process exits between use below */
1983 if (!WIFEXITED(status))
1984 check->code = -1;
1985 else
1986 check->code = WEXITSTATUS(status);
1987 if (!WIFEXITED(status) || WEXITSTATUS(status))
1988 status = HCHK_STATUS_PROCERR;
1989 else
1990 status = HCHK_STATUS_PROCOK;
1991 } else if (expired) {
1992 status = HCHK_STATUS_PROCTOUT;
Willy Tarreaudc3d1902014-07-08 00:56:27 +02001993 Warning("kill %d\n", (int)elem->pid);
Simon Horman98637e52014-06-20 12:30:16 +09001994 kill(elem->pid, SIGTERM);
1995 }
1996 set_server_check_status(check, status, NULL);
1997 }
1998
1999 if (check->result == CHK_RES_FAILED) {
2000 /* a failure or timeout detected */
2001 check_notify_failure(check);
2002 }
2003 else if (check->result == CHK_RES_CONDPASS) {
2004 /* check is OK but asks for stopping mode */
2005 check_notify_stopping(check);
2006 }
2007 else if (check->result == CHK_RES_PASSED) {
2008 /* a success was detected */
2009 check_notify_success(check);
2010 }
2011 check->state &= ~CHK_ST_INPROGRESS;
2012
2013 pid_list_del(check->curpid);
2014
2015 rv = 0;
2016 if (global.spread_checks > 0) {
2017 rv = srv_getinter(check) * global.spread_checks / 100;
2018 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
2019 }
2020 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
2021 }
2022
2023 reschedule:
2024 while (tick_is_expired(t->expire, now_ms))
2025 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2026 return t;
2027}
2028
2029/*
2030 * manages a server health-check that uses a connection. Returns
2031 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2032 */
2033static struct task *process_chk_conn(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002034{
Simon Horman4a741432013-02-23 15:35:38 +09002035 struct check *check = t->context;
2036 struct server *s = check->server;
2037 struct connection *conn = check->conn;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002038 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002039 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002040 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002041
Willy Tarreau2c115e52013-12-11 19:41:16 +01002042 if (!(check->state & CHK_ST_INPROGRESS)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01002043 /* no check currently running */
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002044 if (!expired) /* woke up too early */
Willy Tarreau26c25062009-03-08 09:38:41 +01002045 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002046
Simon Horman671b6f02013-11-25 10:46:39 +09002047 /* we don't send any health-checks when the proxy is
2048 * stopped, the server should not be checked or the check
2049 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002050 */
Willy Tarreau0d924cc2013-12-11 21:26:24 +01002051 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Willy Tarreau33a08db2013-12-11 21:03:31 +01002052 s->proxy->state == PR_STSTOPPED)
Willy Tarreau5a78f362012-11-23 12:47:05 +01002053 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002054
2055 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09002056 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002057
Willy Tarreau2c115e52013-12-11 19:41:16 +01002058 check->state |= CHK_ST_INPROGRESS;
Simon Horman4a741432013-02-23 15:35:38 +09002059 check->bi->p = check->bi->data;
2060 check->bi->i = 0;
2061 check->bo->p = check->bo->data;
2062 check->bo->o = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002063
Simon Hormandbf70192015-01-30 11:22:53 +09002064 ret = connect_conn_chk(t);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002065 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002066 case SF_ERR_UP:
Simon Hormanb00d17a2014-06-13 16:18:16 +09002067 return t;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002068 case SF_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002069 /* we allow up to min(inter, timeout.connect) for a connection
2070 * to establish but only when timeout.check is set
2071 * as it may be to short for a full check otherwise
2072 */
Simon Horman4a741432013-02-23 15:35:38 +09002073 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002074
Willy Tarreaufb56aab2012-09-28 14:40:02 +02002075 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2076 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2077 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002078 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01002079
2080 if (check->type)
2081 conn_data_want_recv(conn); /* prepare for reading a possible reply */
2082
Willy Tarreau5a78f362012-11-23 12:47:05 +01002083 goto reschedule;
2084
Willy Tarreaue7dff022015-04-03 01:14:29 +02002085 case SF_ERR_SRVTO: /* ETIMEDOUT */
2086 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Willy Tarreau4bd07de2014-01-24 16:10:57 +01002087 conn->flags |= CO_FL_ERROR;
2088 chk_report_conn_err(conn, errno, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002089 break;
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02002090 /* should share same code than cases below */
2091 case SF_ERR_CHK_PORT:
2092 check->state |= CHK_ST_PORT_MISS;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002093 case SF_ERR_PRXCOND:
2094 case SF_ERR_RESOURCE:
2095 case SF_ERR_INTERNAL:
Willy Tarreau4bd07de2014-01-24 16:10:57 +01002096 conn->flags |= CO_FL_ERROR;
2097 chk_report_conn_err(conn, 0, 0);
Willy Tarreau5a78f362012-11-23 12:47:05 +01002098 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002099 }
2100
Willy Tarreau5a78f362012-11-23 12:47:05 +01002101 /* here, we have seen a synchronous error, no fd was allocated */
Willy Tarreau6b0a8502012-11-23 08:51:32 +01002102
Willy Tarreau2c115e52013-12-11 19:41:16 +01002103 check->state &= ~CHK_ST_INPROGRESS;
Willy Tarreau4eec5472014-05-20 22:32:27 +02002104 check_notify_failure(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002105
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002106 /* we allow up to min(inter, timeout.connect) for a connection
2107 * to establish but only when timeout.check is set
2108 * as it may be to short for a full check otherwise
2109 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002110 while (tick_is_expired(t->expire, now_ms)) {
2111 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002112
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002113 t_con = tick_add(t->expire, s->proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09002114 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002115
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002116 if (s->proxy->timeout.check)
2117 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01002118 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002119 }
2120 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02002121 /* there was a test running.
2122 * First, let's check whether there was an uncaught error,
2123 * which can happen on connect timeout or error.
2124 */
Simon Hormanccaabcd2014-06-20 12:29:47 +09002125 if (check->result == CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002126 /* good connection is enough for pure TCP check */
2127 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
Simon Horman4a741432013-02-23 15:35:38 +09002128 if (check->use_ssl)
2129 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02002130 else
Simon Horman4a741432013-02-23 15:35:38 +09002131 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01002132 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +01002133 else if ((conn->flags & CO_FL_ERROR) || expired) {
2134 chk_report_conn_err(conn, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02002135 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002136 else
2137 goto out_wait; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02002138 }
2139
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002140 /* check complete or aborted */
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002141 if (conn->xprt) {
2142 /* The check was aborted and the connection was not yet closed.
2143 * This can happen upon timeout, or when an external event such
2144 * as a failed response coupled with "observe layer7" caused the
2145 * server state to be suddenly changed.
2146 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01002147 conn_sock_drain(conn);
Willy Tarreauf79c8172013-10-21 16:30:56 +02002148 conn_force_close(conn);
Willy Tarreau5ba04f62013-02-12 15:23:12 +01002149 }
2150
Willy Tarreauaf549582014-05-16 17:37:50 +02002151 if (check->result == CHK_RES_FAILED) {
2152 /* a failure or timeout detected */
Willy Tarreau4eec5472014-05-20 22:32:27 +02002153 check_notify_failure(check);
Willy Tarreauaf549582014-05-16 17:37:50 +02002154 }
Willy Tarreaudb58b792014-05-21 13:57:23 +02002155 else if (check->result == CHK_RES_CONDPASS) {
2156 /* check is OK but asks for stopping mode */
2157 check_notify_stopping(check);
Willy Tarreauaf549582014-05-16 17:37:50 +02002158 }
Willy Tarreau3e048382014-05-21 10:30:54 +02002159 else if (check->result == CHK_RES_PASSED) {
2160 /* a success was detected */
2161 check_notify_success(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002162 }
Willy Tarreau2c115e52013-12-11 19:41:16 +01002163 check->state &= ~CHK_ST_INPROGRESS;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002164
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002165 rv = 0;
2166 if (global.spread_checks > 0) {
Simon Horman4a741432013-02-23 15:35:38 +09002167 rv = srv_getinter(check) * global.spread_checks / 100;
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002168 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002169 }
Simon Horman4a741432013-02-23 15:35:38 +09002170 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002171 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01002172
2173 reschedule:
2174 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09002175 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01002176 out_wait:
Willy Tarreau26c25062009-03-08 09:38:41 +01002177 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002178}
2179
Simon Horman98637e52014-06-20 12:30:16 +09002180/*
2181 * manages a server health-check. Returns
2182 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
2183 */
2184static struct task *process_chk(struct task *t)
2185{
2186 struct check *check = t->context;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002187 struct server *s = check->server;
2188 struct dns_resolution *resolution = s->resolution;
2189
2190 /* trigger name resolution */
2191 if ((s->check.state & CHK_ST_ENABLED) && (resolution)) {
2192 /* check if a no resolution is running for this server */
2193 if (resolution->step == RSLV_STEP_NONE) {
2194 /*
2195 * if there has not been any name resolution for a longer period than
2196 * hold.valid, let's trigger a new one.
2197 */
Baptiste Assmannf0d93702015-09-03 10:59:39 +02002198 if (!resolution->last_resolution || tick_is_expired(tick_add(resolution->last_resolution, resolution->resolvers->hold.valid), now_ms)) {
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002199 trigger_resolution(s);
2200 }
2201 }
2202 }
Simon Horman98637e52014-06-20 12:30:16 +09002203
2204 if (check->type == PR_O2_EXT_CHK)
2205 return process_chk_proc(t);
2206 return process_chk_conn(t);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002207
2208}
2209
2210/*
2211 * Initiates a new name resolution:
2212 * - generates a query id
2213 * - configure the resolution structure
2214 * - startup the resolvers task if required
2215 *
2216 * returns:
2217 * - 0 in case of error or if resolution already running
2218 * - 1 if everything started properly
2219 */
2220int trigger_resolution(struct server *s)
2221{
2222 struct dns_resolution *resolution;
2223 struct dns_resolvers *resolvers;
2224 int query_id;
2225 int i;
2226
2227 resolution = s->resolution;
2228 resolvers = resolution->resolvers;
2229
2230 /*
2231 * check if a resolution has already been started for this server
2232 * return directly to avoid resolution pill up
2233 */
2234 if (resolution->step != RSLV_STEP_NONE)
2235 return 0;
2236
2237 /* generates a query id */
2238 i = 0;
2239 do {
2240 query_id = dns_rnd16();
2241 /* we do try only 100 times to find a free query id */
2242 if (i++ > 100) {
2243 chunk_printf(&trash, "could not generate a query id for %s/%s, in resolvers %s",
2244 s->proxy->id, s->id, resolvers->id);
2245
2246 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
2247 return 0;
2248 }
2249 } while (eb32_lookup(&resolvers->query_ids, query_id));
2250
2251 LIST_ADDQ(&resolvers->curr_resolution, &resolution->list);
2252
2253 /* now update resolution parameters */
2254 resolution->query_id = query_id;
2255 resolution->qid.key = query_id;
2256 resolution->step = RSLV_STEP_RUNNING;
Thierry Fournierada34842016-02-17 21:25:09 +01002257 resolution->opts = &s->dns_opts;
2258 if (resolution->opts->family_prio == AF_INET) {
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002259 resolution->query_type = DNS_RTYPE_A;
2260 } else {
2261 resolution->query_type = DNS_RTYPE_AAAA;
2262 }
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002263 resolution->try = resolvers->resolve_retries;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002264 resolution->try_cname = 0;
2265 resolution->nb_responses = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002266 eb32_insert(&resolvers->query_ids, &resolution->qid);
2267
2268 dns_send_query(resolution);
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002269 resolution->try -= 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002270
2271 /* update wakeup date if this resolution is the only one in the FIFO list */
2272 if (dns_check_resolution_queue(resolvers) == 1) {
2273 /* update task timeout */
2274 dns_update_resolvers_timeout(resolvers);
2275 task_queue(resolvers->t);
2276 }
2277
2278 return 1;
Simon Horman98637e52014-06-20 12:30:16 +09002279}
2280
Simon Horman5c942422013-11-25 10:46:32 +09002281static int start_check_task(struct check *check, int mininter,
2282 int nbcheck, int srvpos)
2283{
2284 struct task *t;
2285 /* task for the check */
2286 if ((t = task_new()) == NULL) {
2287 Alert("Starting [%s:%s] check: out of memory.\n",
2288 check->server->proxy->id, check->server->id);
2289 return 0;
2290 }
2291
2292 check->task = t;
2293 t->process = process_chk;
2294 t->context = check;
2295
Willy Tarreau1746eec2014-04-25 10:46:47 +02002296 if (mininter < srv_getinter(check))
2297 mininter = srv_getinter(check);
2298
2299 if (global.max_spread_checks && mininter > global.max_spread_checks)
2300 mininter = global.max_spread_checks;
2301
Simon Horman5c942422013-11-25 10:46:32 +09002302 /* check this every ms */
Willy Tarreau1746eec2014-04-25 10:46:47 +02002303 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
Simon Horman5c942422013-11-25 10:46:32 +09002304 check->start = now;
2305 task_queue(t);
2306
2307 return 1;
2308}
2309
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002310/*
2311 * Start health-check.
2312 * Returns 0 if OK, -1 if error, and prints the error in this case.
2313 */
2314int start_checks() {
2315
2316 struct proxy *px;
2317 struct server *s;
2318 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09002319 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002320
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002321 /* 1- count the checkers to run simultaneously.
2322 * We also determine the minimum interval among all of those which
2323 * have an interval larger than SRV_CHK_INTER_THRES. This interval
2324 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04002325 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02002326 * too short an interval for all others.
2327 */
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002328 for (px = proxy; px; px = px->next) {
2329 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01002330 if (s->slowstart) {
2331 if ((t = task_new()) == NULL) {
2332 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
2333 return -1;
2334 }
2335 /* We need a warmup task that will be called when the server
2336 * state switches from down to up.
2337 */
2338 s->warmup = t;
2339 t->process = server_warmup;
2340 t->context = s;
2341 t->expire = TICK_ETERNITY;
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002342 /* server can be in this state only because of */
2343 if (s->state == SRV_ST_STARTING)
2344 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 +01002345 }
2346
Willy Tarreaud8514a22013-12-11 21:10:14 +01002347 if (s->check.state & CHK_ST_CONFIGURED) {
2348 nbcheck++;
2349 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
2350 (!mininter || mininter > srv_getinter(&s->check)))
2351 mininter = srv_getinter(&s->check);
2352 }
Willy Tarreau15f39102013-12-11 20:41:18 +01002353
Willy Tarreaud8514a22013-12-11 21:10:14 +01002354 if (s->agent.state & CHK_ST_CONFIGURED) {
2355 nbcheck++;
2356 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
2357 (!mininter || mininter > srv_getinter(&s->agent)))
2358 mininter = srv_getinter(&s->agent);
2359 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002360 }
2361 }
2362
Simon Horman4a741432013-02-23 15:35:38 +09002363 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002364 return 0;
2365
2366 srand((unsigned)time(NULL));
2367
2368 /*
2369 * 2- start them as far as possible from each others. For this, we will
2370 * start them after their interval set to the min interval divided by
2371 * the number of servers, weighted by the server's position in the list.
2372 */
2373 for (px = proxy; px; px = px->next) {
Simon Horman98637e52014-06-20 12:30:16 +09002374 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2375 if (init_pid_list()) {
2376 Alert("Starting [%s] check: out of memory.\n", px->id);
2377 return -1;
2378 }
2379 }
2380
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002381 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09002382 /* A task for the main check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002383 if (s->check.state & CHK_ST_CONFIGURED) {
Cyril Bonté99c5bf52014-08-07 01:55:38 +02002384 if (s->check.type == PR_O2_EXT_CHK) {
2385 if (!prepare_external_check(&s->check))
2386 return -1;
2387 }
Simon Hormand60d6912013-11-25 10:46:36 +09002388 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
2389 return -1;
2390 srvpos++;
2391 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002392
Simon Hormand60d6912013-11-25 10:46:36 +09002393 /* A task for a auxiliary agent check */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002394 if (s->agent.state & CHK_ST_CONFIGURED) {
Simon Hormand60d6912013-11-25 10:46:36 +09002395 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
2396 return -1;
2397 }
2398 srvpos++;
2399 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002400 }
2401 }
2402 return 0;
2403}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002404
2405/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002406 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01002407 * The buffer MUST be terminated by a null byte before calling this function.
2408 * Sets server status appropriately. The caller is responsible for ensuring
2409 * that the buffer contains at least 13 characters. If <done> is zero, we may
2410 * return 0 to indicate that data is required to decide of a match.
2411 */
2412static int httpchk_expect(struct server *s, int done)
2413{
2414 static char status_msg[] = "HTTP status check returned code <000>";
2415 char status_code[] = "000";
2416 char *contentptr;
2417 int crlf;
2418 int ret;
2419
2420 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
2421 case PR_O2_EXP_STS:
2422 case PR_O2_EXP_RSTS:
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002423 memcpy(status_code, s->check.bi->data + 9, 3);
2424 memcpy(status_msg + strlen(status_msg) - 4, s->check.bi->data + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01002425
2426 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
2427 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
2428 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002429 ret = regex_exec(s->proxy->expect_regex, status_code);
Willy Tarreaubd741542010-03-16 18:46:54 +01002430
2431 /* we necessarily have the response, so there are no partial failures */
2432 if (s->proxy->options2 & PR_O2_EXP_INV)
2433 ret = !ret;
2434
Simon Horman4a741432013-02-23 15:35:38 +09002435 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01002436 break;
2437
2438 case PR_O2_EXP_STR:
2439 case PR_O2_EXP_RSTR:
2440 /* very simple response parser: ignore CR and only count consecutive LFs,
2441 * stop with contentptr pointing to first char after the double CRLF or
2442 * to '\0' if crlf < 2.
2443 */
2444 crlf = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002445 for (contentptr = s->check.bi->data; *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01002446 if (crlf >= 2)
2447 break;
2448 if (*contentptr == '\r')
2449 continue;
2450 else if (*contentptr == '\n')
2451 crlf++;
2452 else
2453 crlf = 0;
2454 }
2455
2456 /* Check that response contains a body... */
2457 if (crlf < 2) {
2458 if (!done)
2459 return 0;
2460
Simon Horman4a741432013-02-23 15:35:38 +09002461 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002462 "HTTP content check could not find a response body");
2463 return 1;
2464 }
2465
2466 /* Check that response body is not empty... */
2467 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02002468 if (!done)
2469 return 0;
2470
Simon Horman4a741432013-02-23 15:35:38 +09002471 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002472 "HTTP content check found empty response body");
2473 return 1;
2474 }
2475
2476 /* Check the response content against the supplied string
2477 * or regex... */
2478 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
2479 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
2480 else
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002481 ret = regex_exec(s->proxy->expect_regex, contentptr);
Willy Tarreaubd741542010-03-16 18:46:54 +01002482
2483 /* if we don't match, we may need to wait more */
2484 if (!ret && !done)
2485 return 0;
2486
2487 if (ret) {
2488 /* content matched */
2489 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002490 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002491 "HTTP check matched unwanted content");
2492 else
Simon Horman4a741432013-02-23 15:35:38 +09002493 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002494 "HTTP content check matched");
2495 }
2496 else {
2497 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09002498 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01002499 "HTTP check did not match unwanted content");
2500 else
Simon Horman4a741432013-02-23 15:35:38 +09002501 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01002502 "HTTP content check did not match");
2503 }
2504 break;
2505 }
2506 return 1;
2507}
2508
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002509/*
2510 * return the id of a step in a send/expect session
2511 */
Simon Hormane16c1b32015-01-30 11:22:57 +09002512static int tcpcheck_get_step_id(struct check *check)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002513{
2514 struct tcpcheck_rule *cur = NULL, *next = NULL;
2515 int i = 0;
2516
Willy Tarreau213c6782014-10-02 14:51:02 +02002517 /* not even started anything yet => step 0 = initial connect */
Baptiste Assmannf95bc8e2015-04-25 16:03:06 +02002518 if (!check->current_step)
Willy Tarreau213c6782014-10-02 14:51:02 +02002519 return 0;
2520
Simon Hormane16c1b32015-01-30 11:22:57 +09002521 cur = check->last_started_step;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002522
2523 /* no step => first step */
2524 if (cur == NULL)
2525 return 1;
2526
2527 /* increment i until current step */
Simon Hormane16c1b32015-01-30 11:22:57 +09002528 list_for_each_entry(next, check->tcpcheck_rules, list) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002529 if (next->list.p == &cur->list)
2530 break;
2531 ++i;
2532 }
2533
2534 return i;
2535}
2536
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002537/*
2538 * return the latest known comment before (including) the given stepid
2539 * returns NULL if no comment found
2540 */
2541static char * tcpcheck_get_step_comment(struct check *check, int stepid)
2542{
2543 struct tcpcheck_rule *cur = NULL;
2544 char *ret = NULL;
2545 int i = 0;
2546
2547 /* not even started anything yet, return latest comment found before any action */
2548 if (!check->current_step) {
2549 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2550 if (cur->action == TCPCHK_ACT_COMMENT)
2551 ret = cur->comment;
2552 else
2553 goto return_comment;
2554 }
2555 }
2556
2557 i = 1;
2558 list_for_each_entry(cur, check->tcpcheck_rules, list) {
2559 if (cur->comment)
2560 ret = cur->comment;
2561
2562 if (i >= stepid)
2563 goto return_comment;
2564
2565 ++i;
2566 }
2567
2568 return_comment:
2569 return ret;
2570}
2571
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002572static void tcpcheck_main(struct connection *conn)
2573{
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002574 char *contentptr, *comment;
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002575 struct tcpcheck_rule *next;
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002576 int done = 0, ret = 0, step = 0;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002577 struct check *check = conn->owner;
2578 struct server *s = check->server;
2579 struct task *t = check->task;
Simon Hormane16c1b32015-01-30 11:22:57 +09002580 struct list *head = check->tcpcheck_rules;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002581
Willy Tarreauef953952014-10-02 14:30:14 +02002582 /* here, we know that the check is complete or that it failed */
2583 if (check->result != CHK_RES_UNKNOWN)
2584 goto out_end_tcpcheck;
2585
2586 /* We have 4 possibilities here :
2587 * 1. we've not yet attempted step 1, and step 1 is a connect, so no
2588 * connection attempt was made yet ;
2589 * 2. we've not yet attempted step 1, and step 1 is a not connect or
2590 * does not exist (no rule), so a connection attempt was made
2591 * before coming here.
2592 * 3. we're coming back after having started with step 1, so we may
2593 * be waiting for a connection attempt to complete.
2594 * 4. the connection + handshake are complete
2595 *
2596 * #2 and #3 are quite similar, we want both the connection and the
2597 * handshake to complete before going any further. Thus we must always
2598 * wait for a connection to complete unless we're before and existing
2599 * step 1.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002600 */
Willy Tarreau449f9522015-05-13 15:39:48 +02002601
2602 /* find first rule and skip comments */
2603 next = LIST_NEXT(head, struct tcpcheck_rule *, list);
2604 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
2605 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
2606
Willy Tarreauef953952014-10-02 14:30:14 +02002607 if ((!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE)) &&
Willy Tarreau449f9522015-05-13 15:39:48 +02002608 (check->current_step || &next->list == head)) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002609 /* we allow up to min(inter, timeout.connect) for a connection
2610 * to establish but only when timeout.check is set
2611 * as it may be to short for a full check otherwise
2612 */
2613 while (tick_is_expired(t->expire, now_ms)) {
2614 int t_con;
2615
2616 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2617 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2618
2619 if (s->proxy->timeout.check)
2620 t->expire = tick_first(t->expire, t_con);
2621 }
2622 return;
2623 }
2624
Willy Tarreauef953952014-10-02 14:30:14 +02002625 /* special case: option tcp-check with no rule, a connect is enough */
Willy Tarreau449f9522015-05-13 15:39:48 +02002626 if (&next->list == head) {
Willy Tarreauef953952014-10-02 14:30:14 +02002627 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002628 goto out_end_tcpcheck;
Willy Tarreauef953952014-10-02 14:30:14 +02002629 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002630
Willy Tarreau213c6782014-10-02 14:51:02 +02002631 /* no step means first step initialisation */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002632 if (check->current_step == NULL) {
Willy Tarreau213c6782014-10-02 14:51:02 +02002633 check->last_started_step = NULL;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002634 check->bo->p = check->bo->data;
2635 check->bo->o = 0;
2636 check->bi->p = check->bi->data;
2637 check->bi->i = 0;
Willy Tarreau449f9522015-05-13 15:39:48 +02002638 check->current_step = next;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002639 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2640 if (s->proxy->timeout.check)
2641 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
2642 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002643
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002644 /* It's only the rules which will enable send/recv */
2645 __conn_data_stop_both(conn);
2646
Willy Tarreauabca5b62013-12-06 14:19:25 +01002647 while (1) {
Willy Tarreau263013d2015-05-13 11:59:14 +02002648 /* We have to try to flush the output buffer before reading, at
2649 * the end, or if we're about to send a string that does not fit
2650 * in the remaining space. That explains why we break out of the
2651 * loop after this control.
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002652 */
2653 if (check->bo->o &&
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002654 (&check->current_step->list == head ||
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002655 check->current_step->action != TCPCHK_ACT_SEND ||
2656 check->current_step->string_len >= buffer_total_space(check->bo))) {
2657
Willy Tarreau1049b1f2014-02-02 01:51:17 +01002658 if (conn->xprt->snd_buf(conn, check->bo, 0) <= 0) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002659 if (conn->flags & CO_FL_ERROR) {
2660 chk_report_conn_err(conn, errno, 0);
2661 __conn_data_stop_both(conn);
2662 goto out_end_tcpcheck;
2663 }
Willy Tarreau263013d2015-05-13 11:59:14 +02002664 break;
Willy Tarreauabca5b62013-12-06 14:19:25 +01002665 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01002666 }
2667
Willy Tarreau263013d2015-05-13 11:59:14 +02002668 if (&check->current_step->list == head)
Willy Tarreauabca5b62013-12-06 14:19:25 +01002669 break;
2670
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002671 /* have 'next' point to the next rule or NULL if we're on the
2672 * last one, connect() needs this.
2673 */
Willy Tarreau5581c272015-05-13 12:24:53 +02002674 next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002675
2676 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002677 while (&next->list != head && next->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002678 next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002679
2680 /* NULL if we're on the last rule */
Willy Tarreauf3d34822014-12-08 12:11:28 +01002681 if (&next->list == head)
2682 next = NULL;
2683
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002684 if (check->current_step->action == TCPCHK_ACT_CONNECT) {
2685 struct protocol *proto;
2686 struct xprt_ops *xprt;
2687
2688 /* mark the step as started */
2689 check->last_started_step = check->current_step;
2690 /* first, shut existing connection */
2691 conn_force_close(conn);
2692
2693 /* prepare new connection */
2694 /* initialization */
2695 conn_init(conn);
2696 conn_attach(conn, check, &check_conn_cb);
2697 conn->target = &s->obj_type;
2698
2699 /* no client address */
2700 clear_addr(&conn->addr.from);
2701
Simon Horman41f58762015-01-30 11:22:56 +09002702 if (is_addr(&check->addr)) {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002703 /* we'll connect to the check addr specified on the server */
Simon Horman41f58762015-01-30 11:22:56 +09002704 conn->addr.to = check->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002705 }
2706 else {
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002707 /* we'll connect to the addr on the server */
2708 conn->addr.to = s->addr;
Willy Tarreau640556c2014-05-09 23:38:15 +02002709 }
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01002710 proto = protocol_by_family(conn->addr.to.ss_family);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002711
2712 /* port */
2713 if (check->current_step->port)
2714 set_host_port(&conn->addr.to, check->current_step->port);
2715 else if (check->port)
2716 set_host_port(&conn->addr.to, check->port);
2717
2718#ifdef USE_OPENSSL
2719 if (check->current_step->conn_opts & TCPCHK_OPT_SSL) {
2720 xprt = &ssl_sock;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002721 }
2722 else {
2723 xprt = &raw_sock;
2724 }
2725#else /* USE_OPENSSL */
2726 xprt = &raw_sock;
2727#endif /* USE_OPENSSL */
2728 conn_prepare(conn, proto, xprt);
2729
Willy Tarreaue7dff022015-04-03 01:14:29 +02002730 ret = SF_ERR_INTERNAL;
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002731 if (proto->connect)
Willy Tarreauf3d34822014-12-08 12:11:28 +01002732 ret = proto->connect(conn,
2733 1 /* I/O polling is always needed */,
2734 (next && next->action == TCPCHK_ACT_EXPECT) ? 0 : 2);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002735 conn->flags |= CO_FL_WAKE_DATA;
2736 if (check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) {
2737 conn->send_proxy_ofs = 1;
2738 conn->flags |= CO_FL_SEND_PROXY;
2739 }
2740
2741 /* It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02002742 * - SF_ERR_NONE if everything's OK
2743 * - SF_ERR_SRVTO if there are no more servers
2744 * - SF_ERR_SRVCL if the connection was refused by the server
2745 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
2746 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
2747 * - SF_ERR_INTERNAL for any other purely internal errors
2748 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002749 * Note that we try to prevent the network stack from sending the ACK during the
2750 * connect() when a pure TCP check is used (without PROXY protocol).
2751 */
2752 switch (ret) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002753 case SF_ERR_NONE:
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002754 /* we allow up to min(inter, timeout.connect) for a connection
2755 * to establish but only when timeout.check is set
2756 * as it may be to short for a full check otherwise
2757 */
2758 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
2759
2760 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
2761 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
2762 t->expire = tick_first(t->expire, t_con);
2763 }
2764 break;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002765 case SF_ERR_SRVTO: /* ETIMEDOUT */
2766 case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002767 step = tcpcheck_get_step_id(check);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002768 chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002769 step, strerror(errno));
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002770 comment = tcpcheck_get_step_comment(check, step);
2771 if (comment)
2772 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002773 set_server_check_status(check, HCHK_STATUS_L4CON, trash.str);
2774 goto out_end_tcpcheck;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002775 case SF_ERR_PRXCOND:
2776 case SF_ERR_RESOURCE:
2777 case SF_ERR_INTERNAL:
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002778 step = tcpcheck_get_step_id(check);
2779 chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002780 comment = tcpcheck_get_step_comment(check, step);
2781 if (comment)
2782 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002783 set_server_check_status(check, HCHK_STATUS_SOCKERR, trash.str);
2784 goto out_end_tcpcheck;
2785 }
2786
2787 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002788 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002789
2790 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002791 while (&check->current_step->list != head &&
2792 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002793 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002794
Willy Tarreauf2c87352015-05-13 12:08:21 +02002795 if (&check->current_step->list == head)
2796 break;
2797
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002798 /* don't do anything until the connection is established */
2799 if (!(conn->flags & CO_FL_CONNECTED)) {
2800 /* update expire time, should be done by process_chk */
2801 /* we allow up to min(inter, timeout.connect) for a connection
2802 * to establish but only when timeout.check is set
2803 * as it may be to short for a full check otherwise
2804 */
2805 while (tick_is_expired(t->expire, now_ms)) {
2806 int t_con;
2807
2808 t_con = tick_add(t->expire, s->proxy->timeout.connect);
2809 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
2810
2811 if (s->proxy->timeout.check)
2812 t->expire = tick_first(t->expire, t_con);
2813 }
2814 return;
2815 }
2816
2817 } /* end 'connect' */
2818 else if (check->current_step->action == TCPCHK_ACT_SEND) {
2819 /* mark the step as started */
2820 check->last_started_step = check->current_step;
2821
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002822 /* reset the read buffer */
2823 if (*check->bi->data != '\0') {
2824 *check->bi->data = '\0';
2825 check->bi->i = 0;
2826 }
2827
2828 if (conn->flags & (CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH)) {
2829 conn->flags |= CO_FL_ERROR;
2830 chk_report_conn_err(conn, 0, 0);
2831 goto out_end_tcpcheck;
2832 }
2833
Willy Tarreauabca5b62013-12-06 14:19:25 +01002834 if (check->current_step->string_len >= check->bo->size) {
2835 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%d) at step %d",
2836 check->current_step->string_len, check->bo->size,
Simon Hormane16c1b32015-01-30 11:22:57 +09002837 tcpcheck_get_step_id(check));
Willy Tarreauabca5b62013-12-06 14:19:25 +01002838 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2839 goto out_end_tcpcheck;
2840 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002841
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002842 /* do not try to send if there is no space */
2843 if (check->current_step->string_len >= buffer_total_space(check->bo))
2844 continue;
2845
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002846 bo_putblk(check->bo, check->current_step->string, check->current_step->string_len);
2847 *check->bo->p = '\0'; /* to make gdb output easier to read */
2848
Willy Tarreauabca5b62013-12-06 14:19:25 +01002849 /* go to next rule and try to send */
Willy Tarreau5581c272015-05-13 12:24:53 +02002850 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002851
2852 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002853 while (&check->current_step->list != head &&
2854 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002855 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Willy Tarreauf2c87352015-05-13 12:08:21 +02002856
2857 if (&check->current_step->list == head)
2858 break;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002859 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002860 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01002861 if (unlikely(check->result == CHK_RES_FAILED))
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002862 goto out_end_tcpcheck;
2863
Willy Tarreau310987a2014-01-22 19:46:33 +01002864 if (conn->xprt->rcv_buf(conn, check->bi, check->bi->size) <= 0) {
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002865 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH)) {
2866 done = 1;
2867 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
2868 /* Report network errors only if we got no other data. Otherwise
2869 * we'll let the upper layers decide whether the response is OK
2870 * or not. It is very common that an RST sent by the server is
2871 * reported as an error just after the last data chunk.
2872 */
2873 chk_report_conn_err(conn, errno, 0);
2874 goto out_end_tcpcheck;
2875 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002876 }
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002877 else
Willy Tarreau263013d2015-05-13 11:59:14 +02002878 break;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002879 }
2880
Baptiste Assmann69e273f2013-12-11 00:52:19 +01002881 /* mark the step as started */
2882 check->last_started_step = check->current_step;
2883
2884
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002885 /* Intermediate or complete response received.
2886 * Terminate string in check->bi->data buffer.
2887 */
2888 if (check->bi->i < check->bi->size) {
2889 check->bi->data[check->bi->i] = '\0';
2890 }
2891 else {
2892 check->bi->data[check->bi->i - 1] = '\0';
2893 done = 1; /* buffer full, don't wait for more data */
2894 }
2895
2896 contentptr = check->bi->data;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002897
2898 /* Check that response body is not empty... */
Willy Tarreauec6b0122014-05-13 17:57:29 +02002899 if (!check->bi->i) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002900 if (!done)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01002901 continue;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002902
2903 /* empty response */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002904 step = tcpcheck_get_step_id(check);
2905 chunk_printf(&trash, "TCPCHK got an empty response at step %d", step);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002906 comment = tcpcheck_get_step_comment(check, step);
2907 if (comment)
2908 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002909 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2910
2911 goto out_end_tcpcheck;
2912 }
2913
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002914 if (!done && (check->current_step->string != NULL) && (check->bi->i < check->current_step->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01002915 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002916
Willy Tarreaua970c282013-12-06 12:47:19 +01002917 tcpcheck_expect:
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002918 if (check->current_step->string != NULL)
2919 ret = my_memmem(contentptr, check->bi->i, check->current_step->string, check->current_step->string_len) != NULL;
2920 else if (check->current_step->expect_regex != NULL)
2921 ret = regex_exec(check->current_step->expect_regex, contentptr);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002922
2923 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01002924 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002925
2926 /* matched */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002927 step = tcpcheck_get_step_id(check);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002928 if (ret) {
2929 /* matched but we did not want to => ERROR */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002930 if (check->current_step->inverse) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002931 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002932 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002933 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002934 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002935 }
2936 else {
2937 /* we were looking for a regex */
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002938 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d", 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 /* matched and was supposed to => OK, next step */
2947 else {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002948 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002949 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002950
2951 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002952 while (&check->current_step->list != head &&
2953 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002954 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002955
Willy Tarreauf2c87352015-05-13 12:08:21 +02002956 if (&check->current_step->list == head)
2957 break;
2958
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002959 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002960 goto tcpcheck_expect;
2961 __conn_data_stop_recv(conn);
2962 }
2963 }
2964 else {
2965 /* not matched */
2966 /* not matched and was not supposed to => OK, next step */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002967 if (check->current_step->inverse) {
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002968 /* allow next rule */
Willy Tarreau5581c272015-05-13 12:24:53 +02002969 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002970
2971 /* bypass all comment rules */
Willy Tarreauf2c87352015-05-13 12:08:21 +02002972 while (&check->current_step->list != head &&
2973 check->current_step->action == TCPCHK_ACT_COMMENT)
Willy Tarreau5581c272015-05-13 12:24:53 +02002974 check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list);
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002975
Willy Tarreauf2c87352015-05-13 12:08:21 +02002976 if (&check->current_step->list == head)
2977 break;
2978
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002979 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002980 goto tcpcheck_expect;
2981 __conn_data_stop_recv(conn);
2982 }
2983 /* not matched but was supposed to => ERROR */
2984 else {
2985 /* we were looking for a string */
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002986 if (check->current_step->string != NULL) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002987 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
Willy Tarreauce8c42a2015-05-13 11:23:01 +02002988 check->current_step->string, step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002989 }
2990 else {
2991 /* we were looking for a regex */
2992 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
Baptiste Assmanncfbd1b82015-05-02 09:00:23 +02002993 step);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002994 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +02002995 comment = tcpcheck_get_step_comment(check, step);
2996 if (comment)
2997 chunk_appendf(&trash, " comment: '%s'", comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002998 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2999 goto out_end_tcpcheck;
3000 }
3001 }
3002 } /* end expect */
3003 } /* end loop over double chained step list */
3004
Willy Tarreau263013d2015-05-13 11:59:14 +02003005 /* We're waiting for some I/O to complete, we've reached the end of the
3006 * rules, or both. Do what we have to do, otherwise we're done.
3007 */
3008 if (&check->current_step->list == head && !check->bo->o) {
3009 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
3010 goto out_end_tcpcheck;
3011 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003012
Willy Tarreau53c5a042015-05-13 11:38:17 +02003013 /* warning, current_step may now point to the head */
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003014 if (check->bo->o)
3015 __conn_data_want_send(conn);
3016
Willy Tarreau53c5a042015-05-13 11:38:17 +02003017 if (&check->current_step->list != head &&
3018 check->current_step->action == TCPCHK_ACT_EXPECT)
Willy Tarreaufbe0edf2013-12-06 16:54:31 +01003019 __conn_data_want_recv(conn);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003020 return;
3021
3022 out_end_tcpcheck:
3023 /* collect possible new errors */
3024 if (conn->flags & CO_FL_ERROR)
3025 chk_report_conn_err(conn, 0, 0);
3026
Baptiste Assmann69e273f2013-12-11 00:52:19 +01003027 /* cleanup before leaving */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003028 check->current_step = NULL;
3029
Willy Tarreau6aaa1b82013-12-11 17:09:34 +01003030 if (check->result == CHK_RES_FAILED)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003031 conn->flags |= CO_FL_ERROR;
3032
3033 __conn_data_stop_both(conn);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003034 return;
3035}
3036
Simon Hormanb1900d52015-01-30 11:22:54 +09003037const char *init_check(struct check *check, int type)
3038{
3039 check->type = type;
3040
3041 /* Allocate buffer for requests... */
3042 if ((check->bi = calloc(sizeof(struct buffer) + global.tune.chksize, sizeof(char))) == NULL) {
3043 return "out of memory while allocating check buffer";
3044 }
3045 check->bi->size = global.tune.chksize;
3046
3047 /* Allocate buffer for responses... */
3048 if ((check->bo = calloc(sizeof(struct buffer) + global.tune.chksize, sizeof(char))) == NULL) {
3049 return "out of memory while allocating check buffer";
3050 }
3051 check->bo->size = global.tune.chksize;
3052
3053 /* Allocate buffer for partial results... */
3054 if ((check->conn = calloc(1, sizeof(struct connection))) == NULL) {
3055 return "out of memory while allocating check connection";
3056 }
3057
3058 check->conn->t.sock.fd = -1; /* no agent in progress yet */
3059
3060 return NULL;
3061}
3062
Simon Hormanbfb5d332015-01-30 11:22:55 +09003063void free_check(struct check *check)
3064{
3065 free(check->bi);
3066 free(check->bo);
3067 free(check->conn);
3068}
3069
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003070void email_alert_free(struct email_alert *alert)
3071{
3072 struct tcpcheck_rule *rule, *back;
3073
3074 if (!alert)
3075 return;
3076
3077 list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list)
3078 free(rule);
3079 free(alert);
3080}
3081
3082static struct task *process_email_alert(struct task *t)
3083{
3084 struct check *check = t->context;
3085 struct email_alertq *q;
3086
3087 q = container_of(check, typeof(*q), check);
3088
3089 if (!(check->state & CHK_ST_ENABLED)) {
3090 if (LIST_ISEMPTY(&q->email_alerts)) {
3091 /* All alerts processed, delete check */
3092 task_delete(t);
3093 task_free(t);
3094 check->task = NULL;
3095 return NULL;
3096 } else {
3097 struct email_alert *alert;
3098
3099 alert = LIST_NEXT(&q->email_alerts, typeof(alert), list);
3100 check->tcpcheck_rules = &alert->tcpcheck_rules;
3101 LIST_DEL(&alert->list);
3102
3103 check->state |= CHK_ST_ENABLED;
3104 }
3105
3106 }
3107
3108 process_chk(t);
3109
3110 if (!(check->state & CHK_ST_INPROGRESS) && check->tcpcheck_rules) {
3111 struct email_alert *alert;
3112
3113 alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules);
3114 email_alert_free(alert);
3115
3116 check->tcpcheck_rules = NULL;
3117 check->state &= ~CHK_ST_ENABLED;
3118 }
3119 return t;
3120}
3121
3122static int init_email_alert_checks(struct server *s)
3123{
3124 int i;
3125 struct mailer *mailer;
3126 const char *err_str;
3127 struct proxy *p = s->proxy;
3128
3129 if (p->email_alert.queues)
3130 /* Already initialised, nothing to do */
3131 return 1;
3132
3133 p->email_alert.queues = calloc(p->email_alert.mailers.m->count, sizeof *p->email_alert.queues);
3134 if (!p->email_alert.queues) {
3135 err_str = "out of memory while allocating checks array";
3136 goto error_alert;
3137 }
3138
3139 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3140 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
3141 struct email_alertq *q = &p->email_alert.queues[i];
3142 struct check *check = &q->check;
3143
3144
3145 LIST_INIT(&q->email_alerts);
3146
Pieter Baauw235fcfc2016-02-13 15:33:40 +01003147 check->inter = p->email_alert.mailers.m->timeout.mail;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003148 check->rise = DEF_AGENT_RISETIME;
3149 check->fall = DEF_AGENT_FALLTIME;
3150 err_str = init_check(check, PR_O2_TCPCHK_CHK);
3151 if (err_str) {
3152 goto error_free;
3153 }
3154
3155 check->xprt = mailer->xprt;
3156 if (!get_host_port(&mailer->addr))
3157 /* Default to submission port */
3158 check->port = 587;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003159 check->addr = mailer->addr;
3160 check->server = s;
3161 }
3162
3163 return 1;
3164
3165error_free:
3166 while (i-- > 1)
3167 task_free(p->email_alert.queues[i].check.task);
3168 free(p->email_alert.queues);
3169 p->email_alert.queues = NULL;
3170error_alert:
3171 Alert("Email alert [%s] could not be initialised: %s\n", p->id, err_str);
3172 return 0;
3173}
3174
3175
3176static int add_tcpcheck_expect_str(struct list *list, const char *str)
3177{
3178 struct tcpcheck_rule *tcpcheck;
3179
3180 tcpcheck = calloc(1, sizeof *tcpcheck);
3181 if (!tcpcheck)
3182 return 0;
3183
3184 tcpcheck->action = TCPCHK_ACT_EXPECT;
3185 tcpcheck->string = strdup(str);
3186 if (!tcpcheck->string) {
3187 free(tcpcheck);
3188 return 0;
3189 }
3190
3191 LIST_ADDQ(list, &tcpcheck->list);
3192 return 1;
3193}
3194
3195static int add_tcpcheck_send_strs(struct list *list, const char * const *strs)
3196{
3197 struct tcpcheck_rule *tcpcheck;
Willy Tarreau64345aa2016-08-10 19:29:09 +02003198 const char *in;
3199 char *dst;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003200 int i;
3201
3202 tcpcheck = calloc(1, sizeof *tcpcheck);
3203 if (!tcpcheck)
3204 return 0;
3205
3206 tcpcheck->action = TCPCHK_ACT_SEND;
3207
3208 tcpcheck->string_len = 0;
3209 for (i = 0; strs[i]; i++)
3210 tcpcheck->string_len += strlen(strs[i]);
3211
3212 tcpcheck->string = malloc(tcpcheck->string_len + 1);
3213 if (!tcpcheck->string) {
3214 free(tcpcheck);
3215 return 0;
3216 }
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003217
Willy Tarreau64345aa2016-08-10 19:29:09 +02003218 dst = tcpcheck->string;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003219 for (i = 0; strs[i]; i++)
Willy Tarreau64345aa2016-08-10 19:29:09 +02003220 for (in = strs[i]; (*dst = *in++); dst++);
3221 *dst = 0;
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003222
3223 LIST_ADDQ(list, &tcpcheck->list);
3224 return 1;
3225}
3226
3227static int enqueue_one_email_alert(struct email_alertq *q, const char *msg)
3228{
3229 struct email_alert *alert = NULL;
3230 struct tcpcheck_rule *tcpcheck;
3231 struct check *check = &q->check;
3232 struct proxy *p = check->server->proxy;
3233
3234 alert = calloc(1, sizeof *alert);
3235 if (!alert) {
3236 goto error;
3237 }
3238 LIST_INIT(&alert->tcpcheck_rules);
3239
3240 tcpcheck = calloc(1, sizeof *tcpcheck);
3241 if (!tcpcheck)
3242 goto error;
3243 tcpcheck->action = TCPCHK_ACT_CONNECT;
3244 LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list);
3245
3246 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 "))
3247 goto error;
3248
3249 {
3250 const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" };
3251 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3252 goto error;
3253 }
3254
3255 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3256 goto error;
3257
3258 {
3259 const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" };
3260 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3261 goto error;
3262 }
3263
3264 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3265 goto error;
3266
3267 {
3268 const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" };
3269 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3270 goto error;
3271 }
3272
3273 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3274 goto error;
3275
3276 {
3277 const char * const strs[2] = { "DATA\r\n" };
3278 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3279 goto error;
3280 }
3281
3282 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 "))
3283 goto error;
3284
3285 {
3286 struct tm tm;
3287 char datestr[48];
3288 const char * const strs[18] = {
Pieter Baauw5e0964e2016-02-13 16:27:35 +01003289 "From: ", p->email_alert.from, "\r\n",
3290 "To: ", p->email_alert.to, "\r\n",
3291 "Date: ", datestr, "\r\n",
3292 "Subject: [HAproxy Alert] ", msg, "\r\n",
3293 "\r\n",
3294 msg, "\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003295 "\r\n",
Pieter Baauwed35c372015-07-22 19:51:54 +02003296 ".\r\n",
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003297 NULL
3298 };
3299
3300 get_localtime(date.tv_sec, &tm);
3301
3302 if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) {
3303 goto error;
3304 }
3305
3306 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3307 goto error;
3308 }
3309
3310 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 "))
3311 goto error;
3312
3313 {
3314 const char * const strs[2] = { "QUIT\r\n" };
3315 if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs))
3316 goto error;
3317 }
3318
3319 if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 "))
3320 goto error;
3321
3322 if (!check->task) {
3323 struct task *t;
3324
3325 if ((t = task_new()) == NULL)
3326 goto error;
3327
3328 check->task = t;
3329 t->process = process_email_alert;
3330 t->context = check;
3331
3332 /* check this in one ms */
3333 t->expire = tick_add(now_ms, MS_TO_TICKS(1));
3334 check->start = now;
3335 task_queue(t);
3336 }
3337
3338 LIST_ADDQ(&q->email_alerts, &alert->list);
3339
3340 return 1;
3341
3342error:
3343 email_alert_free(alert);
3344 return 0;
3345}
3346
3347static void enqueue_email_alert(struct proxy *p, const char *msg)
3348{
3349 int i;
3350 struct mailer *mailer;
3351
3352 for (i = 0, mailer = p->email_alert.mailers.m->mailer_list;
3353 i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) {
3354 if (!enqueue_one_email_alert(&p->email_alert.queues[i], msg)) {
3355 Alert("Email alert [%s] could not be enqueued: out of memory\n", p->id);
3356 return;
3357 }
3358 }
3359
3360 return;
3361}
3362
3363/*
3364 * Send email alert if configured.
3365 */
Simon Horman64e34162015-02-06 11:11:57 +09003366void send_email_alert(struct server *s, int level, const char *format, ...)
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003367{
3368 va_list argp;
3369 char buf[1024];
3370 int len;
3371 struct proxy *p = s->proxy;
3372
Simon Horman64e34162015-02-06 11:11:57 +09003373 if (!p->email_alert.mailers.m || level > p->email_alert.level ||
3374 format == NULL || !init_email_alert_checks(s))
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003375 return;
3376
3377 va_start(argp, format);
3378 len = vsnprintf(buf, sizeof(buf), format, argp);
3379 va_end(argp);
3380
3381 if (len < 0) {
Cyril Bontéb65e0332015-12-04 03:07:08 +01003382 Alert("Email alert [%s] could not format message\n", p->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003383 return;
3384 }
3385
3386 enqueue_email_alert(p, buf);
3387}
3388
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02003389/*
3390 * Return value:
3391 * the port to be used for the health check
3392 * 0 in case no port could be found for the check
3393 */
3394int srv_check_healthcheck_port(struct check *chk)
3395{
3396 int i = 0;
3397 struct server *srv = NULL;
3398
3399 srv = chk->server;
3400
3401 /* If neither a port nor an addr was specified and no check transport
3402 * layer is forced, then the transport layer used by the checks is the
3403 * same as for the production traffic. Otherwise we use raw_sock by
3404 * default, unless one is specified.
3405 */
3406 if (!chk->port && !is_addr(&chk->addr)) {
3407#ifdef USE_OPENSSL
3408 chk->use_ssl |= (srv->use_ssl || (srv->proxy->options & PR_O_TCPCHK_SSL));
3409#endif
3410 chk->send_proxy |= (srv->pp_opts);
3411 }
3412
3413 /* by default, we use the health check port ocnfigured */
3414 if (chk->port > 0)
3415 return chk->port;
3416
3417 /* try to get the port from check_core.addr if check.port not set */
3418 i = get_host_port(&chk->addr);
3419 if (i > 0)
3420 return i;
3421
3422 /* try to get the port from server address */
3423 /* prevent MAPPORTS from working at this point, since checks could
3424 * not be performed in such case (MAPPORTS impose a relative ports
3425 * based on live traffic)
3426 */
3427 if (srv->flags & SRV_F_MAPPORTS)
3428 return 0;
3429 i = get_host_port(&srv->addr); /* by default */
3430 if (i > 0)
3431 return i;
3432
3433 return 0;
3434}
3435
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02003436
Willy Tarreaubd741542010-03-16 18:46:54 +01003437/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003438 * Local variables:
3439 * c-indent-level: 8
3440 * c-basic-offset: 8
3441 * End:
3442 */