blob: 9282e89390d4f824cf0186c6fbcb705d40de21db [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>
18#include <stdio.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020019#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <string.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020021#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#include <unistd.h>
23#include <sys/socket.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040024#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <netinet/in.h>
Willy Tarreau1274bc42009-07-15 07:16:31 +020026#include <netinet/tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <arpa/inet.h>
28
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/compat.h>
31#include <common/config.h>
32#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020033#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
36#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
38#include <proto/backend.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020039#include <proto/checks.h>
Simon Hormana2b9dad2013-02-12 10:45:54 +090040#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/fd.h>
42#include <proto/log.h>
43#include <proto/queue.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020044#include <proto/port_range.h>
Willy Tarreau3d300592007-03-18 18:34:41 +010045#include <proto/proto_http.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010046#include <proto/proto_tcp.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010047#include <proto/proxy.h>
Willy Tarreaufb56aab2012-09-28 14:40:02 +020048#include <proto/raw_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/server.h>
Simon Hormane0d1bfb2011-06-21 14:34:58 +090050#include <proto/session.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010051#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/task.h>
53
Willy Tarreaubd741542010-03-16 18:46:54 +010054static int httpchk_expect(struct server *s, int done);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +020055static int tcpcheck_get_step_id(struct server *);
56static void tcpcheck_main(struct connection *);
Willy Tarreaubd741542010-03-16 18:46:54 +010057
Simon Horman63a4a822012-03-19 07:24:41 +090058static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020059 [HCHK_STATUS_UNKNOWN] = { SRV_CHK_UNKNOWN, "UNK", "Unknown" },
60 [HCHK_STATUS_INI] = { SRV_CHK_UNKNOWN, "INI", "Initializing" },
61 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020062
Willy Tarreaud3aac702012-11-23 11:32:12 +010063 [HCHK_STATUS_HANA] = { SRV_CHK_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010064
Willy Tarreaud3aac702012-11-23 11:32:12 +010065 [HCHK_STATUS_SOCKERR] = { SRV_CHK_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020066
Willy Tarreaud3aac702012-11-23 11:32:12 +010067 [HCHK_STATUS_L4OK] = { SRV_CHK_PASSED, "L4OK", "Layer4 check passed" },
68 [HCHK_STATUS_L4TOUT] = { SRV_CHK_FAILED, "L4TOUT", "Layer4 timeout" },
69 [HCHK_STATUS_L4CON] = { SRV_CHK_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020070
Willy Tarreaud3aac702012-11-23 11:32:12 +010071 [HCHK_STATUS_L6OK] = { SRV_CHK_PASSED, "L6OK", "Layer6 check passed" },
72 [HCHK_STATUS_L6TOUT] = { SRV_CHK_FAILED, "L6TOUT", "Layer6 timeout" },
73 [HCHK_STATUS_L6RSP] = { SRV_CHK_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020074
Willy Tarreaud3aac702012-11-23 11:32:12 +010075 [HCHK_STATUS_L7TOUT] = { SRV_CHK_FAILED, "L7TOUT", "Layer7 timeout" },
76 [HCHK_STATUS_L7RSP] = { SRV_CHK_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020077
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +020078 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020079
Willy Tarreaud3aac702012-11-23 11:32:12 +010080 [HCHK_STATUS_L7OKD] = { SRV_CHK_PASSED, "L7OK", "Layer7 check passed" },
81 [HCHK_STATUS_L7OKCD] = { SRV_CHK_PASSED | SRV_CHK_DISABLE, "L7OKC", "Layer7 check conditionally passed" },
82 [HCHK_STATUS_L7STS] = { SRV_CHK_FAILED, "L7STS", "Layer7 wrong status" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020083};
84
Simon Horman63a4a822012-03-19 07:24:41 +090085static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010086 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
87
88 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
89 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
90
91 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
92 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
93 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
94 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
95
96 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
97 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
98 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
99};
100
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200101/*
102 * Convert check_status code to description
103 */
104const char *get_check_status_description(short check_status) {
105
106 const char *desc;
107
108 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200109 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200110 else
111 desc = NULL;
112
113 if (desc && *desc)
114 return desc;
115 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200116 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200117}
118
119/*
120 * Convert check_status code to short info
121 */
122const char *get_check_status_info(short check_status) {
123
124 const char *info;
125
126 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200127 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200128 else
129 info = NULL;
130
131 if (info && *info)
132 return info;
133 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200134 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200135}
136
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100137const char *get_analyze_status(short analyze_status) {
138
139 const char *desc;
140
141 if (analyze_status < HANA_STATUS_SIZE)
142 desc = analyze_statuses[analyze_status].desc;
143 else
144 desc = NULL;
145
146 if (desc && *desc)
147 return desc;
148 else
149 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
150}
151
Simon Horman4a741432013-02-23 15:35:38 +0900152static void server_status_printf(struct chunk *msg, struct server *s, struct check *check, int xferred) {
Willy Tarreau44267702011-10-28 15:35:33 +0200153 if (s->track)
Willy Tarreau77804732012-10-29 16:14:26 +0100154 chunk_appendf(msg, " via %s/%s",
Willy Tarreau44267702011-10-28 15:35:33 +0200155 s->track->proxy->id, s->track->id);
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200156
Simon Horman4a741432013-02-23 15:35:38 +0900157 if (check) {
158 chunk_appendf(msg, ", reason: %s", get_check_status_description(check->status));
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200159
Simon Horman4a741432013-02-23 15:35:38 +0900160 if (check->status >= HCHK_STATUS_L57DATA)
161 chunk_appendf(msg, ", code: %d", check->code);
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200162
Simon Horman4a741432013-02-23 15:35:38 +0900163 if (*check->desc) {
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200164 struct chunk src;
165
Willy Tarreau77804732012-10-29 16:14:26 +0100166 chunk_appendf(msg, ", info: \"");
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200167
Simon Horman4a741432013-02-23 15:35:38 +0900168 chunk_initlen(&src, check->desc, 0, strlen(check->desc));
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200169 chunk_asciiencode(msg, &src, '"');
170
Willy Tarreau77804732012-10-29 16:14:26 +0100171 chunk_appendf(msg, "\"");
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200172 }
173
Simon Horman4a741432013-02-23 15:35:38 +0900174 if (check->duration >= 0)
175 chunk_appendf(msg, ", check duration: %ldms", check->duration);
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200176 }
177
Krzysztof Piotr Oledzki3bb05712010-09-27 13:10:50 +0200178 if (xferred >= 0) {
Krzysztof Piotr Oledzkib16a6072010-01-10 21:12:58 +0100179 if (!(s->state & SRV_RUNNING))
Willy Tarreau77804732012-10-29 16:14:26 +0100180 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
Krzysztof Piotr Oledzki9f2b9d52010-01-11 13:16:27 +0100181 " %d sessions active, %d requeued, %d remaining in queue",
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200182 s->proxy->srv_act, s->proxy->srv_bck,
183 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
184 s->cur_sess, xferred, s->nbpend);
185 else
Willy Tarreau77804732012-10-29 16:14:26 +0100186 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
Krzysztof Piotr Oledzki9f2b9d52010-01-11 13:16:27 +0100187 " %d sessions requeued, %d total in queue",
Krzysztof Piotr Oledzki99ab5f82009-09-27 17:28:21 +0200188 s->proxy->srv_act, s->proxy->srv_bck,
189 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
190 xferred, s->nbpend);
191 }
192}
193
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200194/*
Simon Horman4a741432013-02-23 15:35:38 +0900195 * Set check->status, update check->duration and fill check->result with
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200196 * an adequate SRV_CHK_* value.
197 *
198 * Show information in logs about failed health check if server is UP
199 * or succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200200 */
Simon Horman4a741432013-02-23 15:35:38 +0900201static void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100202{
Simon Horman4a741432013-02-23 15:35:38 +0900203 struct server *s = check->server;
204
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200205 if (status == HCHK_STATUS_START) {
Simon Horman4a741432013-02-23 15:35:38 +0900206 check->result = SRV_CHK_UNKNOWN; /* no result yet */
207 check->desc[0] = '\0';
208 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200209 return;
210 }
211
Simon Horman4a741432013-02-23 15:35:38 +0900212 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200213 return;
214
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200215 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900216 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
217 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200218 } else
Simon Horman4a741432013-02-23 15:35:38 +0900219 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200220
Simon Horman4a741432013-02-23 15:35:38 +0900221 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200222 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900223 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200224
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100225 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900226 check->duration = -1;
227 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200228 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900229 check->duration = tv_ms_elapsed(&check->start, &now);
230 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200231 }
232
Simon Horman2f1f9552013-11-25 10:46:37 +0900233 /* Failure to connect to the agent as a secondary check should not
234 * cause the server to be marked down. So only log status changes
235 * for HCHK_STATUS_* statuses */
236 if (check == &s->agent && check->status < HCHK_STATUS_L7TOUT)
237 return;
238
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200239 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
Simon Horman125d0992013-02-24 17:23:38 +0900240 (((check->health != 0) && (check->result & SRV_CHK_FAILED)) ||
Simon Horman8c3d0be2013-11-25 10:46:40 +0900241 (((check->health != check->rise + check->fall - 1) ||
242 (!s->uweight && !(s->state & SRV_DRAIN)) ||
243 (s->uweight && (s->state & SRV_DRAIN))) &&
244 (check->result & SRV_CHK_PASSED)) ||
Simon Horman4a741432013-02-23 15:35:38 +0900245 ((s->state & SRV_GOINGDOWN) && !(check->result & SRV_CHK_DISABLE)) ||
246 (!(s->state & SRV_GOINGDOWN) && (check->result & SRV_CHK_DISABLE)))) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200247
248 int health, rise, fall, state;
249
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100250 chunk_reset(&trash);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200251
252 /* FIXME begin: calculate local version of the health/rise/fall/state */
Simon Horman125d0992013-02-24 17:23:38 +0900253 health = check->health;
Simon Horman58c32972013-11-25 10:46:38 +0900254 rise = check->rise;
255 fall = check->fall;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200256 state = s->state;
257
Simon Horman4a741432013-02-23 15:35:38 +0900258 if (check->result & SRV_CHK_FAILED) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200259 if (health > rise) {
260 health--; /* still good */
261 } else {
262 if (health == rise)
263 state &= ~(SRV_RUNNING | SRV_GOINGDOWN);
264
265 health = 0;
266 }
267 }
268
Simon Horman4a741432013-02-23 15:35:38 +0900269 if (check->result & SRV_CHK_PASSED) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200270 if (health < rise + fall - 1) {
271 health++; /* was bad, stays for a while */
272
273 if (health == rise)
274 state |= SRV_RUNNING;
275
276 if (health >= rise)
277 health = rise + fall - 1; /* OK now */
278 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100279
280 /* clear consecutive_errors if observing is enabled */
281 if (s->onerror)
282 s->consecutive_errors = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200283 }
284 /* FIXME end: calculate local version of the health/rise/fall/state */
285
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100286 chunk_appendf(&trash,
287 "Health check for %sserver %s/%s %s%s",
288 s->state & SRV_BACKUP ? "backup " : "",
289 s->proxy->id, s->id,
Simon Horman4a741432013-02-23 15:35:38 +0900290 (check->result & SRV_CHK_DISABLE)?"conditionally ":"",
291 (check->result & SRV_CHK_PASSED)?"succeeded":"failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200292
Simon Horman4a741432013-02-23 15:35:38 +0900293 server_status_printf(&trash, s, check, -1);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200294
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100295 chunk_appendf(&trash, ", status: %d/%d %s",
296 (state & SRV_RUNNING) ? (health - rise + 1) : (health),
297 (state & SRV_RUNNING) ? (fall) : (rise),
Simon Horman8c3d0be2013-11-25 10:46:40 +0900298 (state & SRV_RUNNING)?(s->eweight?"UP":"DRAIN"):"DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200299
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100300 Warning("%s.\n", trash.str);
301 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200302 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200303}
304
Willy Tarreau48494c02007-11-30 10:41:39 +0100305/* sends a log message when a backend goes down, and also sets last
306 * change date.
307 */
308static void set_backend_down(struct proxy *be)
309{
310 be->last_change = now.tv_sec;
311 be->down_trans++;
312
313 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
314 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
315}
316
317/* Redistribute pending connections when a server goes down. The number of
318 * connections redistributed is returned.
319 */
320static int redistribute_pending(struct server *s)
321{
322 struct pendconn *pc, *pc_bck, *pc_end;
323 int xferred = 0;
324
325 FOREACH_ITEM_SAFE(pc, pc_bck, &s->pendconns, pc_end, struct pendconn *, list) {
326 struct session *sess = pc->sess;
Willy Tarreau4de91492010-01-22 19:10:05 +0100327 if ((sess->be->options & (PR_O_REDISP|PR_O_PERSIST)) == PR_O_REDISP &&
328 !(sess->flags & SN_FORCE_PRST)) {
Willy Tarreau48494c02007-11-30 10:41:39 +0100329 /* The REDISP option was specified. We will ignore
330 * cookie and force to balance or use the dispatcher.
331 */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100332
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100333 /* it's left to the dispatcher to choose a server */
Willy Tarreau48494c02007-11-30 10:41:39 +0100334 sess->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100335
Willy Tarreau48494c02007-11-30 10:41:39 +0100336 pendconn_free(pc);
Willy Tarreaufdccded2008-08-29 18:19:04 +0200337 task_wakeup(sess->task, TASK_WOKEN_RES);
Willy Tarreau48494c02007-11-30 10:41:39 +0100338 xferred++;
339 }
340 }
341 return xferred;
342}
343
344/* Check for pending connections at the backend, and assign some of them to
345 * the server coming up. The server's weight is checked before being assigned
346 * connections it may not be able to handle. The total number of transferred
347 * connections is returned.
348 */
349static int check_for_pending(struct server *s)
350{
351 int xferred;
352
353 if (!s->eweight)
354 return 0;
355
356 for (xferred = 0; !s->maxconn || xferred < srv_dynamic_maxconn(s); xferred++) {
357 struct session *sess;
358 struct pendconn *p;
359
360 p = pendconn_from_px(s->proxy);
361 if (!p)
362 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100363 p->sess->target = &s->obj_type;
Willy Tarreau48494c02007-11-30 10:41:39 +0100364 sess = p->sess;
365 pendconn_free(p);
Willy Tarreaufdccded2008-08-29 18:19:04 +0200366 task_wakeup(sess->task, TASK_WOKEN_RES);
Willy Tarreau48494c02007-11-30 10:41:39 +0100367 }
368 return xferred;
369}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700371/* Shutdown all connections of a server. The caller must pass a termination
372 * code in <why>, which must be one of SN_ERR_* indicating the reason for the
373 * shutdown.
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900374 */
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700375static void shutdown_sessions(struct server *srv, int why)
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900376{
377 struct session *session, *session_bck;
378
Willy Tarreaua2a64e92011-09-07 23:01:56 +0200379 list_for_each_entry_safe(session, session_bck, &srv->actconns, by_srv)
380 if (session->srv_conn == srv)
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700381 session_shutdown(session, why);
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900382}
383
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700384/* Shutdown all connections of all backup servers of a proxy. The caller must
385 * pass a termination code in <why>, which must be one of SN_ERR_* indicating
386 * the reason for the shutdown.
387 */
388static void shutdown_backup_sessions(struct proxy *px, int why)
389{
390 struct server *srv;
391
392 for (srv = px->srv; srv != NULL; srv = srv->next)
393 if (srv->state & SRV_BACKUP)
394 shutdown_sessions(srv, why);
395}
396
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397/* Sets server <s> down, notifies by all available means, recounts the
398 * remaining servers on the proxy and transfers queued sessions whenever
Willy Tarreau5af3a692007-07-24 23:32:33 +0200399 * possible to other servers. It automatically recomputes the number of
400 * servers, but not the map.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200401 */
Simon Horman4a741432013-02-23 15:35:38 +0900402void set_server_down(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200403{
Simon Horman4a741432013-02-23 15:35:38 +0900404 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100405 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406 int xferred;
407
Cyril Bontécd19e512010-01-31 22:34:03 +0100408 if (s->state & SRV_MAINTAIN) {
Simon Horman58c32972013-11-25 10:46:38 +0900409 check->health = check->rise;
Cyril Bontécd19e512010-01-31 22:34:03 +0100410 }
411
Simon Horman58c32972013-11-25 10:46:38 +0900412 if ((s->state & SRV_RUNNING && check->health == check->rise) || s->track) {
Willy Tarreau48494c02007-11-30 10:41:39 +0100413 int srv_was_paused = s->state & SRV_GOINGDOWN;
Willy Tarreaud64d2252010-10-17 17:16:42 +0200414 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200415
416 s->last_change = now.tv_sec;
Willy Tarreau48494c02007-11-30 10:41:39 +0100417 s->state &= ~(SRV_RUNNING | SRV_GOINGDOWN);
Willy Tarreau9580d162012-05-19 19:07:40 +0200418 if (s->proxy->lbprm.set_server_status_down)
419 s->proxy->lbprm.set_server_status_down(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900421 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700422 shutdown_sessions(s, SN_ERR_DOWN);
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900423
Willy Tarreaubaaee002006-06-26 02:48:02 +0200424 /* we might have sessions queued on this server and waiting for
425 * a connection. Those which are redispatchable will be queued
426 * to another server or to the proxy itself.
427 */
Willy Tarreau48494c02007-11-30 10:41:39 +0100428 xferred = redistribute_pending(s);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100429
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100430 chunk_reset(&trash);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100431
Cyril Bontécd19e512010-01-31 22:34:03 +0100432 if (s->state & SRV_MAINTAIN) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100433 chunk_appendf(&trash,
434 "%sServer %s/%s is DOWN for maintenance", s->state & SRV_BACKUP ? "Backup " : "",
435 s->proxy->id, s->id);
Cyril Bontécd19e512010-01-31 22:34:03 +0100436 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100437 chunk_appendf(&trash,
438 "%sServer %s/%s is DOWN", s->state & SRV_BACKUP ? "Backup " : "",
439 s->proxy->id, s->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100440
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100441 server_status_printf(&trash, s,
Simon Horman4a741432013-02-23 15:35:38 +0900442 ((!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : 0),
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100443 xferred);
Cyril Bontécd19e512010-01-31 22:34:03 +0100444 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100445 Warning("%s.\n", trash.str);
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200446
Willy Tarreau48494c02007-11-30 10:41:39 +0100447 /* we don't send an alert if the server was previously paused */
448 if (srv_was_paused)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100449 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreau48494c02007-11-30 10:41:39 +0100450 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100451 send_log(s->proxy, LOG_ALERT, "%s.\n", trash.str);
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200452
Willy Tarreaud64d2252010-10-17 17:16:42 +0200453 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
Willy Tarreau48494c02007-11-30 10:41:39 +0100454 set_backend_down(s->proxy);
455
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200456 s->counters.down_trans++;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100457
Krzysztof Piotr Oledzkif39c71c2009-01-30 00:52:49 +0100458 if (s->state & SRV_CHECKED)
Willy Tarreaubc16cd82013-11-27 16:52:23 +0100459 for (srv = s->tracknext; srv; srv = srv->tracknext)
460 if (!(srv->state & SRV_MAINTAIN))
Cyril Bontécd19e512010-01-31 22:34:03 +0100461 /* Only notify tracking servers that are not already in maintenance. */
Willy Tarreaubc16cd82013-11-27 16:52:23 +0100462 set_server_down(&srv->check);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200463 }
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100464
Simon Horman125d0992013-02-24 17:23:38 +0900465 check->health = 0; /* failure */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200466}
467
Simon Horman4a741432013-02-23 15:35:38 +0900468void set_server_up(struct check *check) {
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100469
Simon Horman4a741432013-02-23 15:35:38 +0900470 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100471 struct server *srv;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100472 int xferred;
Willy Tarreau45446782012-03-09 17:16:09 +0100473 unsigned int old_state = s->state;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100474
Cyril Bontécd19e512010-01-31 22:34:03 +0100475 if (s->state & SRV_MAINTAIN) {
Simon Horman58c32972013-11-25 10:46:38 +0900476 check->health = check->rise;
Cyril Bontécd19e512010-01-31 22:34:03 +0100477 }
478
Simon Horman58c32972013-11-25 10:46:38 +0900479 if ((s->check.health >= s->check.rise && s->agent.health >= s->agent.rise &&
480 check->health == check->rise) || s->track) {
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100481 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
482 if (s->proxy->last_change < now.tv_sec) // ignore negative times
483 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
484 s->proxy->last_change = now.tv_sec;
485 }
486
487 if (s->last_change < now.tv_sec) // ignore negative times
488 s->down_time += now.tv_sec - s->last_change;
489
490 s->last_change = now.tv_sec;
491 s->state |= SRV_RUNNING;
Willy Tarreau45446782012-03-09 17:16:09 +0100492 s->state &= ~SRV_MAINTAIN;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100493
494 if (s->slowstart > 0) {
495 s->state |= SRV_WARMINGUP;
Willy Tarreau2e993902011-10-31 11:53:20 +0100496 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100497 }
Willy Tarreau004e0452013-11-21 11:22:01 +0100498
499 server_recalc_eweight(s);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100500
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700501 /* If the server is set with "on-marked-up shutdown-backup-sessions",
502 * and it's not a backup server and its effective weight is > 0,
503 * then it can accept new connections, so we shut down all sessions
504 * on all backup servers.
505 */
506 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
507 !(s->state & SRV_BACKUP) && s->eweight)
508 shutdown_backup_sessions(s->proxy, SN_ERR_UP);
509
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100510 /* check if we can handle some connections queued at the proxy. We
511 * will take as many as we can handle.
512 */
513 xferred = check_for_pending(s);
514
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100515 chunk_reset(&trash);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100516
Willy Tarreau45446782012-03-09 17:16:09 +0100517 if (old_state & SRV_MAINTAIN) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100518 chunk_appendf(&trash,
519 "%sServer %s/%s is UP (leaving maintenance)", s->state & SRV_BACKUP ? "Backup " : "",
520 s->proxy->id, s->id);
Cyril Bontécd19e512010-01-31 22:34:03 +0100521 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100522 chunk_appendf(&trash,
523 "%sServer %s/%s is UP", s->state & SRV_BACKUP ? "Backup " : "",
524 s->proxy->id, s->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100525
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100526 server_status_printf(&trash, s,
Simon Horman4a741432013-02-23 15:35:38 +0900527 ((!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL),
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100528 xferred);
Cyril Bontécd19e512010-01-31 22:34:03 +0100529 }
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100530
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100531 Warning("%s.\n", trash.str);
532 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100533
Krzysztof Piotr Oledzkif39c71c2009-01-30 00:52:49 +0100534 if (s->state & SRV_CHECKED)
Willy Tarreaubc16cd82013-11-27 16:52:23 +0100535 for (srv = s->tracknext; srv; srv = srv->tracknext)
536 if (!(srv->state & SRV_MAINTAIN))
Cyril Bontécd19e512010-01-31 22:34:03 +0100537 /* Only notify tracking servers if they're not in maintenance. */
Willy Tarreaubc16cd82013-11-27 16:52:23 +0100538 set_server_up(&srv->check);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100539 }
540
Simon Horman58c32972013-11-25 10:46:38 +0900541 if (check->health >= check->rise)
542 check->health = check->rise + check->fall - 1; /* OK now */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100543
544}
545
Simon Horman4a741432013-02-23 15:35:38 +0900546static void set_server_disabled(struct check *check) {
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100547
Simon Horman4a741432013-02-23 15:35:38 +0900548 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100549 struct server *srv;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100550 int xferred;
551
552 s->state |= SRV_GOINGDOWN;
Willy Tarreau9580d162012-05-19 19:07:40 +0200553 if (s->proxy->lbprm.set_server_status_down)
554 s->proxy->lbprm.set_server_status_down(s);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100555
556 /* we might have sessions queued on this server and waiting for
557 * a connection. Those which are redispatchable will be queued
558 * to another server or to the proxy itself.
559 */
560 xferred = redistribute_pending(s);
561
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100562 chunk_reset(&trash);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100563
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100564 chunk_appendf(&trash,
565 "Load-balancing on %sServer %s/%s is disabled",
566 s->state & SRV_BACKUP ? "Backup " : "",
567 s->proxy->id, s->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100568
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100569 server_status_printf(&trash, s,
Simon Horman4a741432013-02-23 15:35:38 +0900570 ((!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL),
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100571 xferred);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100572
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100573 Warning("%s.\n", trash.str);
574 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100575
576 if (!s->proxy->srv_bck && !s->proxy->srv_act)
577 set_backend_down(s->proxy);
578
Krzysztof Piotr Oledzkif39c71c2009-01-30 00:52:49 +0100579 if (s->state & SRV_CHECKED)
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100580 for(srv = s->tracknext; srv; srv = srv->tracknext)
Willy Tarreau81cf08c2013-11-28 11:27:16 +0100581 set_server_disabled(&srv->check);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100582}
583
Simon Horman4a741432013-02-23 15:35:38 +0900584static void set_server_enabled(struct check *check) {
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100585
Simon Horman4a741432013-02-23 15:35:38 +0900586 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100587 struct server *srv;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100588 int xferred;
589
590 s->state &= ~SRV_GOINGDOWN;
Willy Tarreau9580d162012-05-19 19:07:40 +0200591 if (s->proxy->lbprm.set_server_status_up)
592 s->proxy->lbprm.set_server_status_up(s);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100593
594 /* check if we can handle some connections queued at the proxy. We
595 * will take as many as we can handle.
596 */
597 xferred = check_for_pending(s);
598
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100599 chunk_reset(&trash);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100600
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100601 chunk_appendf(&trash,
602 "Load-balancing on %sServer %s/%s is enabled again",
603 s->state & SRV_BACKUP ? "Backup " : "",
604 s->proxy->id, s->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100605
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100606 server_status_printf(&trash, s,
Simon Horman4a741432013-02-23 15:35:38 +0900607 ((!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL),
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100608 xferred);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100609
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100610 Warning("%s.\n", trash.str);
611 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100612
Krzysztof Piotr Oledzkif39c71c2009-01-30 00:52:49 +0100613 if (s->state & SRV_CHECKED)
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100614 for(srv = s->tracknext; srv; srv = srv->tracknext)
Willy Tarreau81cf08c2013-11-28 11:27:16 +0100615 set_server_enabled(&srv->check);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100616}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200617
Simon Hormand8583062013-11-25 10:46:33 +0900618static void check_failed(struct check *check)
619{
620 struct server *s = check->server;
621
Simon Horman2f1f9552013-11-25 10:46:37 +0900622 /* The agent secondary check should only cause a server to be marked
623 * as down if check->status is HCHK_STATUS_L7STS, which indicates
624 * that the agent returned "fail", "stopped" or "down".
625 * The implication here is that failure to connect to the agent
626 * as a secondary check should not cause the server to be marked
627 * down. */
628 if (check == &s->agent && check->status != HCHK_STATUS_L7STS)
629 return;
630
Simon Horman58c32972013-11-25 10:46:38 +0900631 if (check->health > check->rise) {
Simon Hormand8583062013-11-25 10:46:33 +0900632 check->health--; /* still good */
633 s->counters.failed_checks++;
634 }
635 else
636 set_server_down(check);
637}
638
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100639void health_adjust(struct server *s, short status)
640{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100641 int failed;
642 int expire;
643
644 /* return now if observing nor health check is not enabled */
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200645 if (!s->observe || !s->check.task)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100646 return;
647
648 if (s->observe >= HANA_OBS_SIZE)
649 return;
650
Willy Tarreaubb956662013-01-24 00:37:39 +0100651 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100652 return;
653
654 switch (analyze_statuses[status].lr[s->observe - 1]) {
655 case 1:
656 failed = 1;
657 break;
658
659 case 2:
660 failed = 0;
661 break;
662
663 default:
664 return;
665 }
666
667 if (!failed) {
668 /* good: clear consecutive_errors */
669 s->consecutive_errors = 0;
670 return;
671 }
672
673 s->consecutive_errors++;
674
675 if (s->consecutive_errors < s->consecutive_errors_limit)
676 return;
677
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100678 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
679 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100680
681 switch (s->onerror) {
682 case HANA_ONERR_FASTINTER:
683 /* force fastinter - nothing to do here as all modes force it */
684 break;
685
686 case HANA_ONERR_SUDDTH:
687 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900688 if (s->check.health > s->check.rise)
689 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100690
691 /* no break - fall through */
692
693 case HANA_ONERR_FAILCHK:
694 /* simulate a failed health check */
Simon Horman4a741432013-02-23 15:35:38 +0900695 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
Simon Hormand8583062013-11-25 10:46:33 +0900696 check_failed(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100697
698 break;
699
700 case HANA_ONERR_MARKDWN:
701 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900702 s->check.health = s->check.rise;
Simon Horman4a741432013-02-23 15:35:38 +0900703 set_server_check_status(&s->check, HCHK_STATUS_HANA, trash.str);
704 set_server_down(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100705
706 break;
707
708 default:
709 /* write a warning? */
710 break;
711 }
712
713 s->consecutive_errors = 0;
714 s->counters.failed_hana++;
715
Simon Horman66183002013-02-23 10:16:43 +0900716 if (s->check.fastinter) {
717 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300718 if (s->check.task->expire > expire) {
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200719 s->check.task->expire = expire;
Sergiy Prykhodko1d57e502013-09-21 12:05:00 +0300720 /* requeue check task with new expire */
721 task_queue(s->check.task);
722 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100723 }
724}
725
Willy Tarreauef781042010-01-27 11:53:01 +0100726static int httpchk_build_status_header(struct server *s, char *buffer)
727{
728 int sv_state;
729 int ratio;
730 int hlen = 0;
731 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
732 "UP %d/%d", "UP",
733 "NOLB %d/%d", "NOLB",
734 "no check" };
735
736 memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24);
737 hlen += 24;
738
739 if (!(s->state & SRV_CHECKED))
740 sv_state = 6; /* should obviously never happen */
741 else if (s->state & SRV_RUNNING) {
Simon Horman58c32972013-11-25 10:46:38 +0900742 if (s->check.health == s->check.rise + s->check.fall - 1)
Willy Tarreauef781042010-01-27 11:53:01 +0100743 sv_state = 3; /* UP */
744 else
745 sv_state = 2; /* going down */
746
747 if (s->state & SRV_GOINGDOWN)
748 sv_state += 2;
749 } else {
Simon Horman125d0992013-02-24 17:23:38 +0900750 if (s->check.health)
Willy Tarreauef781042010-01-27 11:53:01 +0100751 sv_state = 1; /* going up */
752 else
753 sv_state = 0; /* DOWN */
754 }
755
756 hlen += sprintf(buffer + hlen,
757 srv_hlt_st[sv_state],
Simon Horman58c32972013-11-25 10:46:38 +0900758 (s->state & SRV_RUNNING) ? (s->check.health - s->check.rise + 1) : (s->check.health),
759 (s->state & SRV_RUNNING) ? (s->check.fall) : (s->check.rise));
Willy Tarreauef781042010-01-27 11:53:01 +0100760
761 hlen += sprintf(buffer + hlen, "; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
762 s->proxy->id, s->id,
763 global.node,
764 (s->eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
765 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
766 s->cur_sess, s->proxy->beconn - s->proxy->nbpend,
767 s->nbpend);
768
769 if ((s->state & SRV_WARMINGUP) &&
770 now.tv_sec < s->last_change + s->slowstart &&
771 now.tv_sec >= s->last_change) {
772 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
773 hlen += sprintf(buffer + hlen, "; throttle=%d%%", ratio);
774 }
775
776 buffer[hlen++] = '\r';
777 buffer[hlen++] = '\n';
778
779 return hlen;
780}
781
Willy Tarreau20a18342013-12-05 00:31:46 +0100782/* Check the connection. If an error has already been reported or the socket is
783 * closed, keep errno intact as it is supposed to contain the valid error code.
784 * If no error is reported, check the socket's error queue using getsockopt().
785 * Warning, this must be done only once when returning from poll, and never
786 * after an I/O error was attempted, otherwise the error queue might contain
787 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
788 * socket. Returns non-zero if an error was reported, zero if everything is
789 * clean (including a properly closed socket).
790 */
791static int retrieve_errno_from_socket(struct connection *conn)
792{
793 int skerr;
794 socklen_t lskerr = sizeof(skerr);
795
796 if (conn->flags & CO_FL_ERROR && ((errno && errno != EAGAIN) || !conn->ctrl))
797 return 1;
798
799 if (!conn->ctrl)
800 return 0;
801
802 if (getsockopt(conn->t.sock.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
803 errno = skerr;
804
805 if (errno == EAGAIN)
806 errno = 0;
807
808 if (!errno) {
809 /* we could not retrieve an error, that does not mean there is
810 * none. Just don't change anything and only report the prior
811 * error if any.
812 */
813 if (conn->flags & CO_FL_ERROR)
814 return 1;
815 else
816 return 0;
817 }
818
819 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
820 return 1;
821}
822
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100823/* Try to collect as much information as possible on the connection status,
824 * and adjust the server status accordingly. It may make use of <errno_bck>
825 * if non-null when the caller is absolutely certain of its validity (eg:
826 * checked just after a syscall). If the caller doesn't have a valid errno,
827 * it can pass zero, and retrieve_errno_from_socket() will be called to try
828 * to extract errno from the socket. If no error is reported, it will consider
829 * the <expired> flag. This is intended to be used when a connection error was
830 * reported in conn->flags or when a timeout was reported in <expired>. The
831 * function takes care of not updating a server status which was already set.
832 * All situations where at least one of <expired> or CO_FL_ERROR are set
833 * produce a status.
834 */
835static void chk_report_conn_err(struct connection *conn, int errno_bck, int expired)
836{
837 struct check *check = conn->owner;
838 const char *err_msg;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200839 struct chunk *chk;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100840
841 if (check->result != SRV_CHK_UNKNOWN)
842 return;
843
844 errno = errno_bck;
845 if (!errno || errno == EAGAIN)
846 retrieve_errno_from_socket(conn);
847
848 if (!(conn->flags & CO_FL_ERROR) && !expired)
849 return;
850
851 /* we'll try to build a meaningful error message depending on the
852 * context of the error possibly present in conn->err_code, and the
853 * socket error possibly collected above. This is useful to know the
854 * exact step of the L6 layer (eg: SSL handshake).
855 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200856 chk = get_trash_chunk();
857
858 if (check->type == PR_O2_TCPCHK_CHK) {
859 chunk_printf(chk, " at step %d of tcp-check", tcpcheck_get_step_id(check->server));
860 /* we were looking for a string */
861 if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT) {
862 if (check->current_step->string)
863 chunk_appendf(chk, " (string '%s')", check->current_step->string);
864 else if (check->current_step->expect_regex)
865 chunk_appendf(chk, " (expect regex)");
866 }
867 else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) {
868 chunk_appendf(chk, " (send)");
869 }
870 }
871
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100872 if (conn->err_code) {
873 if (errno && errno != EAGAIN)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200874 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100875 else
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200876 chunk_printf(&trash, "%s%s", conn_err_code_str(conn), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100877 err_msg = trash.str;
878 }
879 else {
880 if (errno && errno != EAGAIN) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200881 chunk_printf(&trash, "%s%s", strerror(errno), chk->str);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100882 err_msg = trash.str;
883 }
884 else {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200885 err_msg = chk->str;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100886 }
887 }
888
889 if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L4_CONN)) == CO_FL_WAIT_L4_CONN) {
890 /* L4 not established (yet) */
891 if (conn->flags & CO_FL_ERROR)
892 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
893 else if (expired)
894 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
895 }
896 else if ((conn->flags & (CO_FL_CONNECTED|CO_FL_WAIT_L6_CONN)) == CO_FL_WAIT_L6_CONN) {
897 /* L6 not established (yet) */
898 if (conn->flags & CO_FL_ERROR)
899 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
900 else if (expired)
901 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
902 }
903 else if (conn->flags & CO_FL_ERROR) {
904 /* I/O error after connection was established and before we could diagnose */
905 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
906 }
907 else if (expired) {
908 /* connection established but expired check */
909 if (check->type == PR_O2_SSL3_CHK)
910 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
911 else /* HTTP, SMTP, ... */
912 set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg);
913 }
914
915 return;
916}
917
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918/*
919 * This function is used only for server health-checks. It handles
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200920 * the connection acknowledgement. If the proxy requires L7 health-checks,
921 * it sends the request. In other cases, it calls set_server_check_status()
Simon Horman4a741432013-02-23 15:35:38 +0900922 * to set check->status, check->duration and check->result.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200923 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200924static void event_srv_chk_w(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925{
Simon Horman4a741432013-02-23 15:35:38 +0900926 struct check *check = conn->owner;
927 struct server *s = check->server;
Simon Horman4a741432013-02-23 15:35:38 +0900928 struct task *t = check->task;
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200929
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100930 if (unlikely(check->result & SRV_CHK_FAILED))
931 goto out_wakeup;
932
933 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_WR))
934 return;
935
Willy Tarreau20a18342013-12-05 00:31:46 +0100936 if (retrieve_errno_from_socket(conn)) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100937 chk_report_conn_err(conn, errno, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100938 __conn_data_stop_both(conn);
939 goto out_wakeup;
940 }
Krzysztof Piotr Oledzki6492db52010-01-02 22:03:01 +0100941
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100942 if (conn->flags & (CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH)) {
Willy Tarreau20a18342013-12-05 00:31:46 +0100943 /* if the output is closed, we can't do anything */
944 conn->flags |= CO_FL_ERROR;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100945 chk_report_conn_err(conn, 0, 0);
Willy Tarreau20a18342013-12-05 00:31:46 +0100946 goto out_wakeup;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200947 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200948
Willy Tarreau06559ac2013-12-05 01:53:08 +0100949 /* here, we know that the connection is established. That's enough for
950 * a pure TCP check.
951 */
952 if (!check->type)
953 goto out_wakeup;
954
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200955 if (check->type == PR_O2_TCPCHK_CHK) {
956 tcpcheck_main(conn);
957 return;
958 }
959
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100960 if (check->bo->o) {
961 conn->xprt->snd_buf(conn, check->bo, MSG_DONTWAIT | MSG_NOSIGNAL);
962 if (conn->flags & CO_FL_ERROR) {
963 chk_report_conn_err(conn, errno, 0);
964 __conn_data_stop_both(conn);
965 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100967 if (check->bo->o)
968 return;
969 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200970
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100971 /* full request sent, we allow up to <timeout.check> if nonzero for a response */
972 if (s->proxy->timeout.check) {
973 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
974 task_queue(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100976 goto out_nowake;
977
Willy Tarreau83749182007-04-15 20:56:27 +0200978 out_wakeup:
Willy Tarreaufdccded2008-08-29 18:19:04 +0200979 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau83749182007-04-15 20:56:27 +0200980 out_nowake:
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200981 __conn_data_stop_send(conn); /* nothing more to write */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200982}
983
Willy Tarreaubaaee002006-06-26 02:48:02 +0200984/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200985 * This function is used only for server health-checks. It handles the server's
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +0200986 * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls
Simon Horman4a741432013-02-23 15:35:38 +0900987 * set_server_check_status() to update check->status, check->duration
988 * and check->result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200989
990 * The set_server_check_status function is called with HCHK_STATUS_L7OKD if
991 * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server
992 * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in
993 * response to an SSL HELLO (the principle is that this is enough to
994 * distinguish between an SSL server and a pure TCP relay). All other cases will
995 * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP,
996 * etc.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997 */
Willy Tarreaufb56aab2012-09-28 14:40:02 +0200998static void event_srv_chk_r(struct connection *conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200999{
Simon Horman4a741432013-02-23 15:35:38 +09001000 struct check *check = conn->owner;
1001 struct server *s = check->server;
1002 struct task *t = check->task;
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001003 char *desc;
Willy Tarreau03938182010-03-17 21:52:07 +01001004 int done;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001005 unsigned short msglen;
Willy Tarreau83749182007-04-15 20:56:27 +02001006
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001007 if (unlikely(check->result & SRV_CHK_FAILED))
Willy Tarreau83749182007-04-15 20:56:27 +02001008 goto out_wakeup;
Willy Tarreau83749182007-04-15 20:56:27 +02001009
Willy Tarreau5a78f362012-11-23 12:47:05 +01001010 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_RD))
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001011 return;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001012
1013 if (check->type == PR_O2_TCPCHK_CHK) {
1014 tcpcheck_main(conn);
1015 return;
1016 }
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001017
Willy Tarreau83749182007-04-15 20:56:27 +02001018 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
1019 * but the connection was closed on the remote end. Fortunately, recv still
1020 * works correctly and we don't need to do the getsockopt() on linux.
1021 */
Nick Chalk57b1bf72010-03-16 15:50:46 +00001022
1023 /* Set buffer to point to the end of the data already read, and check
1024 * that there is free space remaining. If the buffer is full, proceed
1025 * with running the checks without attempting another socket read.
1026 */
Nick Chalk57b1bf72010-03-16 15:50:46 +00001027
Willy Tarreau03938182010-03-17 21:52:07 +01001028 done = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +00001029
Simon Horman4a741432013-02-23 15:35:38 +09001030 conn->xprt->rcv_buf(conn, check->bi, check->bi->size);
Willy Tarreauf1503172012-09-28 19:39:36 +02001031 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH)) {
Willy Tarreau03938182010-03-17 21:52:07 +01001032 done = 1;
Simon Horman4a741432013-02-23 15:35:38 +09001033 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
Willy Tarreauf1503172012-09-28 19:39:36 +02001034 /* Report network errors only if we got no other data. Otherwise
1035 * we'll let the upper layers decide whether the response is OK
1036 * or not. It is very common that an RST sent by the server is
1037 * reported as an error just after the last data chunk.
1038 */
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001039 chk_report_conn_err(conn, errno, 0);
Willy Tarreauc1a07962010-03-16 20:55:43 +01001040 goto out_wakeup;
1041 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001042 }
1043
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001044
Willy Tarreau03938182010-03-17 21:52:07 +01001045 /* Intermediate or complete response received.
Simon Horman4a741432013-02-23 15:35:38 +09001046 * Terminate string in check->bi->data buffer.
Willy Tarreau03938182010-03-17 21:52:07 +01001047 */
Simon Horman4a741432013-02-23 15:35:38 +09001048 if (check->bi->i < check->bi->size)
1049 check->bi->data[check->bi->i] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +01001050 else {
Simon Horman4a741432013-02-23 15:35:38 +09001051 check->bi->data[check->bi->i - 1] = '\0';
Willy Tarreau03938182010-03-17 21:52:07 +01001052 done = 1; /* buffer full, don't wait for more data */
1053 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001054
Nick Chalk57b1bf72010-03-16 15:50:46 +00001055 /* Run the checks... */
Simon Horman4a741432013-02-23 15:35:38 +09001056 switch (check->type) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02001057 case PR_O2_HTTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001058 if (!done && check->bi->i < strlen("HTTP/1.0 000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +01001059 goto wait_more_data;
1060
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001061 /* Check if the server speaks HTTP 1.X */
Simon Horman4a741432013-02-23 15:35:38 +09001062 if ((check->bi->i < strlen("HTTP/1.0 000\r")) ||
1063 (memcmp(check->bi->data, "HTTP/1.", 7) != 0 ||
1064 (*(check->bi->data + 12) != ' ' && *(check->bi->data + 12) != '\r')) ||
1065 !isdigit((unsigned char) *(check->bi->data + 9)) || !isdigit((unsigned char) *(check->bi->data + 10)) ||
1066 !isdigit((unsigned char) *(check->bi->data + 11))) {
1067 cut_crlf(check->bi->data);
1068 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001069
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001070 goto out_wakeup;
1071 }
1072
Simon Horman4a741432013-02-23 15:35:38 +09001073 check->code = str2uic(check->bi->data + 9);
1074 desc = ltrim(check->bi->data + 12, ' ');
Nick Chalk57b1bf72010-03-16 15:50:46 +00001075
Willy Tarreaubd741542010-03-16 18:46:54 +01001076 if ((s->proxy->options & PR_O_DISABLE404) &&
Simon Horman4a741432013-02-23 15:35:38 +09001077 (s->state & SRV_RUNNING) && (check->code == 404)) {
Nick Chalk57b1bf72010-03-16 15:50:46 +00001078 /* 404 may be accepted as "stopping" only if the server was up */
1079 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +09001080 set_server_check_status(check, HCHK_STATUS_L7OKCD, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +00001081 }
Willy Tarreaubd741542010-03-16 18:46:54 +01001082 else if (s->proxy->options2 & PR_O2_EXP_TYPE) {
1083 /* Run content verification check... We know we have at least 13 chars */
1084 if (!httpchk_expect(s, done))
1085 goto wait_more_data;
1086 }
1087 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
Simon Horman4a741432013-02-23 15:35:38 +09001088 else if (*(check->bi->data + 9) == '2' || *(check->bi->data + 9) == '3') {
Willy Tarreaubd741542010-03-16 18:46:54 +01001089 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +09001090 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Willy Tarreaubd741542010-03-16 18:46:54 +01001091 }
Nick Chalk57b1bf72010-03-16 15:50:46 +00001092 else {
1093 cut_crlf(desc);
Simon Horman4a741432013-02-23 15:35:38 +09001094 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Nick Chalk57b1bf72010-03-16 15:50:46 +00001095 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001096 break;
1097
1098 case PR_O2_SSL3_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001099 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001100 goto wait_more_data;
1101
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001102 /* Check for SSLv3 alert or handshake */
Simon Horman4a741432013-02-23 15:35:38 +09001103 if ((check->bi->i >= 5) && (*check->bi->data == 0x15 || *check->bi->data == 0x16))
1104 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +02001105 else
Simon Horman4a741432013-02-23 15:35:38 +09001106 set_server_check_status(check, HCHK_STATUS_L6RSP, NULL);
Willy Tarreau1620ec32011-08-06 17:05:02 +02001107 break;
1108
1109 case PR_O2_SMTP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001110 if (!done && check->bi->i < strlen("000\r"))
Willy Tarreau03938182010-03-17 21:52:07 +01001111 goto wait_more_data;
1112
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001113 /* Check if the server speaks SMTP */
Simon Horman4a741432013-02-23 15:35:38 +09001114 if ((check->bi->i < strlen("000\r")) ||
1115 (*(check->bi->data + 3) != ' ' && *(check->bi->data + 3) != '\r') ||
1116 !isdigit((unsigned char) *check->bi->data) || !isdigit((unsigned char) *(check->bi->data + 1)) ||
1117 !isdigit((unsigned char) *(check->bi->data + 2))) {
1118 cut_crlf(check->bi->data);
1119 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001120
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001121 goto out_wakeup;
1122 }
1123
Simon Horman4a741432013-02-23 15:35:38 +09001124 check->code = str2uic(check->bi->data);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001125
Simon Horman4a741432013-02-23 15:35:38 +09001126 desc = ltrim(check->bi->data + 3, ' ');
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001127 cut_crlf(desc);
1128
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001129 /* Check for SMTP code 2xx (should be 250) */
Simon Horman4a741432013-02-23 15:35:38 +09001130 if (*check->bi->data == '2')
1131 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +02001132 else
Simon Horman4a741432013-02-23 15:35:38 +09001133 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Willy Tarreau1620ec32011-08-06 17:05:02 +02001134 break;
1135
Simon Hormana2b9dad2013-02-12 10:45:54 +09001136 case PR_O2_LB_AGENT_CHK: {
1137 short status = HCHK_STATUS_L7RSP;
1138 const char *desc = "Unknown feedback string";
1139 const char *down_cmd = NULL;
Simon Horman671b6f02013-11-25 10:46:39 +09001140 int disabled;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001141
1142 if (!done)
1143 goto wait_more_data;
1144
Simon Horman4a741432013-02-23 15:35:38 +09001145 cut_crlf(check->bi->data);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001146
Simon Horman671b6f02013-11-25 10:46:39 +09001147 /*
1148 * The agent may have been disabled after a check was
1149 * initialised. If so, ignore weight changes and drain
1150 * settings from the agent. Note that the setting is
1151 * always present in the state of the agent the server,
1152 * regardless of if the agent is being run as a primary or
1153 * secondary check. That is, regardless of if the check
1154 * parameter of this function is the agent or check field
1155 * of the server.
1156 */
1157 disabled = check->server->agent.state & CHK_STATE_DISABLED;
1158
Simon Horman4a741432013-02-23 15:35:38 +09001159 if (strchr(check->bi->data, '%')) {
Simon Horman671b6f02013-11-25 10:46:39 +09001160 if (disabled)
1161 break;
Simon Horman4a741432013-02-23 15:35:38 +09001162 desc = server_parse_weight_change_request(s, check->bi->data);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001163 if (!desc) {
1164 status = HCHK_STATUS_L7OKD;
Simon Horman4a741432013-02-23 15:35:38 +09001165 desc = check->bi->data;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001166 }
Simon Horman4a741432013-02-23 15:35:38 +09001167 } else if (!strcasecmp(check->bi->data, "drain")) {
Simon Horman671b6f02013-11-25 10:46:39 +09001168 if (disabled)
1169 break;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001170 desc = server_parse_weight_change_request(s, "0%");
1171 if (!desc) {
1172 desc = "drain";
1173 status = HCHK_STATUS_L7OKD;
1174 }
Simon Horman4a741432013-02-23 15:35:38 +09001175 } else if (!strncasecmp(check->bi->data, "down", strlen("down"))) {
Simon Hormana2b9dad2013-02-12 10:45:54 +09001176 down_cmd = "down";
Simon Horman4a741432013-02-23 15:35:38 +09001177 } else if (!strncasecmp(check->bi->data, "stopped", strlen("stopped"))) {
Simon Hormana2b9dad2013-02-12 10:45:54 +09001178 down_cmd = "stopped";
Simon Horman4a741432013-02-23 15:35:38 +09001179 } else if (!strncasecmp(check->bi->data, "fail", strlen("fail"))) {
Simon Hormana2b9dad2013-02-12 10:45:54 +09001180 down_cmd = "fail";
1181 }
1182
1183 if (down_cmd) {
Simon Horman4a741432013-02-23 15:35:38 +09001184 const char *end = check->bi->data + strlen(down_cmd);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001185 /*
1186 * The command keyword must terminated the string or
1187 * be followed by a blank.
1188 */
Willy Tarreau8b4c3762013-02-13 12:47:12 +01001189 if (end[0] == '\0' || end[0] == ' ' || end[0] == '\t') {
Simon Hormana2b9dad2013-02-12 10:45:54 +09001190 status = HCHK_STATUS_L7STS;
Simon Horman80fefae2013-11-25 10:46:34 +09001191 desc = check->bi->data;
Simon Hormana2b9dad2013-02-12 10:45:54 +09001192 }
1193 }
1194
Simon Horman4a741432013-02-23 15:35:38 +09001195 set_server_check_status(check, status, desc);
Simon Horman8c3d0be2013-11-25 10:46:40 +09001196 set_server_drain_state(check->server);
Simon Hormana2b9dad2013-02-12 10:45:54 +09001197 break;
1198 }
1199
Willy Tarreau1620ec32011-08-06 17:05:02 +02001200 case PR_O2_PGSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001201 if (!done && check->bi->i < 9)
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001202 goto wait_more_data;
1203
Simon Horman4a741432013-02-23 15:35:38 +09001204 if (check->bi->data[0] == 'R') {
1205 set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok");
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001206 }
1207 else {
Simon Horman4a741432013-02-23 15:35:38 +09001208 if ((check->bi->data[0] == 'E') && (check->bi->data[5]!=0) && (check->bi->data[6]!=0))
1209 desc = &check->bi->data[6];
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001210 else
1211 desc = "PostgreSQL unknown error";
1212
Simon Horman4a741432013-02-23 15:35:38 +09001213 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001214 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001215 break;
1216
1217 case PR_O2_REDIS_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001218 if (!done && check->bi->i < 7)
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001219 goto wait_more_data;
1220
Simon Horman4a741432013-02-23 15:35:38 +09001221 if (strcmp(check->bi->data, "+PONG\r\n") == 0) {
1222 set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok");
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001223 }
1224 else {
Simon Horman4a741432013-02-23 15:35:38 +09001225 set_server_check_status(check, HCHK_STATUS_L7STS, check->bi->data);
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001226 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001227 break;
1228
1229 case PR_O2_MYSQL_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001230 if (!done && check->bi->i < 5)
Willy Tarreau03938182010-03-17 21:52:07 +01001231 goto wait_more_data;
1232
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001233 if (s->proxy->check_len == 0) { // old mode
Simon Horman4a741432013-02-23 15:35:38 +09001234 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001235 /* We set the MySQL Version in description for information purpose
1236 * FIXME : it can be cool to use MySQL Version for other purpose,
1237 * like mark as down old MySQL server.
1238 */
Simon Horman4a741432013-02-23 15:35:38 +09001239 if (check->bi->i > 51) {
1240 desc = ltrim(check->bi->data + 5, ' ');
1241 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001242 }
1243 else {
1244 if (!done)
1245 goto wait_more_data;
1246 /* it seems we have a OK packet but without a valid length,
1247 * it must be a protocol error
1248 */
Simon Horman4a741432013-02-23 15:35:38 +09001249 set_server_check_status(check, HCHK_STATUS_L7RSP, check->bi->data);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001250 }
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001251 }
1252 else {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001253 /* An error message is attached in the Error packet */
Simon Horman4a741432013-02-23 15:35:38 +09001254 desc = ltrim(check->bi->data + 7, ' ');
1255 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001256 }
1257 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001258 unsigned int first_packet_len = ((unsigned int) *check->bi->data) +
1259 (((unsigned int) *(check->bi->data + 1)) << 8) +
1260 (((unsigned int) *(check->bi->data + 2)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001261
Simon Horman4a741432013-02-23 15:35:38 +09001262 if (check->bi->i == first_packet_len + 4) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001263 /* MySQL Error packet always begin with field_count = 0xff */
Simon Horman4a741432013-02-23 15:35:38 +09001264 if (*(check->bi->data + 4) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001265 /* We have only one MySQL packet and it is a Handshake Initialization packet
1266 * but we need to have a second packet to know if it is alright
1267 */
Simon Horman4a741432013-02-23 15:35:38 +09001268 if (!done && check->bi->i < first_packet_len + 5)
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001269 goto wait_more_data;
1270 }
1271 else {
1272 /* We have only one packet and it is an Error packet,
1273 * an error message is attached, so we can display it
1274 */
Simon Horman4a741432013-02-23 15:35:38 +09001275 desc = &check->bi->data[7];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001276 //Warning("onlyoneERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001277 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001278 }
Simon Horman4a741432013-02-23 15:35:38 +09001279 } else if (check->bi->i > first_packet_len + 4) {
1280 unsigned int second_packet_len = ((unsigned int) *(check->bi->data + first_packet_len + 4)) +
1281 (((unsigned int) *(check->bi->data + first_packet_len + 5)) << 8) +
1282 (((unsigned int) *(check->bi->data + first_packet_len + 6)) << 16);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001283
Simon Horman4a741432013-02-23 15:35:38 +09001284 if (check->bi->i == first_packet_len + 4 + second_packet_len + 4 ) {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001285 /* We have 2 packets and that's good */
1286 /* Check if the second packet is a MySQL Error packet or not */
Simon Horman4a741432013-02-23 15:35:38 +09001287 if (*(check->bi->data + first_packet_len + 8) != '\xff') {
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001288 /* No error packet */
1289 /* We set the MySQL Version in description for information purpose */
Simon Horman4a741432013-02-23 15:35:38 +09001290 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001291 //Warning("2packetOK: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001292 set_server_check_status(check, HCHK_STATUS_L7OKD, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001293 }
1294 else {
1295 /* An error message is attached in the Error packet
1296 * so we can display it ! :)
1297 */
Simon Horman4a741432013-02-23 15:35:38 +09001298 desc = &check->bi->data[first_packet_len+11];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001299 //Warning("2packetERR: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001300 set_server_check_status(check, HCHK_STATUS_L7STS, desc);
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001301 }
1302 }
1303 }
1304 else {
Willy Tarreau03938182010-03-17 21:52:07 +01001305 if (!done)
1306 goto wait_more_data;
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001307 /* it seems we have a Handshake Initialization packet but without a valid length,
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001308 * it must be a protocol error
1309 */
Simon Horman4a741432013-02-23 15:35:38 +09001310 desc = &check->bi->data[5];
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02001311 //Warning("protoerr: %s\n", desc);
Simon Horman4a741432013-02-23 15:35:38 +09001312 set_server_check_status(check, HCHK_STATUS_L7RSP, desc);
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01001313 }
1314 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001315 break;
1316
1317 case PR_O2_LDAP_CHK:
Simon Horman4a741432013-02-23 15:35:38 +09001318 if (!done && check->bi->i < 14)
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001319 goto wait_more_data;
1320
1321 /* Check if the server speaks LDAP (ASN.1/BER)
1322 * http://en.wikipedia.org/wiki/Basic_Encoding_Rules
1323 * http://tools.ietf.org/html/rfc4511
1324 */
1325
1326 /* http://tools.ietf.org/html/rfc4511#section-4.1.1
1327 * LDAPMessage: 0x30: SEQUENCE
1328 */
Simon Horman4a741432013-02-23 15:35:38 +09001329 if ((check->bi->i < 14) || (*(check->bi->data) != '\x30')) {
1330 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001331 }
1332 else {
1333 /* size of LDAPMessage */
Simon Horman4a741432013-02-23 15:35:38 +09001334 msglen = (*(check->bi->data + 1) & 0x80) ? (*(check->bi->data + 1) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001335
1336 /* http://tools.ietf.org/html/rfc4511#section-4.2.2
1337 * messageID: 0x02 0x01 0x01: INTEGER 1
1338 * protocolOp: 0x61: bindResponse
1339 */
1340 if ((msglen > 2) ||
Simon Horman4a741432013-02-23 15:35:38 +09001341 (memcmp(check->bi->data + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) {
1342 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001343
1344 goto out_wakeup;
1345 }
1346
1347 /* size of bindResponse */
Simon Horman4a741432013-02-23 15:35:38 +09001348 msglen += (*(check->bi->data + msglen + 6) & 0x80) ? (*(check->bi->data + msglen + 6) & 0x7f) : 0;
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001349
1350 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1351 * ldapResult: 0x0a 0x01: ENUMERATION
1352 */
1353 if ((msglen > 4) ||
Simon Horman4a741432013-02-23 15:35:38 +09001354 (memcmp(check->bi->data + 7 + msglen, "\x0a\x01", 2) != 0)) {
1355 set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001356
1357 goto out_wakeup;
1358 }
1359
1360 /* http://tools.ietf.org/html/rfc4511#section-4.1.9
1361 * resultCode
1362 */
Simon Horman4a741432013-02-23 15:35:38 +09001363 check->code = *(check->bi->data + msglen + 9);
1364 if (check->code) {
1365 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 +02001366 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001367 set_server_check_status(check, HCHK_STATUS_L7OKD, "Success");
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001368 }
1369 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001370 break;
1371
1372 default:
Willy Tarreau06559ac2013-12-05 01:53:08 +01001373 /* for other checks (eg: pure TCP), delegate to the main task */
Willy Tarreau1620ec32011-08-06 17:05:02 +02001374 break;
1375 } /* switch */
Willy Tarreau83749182007-04-15 20:56:27 +02001376
Willy Tarreauc7dd71a2007-11-30 08:33:21 +01001377 out_wakeup:
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001378 /* collect possible new errors */
1379 if (conn->flags & CO_FL_ERROR)
1380 chk_report_conn_err(conn, 0, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001381
Nick Chalk57b1bf72010-03-16 15:50:46 +00001382 /* Reset the check buffer... */
Simon Horman4a741432013-02-23 15:35:38 +09001383 *check->bi->data = '\0';
1384 check->bi->i = 0;
Nick Chalk57b1bf72010-03-16 15:50:46 +00001385
Willy Tarreaufd29cc52012-11-23 09:18:20 +01001386 /* Close the connection... We absolutely want to perform a hard close
1387 * and reset the connection if some data are pending, otherwise we end
1388 * up with many TIME_WAITs and eat all the source port range quickly.
1389 * To avoid sending RSTs all the time, we first try to drain pending
1390 * data.
1391 */
Willy Tarreauf1503172012-09-28 19:39:36 +02001392 if (conn->xprt && conn->xprt->shutw)
1393 conn->xprt->shutw(conn, 0);
Willy Tarreau2b57cb82013-06-10 19:56:38 +02001394
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001395 /* OK, let's not stay here forever */
1396 if (check->result & SRV_CHK_FAILED)
1397 conn->flags |= CO_FL_ERROR;
1398
Willy Tarreaua522f802012-11-23 08:56:35 +01001399 __conn_data_stop_both(conn);
Willy Tarreaufdccded2008-08-29 18:19:04 +02001400 task_wakeup(t, TASK_WOKEN_IO);
Willy Tarreau3267d362012-08-17 23:53:56 +02001401 return;
Willy Tarreau03938182010-03-17 21:52:07 +01001402
1403 wait_more_data:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001404 __conn_data_poll_recv(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001405}
1406
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001407/*
1408 * This function is used only for server health-checks. It handles connection
1409 * status updates including errors. If necessary, it wakes the check task up.
1410 * It always returns 0.
1411 */
1412static int wake_srv_chk(struct connection *conn)
Willy Tarreau20bea422012-07-06 12:00:49 +02001413{
Simon Horman4a741432013-02-23 15:35:38 +09001414 struct check *check = conn->owner;
Willy Tarreau20bea422012-07-06 12:00:49 +02001415
Willy Tarreau6c560da2012-11-24 11:14:45 +01001416 if (unlikely(conn->flags & CO_FL_ERROR)) {
Willy Tarreau02b0f582013-12-03 15:42:33 +01001417 /* We may get error reports bypassing the I/O handlers, typically
1418 * the case when sending a pure TCP check which fails, then the I/O
1419 * handlers above are not called. This is completely handled by the
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001420 * main processing task so let's simply wake it up. If we get here,
1421 * we expect errno to still be valid.
1422 */
1423 chk_report_conn_err(conn, errno, 0);
1424
Willy Tarreau2d351b62013-12-05 02:36:25 +01001425 __conn_data_stop_both(conn);
1426 task_wakeup(check->task, TASK_WOKEN_IO);
1427 }
1428
1429 if (check->result & (SRV_CHK_FAILED|SRV_CHK_PASSED)) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001430 /* We're here because nobody wants to handle the error, so we
1431 * sure want to abort the hard way.
Willy Tarreau02b0f582013-12-03 15:42:33 +01001432 */
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001433 if (conn->ctrl && !(conn->flags & CO_FL_SOCK_RD_SH)) {
Willy Tarreau2d351b62013-12-05 02:36:25 +01001434 if (conn->flags & CO_FL_WAIT_RD || !conn->ctrl->drain || !conn->ctrl->drain(conn->t.sock.fd))
1435 setsockopt(conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
1436 (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001437 }
Willy Tarreau2b199c92012-11-23 17:32:21 +01001438 conn_full_close(conn);
Willy Tarreau2d351b62013-12-05 02:36:25 +01001439 }
Willy Tarreau3267d362012-08-17 23:53:56 +02001440 return 0;
Willy Tarreau20bea422012-07-06 12:00:49 +02001441}
1442
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001443struct data_cb check_conn_cb = {
1444 .recv = event_srv_chk_r,
1445 .send = event_srv_chk_w,
1446 .wake = wake_srv_chk,
1447};
1448
Willy Tarreaubaaee002006-06-26 02:48:02 +02001449/*
Willy Tarreau2e993902011-10-31 11:53:20 +01001450 * updates the server's weight during a warmup stage. Once the final weight is
1451 * reached, the task automatically stops. Note that any server status change
1452 * must have updated s->last_change accordingly.
1453 */
1454static struct task *server_warmup(struct task *t)
1455{
1456 struct server *s = t->context;
1457
1458 /* by default, plan on stopping the task */
1459 t->expire = TICK_ETERNITY;
1460 if ((s->state & (SRV_RUNNING|SRV_WARMINGUP|SRV_MAINTAIN)) != (SRV_RUNNING|SRV_WARMINGUP))
1461 return t;
1462
Willy Tarreau004e0452013-11-21 11:22:01 +01001463 server_recalc_eweight(s);
Willy Tarreau2e993902011-10-31 11:53:20 +01001464
1465 /* probably that we can refill this server with a bit more connections */
1466 check_for_pending(s);
1467
1468 /* get back there in 1 second or 1/20th of the slowstart interval,
1469 * whichever is greater, resulting in small 5% steps.
1470 */
1471 if (s->state & SRV_WARMINGUP)
1472 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
1473 return t;
1474}
1475
1476/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001477 * manages a server health-check. Returns
1478 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
1479 */
Simon Horman63a4a822012-03-19 07:24:41 +09001480static struct task *process_chk(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001481{
Simon Horman4a741432013-02-23 15:35:38 +09001482 struct check *check = t->context;
1483 struct server *s = check->server;
1484 struct connection *conn = check->conn;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001485 int rv;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001486 int ret;
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01001487 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001488
Simon Hormancd5d7b62013-02-24 17:23:38 +09001489 if (!(check->state & CHK_STATE_RUNNING)) {
Willy Tarreau5a78f362012-11-23 12:47:05 +01001490 /* no check currently running */
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01001491 if (!expired) /* woke up too early */
Willy Tarreau26c25062009-03-08 09:38:41 +01001492 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001493
Simon Horman671b6f02013-11-25 10:46:39 +09001494 /* we don't send any health-checks when the proxy is
1495 * stopped, the server should not be checked or the check
1496 * is disabled.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001497 */
Simon Horman671b6f02013-11-25 10:46:39 +09001498 if (!(s->state & SRV_CHECKED) ||
1499 s->proxy->state == PR_STSTOPPED ||
1500 (s->state & SRV_MAINTAIN) ||
1501 (check->state & CHK_STATE_DISABLED))
Willy Tarreau5a78f362012-11-23 12:47:05 +01001502 goto reschedule;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001503
1504 /* we'll initiate a new check */
Simon Horman4a741432013-02-23 15:35:38 +09001505 set_server_check_status(check, HCHK_STATUS_START, NULL);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001506
Simon Hormancd5d7b62013-02-24 17:23:38 +09001507 check->state |= CHK_STATE_RUNNING;
Simon Horman4a741432013-02-23 15:35:38 +09001508 check->bi->p = check->bi->data;
1509 check->bi->i = 0;
1510 check->bo->p = check->bo->data;
1511 check->bo->o = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001512
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001513 /* tcpcheck send/expect initialisation */
1514 if (check->type == PR_O2_TCPCHK_CHK)
1515 check->current_step = NULL;
1516
1517 /* prepare the check buffer.
1518 * This should not be used if check is the secondary agent check
1519 * of a server as s->proxy->check_req will relate to the
1520 * configuration of the primary check. Similarly, tcp-check uses
1521 * its own strings.
1522 */
1523 if (check->type && check->type != PR_O2_TCPCHK_CHK && check != &s->agent) {
Simon Horman4a741432013-02-23 15:35:38 +09001524 bo_putblk(check->bo, s->proxy->check_req, s->proxy->check_len);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001525
1526 /* we want to check if this host replies to HTTP or SSLv3 requests
1527 * so we'll send the request, and won't wake the checker up now.
1528 */
Simon Horman4a741432013-02-23 15:35:38 +09001529 if ((check->type) == PR_O2_SSL3_CHK) {
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001530 /* SSL requires that we put Unix time in the request */
1531 int gmt_time = htonl(date.tv_sec);
Simon Horman4a741432013-02-23 15:35:38 +09001532 memcpy(check->bo->data + 11, &gmt_time, 4);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001533 }
Simon Horman4a741432013-02-23 15:35:38 +09001534 else if ((check->type) == PR_O2_HTTP_CHK) {
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001535 if (s->proxy->options2 & PR_O2_CHK_SNDST)
Simon Horman4a741432013-02-23 15:35:38 +09001536 bo_putblk(check->bo, trash.str, httpchk_build_status_header(s, trash.str));
1537 bo_putstr(check->bo, "\r\n");
1538 *check->bo->p = '\0'; /* to make gdb output easier to read */
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001539 }
1540 }
1541
1542 /* prepare a new connection */
Willy Tarreaub63b5962012-11-23 16:22:08 +01001543 conn->flags = CO_FL_NONE;
Willy Tarreau14cba4b2012-11-30 17:33:05 +01001544 conn->err_code = CO_ER_NONE;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001545 conn->target = &s->obj_type;
Simon Horman4a741432013-02-23 15:35:38 +09001546 conn_prepare(conn, &check_conn_cb, s->check_common.proto, s->check_common.xprt, check);
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02001547
Willy Tarreau5f2877a2012-10-26 19:57:58 +02001548 /* no client address */
1549 clear_addr(&conn->addr.from);
1550
Simon Horman66183002013-02-23 10:16:43 +09001551 if (is_addr(&s->check_common.addr))
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001552 /* we'll connect to the check addr specified on the server */
Simon Horman66183002013-02-23 10:16:43 +09001553 conn->addr.to = s->check_common.addr;
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001554 else
1555 /* we'll connect to the addr on the server */
1556 conn->addr.to = s->addr;
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02001557
Simon Horman4a741432013-02-23 15:35:38 +09001558 set_host_port(&conn->addr.to, check->port);
Willy Tarreaue8c66af2008-01-13 18:40:14 +01001559
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001560 /* It can return one of :
1561 * - SN_ERR_NONE if everything's OK
1562 * - SN_ERR_SRVTO if there are no more servers
1563 * - SN_ERR_SRVCL if the connection was refused by the server
1564 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1565 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1566 * - SN_ERR_INTERNAL for any other purely internal errors
1567 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau24db47e2012-11-23 14:16:39 +01001568 * Note that we try to prevent the network stack from sending the ACK during the
Willy Tarreauf0837b22012-11-24 10:24:27 +01001569 * connect() when a pure TCP check is used (without PROXY protocol).
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001570 */
Willy Tarreau8f46cca2013-03-04 20:07:44 +01001571 ret = SN_ERR_INTERNAL;
Simon Horman66183002013-02-23 10:16:43 +09001572 if (s->check_common.proto->connect)
Simon Horman4a741432013-02-23 15:35:38 +09001573 ret = s->check_common.proto->connect(conn, check->type,
1574 s->check.send_proxy ? 1 : (check->type) ? 0 : 2);
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001575 conn->flags |= CO_FL_WAKE_DATA;
Simon Horman4a741432013-02-23 15:35:38 +09001576 if (check->send_proxy)
Willy Tarreau6c16adc2012-10-05 00:04:16 +02001577 conn->flags |= CO_FL_LOCAL_SPROXY;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001578
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001579 switch (ret) {
1580 case SN_ERR_NONE:
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001581 /* we allow up to min(inter, timeout.connect) for a connection
1582 * to establish but only when timeout.check is set
1583 * as it may be to short for a full check otherwise
1584 */
Simon Horman4a741432013-02-23 15:35:38 +09001585 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001586
Willy Tarreaufb56aab2012-09-28 14:40:02 +02001587 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
1588 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
1589 t->expire = tick_first(t->expire, t_con);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001590 }
Willy Tarreau06559ac2013-12-05 01:53:08 +01001591
1592 if (check->type)
1593 conn_data_want_recv(conn); /* prepare for reading a possible reply */
1594
Willy Tarreau5a78f362012-11-23 12:47:05 +01001595 goto reschedule;
1596
1597 case SN_ERR_SRVTO: /* ETIMEDOUT */
1598 case SN_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */
Simon Horman4a741432013-02-23 15:35:38 +09001599 set_server_check_status(check, HCHK_STATUS_L4CON, strerror(errno));
Willy Tarreau5a78f362012-11-23 12:47:05 +01001600 break;
1601 case SN_ERR_PRXCOND:
1602 case SN_ERR_RESOURCE:
1603 case SN_ERR_INTERNAL:
Simon Horman4a741432013-02-23 15:35:38 +09001604 set_server_check_status(check, HCHK_STATUS_SOCKERR, NULL);
Willy Tarreau5a78f362012-11-23 12:47:05 +01001605 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001606 }
1607
Willy Tarreau5a78f362012-11-23 12:47:05 +01001608 /* here, we have seen a synchronous error, no fd was allocated */
Willy Tarreau6b0a8502012-11-23 08:51:32 +01001609
Simon Hormancd5d7b62013-02-24 17:23:38 +09001610 check->state &= ~CHK_STATE_RUNNING;
Simon Hormand8583062013-11-25 10:46:33 +09001611 check_failed(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001612
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01001613 /* we allow up to min(inter, timeout.connect) for a connection
1614 * to establish but only when timeout.check is set
1615 * as it may be to short for a full check otherwise
1616 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001617 while (tick_is_expired(t->expire, now_ms)) {
1618 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01001619
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001620 t_con = tick_add(t->expire, s->proxy->timeout.connect);
Simon Horman4a741432013-02-23 15:35:38 +09001621 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01001622
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001623 if (s->proxy->timeout.check)
1624 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01001625 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001626 }
1627 else {
Willy Tarreauf1503172012-09-28 19:39:36 +02001628 /* there was a test running.
1629 * First, let's check whether there was an uncaught error,
1630 * which can happen on connect timeout or error.
1631 */
Simon Horman28b5ffc2013-02-24 07:25:29 +09001632 if (s->check.result == SRV_CHK_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001633 /* good connection is enough for pure TCP check */
1634 if ((conn->flags & CO_FL_CONNECTED) && !check->type) {
Simon Horman4a741432013-02-23 15:35:38 +09001635 if (check->use_ssl)
1636 set_server_check_status(check, HCHK_STATUS_L6OK, NULL);
Willy Tarreauf1503172012-09-28 19:39:36 +02001637 else
Simon Horman4a741432013-02-23 15:35:38 +09001638 set_server_check_status(check, HCHK_STATUS_L4OK, NULL);
Willy Tarreauacbdc7a2012-11-23 14:02:10 +01001639 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +01001640 else if ((conn->flags & CO_FL_ERROR) || expired) {
1641 chk_report_conn_err(conn, 0, expired);
Willy Tarreauf1503172012-09-28 19:39:36 +02001642 }
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001643 else
1644 goto out_wait; /* timeout not reached, wait again */
Willy Tarreauf1503172012-09-28 19:39:36 +02001645 }
1646
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001647 /* check complete or aborted */
Willy Tarreau5ba04f62013-02-12 15:23:12 +01001648 if (conn->xprt) {
1649 /* The check was aborted and the connection was not yet closed.
1650 * This can happen upon timeout, or when an external event such
1651 * as a failed response coupled with "observe layer7" caused the
1652 * server state to be suddenly changed.
1653 */
Willy Tarreau2d351b62013-12-05 02:36:25 +01001654 if (conn->ctrl && !(conn->flags & CO_FL_SOCK_RD_SH)) {
1655 if (conn->flags & CO_FL_WAIT_RD || !conn->ctrl->drain || !conn->ctrl->drain(conn->t.sock.fd))
1656 setsockopt(conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
1657 (struct linger *) &nolinger, sizeof(struct linger));
1658 }
Willy Tarreau5ba04f62013-02-12 15:23:12 +01001659 conn_full_close(conn);
1660 }
1661
Simon Hormand8583062013-11-25 10:46:33 +09001662 if (check->result & SRV_CHK_FAILED) /* a failure or timeout detected */
1663 check_failed(check);
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001664 else { /* check was OK */
Willy Tarreau48494c02007-11-30 10:41:39 +01001665 /* we may have to add/remove this server from the LB group */
1666 if ((s->state & SRV_RUNNING) && (s->proxy->options & PR_O_DISABLE404)) {
Simon Horman4a741432013-02-23 15:35:38 +09001667 if ((s->state & SRV_GOINGDOWN) && !(check->result & SRV_CHK_DISABLE))
1668 set_server_enabled(check);
1669 else if (!(s->state & SRV_GOINGDOWN) && (check->result & SRV_CHK_DISABLE))
1670 set_server_disabled(check);
Willy Tarreau48494c02007-11-30 10:41:39 +01001671 }
1672
Simon Horman58c32972013-11-25 10:46:38 +09001673 if (check->health < check->rise + check->fall - 1) {
Simon Horman125d0992013-02-24 17:23:38 +09001674 check->health++; /* was bad, stays for a while */
Simon Horman4a741432013-02-23 15:35:38 +09001675 set_server_up(check);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001676 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001677 }
Simon Hormancd5d7b62013-02-24 17:23:38 +09001678 check->state &= ~CHK_STATE_RUNNING;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001679
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001680 rv = 0;
1681 if (global.spread_checks > 0) {
Simon Horman4a741432013-02-23 15:35:38 +09001682 rv = srv_getinter(check) * global.spread_checks / 100;
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001683 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001684 }
Simon Horman4a741432013-02-23 15:35:38 +09001685 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001686 }
Willy Tarreau5a78f362012-11-23 12:47:05 +01001687
1688 reschedule:
1689 while (tick_is_expired(t->expire, now_ms))
Simon Horman4a741432013-02-23 15:35:38 +09001690 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
Willy Tarreau74fa7fb2012-11-23 14:43:49 +01001691 out_wait:
Willy Tarreau26c25062009-03-08 09:38:41 +01001692 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001693}
1694
Simon Horman5c942422013-11-25 10:46:32 +09001695static int start_check_task(struct check *check, int mininter,
1696 int nbcheck, int srvpos)
1697{
1698 struct task *t;
1699 /* task for the check */
1700 if ((t = task_new()) == NULL) {
1701 Alert("Starting [%s:%s] check: out of memory.\n",
1702 check->server->proxy->id, check->server->id);
1703 return 0;
1704 }
1705
1706 check->task = t;
1707 t->process = process_chk;
1708 t->context = check;
1709
1710 /* check this every ms */
1711 t->expire = tick_add(now_ms,
1712 MS_TO_TICKS(((mininter &&
1713 mininter >= srv_getinter(check)) ?
1714 mininter : srv_getinter(check)) * srvpos / nbcheck));
1715 check->start = now;
1716 task_queue(t);
1717
1718 return 1;
1719}
1720
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001721/*
1722 * Start health-check.
1723 * Returns 0 if OK, -1 if error, and prints the error in this case.
1724 */
1725int start_checks() {
1726
1727 struct proxy *px;
1728 struct server *s;
1729 struct task *t;
Simon Horman4a741432013-02-23 15:35:38 +09001730 int nbcheck=0, mininter=0, srvpos=0;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001731
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02001732 /* 1- count the checkers to run simultaneously.
1733 * We also determine the minimum interval among all of those which
1734 * have an interval larger than SRV_CHK_INTER_THRES. This interval
1735 * will be used to spread their start-up date. Those which have
Jamie Gloudon801a0a32012-08-25 00:18:33 -04001736 * a shorter interval will start independently and will not dictate
Willy Tarreau2c43a1e2007-10-14 23:05:39 +02001737 * too short an interval for all others.
1738 */
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001739 for (px = proxy; px; px = px->next) {
1740 for (s = px->srv; s; s = s->next) {
Willy Tarreaue7b73482013-11-21 11:50:50 +01001741 if (s->slowstart) {
1742 if ((t = task_new()) == NULL) {
1743 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
1744 return -1;
1745 }
1746 /* We need a warmup task that will be called when the server
1747 * state switches from down to up.
1748 */
1749 s->warmup = t;
1750 t->process = server_warmup;
1751 t->context = s;
1752 t->expire = TICK_ETERNITY;
1753 }
1754
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001755 if (!(s->state & SRV_CHECKED))
1756 continue;
1757
Simon Horman4a741432013-02-23 15:35:38 +09001758 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
1759 (!mininter || mininter > srv_getinter(&s->check)))
1760 mininter = srv_getinter(&s->check);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001761
Simon Horman4a741432013-02-23 15:35:38 +09001762 nbcheck++;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001763 }
1764 }
1765
Simon Horman4a741432013-02-23 15:35:38 +09001766 if (!nbcheck)
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001767 return 0;
1768
1769 srand((unsigned)time(NULL));
1770
1771 /*
1772 * 2- start them as far as possible from each others. For this, we will
1773 * start them after their interval set to the min interval divided by
1774 * the number of servers, weighted by the server's position in the list.
1775 */
1776 for (px = proxy; px; px = px->next) {
1777 for (s = px->srv; s; s = s->next) {
Simon Hormand60d6912013-11-25 10:46:36 +09001778 /* A task for the main check */
1779 if (s->state & SRV_CHECKED) {
1780 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
1781 return -1;
1782 srvpos++;
1783 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001784
Simon Hormand60d6912013-11-25 10:46:36 +09001785 /* A task for a auxiliary agent check */
1786 if (s->state & SRV_AGENT_CHECKED) {
1787 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
1788 return -1;
1789 }
1790 srvpos++;
1791 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001792 }
1793 }
1794 return 0;
1795}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001796
1797/*
Willy Tarreau5b3a2022012-09-28 15:01:02 +02001798 * Perform content verification check on data in s->check.buffer buffer.
Willy Tarreaubd741542010-03-16 18:46:54 +01001799 * The buffer MUST be terminated by a null byte before calling this function.
1800 * Sets server status appropriately. The caller is responsible for ensuring
1801 * that the buffer contains at least 13 characters. If <done> is zero, we may
1802 * return 0 to indicate that data is required to decide of a match.
1803 */
1804static int httpchk_expect(struct server *s, int done)
1805{
1806 static char status_msg[] = "HTTP status check returned code <000>";
1807 char status_code[] = "000";
1808 char *contentptr;
1809 int crlf;
1810 int ret;
1811
1812 switch (s->proxy->options2 & PR_O2_EXP_TYPE) {
1813 case PR_O2_EXP_STS:
1814 case PR_O2_EXP_RSTS:
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001815 memcpy(status_code, s->check.bi->data + 9, 3);
1816 memcpy(status_msg + strlen(status_msg) - 4, s->check.bi->data + 9, 3);
Willy Tarreaubd741542010-03-16 18:46:54 +01001817
1818 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS)
1819 ret = strncmp(s->proxy->expect_str, status_code, 3) == 0;
1820 else
1821 ret = regexec(s->proxy->expect_regex, status_code, MAX_MATCH, pmatch, 0) == 0;
1822
1823 /* we necessarily have the response, so there are no partial failures */
1824 if (s->proxy->options2 & PR_O2_EXP_INV)
1825 ret = !ret;
1826
Simon Horman4a741432013-02-23 15:35:38 +09001827 set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg);
Willy Tarreaubd741542010-03-16 18:46:54 +01001828 break;
1829
1830 case PR_O2_EXP_STR:
1831 case PR_O2_EXP_RSTR:
1832 /* very simple response parser: ignore CR and only count consecutive LFs,
1833 * stop with contentptr pointing to first char after the double CRLF or
1834 * to '\0' if crlf < 2.
1835 */
1836 crlf = 0;
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001837 for (contentptr = s->check.bi->data; *contentptr; contentptr++) {
Willy Tarreaubd741542010-03-16 18:46:54 +01001838 if (crlf >= 2)
1839 break;
1840 if (*contentptr == '\r')
1841 continue;
1842 else if (*contentptr == '\n')
1843 crlf++;
1844 else
1845 crlf = 0;
1846 }
1847
1848 /* Check that response contains a body... */
1849 if (crlf < 2) {
1850 if (!done)
1851 return 0;
1852
Simon Horman4a741432013-02-23 15:35:38 +09001853 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01001854 "HTTP content check could not find a response body");
1855 return 1;
1856 }
1857
1858 /* Check that response body is not empty... */
1859 if (*contentptr == '\0') {
Willy Tarreaua164fb52011-04-13 09:32:41 +02001860 if (!done)
1861 return 0;
1862
Simon Horman4a741432013-02-23 15:35:38 +09001863 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01001864 "HTTP content check found empty response body");
1865 return 1;
1866 }
1867
1868 /* Check the response content against the supplied string
1869 * or regex... */
1870 if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR)
1871 ret = strstr(contentptr, s->proxy->expect_str) != NULL;
1872 else
1873 ret = regexec(s->proxy->expect_regex, contentptr, MAX_MATCH, pmatch, 0) == 0;
1874
1875 /* if we don't match, we may need to wait more */
1876 if (!ret && !done)
1877 return 0;
1878
1879 if (ret) {
1880 /* content matched */
1881 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09001882 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01001883 "HTTP check matched unwanted content");
1884 else
Simon Horman4a741432013-02-23 15:35:38 +09001885 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01001886 "HTTP content check matched");
1887 }
1888 else {
1889 if (s->proxy->options2 & PR_O2_EXP_INV)
Simon Horman4a741432013-02-23 15:35:38 +09001890 set_server_check_status(&s->check, HCHK_STATUS_L7OKD,
Willy Tarreaubd741542010-03-16 18:46:54 +01001891 "HTTP check did not match unwanted content");
1892 else
Simon Horman4a741432013-02-23 15:35:38 +09001893 set_server_check_status(&s->check, HCHK_STATUS_L7RSP,
Willy Tarreaubd741542010-03-16 18:46:54 +01001894 "HTTP content check did not match");
1895 }
1896 break;
1897 }
1898 return 1;
1899}
1900
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001901/*
1902 * return the id of a step in a send/expect session
1903 */
1904static int tcpcheck_get_step_id(struct server *s)
1905{
1906 struct tcpcheck_rule *cur = NULL, *next = NULL;
1907 int i = 0;
1908
1909 cur = s->check.current_step;
1910
1911 /* no step => first step */
1912 if (cur == NULL)
1913 return 1;
1914
1915 /* increment i until current step */
1916 list_for_each_entry(next, &s->proxy->tcpcheck_rules, list) {
1917 if (next->list.p == &cur->list)
1918 break;
1919 ++i;
1920 }
1921
1922 return i;
1923}
1924
1925static void tcpcheck_main(struct connection *conn)
1926{
1927 char *contentptr;
1928 unsigned int contentlen;
1929 struct list *head = NULL;
1930 struct tcpcheck_rule *cur = NULL;
1931 int done = 0, ret = 0;
1932
1933 struct check *check = conn->owner;
1934 struct server *s = check->server;
1935 struct task *t = check->task;
1936
1937 /* don't do anything until the connection is established */
1938 if (!(conn->flags & CO_FL_CONNECTED)) {
1939 /* update expire time, should be done by process_chk */
1940 /* we allow up to min(inter, timeout.connect) for a connection
1941 * to establish but only when timeout.check is set
1942 * as it may be to short for a full check otherwise
1943 */
1944 while (tick_is_expired(t->expire, now_ms)) {
1945 int t_con;
1946
1947 t_con = tick_add(t->expire, s->proxy->timeout.connect);
1948 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
1949
1950 if (s->proxy->timeout.check)
1951 t->expire = tick_first(t->expire, t_con);
1952 }
1953 return;
1954 }
1955
Willy Tarreaua970c282013-12-06 12:47:19 +01001956 /* It's only the rules which will enable send/recv */
1957 __conn_data_stop_both(conn);
1958
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02001959 /* here, we know that the connection is established */
1960 if (check->result & (SRV_CHK_FAILED | SRV_CHK_PASSED)) {
1961 goto out_end_tcpcheck;
1962 }
1963
1964 /* head is be the first element of the double chained list */
1965 head = &s->proxy->tcpcheck_rules;
1966
1967 /* no step means first step
1968 * initialisation */
1969 if (check->current_step == NULL) {
1970 check->bo->p = check->bo->data;
1971 check->bo->o = 0;
1972 check->bi->p = check->bi->data;
1973 check->bi->i = 0;
1974 cur = check->current_step = LIST_ELEM(head->n, struct tcpcheck_rule *, list);
1975 t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter));
1976 if (s->proxy->timeout.check)
1977 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
1978 }
1979 /* keep on processing step */
1980 else {
1981 cur = check->current_step;
1982 }
1983
Willy Tarreauabca5b62013-12-06 14:19:25 +01001984 while (1) {
1985 /* we must always ensure that nothing remains in the output buffer */
1986 while (check->bo->o) {
1987 conn->xprt->snd_buf(conn, check->bo, MSG_DONTWAIT | MSG_NOSIGNAL);
1988 if (conn->flags & CO_FL_ERROR) {
1989 chk_report_conn_err(conn, errno, 0);
1990 __conn_data_stop_both(conn);
1991 goto out_end_tcpcheck;
1992 }
1993 if (conn->flags & CO_FL_WAIT_WR)
1994 goto out_incomplete;
1995 }
1996
1997 /* did we reach the end ? */
1998 if (&cur->list == head)
1999 break;
2000
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002001 if (check->current_step->action == TCPCHK_ACT_SEND) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002002 /* reset the read buffer */
2003 if (*check->bi->data != '\0') {
2004 *check->bi->data = '\0';
2005 check->bi->i = 0;
2006 }
2007
2008 if (conn->flags & (CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH)) {
2009 conn->flags |= CO_FL_ERROR;
2010 chk_report_conn_err(conn, 0, 0);
2011 goto out_end_tcpcheck;
2012 }
2013
2014 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_WR))
2015 return;
2016
Willy Tarreauabca5b62013-12-06 14:19:25 +01002017 if (check->current_step->string_len >= check->bo->size) {
2018 chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%d) at step %d",
2019 check->current_step->string_len, check->bo->size,
2020 tcpcheck_get_step_id(s));
2021 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2022 goto out_end_tcpcheck;
2023 }
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002024
2025 bo_putblk(check->bo, check->current_step->string, check->current_step->string_len);
2026 *check->bo->p = '\0'; /* to make gdb output easier to read */
2027
Willy Tarreauabca5b62013-12-06 14:19:25 +01002028 /* go to next rule and try to send */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002029 cur = (struct tcpcheck_rule *)cur->list.n;
2030 check->current_step = cur;
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002031 } /* end 'send' */
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002032 else if (check->current_step->action == TCPCHK_ACT_EXPECT) {
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002033 if (unlikely(check->result & SRV_CHK_FAILED))
2034 goto out_end_tcpcheck;
2035
2036 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_RD))
2037 return;
2038
2039 conn->xprt->rcv_buf(conn, check->bi, buffer_total_space(check->bi));
2040
2041 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH)) {
2042 done = 1;
2043 if ((conn->flags & CO_FL_ERROR) && !check->bi->i) {
2044 /* Report network errors only if we got no other data. Otherwise
2045 * we'll let the upper layers decide whether the response is OK
2046 * or not. It is very common that an RST sent by the server is
2047 * reported as an error just after the last data chunk.
2048 */
2049 chk_report_conn_err(conn, errno, 0);
2050 goto out_end_tcpcheck;
2051 }
2052 }
2053
2054 /* Intermediate or complete response received.
2055 * Terminate string in check->bi->data buffer.
2056 */
2057 if (check->bi->i < check->bi->size) {
2058 check->bi->data[check->bi->i] = '\0';
2059 }
2060 else {
2061 check->bi->data[check->bi->i - 1] = '\0';
2062 done = 1; /* buffer full, don't wait for more data */
2063 }
2064
2065 contentptr = check->bi->data;
2066 contentlen = check->bi->i;
2067
2068 /* Check that response body is not empty... */
2069 if (*contentptr == '\0') {
2070 if (!done)
2071 return;
2072
2073 /* empty response */
2074 chunk_printf(&trash, "TCPCHK got an empty response at step %d",
2075 tcpcheck_get_step_id(s));
2076 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2077
2078 goto out_end_tcpcheck;
2079 }
2080
2081 if (!done && (cur->string != NULL) && (check->bi->i < cur->string_len) )
Willy Tarreaua970c282013-12-06 12:47:19 +01002082 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002083
Willy Tarreaua970c282013-12-06 12:47:19 +01002084 tcpcheck_expect:
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002085 if (cur->string != NULL)
2086 ret = my_memmem(contentptr, contentlen, cur->string, cur->string_len) != NULL;
2087 else if (cur->expect_regex != NULL)
2088 ret = regexec(cur->expect_regex, contentptr, MAX_MATCH, pmatch, 0) == 0;
2089
2090 if (!ret && !done)
Willy Tarreaua970c282013-12-06 12:47:19 +01002091 continue; /* try to read more */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002092
2093 /* matched */
2094 if (ret) {
2095 /* matched but we did not want to => ERROR */
2096 if (cur->inverse) {
2097 /* we were looking for a string */
2098 if (cur->string != NULL) {
2099 chunk_printf(&trash, "TCPCHK matched unwanted content '%s' at step %d",
2100 cur->string, tcpcheck_get_step_id(s));
2101 }
2102 else {
2103 /* we were looking for a regex */
2104 chunk_printf(&trash, "TCPCHK matched unwanted content (regex) at step %d",
2105 tcpcheck_get_step_id(s));
2106 }
2107 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2108 goto out_end_tcpcheck;
2109 }
2110 /* matched and was supposed to => OK, next step */
2111 else {
2112 cur = (struct tcpcheck_rule*)cur->list.n;
2113 check->current_step = cur;
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002114 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002115 goto tcpcheck_expect;
2116 __conn_data_stop_recv(conn);
2117 }
2118 }
2119 else {
2120 /* not matched */
2121 /* not matched and was not supposed to => OK, next step */
2122 if (cur->inverse) {
2123 cur = (struct tcpcheck_rule*)cur->list.n;
2124 check->current_step = cur;
Willy Tarreau98aec9f2013-12-06 16:16:41 +01002125 if (check->current_step->action == TCPCHK_ACT_EXPECT)
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002126 goto tcpcheck_expect;
2127 __conn_data_stop_recv(conn);
2128 }
2129 /* not matched but was supposed to => ERROR */
2130 else {
2131 /* we were looking for a string */
2132 if (cur->string != NULL) {
2133 chunk_printf(&trash, "TCPCHK did not match content '%s' at step %d",
2134 cur->string, tcpcheck_get_step_id(s));
2135 }
2136 else {
2137 /* we were looking for a regex */
2138 chunk_printf(&trash, "TCPCHK did not match content (regex) at step %d",
2139 tcpcheck_get_step_id(s));
2140 }
2141 set_server_check_status(check, HCHK_STATUS_L7RSP, trash.str);
2142 goto out_end_tcpcheck;
2143 }
2144 }
2145 } /* end expect */
2146 } /* end loop over double chained step list */
2147
2148 set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)");
2149 goto out_end_tcpcheck;
2150
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +02002151 out_incomplete:
2152 return;
2153
2154 out_end_tcpcheck:
2155 /* collect possible new errors */
2156 if (conn->flags & CO_FL_ERROR)
2157 chk_report_conn_err(conn, 0, 0);
2158
2159 /* Close the connection... We absolutely want to perform a hard close
2160 * and reset the connection if some data are pending, otherwise we end
2161 * up with many TIME_WAITs and eat all the source port range quickly.
2162 * To avoid sending RSTs all the time, we first try to drain pending
2163 * data.
2164 */
2165 if (conn->xprt && conn->xprt->shutw)
2166 conn->xprt->shutw(conn, 0);
2167
2168 check->current_step = NULL;
2169
2170 if (check->result & SRV_CHK_FAILED)
2171 conn->flags |= CO_FL_ERROR;
2172
2173 __conn_data_stop_both(conn);
2174 task_wakeup(t, TASK_WOKEN_IO);
2175
2176 return;
2177}
2178
2179
Willy Tarreaubd741542010-03-16 18:46:54 +01002180/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002181 * Local variables:
2182 * c-indent-level: 8
2183 * c-basic-offset: 8
2184 * End:
2185 */