blob: aedbed1838fa4ebb9612c90d83f89b6ceb13675f [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>
Simon Horman0ba0e4a2015-01-30 11:23:00 +090018#include <stdarg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020019#include <stdio.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020020#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020021#include <string.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020022#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <unistd.h>
Willy Tarreau9f6dc722019-03-01 11:15:10 +010024#include <sys/resource.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <sys/socket.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040026#include <sys/types.h>
Simon Horman98637e52014-06-20 12:30:16 +090027#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <netinet/in.h>
Willy Tarreau1274bc42009-07-15 07:16:31 +020029#include <netinet/tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030#include <arpa/inet.h>
31
Willy Tarreau122eba92020-06-04 10:15:32 +020032#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020033#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/arg.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020035#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020036#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020037#include <haproxy/chunk.h>
Willy Tarreau7c18b542020-06-11 09:23:02 +020038#include <haproxy/dgram.h>
Christopher Fauletb381a502020-11-25 13:47:00 +010039#include <haproxy/dynbuf-t.h>
Willy Tarreaubcc67332020-06-05 15:31:31 +020040#include <haproxy/extcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/fd.h>
42#include <haproxy/global.h>
43#include <haproxy/h1.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020044#include <haproxy/http.h>
Willy Tarreau87735332020-06-04 09:08:41 +020045#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020046#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020047#include <haproxy/istbuf.h>
48#include <haproxy/list.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020049#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/mailers.h>
51#include <haproxy/port_range.h>
52#include <haproxy/proto_tcp.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020053#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020054#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/queue.h>
56#include <haproxy/regex.h>
Emeric Brunc9437992021-02-12 19:42:55 +010057#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020058#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020059#include <haproxy/server.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020060#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020061#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020062#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020063#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020064#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/thread.h>
66#include <haproxy/time.h>
67#include <haproxy/tools.h>
Christopher Faulet147b8c92021-04-10 09:00:38 +020068#include <haproxy/trace.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020069#include <haproxy/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020070
Christopher Faulet147b8c92021-04-10 09:00:38 +020071/* trace source and events */
72static void check_trace(enum trace_level level, uint64_t mask,
73 const struct trace_source *src,
74 const struct ist where, const struct ist func,
75 const void *a1, const void *a2, const void *a3, const void *a4);
76
77/* The event representation is split like this :
78 * check - check
79 *
80 * CHECK_EV_* macros are defined in <haproxy/check.h>
81 */
82static const struct trace_event check_trace_events[] = {
83 { .mask = CHK_EV_TASK_WAKE, .name = "task_wake", .desc = "Check task woken up" },
84 { .mask = CHK_EV_HCHK_START, .name = "hchck_start", .desc = "Health-check started" },
85 { .mask = CHK_EV_HCHK_WAKE, .name = "hchck_wake", .desc = "Health-check woken up" },
86 { .mask = CHK_EV_HCHK_RUN, .name = "hchck_run", .desc = "Health-check running" },
87 { .mask = CHK_EV_HCHK_END, .name = "hchck_end", .desc = "Health-check terminated" },
88 { .mask = CHK_EV_HCHK_SUCC, .name = "hchck_succ", .desc = "Health-check success" },
89 { .mask = CHK_EV_HCHK_ERR, .name = "hchck_err", .desc = "Health-check failure" },
90
91 { .mask = CHK_EV_TCPCHK_EVAL, .name = "tcp_check_eval", .desc = "tcp-check rules evaluation" },
92 { .mask = CHK_EV_TCPCHK_ERR, .name = "tcp_check_err", .desc = "tcp-check evaluation error" },
93 { .mask = CHK_EV_TCPCHK_CONN, .name = "tcp_check_conn", .desc = "tcp-check connection rule" },
94 { .mask = CHK_EV_TCPCHK_SND, .name = "tcp_check_send", .desc = "tcp-check send rule" },
95 { .mask = CHK_EV_TCPCHK_EXP, .name = "tcp_check_expect", .desc = "tcp-check expect rule" },
96 { .mask = CHK_EV_TCPCHK_ACT, .name = "tcp_check_action", .desc = "tcp-check action rule" },
97
98 { .mask = CHK_EV_RX_DATA, .name = "rx_data", .desc = "receipt of data" },
99 { .mask = CHK_EV_RX_BLK, .name = "rx_blk", .desc = "receipt blocked" },
100 { .mask = CHK_EV_RX_ERR, .name = "rx_err", .desc = "receipt error" },
101
102 { .mask = CHK_EV_TX_DATA, .name = "tx_data", .desc = "transmission of data" },
103 { .mask = CHK_EV_TX_BLK, .name = "tx_blk", .desc = "transmission blocked" },
104 { .mask = CHK_EV_TX_ERR, .name = "tx_err", .desc = "transmission error" },
105
106 {}
107};
108
109static const struct name_desc check_trace_lockon_args[4] = {
110 /* arg1 */ { /* already used by the check */ },
111 /* arg2 */ { },
112 /* arg3 */ { },
113 /* arg4 */ { }
114};
115
116static const struct name_desc check_trace_decoding[] = {
117#define CHK_VERB_CLEAN 1
118 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
119#define CHK_VERB_MINIMAL 2
120 { .name="minimal", .desc="report info on stream and stream-interfaces" },
121#define CHK_VERB_SIMPLE 3
122 { .name="simple", .desc="add info on request and response channels" },
123#define CHK_VERB_ADVANCED 4
124 { .name="advanced", .desc="add info on channel's buffer for data and developer levels only" },
125#define CHK_VERB_COMPLETE 5
126 { .name="complete", .desc="add info on channel's buffer" },
127 { /* end */ }
128};
129
130struct trace_source trace_check = {
131 .name = IST("check"),
132 .desc = "Health-check",
133 .arg_def = TRC_ARG1_CHK, // TRACE()'s first argument is always a stream
134 .default_cb = check_trace,
135 .known_events = check_trace_events,
136 .lockon_args = check_trace_lockon_args,
137 .decoding = check_trace_decoding,
138 .report_events = ~0, // report everything by default
139};
140
141#define TRACE_SOURCE &trace_check
142INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
143
Olivier Houchard9130a962017-10-17 17:33:43 +0200144
Christopher Faulet61cc8522020-04-20 14:54:42 +0200145static int wake_srv_chk(struct conn_stream *cs);
146struct data_cb check_conn_cb = {
147 .wake = wake_srv_chk,
148 .name = "CHCK",
149};
Christopher Fauletd7e63962020-04-17 20:15:59 +0200150
Christopher Faulet5d503fc2020-03-30 20:34:34 +0200151
Gaetan Rivet05d692d2020-02-14 17:42:54 +0100152/* Dummy frontend used to create all checks sessions. */
Willy Tarreau51cd5952020-06-05 12:25:38 +0200153struct proxy checks_fe;
Christopher Faulet31dff9b2017-10-23 15:45:20 +0200154
Christopher Faulet147b8c92021-04-10 09:00:38 +0200155
156static inline void check_trace_buf(const struct buffer *buf, size_t ofs, size_t len)
157{
158 size_t block1, block2;
159 int line, ptr, newptr;
160
161 block1 = b_contig_data(buf, ofs);
162 block2 = 0;
163 if (block1 > len)
164 block1 = len;
165 block2 = len - block1;
166
167 ofs = b_peek_ofs(buf, ofs);
168
169 line = 0;
170 ptr = ofs;
171 while (ptr < ofs + block1) {
172 newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), ofs + block1, &line, ptr);
173 if (newptr == ptr)
174 break;
175 ptr = newptr;
176 }
177
178 line = ptr = 0;
179 while (ptr < block2) {
180 newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), block2, &line, ptr);
181 if (newptr == ptr)
182 break;
183 ptr = newptr;
184 }
185}
186
187/* trace source and events */
188static void check_trace(enum trace_level level, uint64_t mask,
189 const struct trace_source *src,
190 const struct ist where, const struct ist func,
191 const void *a1, const void *a2, const void *a3, const void *a4)
192{
193 const struct check *check = a1;
194 const struct server *srv = (check ? check->server : NULL);
195 const size_t *val = a4;
196 const char *res;
197
198 if (!check || src->verbosity < CHK_VERB_CLEAN)
199 return;
200
201 chunk_appendf(&trace_buf, " : [%c] SRV=%s",
202 ((check->type == PR_O2_EXT_CHK) ? 'E' : (check->state & CHK_ST_AGENT ? 'A' : 'H')),
203 srv->id);
204
205 chunk_appendf(&trace_buf, " status=%d/%d %s",
206 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
207 (check->health >= check->rise) ? check->fall : check->rise,
208 (check->health >= check->rise) ? (srv->uweight ? "UP" : "DRAIN") : "DOWN");
209
210 switch (check->result) {
211 case CHK_RES_NEUTRAL: res = "-"; break;
212 case CHK_RES_FAILED: res = "FAIL"; break;
213 case CHK_RES_PASSED: res = "PASS"; break;
214 case CHK_RES_CONDPASS: res = "COND"; break;
215 default: res = "UNK"; break;
216 }
217
218 if (src->verbosity == CHK_VERB_CLEAN)
219 return;
220
221 chunk_appendf(&trace_buf, " - last=%s(%d)/%s(%d)",
222 get_check_status_info(check->status), check->status,
223 res, check->result);
224
225 /* Display the value to the 4th argument (level > STATE) */
226 if (src->level > TRACE_LEVEL_STATE && val)
227 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
228
229 chunk_appendf(&trace_buf, " check=%p(0x%08x)", check, check->state);
230
231 if (src->verbosity == CHK_VERB_MINIMAL)
232 return;
233
234
235 if (check->cs) {
236 chunk_appendf(&trace_buf, " - conn=%p(0x%08x)", check->cs->conn, check->cs->conn->flags);
237 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", check->cs, check->cs->flags);
238 }
239
240 if (mask & CHK_EV_TCPCHK) {
241 const char *type;
242
243 switch (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) {
244 case TCPCHK_RULES_PGSQL_CHK: type = "PGSQL"; break;
245 case TCPCHK_RULES_REDIS_CHK: type = "REDIS"; break;
246 case TCPCHK_RULES_SMTP_CHK: type = "SMTP"; break;
247 case TCPCHK_RULES_HTTP_CHK: type = "HTTP"; break;
248 case TCPCHK_RULES_MYSQL_CHK: type = "MYSQL"; break;
249 case TCPCHK_RULES_LDAP_CHK: type = "LDAP"; break;
250 case TCPCHK_RULES_SSL3_CHK: type = "SSL3"; break;
251 case TCPCHK_RULES_AGENT_CHK: type = "AGENT"; break;
252 case TCPCHK_RULES_SPOP_CHK: type = "SPOP"; break;
253 case TCPCHK_RULES_TCP_CHK: type = "TCP"; break;
254 default: type = "???"; break;
255 }
256 if (check->current_step)
257 chunk_appendf(&trace_buf, " - tcp-check=(%s,%d)", type, tcpcheck_get_step_id(check, NULL));
258 else
259 chunk_appendf(&trace_buf, " - tcp-check=(%s,-)", type);
260 }
261
262 /* Display bi and bo buffer info (level > USER & verbosity > SIMPLE) */
263 if (src->level > TRACE_LEVEL_USER) {
264 const struct buffer *buf = NULL;
265
266 chunk_appendf(&trace_buf, " bi=%u@%p+%u/%u",
267 (unsigned int)b_data(&check->bi), b_orig(&check->bi),
268 (unsigned int)b_head_ofs(&check->bi), (unsigned int)b_size(&check->bi));
269 chunk_appendf(&trace_buf, " bo=%u@%p+%u/%u",
270 (unsigned int)b_data(&check->bo), b_orig(&check->bo),
271 (unsigned int)b_head_ofs(&check->bo), (unsigned int)b_size(&check->bo));
272
273 if (src->verbosity >= CHK_VERB_ADVANCED && (mask & (CHK_EV_RX)))
274 buf = (b_is_null(&check->bi) ? NULL : &check->bi);
275 else if (src->verbosity >= CHK_VERB_ADVANCED && (mask & (CHK_EV_TX)))
276 buf = (b_is_null(&check->bo) ? NULL : &check->bo);
277
278 if (buf) {
279 if ((check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) {
280 int full = (src->verbosity == CHK_VERB_COMPLETE);
281
282 chunk_memcat(&trace_buf, "\n\t", 2);
283 htx_dump(&trace_buf, htxbuf(buf), full);
284 }
285 else {
286 int max = ((src->verbosity == CHK_VERB_COMPLETE) ? 1024 : 256);
287
288 chunk_memcat(&trace_buf, "\n", 1);
289 if (b_data(buf) > max) {
290 check_trace_buf(buf, 0, max);
291 chunk_memcat(&trace_buf, " ...\n", 6);
292 }
293 else
294 check_trace_buf(buf, 0, b_data(buf));
295 }
296
297 }
298 }
299
300}
301
302
Christopher Faulet61cc8522020-04-20 14:54:42 +0200303/**************************************************************************/
304/************************ Handle check results ****************************/
305/**************************************************************************/
306struct check_status {
307 short result; /* one of SRV_CHK_* */
308 char *info; /* human readable short info */
309 char *desc; /* long description */
310};
311
312struct analyze_status {
313 char *desc; /* description */
314 unsigned char lr[HANA_OBS_SIZE]; /* result for l4/l7: 0 = ignore, 1 - error, 2 - OK */
315};
316
Simon Horman63a4a822012-03-19 07:24:41 +0900317static const struct check_status check_statuses[HCHK_STATUS_SIZE] = {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100318 [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" },
319 [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" },
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200320 [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200321
Willy Tarreau23964182014-05-20 20:56:30 +0200322 /* Below we have finished checks */
323 [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" },
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100324 [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" },
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100325
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100326 [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200327
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100328 [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" },
329 [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" },
330 [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200331
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100332 [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" },
333 [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" },
334 [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200335
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100336 [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" },
337 [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200338
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200339 [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200340
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100341 [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" },
342 [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" },
343 [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" },
Simon Horman98637e52014-06-20 12:30:16 +0900344
345 [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" },
346 [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" },
Cyril Bonté77010d82014-08-07 01:55:37 +0200347 [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" },
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200348};
349
Simon Horman63a4a822012-03-19 07:24:41 +0900350static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100351 [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }},
352
353 [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }},
354 [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }},
355
356 [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }},
357 [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }},
358 [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }},
359 [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }},
360
361 [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }},
362 [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }},
363 [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }},
364};
365
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100366/* checks if <err> is a real error for errno or one that can be ignored, and
367 * return 0 for these ones or <err> for real ones.
368 */
369static inline int unclean_errno(int err)
370{
371 if (err == EAGAIN || err == EINPROGRESS ||
372 err == EISCONN || err == EALREADY)
373 return 0;
374 return err;
375}
376
Christopher Faulet7aa32712021-02-01 13:11:50 +0100377/* Converts check_status code to result code */
378short get_check_status_result(short check_status)
379{
380 if (check_status < HCHK_STATUS_SIZE)
381 return check_statuses[check_status].result;
382 else
383 return check_statuses[HCHK_STATUS_UNKNOWN].result;
384}
385
Christopher Faulet61cc8522020-04-20 14:54:42 +0200386/* Converts check_status code to description */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200387const char *get_check_status_description(short check_status) {
388
389 const char *desc;
390
391 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200392 desc = check_statuses[check_status].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200393 else
394 desc = NULL;
395
396 if (desc && *desc)
397 return desc;
398 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200399 return check_statuses[HCHK_STATUS_UNKNOWN].desc;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200400}
401
Christopher Faulet61cc8522020-04-20 14:54:42 +0200402/* Converts check_status code to short info */
William Dauchyb26122b2021-02-14 22:26:23 +0100403const char *get_check_status_info(short check_status)
404{
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200405 const char *info;
406
407 if (check_status < HCHK_STATUS_SIZE)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200408 info = check_statuses[check_status].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200409 else
410 info = NULL;
411
412 if (info && *info)
413 return info;
414 else
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200415 return check_statuses[HCHK_STATUS_UNKNOWN].info;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200416}
417
Christopher Faulet61cc8522020-04-20 14:54:42 +0200418/* Convert analyze_status to description */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100419const char *get_analyze_status(short analyze_status) {
420
421 const char *desc;
422
423 if (analyze_status < HANA_STATUS_SIZE)
424 desc = analyze_statuses[analyze_status].desc;
425 else
426 desc = NULL;
427
428 if (desc && *desc)
429 return desc;
430 else
431 return analyze_statuses[HANA_STATUS_UNKNOWN].desc;
432}
433
Christopher Faulet61cc8522020-04-20 14:54:42 +0200434/* Sets check->status, update check->duration and fill check->result with an
435 * adequate CHK_RES_* value. The new check->health is computed based on the
436 * result.
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200437 *
Christopher Faulet61cc8522020-04-20 14:54:42 +0200438 * Shows information in logs about failed health check if server is UP or
439 * succeeded health checks if server is DOWN.
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200440 */
Willy Tarreau51cd5952020-06-05 12:25:38 +0200441void set_server_check_status(struct check *check, short status, const char *desc)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100442{
Simon Horman4a741432013-02-23 15:35:38 +0900443 struct server *s = check->server;
Willy Tarreaubef1b322014-05-13 21:01:39 +0200444 short prev_status = check->status;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200445 int report = 0;
Simon Horman4a741432013-02-23 15:35:38 +0900446
Christopher Faulet147b8c92021-04-10 09:00:38 +0200447 TRACE_POINT(CHK_EV_HCHK_RUN, check);
448
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200449 if (status == HCHK_STATUS_START) {
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100450 check->result = CHK_RES_UNKNOWN; /* no result yet */
Simon Horman4a741432013-02-23 15:35:38 +0900451 check->desc[0] = '\0';
452 check->start = now;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200453 return;
454 }
455
Simon Horman4a741432013-02-23 15:35:38 +0900456 if (!check->status)
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200457 return;
458
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200459 if (desc && *desc) {
Simon Horman4a741432013-02-23 15:35:38 +0900460 strncpy(check->desc, desc, HCHK_DESC_LEN-1);
461 check->desc[HCHK_DESC_LEN-1] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200462 } else
Simon Horman4a741432013-02-23 15:35:38 +0900463 check->desc[0] = '\0';
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200464
Simon Horman4a741432013-02-23 15:35:38 +0900465 check->status = status;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200466 if (check_statuses[status].result)
Simon Horman4a741432013-02-23 15:35:38 +0900467 check->result = check_statuses[status].result;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200468
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100469 if (status == HCHK_STATUS_HANA)
Simon Horman4a741432013-02-23 15:35:38 +0900470 check->duration = -1;
471 else if (!tv_iszero(&check->start)) {
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200472 /* set_server_check_status() may be called more than once */
Simon Horman4a741432013-02-23 15:35:38 +0900473 check->duration = tv_ms_elapsed(&check->start, &now);
474 tv_zero(&check->start);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200475 }
476
Willy Tarreau23964182014-05-20 20:56:30 +0200477 /* no change is expected if no state change occurred */
478 if (check->result == CHK_RES_NEUTRAL)
479 return;
480
Olivier Houchard0923fa42019-01-11 18:43:04 +0100481 /* If the check was really just sending a mail, it won't have an
482 * associated server, so we're done now.
483 */
484 if (!s)
485 return;
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200486 report = 0;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200487
Christopher Faulet147b8c92021-04-10 09:00:38 +0200488
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200489 switch (check->result) {
490 case CHK_RES_FAILED:
Willy Tarreau12634e12014-05-23 11:32:36 +0200491 /* Failure to connect to the agent as a secondary check should not
492 * cause the server to be marked down.
493 */
494 if ((!(check->state & CHK_ST_AGENT) ||
Simon Hormaneaabd522015-02-26 11:26:17 +0900495 (check->status >= HCHK_STATUS_L57DATA)) &&
Christopher Fauletb119a792018-05-02 12:12:45 +0200496 (check->health > 0)) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200497 _HA_ATOMIC_INC(&s->counters.failed_checks);
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200498 report = 1;
499 check->health--;
500 if (check->health < check->rise)
501 check->health = 0;
502 }
503 break;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200504
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200505 case CHK_RES_PASSED:
Christopher Faulet1e527cb2020-11-20 18:13:02 +0100506 case CHK_RES_CONDPASS:
507 if (check->health < check->rise + check->fall - 1) {
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200508 report = 1;
509 check->health++;
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200510
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200511 if (check->health >= check->rise)
512 check->health = check->rise + check->fall - 1; /* OK now */
513 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200514
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200515 /* clear consecutive_errors if observing is enabled */
516 if (s->onerror)
517 s->consecutive_errors = 0;
518 break;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100519
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200520 default:
521 break;
522 }
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200523
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200524 if (s->proxy->options2 & PR_O2_LOGHCHKS &&
525 (status != prev_status || report)) {
526 chunk_printf(&trash,
Willy Tarreau12634e12014-05-23 11:32:36 +0200527 "%s check for %sserver %s/%s %s%s",
528 (check->state & CHK_ST_AGENT) ? "Agent" : "Health",
Willy Tarreauc93cd162014-05-13 15:54:22 +0200529 s->flags & SRV_F_BACKUP ? "backup " : "",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100530 s->proxy->id, s->id,
Willy Tarreau6aaa1b82013-12-11 17:09:34 +0100531 (check->result == CHK_RES_CONDPASS) ? "conditionally ":"",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200532 (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200533
Emeric Brun5a133512017-10-19 14:42:30 +0200534 srv_append_status(&trash, s, check, -1, 0);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200535
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100536 chunk_appendf(&trash, ", status: %d/%d %s",
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200537 (check->health >= check->rise) ? check->health - check->rise + 1 : check->health,
538 (check->health >= check->rise) ? check->fall : check->rise,
539 (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN");
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200540
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200541 ha_warning("%s.\n", trash.area);
542 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
543 send_email_alert(s, LOG_INFO, "%s", trash.area);
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200544 }
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200545}
546
Willy Tarreau4eec5472014-05-20 22:32:27 +0200547/* Marks the check <check>'s server down if the current check is already failed
548 * and the server is not down yet nor in maintenance.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200549 */
Willy Tarreaubcc67332020-06-05 15:31:31 +0200550void check_notify_failure(struct check *check)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551{
Simon Horman4a741432013-02-23 15:35:38 +0900552 struct server *s = check->server;
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900553
Willy Tarreau7b1d47c2014-05-20 14:55:13 +0200554 /* The agent secondary check should only cause a server to be marked
555 * as down if check->status is HCHK_STATUS_L7STS, which indicates
556 * that the agent returned "fail", "stopped" or "down".
557 * The implication here is that failure to connect to the agent
558 * as a secondary check should not cause the server to be marked
559 * down. */
560 if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS)
561 return;
562
Willy Tarreau4eec5472014-05-20 22:32:27 +0200563 if (check->health > 0)
564 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100565
Christopher Faulet147b8c92021-04-10 09:00:38 +0200566 TRACE_STATE("health-check failed, set server DOWN", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200567 /* We only report a reason for the check if we did not do so previously */
Emeric Brun5a133512017-10-19 14:42:30 +0200568 srv_set_stopped(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569}
570
Willy Tarreauaf549582014-05-16 17:37:50 +0200571/* Marks the check <check> as valid and tries to set its server up, provided
Willy Tarreau3e048382014-05-21 10:30:54 +0200572 * it isn't in maintenance, it is not tracking a down server and other checks
573 * comply. The rule is simple : by default, a server is up, unless any of the
574 * following conditions is true :
575 * - health check failed (check->health < rise)
576 * - agent check failed (agent->health < rise)
577 * - the server tracks a down server (track && track->state == STOPPED)
578 * Note that if the server has a slowstart, it will switch to STARTING instead
579 * of RUNNING. Also, only the health checks support the nolb mode, so the
580 * agent's success may not take the server out of this mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200581 */
Willy Tarreaubcc67332020-06-05 15:31:31 +0200582void check_notify_success(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200583{
Simon Horman4a741432013-02-23 15:35:38 +0900584 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100585
Emeric Brun52a91d32017-08-31 14:41:55 +0200586 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200587 return;
Cyril Bontécd19e512010-01-31 22:34:03 +0100588
Emeric Brun52a91d32017-08-31 14:41:55 +0200589 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreauaf549582014-05-16 17:37:50 +0200590 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100591
Willy Tarreau3e048382014-05-21 10:30:54 +0200592 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
593 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100594
Willy Tarreau3e048382014-05-21 10:30:54 +0200595 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
596 return;
Willy Tarreauaf549582014-05-16 17:37:50 +0200597
Emeric Brun52a91d32017-08-31 14:41:55 +0200598 if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING)
Willy Tarreau3e048382014-05-21 10:30:54 +0200599 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100600
Christopher Faulet147b8c92021-04-10 09:00:38 +0200601 TRACE_STATE("health-check succeeded, set server RUNNING", CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check);
Emeric Brun5a133512017-10-19 14:42:30 +0200602 srv_set_running(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100603}
604
Willy Tarreaudb58b792014-05-21 13:57:23 +0200605/* Marks the check <check> as valid and tries to set its server into stopping mode
606 * if it was running or starting, and provided it isn't in maintenance and other
607 * checks comply. The conditions for the server to be marked in stopping mode are
608 * the same as for it to be turned up. Also, only the health checks support the
609 * nolb mode.
Willy Tarreauaf549582014-05-16 17:37:50 +0200610 */
Willy Tarreaubcc67332020-06-05 15:31:31 +0200611void check_notify_stopping(struct check *check)
Willy Tarreauaf549582014-05-16 17:37:50 +0200612{
Simon Horman4a741432013-02-23 15:35:38 +0900613 struct server *s = check->server;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100614
Emeric Brun52a91d32017-08-31 14:41:55 +0200615 if (s->next_admin & SRV_ADMF_MAINT)
Willy Tarreauaf549582014-05-16 17:37:50 +0200616 return;
617
Willy Tarreaudb58b792014-05-21 13:57:23 +0200618 if (check->state & CHK_ST_AGENT)
619 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100620
Emeric Brun52a91d32017-08-31 14:41:55 +0200621 if (s->track && s->track->next_state == SRV_ST_STOPPED)
Willy Tarreaudb58b792014-05-21 13:57:23 +0200622 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100623
Willy Tarreaudb58b792014-05-21 13:57:23 +0200624 if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise))
625 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100626
Willy Tarreaudb58b792014-05-21 13:57:23 +0200627 if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise))
628 return;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100629
Christopher Faulet147b8c92021-04-10 09:00:38 +0200630 TRACE_STATE("health-check condionnaly succeeded, set server STOPPING", CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check);
Willy Tarreaub26881a2017-12-23 11:16:49 +0100631 srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100632}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100634/* note: use health_adjust() only, which first checks that the observe mode is
Willy Tarreau4e9df272021-02-17 15:20:19 +0100635 * enabled. This will take the server lock if needed.
Willy Tarreau9fe7aae2013-12-31 23:47:37 +0100636 */
637void __health_adjust(struct server *s, short status)
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100638{
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100639 int failed;
640 int expire;
641
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100642 if (s->observe >= HANA_OBS_SIZE)
643 return;
644
Willy Tarreaubb956662013-01-24 00:37:39 +0100645 if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc)
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100646 return;
647
648 switch (analyze_statuses[status].lr[s->observe - 1]) {
649 case 1:
650 failed = 1;
651 break;
652
653 case 2:
654 failed = 0;
655 break;
656
657 default:
658 return;
659 }
660
661 if (!failed) {
662 /* good: clear consecutive_errors */
663 s->consecutive_errors = 0;
664 return;
665 }
666
Willy Tarreau4781b152021-04-06 13:53:36 +0200667 _HA_ATOMIC_INC(&s->consecutive_errors);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100668
669 if (s->consecutive_errors < s->consecutive_errors_limit)
670 return;
671
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100672 chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s",
673 s->consecutive_errors, get_analyze_status(status));
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100674
Willy Tarreau4e9df272021-02-17 15:20:19 +0100675 if (s->check.fastinter)
676 expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter));
677 else
678 expire = TICK_ETERNITY;
679
680 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
681
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100682 switch (s->onerror) {
683 case HANA_ONERR_FASTINTER:
684 /* force fastinter - nothing to do here as all modes force it */
685 break;
686
687 case HANA_ONERR_SUDDTH:
688 /* simulate a pre-fatal failed health check */
Simon Horman58c32972013-11-25 10:46:38 +0900689 if (s->check.health > s->check.rise)
690 s->check.health = s->check.rise + 1;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100691
Tim Duesterhus588b3142020-05-29 14:35:51 +0200692 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100693
694 case HANA_ONERR_FAILCHK:
695 /* simulate a failed health check */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200696 set_server_check_status(&s->check, HCHK_STATUS_HANA,
697 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200698 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100699 break;
700
701 case HANA_ONERR_MARKDWN:
702 /* mark server down */
Simon Horman58c32972013-11-25 10:46:38 +0900703 s->check.health = s->check.rise;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200704 set_server_check_status(&s->check, HCHK_STATUS_HANA,
705 trash.area);
Willy Tarreau4eec5472014-05-20 22:32:27 +0200706 check_notify_failure(&s->check);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100707 break;
708
709 default:
710 /* write a warning? */
711 break;
712 }
713
Willy Tarreau4e9df272021-02-17 15:20:19 +0100714 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
715
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100716 s->consecutive_errors = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +0200717 _HA_ATOMIC_INC(&s->counters.failed_hana);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100718
Christopher Fauletea860832021-05-07 11:45:26 +0200719 if (tick_isset(expire) && tick_is_lt(expire, s->check.task->expire)) {
Willy Tarreau4e9df272021-02-17 15:20:19 +0100720 /* requeue check task with new expire */
721 task_schedule(s->check.task, expire);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100722 }
Willy Tarreauef781042010-01-27 11:53:01 +0100723}
724
Christopher Faulet61cc8522020-04-20 14:54:42 +0200725/* Checks the connection. If an error has already been reported or the socket is
Willy Tarreau20a18342013-12-05 00:31:46 +0100726 * closed, keep errno intact as it is supposed to contain the valid error code.
727 * If no error is reported, check the socket's error queue using getsockopt().
728 * Warning, this must be done only once when returning from poll, and never
729 * after an I/O error was attempted, otherwise the error queue might contain
730 * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the
731 * socket. Returns non-zero if an error was reported, zero if everything is
732 * clean (including a properly closed socket).
733 */
734static int retrieve_errno_from_socket(struct connection *conn)
735{
736 int skerr;
737 socklen_t lskerr = sizeof(skerr);
738
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100739 if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl))
Willy Tarreau20a18342013-12-05 00:31:46 +0100740 return 1;
741
Willy Tarreau3c728722014-01-23 13:50:42 +0100742 if (!conn_ctrl_ready(conn))
Willy Tarreau20a18342013-12-05 00:31:46 +0100743 return 0;
744
Willy Tarreau585744b2017-08-24 14:31:19 +0200745 if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0)
Willy Tarreau20a18342013-12-05 00:31:46 +0100746 errno = skerr;
747
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100748 errno = unclean_errno(errno);
Willy Tarreau20a18342013-12-05 00:31:46 +0100749
750 if (!errno) {
751 /* we could not retrieve an error, that does not mean there is
752 * none. Just don't change anything and only report the prior
753 * error if any.
754 */
755 if (conn->flags & CO_FL_ERROR)
756 return 1;
757 else
758 return 0;
759 }
760
761 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
762 return 1;
763}
764
Christopher Faulet61cc8522020-04-20 14:54:42 +0200765/* Tries to collect as much information as possible on the connection status,
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100766 * and adjust the server status accordingly. It may make use of <errno_bck>
767 * if non-null when the caller is absolutely certain of its validity (eg:
768 * checked just after a syscall). If the caller doesn't have a valid errno,
769 * it can pass zero, and retrieve_errno_from_socket() will be called to try
770 * to extract errno from the socket. If no error is reported, it will consider
771 * the <expired> flag. This is intended to be used when a connection error was
772 * reported in conn->flags or when a timeout was reported in <expired>. The
773 * function takes care of not updating a server status which was already set.
774 * All situations where at least one of <expired> or CO_FL_ERROR are set
775 * produce a status.
776 */
Willy Tarreau51cd5952020-06-05 12:25:38 +0200777void chk_report_conn_err(struct check *check, int errno_bck, int expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100778{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200779 struct conn_stream *cs = check->cs;
780 struct connection *conn = cs_conn(cs);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100781 const char *err_msg;
Willy Tarreau83061a82018-07-13 11:56:34 +0200782 struct buffer *chk;
Willy Tarreau213c6782014-10-02 14:51:02 +0200783 int step;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100784
Christopher Faulet147b8c92021-04-10 09:00:38 +0200785 if (check->result != CHK_RES_UNKNOWN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100786 return;
Christopher Faulet147b8c92021-04-10 09:00:38 +0200787 }
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100788
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100789 errno = unclean_errno(errno_bck);
790 if (conn && errno)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100791 retrieve_errno_from_socket(conn);
792
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200793 if (conn && !(conn->flags & CO_FL_ERROR) &&
794 !(cs->flags & CS_FL_ERROR) && !expired)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100795 return;
796
Christopher Faulet147b8c92021-04-10 09:00:38 +0200797 TRACE_ENTER(CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check, 0, 0, (size_t[]){expired});
798
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100799 /* we'll try to build a meaningful error message depending on the
800 * context of the error possibly present in conn->err_code, and the
801 * socket error possibly collected above. This is useful to know the
802 * exact step of the L6 layer (eg: SSL handshake).
803 */
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200804 chk = get_trash_chunk();
805
Christopher Faulet799f3a42020-04-07 12:06:14 +0200806 if (check->type == PR_O2_TCPCHK_CHK &&
Christopher Fauletd7e63962020-04-17 20:15:59 +0200807 (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) {
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200808 step = tcpcheck_get_step_id(check, NULL);
Christopher Faulet147b8c92021-04-10 09:00:38 +0200809 if (!step) {
810 TRACE_DEVEL("initial connection failure", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200811 chunk_printf(chk, " at initial connection step of tcp-check");
Christopher Faulet147b8c92021-04-10 09:00:38 +0200812 }
Willy Tarreau213c6782014-10-02 14:51:02 +0200813 else {
814 chunk_printf(chk, " at step %d of tcp-check", step);
815 /* we were looking for a string */
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200816 if (check->current_step && check->current_step->action == TCPCHK_ACT_CONNECT) {
817 if (check->current_step->connect.port)
818 chunk_appendf(chk, " (connect port %d)" ,check->current_step->connect.port);
Willy Tarreau213c6782014-10-02 14:51:02 +0200819 else
820 chunk_appendf(chk, " (connect)");
Christopher Faulet147b8c92021-04-10 09:00:38 +0200821 TRACE_DEVEL("connection failure", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200822 }
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200823 else if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT) {
824 struct tcpcheck_expect *expect = &check->current_step->expect;
Gaetan Rivetb616add2020-02-07 15:37:17 +0100825
826 switch (expect->type) {
827 case TCPCHK_EXPECT_STRING:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200828 chunk_appendf(chk, " (expect string '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Gaetan Rivetb616add2020-02-07 15:37:17 +0100829 break;
830 case TCPCHK_EXPECT_BINARY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200831 chunk_appendf(chk, " (expect binary '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Gaetan Rivetb616add2020-02-07 15:37:17 +0100832 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200833 case TCPCHK_EXPECT_STRING_REGEX:
Willy Tarreau213c6782014-10-02 14:51:02 +0200834 chunk_appendf(chk, " (expect regex)");
Gaetan Rivetb616add2020-02-07 15:37:17 +0100835 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200836 case TCPCHK_EXPECT_BINARY_REGEX:
Gaetan Rivetefab6c62020-02-07 15:37:17 +0100837 chunk_appendf(chk, " (expect binary regex)");
838 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +0200839 case TCPCHK_EXPECT_STRING_LF:
840 chunk_appendf(chk, " (expect log-format string)");
841 break;
842 case TCPCHK_EXPECT_BINARY_LF:
843 chunk_appendf(chk, " (expect log-format binary)");
844 break;
Christopher Faulete5870d82020-04-15 11:32:03 +0200845 case TCPCHK_EXPECT_HTTP_STATUS:
Christopher Faulet8021a5f2020-04-24 13:53:12 +0200846 chunk_appendf(chk, " (expect HTTP status codes)");
Christopher Faulete5870d82020-04-15 11:32:03 +0200847 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200848 case TCPCHK_EXPECT_HTTP_STATUS_REGEX:
Christopher Faulete5870d82020-04-15 11:32:03 +0200849 chunk_appendf(chk, " (expect HTTP status regex)");
850 break;
Christopher Faulet39708192020-05-05 10:47:36 +0200851 case TCPCHK_EXPECT_HTTP_HEADER:
852 chunk_appendf(chk, " (expect HTTP header pattern)");
853 break;
Christopher Faulete5870d82020-04-15 11:32:03 +0200854 case TCPCHK_EXPECT_HTTP_BODY:
Christopher Fauletb61caf42020-04-21 10:57:42 +0200855 chunk_appendf(chk, " (expect HTTP body content '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data));
Christopher Faulete5870d82020-04-15 11:32:03 +0200856 break;
Christopher Faulet67a23452020-05-05 18:10:01 +0200857 case TCPCHK_EXPECT_HTTP_BODY_REGEX:
Christopher Faulete5870d82020-04-15 11:32:03 +0200858 chunk_appendf(chk, " (expect HTTP body regex)");
859 break;
Christopher Fauletaaab0832020-05-05 15:54:22 +0200860 case TCPCHK_EXPECT_HTTP_BODY_LF:
861 chunk_appendf(chk, " (expect log-format HTTP body)");
862 break;
Christopher Faulet9e6ed152020-04-03 15:24:06 +0200863 case TCPCHK_EXPECT_CUSTOM:
864 chunk_appendf(chk, " (expect custom function)");
865 break;
Gaetan Rivetb616add2020-02-07 15:37:17 +0100866 case TCPCHK_EXPECT_UNDEF:
867 chunk_appendf(chk, " (undefined expect!)");
868 break;
869 }
Christopher Faulet147b8c92021-04-10 09:00:38 +0200870 TRACE_DEVEL("expect rule failed", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200871 }
Christopher Fauletb2c2e0f2020-03-30 11:05:10 +0200872 else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) {
Willy Tarreau213c6782014-10-02 14:51:02 +0200873 chunk_appendf(chk, " (send)");
Christopher Faulet147b8c92021-04-10 09:00:38 +0200874 TRACE_DEVEL("send rule failed", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau213c6782014-10-02 14:51:02 +0200875 }
Baptiste Assmann22b09d22015-05-01 08:03:04 +0200876
Christopher Faulet6f2a5e42020-04-01 13:11:41 +0200877 if (check->current_step && check->current_step->comment)
878 chunk_appendf(chk, " comment: '%s'", check->current_step->comment);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200879 }
880 }
881
Willy Tarreau00149122017-10-04 18:05:01 +0200882 if (conn && conn->err_code) {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100883 if (unclean_errno(errno))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200884 chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno),
885 chk->area);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100886 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200887 chunk_printf(&trash, "%s%s", conn_err_code_str(conn),
888 chk->area);
889 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100890 }
891 else {
Willy Tarreauc8dc20a2019-12-27 12:03:27 +0100892 if (unclean_errno(errno)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200893 chunk_printf(&trash, "%s%s", strerror(errno),
894 chk->area);
895 err_msg = trash.area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100896 }
897 else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200898 err_msg = chk->area;
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100899 }
900 }
901
Willy Tarreau00149122017-10-04 18:05:01 +0200902 if (check->state & CHK_ST_PORT_MISS) {
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200903 /* NOTE: this is reported after <fall> tries */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +0200904 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
905 }
906
Christopher Faulet5e293762020-10-26 11:10:49 +0100907 if (!conn || !conn->ctrl) {
908 /* error before any connection attempt (connection allocation error or no control layer) */
Willy Tarreau00149122017-10-04 18:05:01 +0200909 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
910 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100911 else if (conn->flags & CO_FL_WAIT_L4_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100912 /* L4 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200913 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100914 set_server_check_status(check, HCHK_STATUS_L4CON, err_msg);
915 else if (expired)
916 set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200917
918 /*
919 * might be due to a server IP change.
920 * Let's trigger a DNS resolution if none are currently running.
921 */
Olivier Houchard0923fa42019-01-11 18:43:04 +0100922 if (check->server)
Emeric Brund30e9a12020-12-23 18:49:16 +0100923 resolv_trigger_resolution(check->server->resolv_requester);
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200924
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100925 }
Willy Tarreauc192b0a2020-01-23 09:11:58 +0100926 else if (conn->flags & CO_FL_WAIT_L6_CONN) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100927 /* L6 not established (yet) */
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200928 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100929 set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg);
930 else if (expired)
931 set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg);
932 }
Willy Tarreau4ff3b892017-10-16 15:17:17 +0200933 else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) {
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100934 /* I/O error after connection was established and before we could diagnose */
935 set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg);
936 }
937 else if (expired) {
Christopher Fauletcf80f2f2020-04-01 11:04:52 +0200938 enum healthcheck_status tout = HCHK_STATUS_L7TOUT;
939
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100940 /* connection established but expired check */
Christopher Faulet1941bab2020-05-05 07:55:50 +0200941 if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT &&
942 check->current_step->expect.tout_status != HCHK_STATUS_UNKNOWN)
Christopher Faulet811f78c2020-04-01 11:10:27 +0200943 tout = check->current_step->expect.tout_status;
944 set_server_check_status(check, tout, err_msg);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100945 }
946
Christopher Faulet147b8c92021-04-10 09:00:38 +0200947 TRACE_LEAVE(CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau25e2ab52013-12-04 11:17:05 +0100948 return;
949}
950
Simon Horman98637e52014-06-20 12:30:16 +0900951
Christopher Faulet61cc8522020-04-20 14:54:42 +0200952/* Builds the server state header used by HTTP health-checks */
Willy Tarreau51cd5952020-06-05 12:25:38 +0200953int httpchk_build_status_header(struct server *s, struct buffer *buf)
Simon Horman98637e52014-06-20 12:30:16 +0900954{
Christopher Faulet61cc8522020-04-20 14:54:42 +0200955 int sv_state;
956 int ratio;
957 char addr[46];
958 char port[6];
959 const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d",
960 "UP %d/%d", "UP",
961 "NOLB %d/%d", "NOLB",
962 "no check" };
Simon Horman98637e52014-06-20 12:30:16 +0900963
Christopher Faulet61cc8522020-04-20 14:54:42 +0200964 if (!(s->check.state & CHK_ST_ENABLED))
965 sv_state = 6;
966 else if (s->cur_state != SRV_ST_STOPPED) {
967 if (s->check.health == s->check.rise + s->check.fall - 1)
968 sv_state = 3; /* UP */
969 else
970 sv_state = 2; /* going down */
Simon Horman98637e52014-06-20 12:30:16 +0900971
Christopher Faulet61cc8522020-04-20 14:54:42 +0200972 if (s->cur_state == SRV_ST_STOPPING)
973 sv_state += 2;
974 } else {
975 if (s->check.health)
976 sv_state = 1; /* going up */
977 else
978 sv_state = 0; /* DOWN */
Simon Horman98637e52014-06-20 12:30:16 +0900979 }
Willy Tarreaub7b24782016-06-21 15:32:29 +0200980
Christopher Faulet61cc8522020-04-20 14:54:42 +0200981 chunk_appendf(buf, srv_hlt_st[sv_state],
982 (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health),
983 (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise));
Willy Tarreaub7b24782016-06-21 15:32:29 +0200984
Christopher Faulet61cc8522020-04-20 14:54:42 +0200985 addr_to_str(&s->addr, addr, sizeof(addr));
986 if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6)
987 snprintf(port, sizeof(port), "%u", s->svc_port);
988 else
989 *port = 0;
Willy Tarreaub7b24782016-06-21 15:32:29 +0200990
Christopher Faulet61cc8522020-04-20 14:54:42 +0200991 chunk_appendf(buf, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d",
992 addr, port, s->proxy->id, s->id,
993 global.node,
994 (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
995 (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv,
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200996 s->cur_sess, s->proxy->beconn - s->proxy->queue.length,
Willy Tarreaua0570452021-06-18 09:30:30 +0200997 s->queue.length);
Willy Tarreau9f6dc722019-03-01 11:15:10 +0100998
Christopher Faulet61cc8522020-04-20 14:54:42 +0200999 if ((s->cur_state == SRV_ST_STARTING) &&
1000 now.tv_sec < s->last_change + s->slowstart &&
1001 now.tv_sec >= s->last_change) {
1002 ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart);
1003 chunk_appendf(buf, "; throttle=%d%%", ratio);
1004 }
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001005
Christopher Faulet61cc8522020-04-20 14:54:42 +02001006 return b_data(buf);
1007}
Christopher Fauletaaae9a02020-04-26 09:50:31 +02001008
Willy Tarreau51cd5952020-06-05 12:25:38 +02001009/**************************************************************************/
Willy Tarreau51cd5952020-06-05 12:25:38 +02001010/***************** Health-checks based on connections *********************/
1011/**************************************************************************/
1012/* This function is used only for server health-checks. It handles connection
1013 * status updates including errors. If necessary, it wakes the check task up.
1014 * It returns 0 on normal cases, <0 if at least one close() has happened on the
1015 * connection (eg: reconnect). It relies on tcpcheck_main().
Christopher Faulet61cc8522020-04-20 14:54:42 +02001016 */
Willy Tarreau51cd5952020-06-05 12:25:38 +02001017static int wake_srv_chk(struct conn_stream *cs)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001018{
Willy Tarreau51cd5952020-06-05 12:25:38 +02001019 struct connection *conn = cs->conn;
1020 struct check *check = cs->data;
1021 struct email_alertq *q = container_of(check, typeof(*q), check);
1022 int ret = 0;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001023
Christopher Faulet147b8c92021-04-10 09:00:38 +02001024 TRACE_ENTER(CHK_EV_HCHK_WAKE, check);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001025 if (check->server)
1026 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
1027 else
1028 HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001029
Willy Tarreau51cd5952020-06-05 12:25:38 +02001030 /* we may have to make progress on the TCP checks */
1031 ret = tcpcheck_main(check);
Christopher Fauletaaab0832020-05-05 15:54:22 +02001032
Willy Tarreau51cd5952020-06-05 12:25:38 +02001033 cs = check->cs;
1034 conn = cs->conn;
Christopher Fauletaaab0832020-05-05 15:54:22 +02001035
Willy Tarreau51cd5952020-06-05 12:25:38 +02001036 if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) {
1037 /* We may get error reports bypassing the I/O handlers, typically
1038 * the case when sending a pure TCP check which fails, then the I/O
1039 * handlers above are not called. This is completely handled by the
1040 * main processing task so let's simply wake it up. If we get here,
1041 * we expect errno to still be valid.
1042 */
Christopher Faulet147b8c92021-04-10 09:00:38 +02001043 TRACE_ERROR("report connection error", CHK_EV_HCHK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001044 chk_report_conn_err(check, errno, 0);
1045 task_wakeup(check->task, TASK_WOKEN_IO);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001046 }
1047
Christopher Faulet8f100422021-01-18 15:47:03 +01001048 if (check->result != CHK_RES_UNKNOWN || ret == -1) {
Willy Tarreau51cd5952020-06-05 12:25:38 +02001049 /* Check complete or aborted. If connection not yet closed do it
1050 * now and wake the check task up to be sure the result is
1051 * handled ASAP. */
Willy Tarreau30bd4ef2020-12-11 11:09:29 +01001052 cs_drain_and_close(cs);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001053 ret = -1;
Christopher Faulet8f100422021-01-18 15:47:03 +01001054
1055 if (check->wait_list.events)
1056 cs->conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list);
1057
Willy Tarreau51cd5952020-06-05 12:25:38 +02001058 /* We may have been scheduled to run, and the
1059 * I/O handler expects to have a cs, so remove
1060 * the tasklet
1061 */
1062 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
1063 task_wakeup(check->task, TASK_WOKEN_IO);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001064 }
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001065
Willy Tarreau51cd5952020-06-05 12:25:38 +02001066 if (check->server)
1067 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
1068 else
1069 HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001070
Christopher Faulet147b8c92021-04-10 09:00:38 +02001071 TRACE_LEAVE(CHK_EV_HCHK_WAKE, check);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001072 return ret;
1073}
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001074
Willy Tarreau51cd5952020-06-05 12:25:38 +02001075/* This function checks if any I/O is wanted, and if so, attempts to do so */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001076struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned int state)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001077{
Willy Tarreau51cd5952020-06-05 12:25:38 +02001078 struct check *check = ctx;
1079 struct conn_stream *cs = check->cs;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001080
Willy Tarreau51cd5952020-06-05 12:25:38 +02001081 wake_srv_chk(cs);
1082 return NULL;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001083}
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001084
Willy Tarreau51cd5952020-06-05 12:25:38 +02001085/* manages a server health-check that uses a connection. Returns
1086 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
Christopher Faulet61cc8522020-04-20 14:54:42 +02001087 *
1088 * Please do NOT place any return statement in this function and only leave
Willy Tarreau51cd5952020-06-05 12:25:38 +02001089 * via the out_unlock label.
Christopher Faulet61cc8522020-04-20 14:54:42 +02001090 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001091struct task *process_chk_conn(struct task *t, void *context, unsigned int state)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001092{
Willy Tarreau51cd5952020-06-05 12:25:38 +02001093 struct check *check = context;
1094 struct proxy *proxy = check->proxy;
Christopher Faulet92017a32021-05-06 16:01:18 +02001095 struct conn_stream *cs;
1096 struct connection *conn;
Willy Tarreau51cd5952020-06-05 12:25:38 +02001097 int rv;
1098 int expired = tick_is_expired(t->expire, now_ms);
Willy Tarreaudeccd112018-06-14 18:38:55 +02001099
Christopher Faulet147b8c92021-04-10 09:00:38 +02001100 TRACE_ENTER(CHK_EV_TASK_WAKE, check);
1101
Willy Tarreau51cd5952020-06-05 12:25:38 +02001102 if (check->server)
1103 HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock);
Christopher Faulet92017a32021-05-06 16:01:18 +02001104
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001105 if (unlikely(check->state & CHK_ST_PURGE)) {
1106 TRACE_STATE("health-check state to purge", CHK_EV_TASK_WAKE, check);
1107 }
1108 else if (!(check->state & (CHK_ST_INPROGRESS))) {
Willy Tarreau51cd5952020-06-05 12:25:38 +02001109 /* no check currently running */
Christopher Faulet147b8c92021-04-10 09:00:38 +02001110 if (!expired) /* woke up too early */ {
1111 TRACE_STATE("health-check wake up too early", CHK_EV_TASK_WAKE, check);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001112 goto out_unlock;
Christopher Faulet147b8c92021-04-10 09:00:38 +02001113 }
Willy Tarreauabca5b62013-12-06 14:19:25 +01001114
Willy Tarreau51cd5952020-06-05 12:25:38 +02001115 /* we don't send any health-checks when the proxy is
1116 * stopped, the server should not be checked or the check
1117 * is disabled.
1118 */
1119 if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) ||
Christopher Faulet147b8c92021-04-10 09:00:38 +02001120 proxy->disabled) {
1121 TRACE_STATE("health-check paused or disabled", CHK_EV_TASK_WAKE, check);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001122 goto reschedule;
Christopher Faulet147b8c92021-04-10 09:00:38 +02001123 }
Christopher Faulet404f9192020-04-09 23:13:54 +02001124
Willy Tarreau51cd5952020-06-05 12:25:38 +02001125 /* we'll initiate a new check */
1126 set_server_check_status(check, HCHK_STATUS_START, NULL);
Christopher Faulet404f9192020-04-09 23:13:54 +02001127
Willy Tarreau51cd5952020-06-05 12:25:38 +02001128 check->state |= CHK_ST_INPROGRESS;
Christopher Faulet147b8c92021-04-10 09:00:38 +02001129 TRACE_STATE("init new health-check", CHK_EV_TASK_WAKE|CHK_EV_HCHK_START, check);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001130
Willy Tarreau51cd5952020-06-05 12:25:38 +02001131 task_set_affinity(t, tid_bit);
1132
1133 check->current_step = NULL;
1134 tcpcheck_main(check);
Christopher Faulet92017a32021-05-06 16:01:18 +02001135 expired = 0;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001136 }
Christopher Faulet92017a32021-05-06 16:01:18 +02001137
1138 cs = check->cs;
1139 conn = cs_conn(cs);
1140
1141 /* there was a test running.
1142 * First, let's check whether there was an uncaught error,
1143 * which can happen on connect timeout or error.
1144 */
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001145 if (check->result == CHK_RES_UNKNOWN && likely(!(check->state & CHK_ST_PURGE))) {
Christopher Faulet92017a32021-05-06 16:01:18 +02001146 /* Here the connection must be defined. Otherwise the
1147 * error would have already been detected
Willy Tarreau51cd5952020-06-05 12:25:38 +02001148 */
Christopher Faulet92017a32021-05-06 16:01:18 +02001149 if ((conn && ((conn->flags & CO_FL_ERROR) || (cs->flags & CS_FL_ERROR))) || expired) {
1150 TRACE_ERROR("report connection error", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
1151 chk_report_conn_err(check, 0, expired);
1152 }
1153 else {
1154 if (check->state & CHK_ST_CLOSE_CONN) {
1155 TRACE_DEVEL("closing current connection", CHK_EV_TASK_WAKE|CHK_EV_HCHK_RUN, check);
1156 cs_destroy(cs);
1157 cs = NULL;
1158 conn = NULL;
1159 check->cs = NULL;
1160 check->state &= ~CHK_ST_CLOSE_CONN;
1161 tcpcheck_main(check);
Willy Tarreau51cd5952020-06-05 12:25:38 +02001162 }
Christopher Faulet92017a32021-05-06 16:01:18 +02001163 if (check->result == CHK_RES_UNKNOWN) {
1164 TRACE_DEVEL("health-check not expired", CHK_EV_TASK_WAKE|CHK_EV_HCHK_RUN, check);
1165 goto out_unlock; /* timeout not reached, wait again */
Christopher Faulet8f100422021-01-18 15:47:03 +01001166 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001167 }
Christopher Faulet92017a32021-05-06 16:01:18 +02001168 }
Christopher Faulet404f9192020-04-09 23:13:54 +02001169
Christopher Faulet92017a32021-05-06 16:01:18 +02001170 /* check complete or aborted */
1171 TRACE_STATE("health-check complete or aborted", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END, check);
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001172
Christopher Faulet92017a32021-05-06 16:01:18 +02001173 check->current_step = NULL;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001174
Christopher Faulet92017a32021-05-06 16:01:18 +02001175 if (conn && conn->xprt) {
1176 /* The check was aborted and the connection was not yet closed.
1177 * This can happen upon timeout, or when an external event such
1178 * as a failed response coupled with "observe layer7" caused the
1179 * server state to be suddenly changed.
1180 */
1181 cs_drain_and_close(cs);
1182 }
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001183
Christopher Faulet92017a32021-05-06 16:01:18 +02001184 if (cs) {
1185 if (check->wait_list.events)
1186 cs->conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list);
1187 /* We may have been scheduled to run, and the
1188 * I/O handler expects to have a cs, so remove
1189 * the tasklet
1190 */
1191 tasklet_remove_from_tasklet_list(check->wait_list.tasklet);
1192 cs_destroy(cs);
1193 cs = check->cs = NULL;
1194 conn = NULL;
1195 }
Willy Tarreau51cd5952020-06-05 12:25:38 +02001196
Christopher Faulet92017a32021-05-06 16:01:18 +02001197 if (check->sess != NULL) {
1198 vars_prune(&check->vars, check->sess, NULL);
1199 session_free(check->sess);
1200 check->sess = NULL;
1201 }
Willy Tarreau51cd5952020-06-05 12:25:38 +02001202
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001203 if (check->server && likely(!(check->state & CHK_ST_PURGE))) {
Christopher Faulet92017a32021-05-06 16:01:18 +02001204 if (check->result == CHK_RES_FAILED) {
1205 /* a failure or timeout detected */
1206 TRACE_DEVEL("report failure", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check);
1207 check_notify_failure(check);
1208 }
1209 else if (check->result == CHK_RES_CONDPASS) {
1210 /* check is OK but asks for stopping mode */
1211 TRACE_DEVEL("report conditional success", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check);
1212 check_notify_stopping(check);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001213 }
Christopher Faulet92017a32021-05-06 16:01:18 +02001214 else if (check->result == CHK_RES_PASSED) {
1215 /* a success was detected */
1216 TRACE_DEVEL("report success", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check);
1217 check_notify_success(check);
1218 }
1219 }
1220 task_set_affinity(t, MAX_THREADS_MASK);
1221 check_release_buf(check, &check->bi);
1222 check_release_buf(check, &check->bo);
1223 check->state &= ~(CHK_ST_INPROGRESS|CHK_ST_IN_ALLOC|CHK_ST_OUT_ALLOC);
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001224
Christopher Faulet92017a32021-05-06 16:01:18 +02001225 if (check->server) {
1226 rv = 0;
1227 if (global.spread_checks > 0) {
1228 rv = srv_getinter(check) * global.spread_checks / 100;
1229 rv -= (int) (2 * rv * (ha_random32() / 4294967295.0));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001230 }
Christopher Faulet92017a32021-05-06 16:01:18 +02001231 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv));
Christopher Faulet61cc8522020-04-20 14:54:42 +02001232 }
Willy Tarreau51cd5952020-06-05 12:25:38 +02001233
1234 reschedule:
1235 while (tick_is_expired(t->expire, now_ms))
1236 t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter));
1237 out_unlock:
1238 if (check->server)
1239 HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock);
Christopher Faulet147b8c92021-04-10 09:00:38 +02001240
1241 TRACE_LEAVE(CHK_EV_TASK_WAKE, check);
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001242
1243 /* Free the check if set to PURGE. After this, the check instance may be
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02001244 * freed via the srv_drop invocation, so it must not be accessed after
1245 * this point.
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001246 */
1247 if (unlikely(check->state & CHK_ST_PURGE)) {
Amaury Denoyelle26cb8342021-08-10 16:23:49 +02001248 free_check(check);
Amaury Denoyelle9ba34ae2021-08-09 15:09:17 +02001249 if (check->server)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02001250 srv_drop(check->server);
Amaury Denoyelle26cb8342021-08-10 16:23:49 +02001251
1252 t = NULL;
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001253 }
1254
Willy Tarreau51cd5952020-06-05 12:25:38 +02001255 return t;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001256}
1257
Willy Tarreau51cd5952020-06-05 12:25:38 +02001258
Christopher Faulet61cc8522020-04-20 14:54:42 +02001259/**************************************************************************/
1260/************************** Init/deinit checks ****************************/
1261/**************************************************************************/
Christopher Fauletb381a502020-11-25 13:47:00 +01001262/*
1263 * Tries to grab a buffer and to re-enables processing on check <target>. The
1264 * check flags are used to figure what buffer was requested. It returns 1 if the
1265 * allocation succeeds, in which case the I/O tasklet is woken up, or 0 if it's
1266 * impossible to wake up and we prefer to be woken up later.
1267 */
1268int check_buf_available(void *target)
Christopher Faulet61cc8522020-04-20 14:54:42 +02001269{
Christopher Fauletb381a502020-11-25 13:47:00 +01001270 struct check *check = target;
1271
Willy Tarreaud68d4f12021-03-22 14:44:31 +01001272 if ((check->state & CHK_ST_IN_ALLOC) && b_alloc(&check->bi)) {
Christopher Faulet147b8c92021-04-10 09:00:38 +02001273 TRACE_STATE("unblocking check, input buffer allocated", CHK_EV_TCPCHK_EXP|CHK_EV_RX_BLK, check);
Christopher Fauletb381a502020-11-25 13:47:00 +01001274 check->state &= ~CHK_ST_IN_ALLOC;
1275 tasklet_wakeup(check->wait_list.tasklet);
1276 return 1;
1277 }
Willy Tarreaud68d4f12021-03-22 14:44:31 +01001278 if ((check->state & CHK_ST_OUT_ALLOC) && b_alloc(&check->bo)) {
Christopher Faulet147b8c92021-04-10 09:00:38 +02001279 TRACE_STATE("unblocking check, output buffer allocated", CHK_EV_TCPCHK_SND|CHK_EV_TX_BLK, check);
Christopher Fauletb381a502020-11-25 13:47:00 +01001280 check->state &= ~CHK_ST_OUT_ALLOC;
1281 tasklet_wakeup(check->wait_list.tasklet);
1282 return 1;
1283 }
1284
1285 return 0;
1286}
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001287
Christopher Fauletb381a502020-11-25 13:47:00 +01001288/*
William Dauchyf4300902021-02-06 20:47:50 +01001289 * Allocate a buffer. If it fails, it adds the check in buffer wait queue.
Christopher Fauletb381a502020-11-25 13:47:00 +01001290 */
1291struct buffer *check_get_buf(struct check *check, struct buffer *bptr)
1292{
1293 struct buffer *buf = NULL;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001294
Willy Tarreau2b718102021-04-21 07:32:39 +02001295 if (likely(!LIST_INLIST(&check->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +01001296 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Fauletb381a502020-11-25 13:47:00 +01001297 check->buf_wait.target = check;
1298 check->buf_wait.wakeup_cb = check_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +02001299 LIST_APPEND(&ti->buffer_wq, &check->buf_wait.list);
Christopher Fauletb381a502020-11-25 13:47:00 +01001300 }
1301 return buf;
1302}
1303
1304/*
1305 * Release a buffer, if any, and try to wake up entities waiting in the buffer
1306 * wait queue.
1307 */
1308void check_release_buf(struct check *check, struct buffer *bptr)
1309{
1310 if (bptr->size) {
1311 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001312 offer_buffers(check->buf_wait.target, 1);
Christopher Fauletb381a502020-11-25 13:47:00 +01001313 }
1314}
1315
1316const char *init_check(struct check *check, int type)
1317{
1318 check->type = type;
Christopher Fauletba3c68f2020-04-01 16:27:05 +02001319
Christopher Fauletb381a502020-11-25 13:47:00 +01001320 check->bi = BUF_NULL;
1321 check->bo = BUF_NULL;
Willy Tarreau90f366b2021-02-20 11:49:49 +01001322 LIST_INIT(&check->buf_wait.list);
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001323
Christopher Faulet61cc8522020-04-20 14:54:42 +02001324 check->wait_list.tasklet = tasklet_new();
1325 if (!check->wait_list.tasklet)
1326 return "out of memory while allocating check tasklet";
1327 check->wait_list.events = 0;
1328 check->wait_list.tasklet->process = event_srv_chk_io;
1329 check->wait_list.tasklet->context = check;
1330 return NULL;
1331}
1332
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001333/* Liberates the resources allocated for a check.
1334 *
Amaury Denoyelle6d7fc442021-08-10 16:22:51 +02001335 * This function must only be run by the thread owning the check.
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001336 */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001337void free_check(struct check *check)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001338{
Amaury Denoyelle6d7fc442021-08-10 16:22:51 +02001339 /* For agent-check, free the rules / vars from the server. This is not
1340 * done for health-check : the proxy is the owner of the rules / vars
1341 * in this case.
1342 */
1343 if (check->state & CHK_ST_AGENT) {
1344 free_tcpcheck_vars(&check->tcpcheck_rules->preset_vars);
1345 ha_free(&check->tcpcheck_rules);
1346 }
1347
Christopher Faulet61cc8522020-04-20 14:54:42 +02001348 task_destroy(check->task);
1349 if (check->wait_list.tasklet)
1350 tasklet_free(check->wait_list.tasklet);
1351
Christopher Fauletb381a502020-11-25 13:47:00 +01001352 check_release_buf(check, &check->bi);
1353 check_release_buf(check, &check->bo);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001354 if (check->cs) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001355 ha_free(&check->cs->conn);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001356 cs_free(check->cs);
1357 check->cs = NULL;
1358 }
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001359}
1360
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001361/* This function must be used in order to free a started check. The check will
1362 * be scheduled for a next execution in order to properly close and free all
1363 * check elements.
1364 *
1365 * Non thread-safe.
1366 */
1367void check_purge(struct check *check)
1368{
Amaury Denoyelle25fe1032021-08-10 16:21:55 +02001369 check->state |= CHK_ST_PURGE;
Amaury Denoyelleb33a0ab2021-07-29 15:51:45 +02001370 task_wakeup(check->task, TASK_WOKEN_OTHER);
1371}
1372
Christopher Faulet61cc8522020-04-20 14:54:42 +02001373/* manages a server health-check. Returns the time the task accepts to wait, or
1374 * TIME_ETERNITY for infinity.
1375 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001376struct task *process_chk(struct task *t, void *context, unsigned int state)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001377{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001378 struct check *check = context;
1379
1380 if (check->type == PR_O2_EXT_CHK)
1381 return process_chk_proc(t, context, state);
1382 return process_chk_conn(t, context, state);
1383
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001384}
1385
Christopher Faulet61cc8522020-04-20 14:54:42 +02001386
Amaury Denoyelle3c2ab1a2021-07-22 16:04:40 +02001387int start_check_task(struct check *check, int mininter,
Christopher Faulet61cc8522020-04-20 14:54:42 +02001388 int nbcheck, int srvpos)
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001389{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001390 struct task *t;
1391 unsigned long thread_mask = MAX_THREADS_MASK;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001392
Christopher Faulet61cc8522020-04-20 14:54:42 +02001393 if (check->type == PR_O2_EXT_CHK)
1394 thread_mask = 1;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001395
Christopher Faulet61cc8522020-04-20 14:54:42 +02001396 /* task for the check */
1397 if ((t = task_new(thread_mask)) == NULL) {
1398 ha_alert("Starting [%s:%s] check: out of memory.\n",
1399 check->server->proxy->id, check->server->id);
1400 return 0;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001401 }
1402
Christopher Faulet61cc8522020-04-20 14:54:42 +02001403 check->task = t;
1404 t->process = process_chk;
1405 t->context = check;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001406
Christopher Faulet61cc8522020-04-20 14:54:42 +02001407 if (mininter < srv_getinter(check))
1408 mininter = srv_getinter(check);
1409
1410 if (global.max_spread_checks && mininter > global.max_spread_checks)
1411 mininter = global.max_spread_checks;
1412
1413 /* check this every ms */
1414 t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck));
1415 check->start = now;
1416 task_queue(t);
1417
1418 return 1;
Gaetan Rivet707b52f2020-02-21 18:14:59 +01001419}
1420
Christopher Faulet61cc8522020-04-20 14:54:42 +02001421/*
1422 * Start health-check.
1423 * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case.
1424 */
1425static int start_checks()
1426{
1427
1428 struct proxy *px;
1429 struct server *s;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001430 int nbcheck=0, mininter=0, srvpos=0;
1431
1432 /* 0- init the dummy frontend used to create all checks sessions */
1433 init_new_proxy(&checks_fe);
Christopher Faulet0f1fc232021-04-16 10:49:07 +02001434 checks_fe.id = strdup("CHECKS-FE");
Christopher Faulet61cc8522020-04-20 14:54:42 +02001435 checks_fe.cap = PR_CAP_FE | PR_CAP_BE;
1436 checks_fe.mode = PR_MODE_TCP;
1437 checks_fe.maxconn = 0;
1438 checks_fe.conn_retries = CONN_RETRIES;
1439 checks_fe.options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
1440 checks_fe.timeout.client = TICK_ETERNITY;
1441
1442 /* 1- count the checkers to run simultaneously.
1443 * We also determine the minimum interval among all of those which
1444 * have an interval larger than SRV_CHK_INTER_THRES. This interval
1445 * will be used to spread their start-up date. Those which have
1446 * a shorter interval will start independently and will not dictate
1447 * too short an interval for all others.
1448 */
1449 for (px = proxies_list; px; px = px->next) {
1450 for (s = px->srv; s; s = s->next) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001451 if (s->check.state & CHK_ST_CONFIGURED) {
1452 nbcheck++;
1453 if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) &&
1454 (!mininter || mininter > srv_getinter(&s->check)))
1455 mininter = srv_getinter(&s->check);
Christopher Faulet5c288742020-03-31 08:15:58 +02001456 }
1457
Christopher Faulet61cc8522020-04-20 14:54:42 +02001458 if (s->agent.state & CHK_ST_CONFIGURED) {
1459 nbcheck++;
1460 if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) &&
1461 (!mininter || mininter > srv_getinter(&s->agent)))
1462 mininter = srv_getinter(&s->agent);
1463 }
Christopher Faulet5c288742020-03-31 08:15:58 +02001464 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001465 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02001466
Christopher Faulet61cc8522020-04-20 14:54:42 +02001467 if (!nbcheck)
Christopher Fauletfc633b62020-11-06 15:24:23 +01001468 return ERR_NONE;
Christopher Fauletb7d30092020-03-30 15:19:03 +02001469
Christopher Faulet61cc8522020-04-20 14:54:42 +02001470 srand((unsigned)time(NULL));
Christopher Fauletb7d30092020-03-30 15:19:03 +02001471
William Dauchyf4300902021-02-06 20:47:50 +01001472 /* 2- start them as far as possible from each other. For this, we will
1473 * start them after their interval is set to the min interval divided
1474 * by the number of servers, weighted by the server's position in the
1475 * list.
Christopher Faulet61cc8522020-04-20 14:54:42 +02001476 */
1477 for (px = proxies_list; px; px = px->next) {
1478 if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
1479 if (init_pid_list()) {
1480 ha_alert("Starting [%s] check: out of memory.\n", px->id);
1481 return ERR_ALERT | ERR_FATAL;
1482 }
1483 }
Christopher Fauletb7d30092020-03-30 15:19:03 +02001484
Christopher Faulet61cc8522020-04-20 14:54:42 +02001485 for (s = px->srv; s; s = s->next) {
1486 /* A task for the main check */
1487 if (s->check.state & CHK_ST_CONFIGURED) {
1488 if (s->check.type == PR_O2_EXT_CHK) {
1489 if (!prepare_external_check(&s->check))
1490 return ERR_ALERT | ERR_FATAL;
Christopher Fauletb7d30092020-03-30 15:19:03 +02001491 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001492 if (!start_check_task(&s->check, mininter, nbcheck, srvpos))
1493 return ERR_ALERT | ERR_FATAL;
1494 srvpos++;
Christopher Faulet98572322020-03-30 13:16:44 +02001495 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001496
Christopher Faulet61cc8522020-04-20 14:54:42 +02001497 /* A task for a auxiliary agent check */
1498 if (s->agent.state & CHK_ST_CONFIGURED) {
1499 if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) {
1500 return ERR_ALERT | ERR_FATAL;
1501 }
1502 srvpos++;
1503 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001504 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001505 }
Christopher Fauletfc633b62020-11-06 15:24:23 +01001506 return ERR_NONE;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001507}
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001508
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001509
Christopher Faulet61cc8522020-04-20 14:54:42 +02001510/*
1511 * Return value:
1512 * the port to be used for the health check
1513 * 0 in case no port could be found for the check
1514 */
1515static int srv_check_healthcheck_port(struct check *chk)
1516{
1517 int i = 0;
1518 struct server *srv = NULL;
1519
1520 srv = chk->server;
1521
William Dauchyf4300902021-02-06 20:47:50 +01001522 /* by default, we use the health check port configured */
Christopher Faulet61cc8522020-04-20 14:54:42 +02001523 if (chk->port > 0)
1524 return chk->port;
1525
1526 /* try to get the port from check_core.addr if check.port not set */
1527 i = get_host_port(&chk->addr);
1528 if (i > 0)
1529 return i;
1530
1531 /* try to get the port from server address */
1532 /* prevent MAPPORTS from working at this point, since checks could
1533 * not be performed in such case (MAPPORTS impose a relative ports
1534 * based on live traffic)
1535 */
1536 if (srv->flags & SRV_F_MAPPORTS)
1537 return 0;
1538
1539 i = srv->svc_port; /* by default */
1540 if (i > 0)
1541 return i;
1542
1543 return 0;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001544}
1545
Christopher Faulet61cc8522020-04-20 14:54:42 +02001546/* Initializes an health-check attached to the server <srv>. Non-zero is returned
1547 * if an error occurred.
1548 */
Amaury Denoyelle3c2ab1a2021-07-22 16:04:40 +02001549int init_srv_check(struct server *srv)
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001550{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001551 const char *err;
1552 struct tcpcheck_rule *r;
Christopher Fauletfc633b62020-11-06 15:24:23 +01001553 int ret = ERR_NONE;
Amaury Denoyelle0519bd42020-11-13 12:34:56 +01001554 int check_type;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001555
Christopher Faulet6ecd5932021-01-12 17:29:45 +01001556 if (!srv->do_check || !(srv->proxy->cap & PR_CAP_BE))
Christopher Faulet61cc8522020-04-20 14:54:42 +02001557 goto out;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001558
Amaury Denoyelle0519bd42020-11-13 12:34:56 +01001559 check_type = srv->check.tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK;
Christopher Fauletf50f4e92020-03-30 19:52:29 +02001560
Christopher Faulet61cc8522020-04-20 14:54:42 +02001561 /* If neither a port nor an addr was specified and no check transport
1562 * layer is forced, then the transport layer used by the checks is the
1563 * same as for the production traffic. Otherwise we use raw_sock by
1564 * default, unless one is specified.
1565 */
1566 if (!srv->check.port && !is_addr(&srv->check.addr)) {
1567 if (!srv->check.use_ssl && srv->use_ssl != -1) {
1568 srv->check.use_ssl = srv->use_ssl;
1569 srv->check.xprt = srv->xprt;
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001570 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001571 else if (srv->check.use_ssl == 1)
1572 srv->check.xprt = xprt_get(XPRT_SSL);
1573 srv->check.send_proxy |= (srv->pp_opts);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001574 }
Christopher Faulet66163ec2020-05-20 22:36:24 +02001575 else if (srv->check.use_ssl == 1)
1576 srv->check.xprt = xprt_get(XPRT_SSL);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001577
Christopher Faulet12882cf2020-04-23 15:50:18 +02001578 /* Inherit the mux protocol from the server if not already defined for
1579 * the check
1580 */
Amaury Denoyelle0519bd42020-11-13 12:34:56 +01001581 if (srv->mux_proto && !srv->check.mux_proto &&
1582 ((srv->mux_proto->mode == PROTO_MODE_HTTP && check_type == TCPCHK_RULES_HTTP_CHK) ||
1583 (srv->mux_proto->mode == PROTO_MODE_TCP && check_type != TCPCHK_RULES_HTTP_CHK))) {
Christopher Faulet12882cf2020-04-23 15:50:18 +02001584 srv->check.mux_proto = srv->mux_proto;
Amaury Denoyelle0519bd42020-11-13 12:34:56 +01001585 }
Amaury Denoyelle7c148902020-11-13 12:34:57 +01001586 /* test that check proto is valid if explicitly defined */
1587 else if (srv->check.mux_proto &&
1588 ((srv->check.mux_proto->mode == PROTO_MODE_HTTP && check_type != TCPCHK_RULES_HTTP_CHK) ||
1589 (srv->check.mux_proto->mode == PROTO_MODE_TCP && check_type == TCPCHK_RULES_HTTP_CHK))) {
1590 ha_alert("config: %s '%s': server '%s' uses an incompatible MUX protocol for the selected check type\n",
1591 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
1592 ret |= ERR_ALERT | ERR_FATAL;
1593 goto out;
1594 }
Christopher Faulet12882cf2020-04-23 15:50:18 +02001595
Christopher Faulet61cc8522020-04-20 14:54:42 +02001596 /* validate <srv> server health-check settings */
Christopher Fauletf50f4e92020-03-30 19:52:29 +02001597
Christopher Faulet61cc8522020-04-20 14:54:42 +02001598 /* We need at least a service port, a check port or the first tcp-check
1599 * rule must be a 'connect' one when checking an IPv4/IPv6 server.
1600 */
1601 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
1602 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
1603 goto init;
Christopher Fauletf50f4e92020-03-30 19:52:29 +02001604
Christopher Faulet61cc8522020-04-20 14:54:42 +02001605 if (!srv->proxy->tcpcheck_rules.list || LIST_ISEMPTY(srv->proxy->tcpcheck_rules.list)) {
1606 ha_alert("config: %s '%s': server '%s' has neither service port nor check port.\n",
1607 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
1608 ret |= ERR_ALERT | ERR_ABORT;
1609 goto out;
1610 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001611
Christopher Faulet61cc8522020-04-20 14:54:42 +02001612 /* search the first action (connect / send / expect) in the list */
1613 r = get_first_tcpcheck_rule(&srv->proxy->tcpcheck_rules);
1614 if (!r || (r->action != TCPCHK_ACT_CONNECT) || (!r->connect.port && !get_host_port(&r->connect.addr))) {
1615 ha_alert("config: %s '%s': server '%s' has neither service port nor check port "
1616 "nor tcp_check rule 'connect' with port information.\n",
1617 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
1618 ret |= ERR_ALERT | ERR_ABORT;
1619 goto out;
1620 }
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001621
Christopher Faulet61cc8522020-04-20 14:54:42 +02001622 /* scan the tcp-check ruleset to ensure a port has been configured */
1623 list_for_each_entry(r, srv->proxy->tcpcheck_rules.list, list) {
Willy Tarreauacff3092021-07-22 11:06:41 +02001624 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->connect.port && !get_host_port(&r->connect.addr))) {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001625 ha_alert("config: %s '%s': server '%s' has neither service port nor check port, "
1626 "and a tcp_check rule 'connect' with no port information.\n",
1627 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
1628 ret |= ERR_ALERT | ERR_ABORT;
1629 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02001630 }
Christopher Faulete5870d82020-04-15 11:32:03 +02001631 }
1632
Christopher Faulet61cc8522020-04-20 14:54:42 +02001633 init:
Christopher Faulet61cc8522020-04-20 14:54:42 +02001634 err = init_check(&srv->check, srv->proxy->options2 & PR_O2_CHK_ANY);
1635 if (err) {
1636 ha_alert("config: %s '%s': unable to init check for server '%s' (%s).\n",
1637 proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err);
1638 ret |= ERR_ALERT | ERR_ABORT;
1639 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02001640 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001641 srv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02001642 srv_take(srv);
Amaury Denoyelle403dce82021-07-29 15:39:43 +02001643
1644 /* Only increment maxsock for servers from the configuration. Dynamic
1645 * servers at the moment are not taken into account for the estimation
1646 * of the resources limits.
1647 */
1648 if (global.mode & MODE_STARTING)
1649 global.maxsock++;
Christopher Faulete5870d82020-04-15 11:32:03 +02001650
Christopher Faulet61cc8522020-04-20 14:54:42 +02001651 out:
1652 return ret;
Christopher Faulete5870d82020-04-15 11:32:03 +02001653}
1654
Christopher Faulet61cc8522020-04-20 14:54:42 +02001655/* Initializes an agent-check attached to the server <srv>. Non-zero is returned
1656 * if an error occurred.
1657 */
Amaury Denoyelle3c2ab1a2021-07-22 16:04:40 +02001658int init_srv_agent_check(struct server *srv)
Christopher Faulete5870d82020-04-15 11:32:03 +02001659{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001660 struct tcpcheck_rule *chk;
1661 const char *err;
Christopher Fauletfc633b62020-11-06 15:24:23 +01001662 int ret = ERR_NONE;
Christopher Faulete5870d82020-04-15 11:32:03 +02001663
Christopher Faulet6ecd5932021-01-12 17:29:45 +01001664 if (!srv->do_agent || !(srv->proxy->cap & PR_CAP_BE))
Christopher Faulet61cc8522020-04-20 14:54:42 +02001665 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02001666
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001667 /* If there is no connect rule preceding all send / expect rules, an
Christopher Faulet61cc8522020-04-20 14:54:42 +02001668 * implicit one is inserted before all others.
1669 */
1670 chk = get_first_tcpcheck_rule(srv->agent.tcpcheck_rules);
1671 if (!chk || chk->action != TCPCHK_ACT_CONNECT) {
1672 chk = calloc(1, sizeof(*chk));
1673 if (!chk) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02001674 ha_alert("%s '%s': unable to add implicit tcp-check connect rule"
Christopher Faulet61cc8522020-04-20 14:54:42 +02001675 " to agent-check for server '%s' (out of memory).\n",
1676 proxy_type_str(srv->proxy), srv->proxy->id, srv->id);
1677 ret |= ERR_ALERT | ERR_FATAL;
1678 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02001679 }
Christopher Faulet61cc8522020-04-20 14:54:42 +02001680 chk->action = TCPCHK_ACT_CONNECT;
1681 chk->connect.options = (TCPCHK_OPT_DEFAULT_CONNECT|TCPCHK_OPT_IMPLICIT);
Willy Tarreau2b718102021-04-21 07:32:39 +02001682 LIST_INSERT(srv->agent.tcpcheck_rules->list, &chk->list);
Christopher Faulete5870d82020-04-15 11:32:03 +02001683 }
1684
Christopher Faulete5870d82020-04-15 11:32:03 +02001685
Christopher Faulet61cc8522020-04-20 14:54:42 +02001686 err = init_check(&srv->agent, PR_O2_TCPCHK_CHK);
1687 if (err) {
1688 ha_alert("config: %s '%s': unable to init agent-check for server '%s' (%s).\n",
1689 proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err);
1690 ret |= ERR_ALERT | ERR_ABORT;
1691 goto out;
Christopher Faulete5870d82020-04-15 11:32:03 +02001692 }
1693
Christopher Faulet61cc8522020-04-20 14:54:42 +02001694 if (!srv->agent.inter)
1695 srv->agent.inter = srv->check.inter;
1696
1697 srv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02001698 srv_take(srv);
Amaury Denoyelle403dce82021-07-29 15:39:43 +02001699
1700 /* Only increment maxsock for servers from the configuration. Dynamic
1701 * servers at the moment are not taken into account for the estimation
1702 * of the resources limits.
1703 */
1704 if (global.mode & MODE_STARTING)
1705 global.maxsock++;
Christopher Faulet61cc8522020-04-20 14:54:42 +02001706
1707 out:
1708 return ret;
Christopher Faulete5870d82020-04-15 11:32:03 +02001709}
1710
Christopher Faulet61cc8522020-04-20 14:54:42 +02001711static void deinit_srv_check(struct server *srv)
1712{
1713 if (srv->check.state & CHK_ST_CONFIGURED)
1714 free_check(&srv->check);
1715 srv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED;
1716 srv->do_check = 0;
1717}
Christopher Faulete5870d82020-04-15 11:32:03 +02001718
Christopher Faulet61cc8522020-04-20 14:54:42 +02001719
1720static void deinit_srv_agent_check(struct server *srv)
1721{
Christopher Faulet61cc8522020-04-20 14:54:42 +02001722 if (srv->agent.state & CHK_ST_CONFIGURED)
1723 free_check(&srv->agent);
1724
1725 srv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT;
1726 srv->do_agent = 0;
Christopher Faulete5870d82020-04-15 11:32:03 +02001727}
1728
Willy Tarreaucee013e2020-06-05 11:40:38 +02001729REGISTER_POST_SERVER_CHECK(init_srv_check);
1730REGISTER_POST_SERVER_CHECK(init_srv_agent_check);
Willy Tarreaucee013e2020-06-05 11:40:38 +02001731REGISTER_POST_CHECK(start_checks);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001732
Willy Tarreaucee013e2020-06-05 11:40:38 +02001733REGISTER_SERVER_DEINIT(deinit_srv_check);
1734REGISTER_SERVER_DEINIT(deinit_srv_agent_check);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001735
Christopher Faulet61cc8522020-04-20 14:54:42 +02001736
1737/**************************************************************************/
1738/************************** Check sample fetches **************************/
1739/**************************************************************************/
Christopher Fauletfd6c2292020-03-25 18:20:15 +01001740
Christopher Faulet61cc8522020-04-20 14:54:42 +02001741static struct sample_fetch_kw_list smp_kws = {ILH, {
Christopher Faulet61cc8522020-04-20 14:54:42 +02001742 { /* END */ },
1743}};
1744
1745INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
1746
1747
1748/**************************************************************************/
1749/************************ Check's parsing functions ***********************/
1750/**************************************************************************/
Christopher Fauletce8111e2020-04-06 15:04:11 +02001751/* Parse the "addr" server keyword */
1752static int srv_parse_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
1753 char **errmsg)
1754{
1755 struct sockaddr_storage *sk;
Christopher Fauletce8111e2020-04-06 15:04:11 +02001756 int port1, port2, err_code = 0;
1757
1758
1759 if (!*args[*cur_arg+1]) {
1760 memprintf(errmsg, "'%s' expects <ipv4|ipv6> as argument.", args[*cur_arg]);
1761 goto error;
1762 }
1763
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001764 sk = str2sa_range(args[*cur_arg+1], NULL, &port1, &port2, NULL, NULL, errmsg, NULL, NULL,
1765 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Christopher Fauletce8111e2020-04-06 15:04:11 +02001766 if (!sk) {
1767 memprintf(errmsg, "'%s' : %s", args[*cur_arg], *errmsg);
1768 goto error;
1769 }
1770
William Dauchy1c921cd2021-02-03 22:30:08 +01001771 srv->check.addr = *sk;
1772 /* if agentaddr was never set, we can use addr */
1773 if (!(srv->flags & SRV_F_AGENTADDR))
1774 srv->agent.addr = *sk;
Christopher Fauletce8111e2020-04-06 15:04:11 +02001775
1776 out:
1777 return err_code;
1778
1779 error:
1780 err_code |= ERR_ALERT | ERR_FATAL;
1781 goto out;
1782}
1783
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001784/* Parse the "agent-addr" server keyword */
1785static int srv_parse_agent_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
1786 char **errmsg)
1787{
William Dauchy1c921cd2021-02-03 22:30:08 +01001788 struct sockaddr_storage sk;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001789 int err_code = 0;
1790
1791 if (!*(args[*cur_arg+1])) {
1792 memprintf(errmsg, "'%s' expects an address as argument.", args[*cur_arg]);
1793 goto error;
1794 }
William Dauchy1c921cd2021-02-03 22:30:08 +01001795 memset(&sk, 0, sizeof(sk));
1796 if (str2ip(args[*cur_arg + 1], &sk) == NULL) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001797 memprintf(errmsg, "parsing agent-addr failed. Check if '%s' is correct address.", args[*cur_arg+1]);
1798 goto error;
1799 }
William Dauchy1c921cd2021-02-03 22:30:08 +01001800 set_srv_agent_addr(srv, &sk);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001801
1802 out:
1803 return err_code;
1804
1805 error:
1806 err_code |= ERR_ALERT | ERR_FATAL;
1807 goto out;
1808}
1809
1810/* Parse the "agent-check" server keyword */
1811static int srv_parse_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
1812 char **errmsg)
1813{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001814 struct tcpcheck_ruleset *rs = NULL;
1815 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
1816 struct tcpcheck_rule *chk;
1817 int err_code = 0;
1818
1819 if (srv->do_agent)
1820 goto out;
1821
Christopher Faulet6ecd5932021-01-12 17:29:45 +01001822 if (!(curpx->cap & PR_CAP_BE)) {
1823 memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability",
1824 args[*cur_arg], proxy_type_str(curpx), curpx->id);
1825 return ERR_WARN;
1826 }
1827
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001828 if (!rules) {
1829 rules = calloc(1, sizeof(*rules));
1830 if (!rules) {
1831 memprintf(errmsg, "out of memory.");
1832 goto error;
1833 }
1834 LIST_INIT(&rules->preset_vars);
1835 srv->agent.tcpcheck_rules = rules;
1836 }
1837 rules->list = NULL;
1838 rules->flags = 0;
1839
Christopher Faulet61cc8522020-04-20 14:54:42 +02001840 rs = find_tcpcheck_ruleset("*agent-check");
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001841 if (rs)
1842 goto ruleset_found;
1843
Christopher Faulet61cc8522020-04-20 14:54:42 +02001844 rs = create_tcpcheck_ruleset("*agent-check");
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001845 if (rs == NULL) {
1846 memprintf(errmsg, "out of memory.");
1847 goto error;
1848 }
1849
Christopher Fauletb50b3e62020-05-05 18:43:43 +02001850 chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", "%[var(check.agent_string)]", ""},
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001851 1, curpx, &rs->rules, srv->conf.file, srv->conf.line, errmsg);
1852 if (!chk) {
1853 memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg);
1854 goto error;
1855 }
1856 chk->index = 0;
Willy Tarreau2b718102021-04-21 07:32:39 +02001857 LIST_APPEND(&rs->rules, &chk->list);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001858
1859 chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""},
Christopher Faulete5870d82020-04-15 11:32:03 +02001860 1, curpx, &rs->rules, TCPCHK_RULES_AGENT_CHK,
1861 srv->conf.file, srv->conf.line, errmsg);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001862 if (!chk) {
1863 memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg);
1864 goto error;
1865 }
1866 chk->expect.custom = tcpcheck_agent_expect_reply;
1867 chk->index = 1;
Willy Tarreau2b718102021-04-21 07:32:39 +02001868 LIST_APPEND(&rs->rules, &chk->list);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001869
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001870 ruleset_found:
1871 rules->list = &rs->rules;
Christopher Faulet1faf18a2020-11-25 16:43:12 +01001872 rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS);
Christopher Faulet404f9192020-04-09 23:13:54 +02001873 rules->flags |= TCPCHK_RULES_AGENT_CHK;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001874 srv->do_agent = 1;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001875
1876 out:
Dirkjan Bussinkdfee2172021-06-18 19:57:49 +00001877 return err_code;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001878
1879 error:
1880 deinit_srv_agent_check(srv);
Christopher Faulet61cc8522020-04-20 14:54:42 +02001881 free_tcpcheck_ruleset(rs);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001882 err_code |= ERR_ALERT | ERR_FATAL;
1883 goto out;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001884}
1885
1886/* Parse the "agent-inter" server keyword */
1887static int srv_parse_agent_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
1888 char **errmsg)
1889{
1890 const char *err = NULL;
1891 unsigned int delay;
1892 int err_code = 0;
1893
1894 if (!*(args[*cur_arg+1])) {
1895 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
1896 goto error;
1897 }
1898
1899 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
1900 if (err == PARSE_TIME_OVER) {
1901 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1902 args[*cur_arg+1], args[*cur_arg], srv->id);
1903 goto error;
1904 }
1905 else if (err == PARSE_TIME_UNDER) {
1906 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1907 args[*cur_arg+1], args[*cur_arg], srv->id);
1908 goto error;
1909 }
1910 else if (err) {
1911 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
1912 *err, srv->id);
1913 goto error;
1914 }
1915 if (delay <= 0) {
1916 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
1917 delay, args[*cur_arg], srv->id);
1918 goto error;
1919 }
1920 srv->agent.inter = delay;
1921
1922 out:
1923 return err_code;
1924
1925 error:
1926 err_code |= ERR_ALERT | ERR_FATAL;
1927 goto out;
1928}
1929
1930/* Parse the "agent-port" server keyword */
1931static int srv_parse_agent_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
1932 char **errmsg)
1933{
1934 int err_code = 0;
1935
1936 if (!*(args[*cur_arg+1])) {
1937 memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]);
1938 goto error;
1939 }
1940
Amaury Denoyelle403dce82021-07-29 15:39:43 +02001941 /* Only increment maxsock for servers from the configuration. Dynamic
1942 * servers at the moment are not taken into account for the estimation
1943 * of the resources limits.
1944 */
1945 if (global.mode & MODE_STARTING)
1946 global.maxsock++;
1947
William Dauchy4858fb22021-02-03 22:30:09 +01001948 set_srv_agent_port(srv, atol(args[*cur_arg + 1]));
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001949
1950 out:
1951 return err_code;
1952
1953 error:
1954 err_code |= ERR_ALERT | ERR_FATAL;
1955 goto out;
1956}
1957
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001958int set_srv_agent_send(struct server *srv, const char *send)
1959{
1960 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
1961 struct tcpcheck_var *var = NULL;
1962 char *str;
1963
1964 str = strdup(send);
Christopher Fauletb61caf42020-04-21 10:57:42 +02001965 var = create_tcpcheck_var(ist("check.agent_string"));
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001966 if (str == NULL || var == NULL)
1967 goto error;
1968
1969 free_tcpcheck_vars(&rules->preset_vars);
1970
1971 var->data.type = SMP_T_STR;
1972 var->data.u.str.area = str;
1973 var->data.u.str.data = strlen(str);
1974 LIST_INIT(&var->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02001975 LIST_APPEND(&rules->preset_vars, &var->list);
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001976
1977 return 1;
1978
1979 error:
1980 free(str);
1981 free(var);
1982 return 0;
1983}
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001984
William Dauchyf4300902021-02-06 20:47:50 +01001985/* set agent addr and appropriate flag */
William Dauchy1c921cd2021-02-03 22:30:08 +01001986inline void set_srv_agent_addr(struct server *srv, struct sockaddr_storage *sk)
1987{
1988 srv->agent.addr = *sk;
1989 srv->flags |= SRV_F_AGENTADDR;
1990}
1991
William Dauchyf4300902021-02-06 20:47:50 +01001992/* set agent port and appropriate flag */
William Dauchy4858fb22021-02-03 22:30:09 +01001993inline void set_srv_agent_port(struct server *srv, int port)
1994{
1995 srv->agent.port = port;
1996 srv->flags |= SRV_F_AGENTPORT;
1997}
1998
Christopher Fauletcbba66c2020-04-06 14:26:30 +02001999/* Parse the "agent-send" server keyword */
2000static int srv_parse_agent_send(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2001 char **errmsg)
2002{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002003 struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules;
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002004 int err_code = 0;
2005
2006 if (!*(args[*cur_arg+1])) {
2007 memprintf(errmsg, "'%s' expects a string as argument.", args[*cur_arg]);
2008 goto error;
2009 }
2010
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002011 if (!rules) {
2012 rules = calloc(1, sizeof(*rules));
2013 if (!rules) {
2014 memprintf(errmsg, "out of memory.");
2015 goto error;
2016 }
2017 LIST_INIT(&rules->preset_vars);
2018 srv->agent.tcpcheck_rules = rules;
2019 }
2020
2021 if (!set_srv_agent_send(srv, args[*cur_arg+1])) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002022 memprintf(errmsg, "out of memory.");
2023 goto error;
2024 }
2025
2026 out:
2027 return err_code;
2028
2029 error:
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002030 deinit_srv_agent_check(srv);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002031 err_code |= ERR_ALERT | ERR_FATAL;
2032 goto out;
2033}
2034
2035/* Parse the "no-agent-send" server keyword */
2036static int srv_parse_no_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2037 char **errmsg)
2038{
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002039 deinit_srv_agent_check(srv);
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002040 return 0;
2041}
2042
Christopher Fauletce8111e2020-04-06 15:04:11 +02002043/* Parse the "check" server keyword */
2044static int srv_parse_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2045 char **errmsg)
2046{
Christopher Faulet6ecd5932021-01-12 17:29:45 +01002047 if (!(curpx->cap & PR_CAP_BE)) {
2048 memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability",
2049 args[*cur_arg], proxy_type_str(curpx), curpx->id);
2050 return ERR_WARN;
2051 }
2052
Christopher Fauletce8111e2020-04-06 15:04:11 +02002053 srv->do_check = 1;
2054 return 0;
2055}
2056
2057/* Parse the "check-send-proxy" server keyword */
2058static int srv_parse_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2059 char **errmsg)
2060{
2061 srv->check.send_proxy = 1;
2062 return 0;
2063}
2064
2065/* Parse the "check-via-socks4" server keyword */
2066static int srv_parse_check_via_socks4(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2067 char **errmsg)
2068{
2069 srv->check.via_socks4 = 1;
2070 return 0;
2071}
2072
2073/* Parse the "no-check" server keyword */
2074static int srv_parse_no_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2075 char **errmsg)
2076{
2077 deinit_srv_check(srv);
2078 return 0;
2079}
2080
2081/* Parse the "no-check-send-proxy" server keyword */
2082static int srv_parse_no_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2083 char **errmsg)
2084{
2085 srv->check.send_proxy = 0;
2086 return 0;
2087}
2088
Christopher Fauletedc6ed92020-04-23 16:27:59 +02002089/* parse the "check-proto" server keyword */
2090static int srv_parse_check_proto(char **args, int *cur_arg,
2091 struct proxy *px, struct server *newsrv, char **err)
2092{
2093 int err_code = 0;
2094
2095 if (!*args[*cur_arg + 1]) {
2096 memprintf(err, "'%s' : missing value", args[*cur_arg]);
2097 goto error;
2098 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01002099 newsrv->check.mux_proto = get_mux_proto(ist(args[*cur_arg + 1]));
Christopher Fauletedc6ed92020-04-23 16:27:59 +02002100 if (!newsrv->check.mux_proto) {
2101 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
2102 goto error;
2103 }
2104
2105 out:
2106 return err_code;
2107
2108 error:
2109 err_code |= ERR_ALERT | ERR_FATAL;
2110 goto out;
2111}
2112
2113
Christopher Fauletce8111e2020-04-06 15:04:11 +02002114/* Parse the "rise" server keyword */
2115static int srv_parse_check_rise(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2116 char **errmsg)
2117{
2118 int err_code = 0;
2119
2120 if (!*args[*cur_arg + 1]) {
2121 memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]);
2122 goto error;
2123 }
2124
2125 srv->check.rise = atol(args[*cur_arg+1]);
2126 if (srv->check.rise <= 0) {
2127 memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]);
2128 goto error;
2129 }
2130
2131 if (srv->check.health)
2132 srv->check.health = srv->check.rise;
2133
2134 out:
2135 return err_code;
2136
2137 error:
2138 deinit_srv_agent_check(srv);
2139 err_code |= ERR_ALERT | ERR_FATAL;
2140 goto out;
Christopher Fauletce8111e2020-04-06 15:04:11 +02002141}
2142
2143/* Parse the "fall" server keyword */
2144static int srv_parse_check_fall(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2145 char **errmsg)
2146{
2147 int err_code = 0;
2148
2149 if (!*args[*cur_arg + 1]) {
2150 memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]);
2151 goto error;
2152 }
2153
2154 srv->check.fall = atol(args[*cur_arg+1]);
2155 if (srv->check.fall <= 0) {
2156 memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]);
2157 goto error;
2158 }
2159
2160 out:
2161 return err_code;
2162
2163 error:
2164 deinit_srv_agent_check(srv);
2165 err_code |= ERR_ALERT | ERR_FATAL;
2166 goto out;
Christopher Fauletce8111e2020-04-06 15:04:11 +02002167}
2168
2169/* Parse the "inter" server keyword */
2170static int srv_parse_check_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2171 char **errmsg)
2172{
2173 const char *err = NULL;
2174 unsigned int delay;
2175 int err_code = 0;
2176
2177 if (!*(args[*cur_arg+1])) {
2178 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
2179 goto error;
2180 }
2181
2182 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
2183 if (err == PARSE_TIME_OVER) {
2184 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
2185 args[*cur_arg+1], args[*cur_arg], srv->id);
2186 goto error;
2187 }
2188 else if (err == PARSE_TIME_UNDER) {
2189 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
2190 args[*cur_arg+1], args[*cur_arg], srv->id);
2191 goto error;
2192 }
2193 else if (err) {
2194 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
2195 *err, srv->id);
2196 goto error;
2197 }
2198 if (delay <= 0) {
2199 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
2200 delay, args[*cur_arg], srv->id);
2201 goto error;
2202 }
2203 srv->check.inter = delay;
2204
2205 out:
2206 return err_code;
2207
2208 error:
2209 err_code |= ERR_ALERT | ERR_FATAL;
2210 goto out;
2211}
2212
2213
2214/* Parse the "fastinter" server keyword */
2215static int srv_parse_check_fastinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2216 char **errmsg)
2217{
2218 const char *err = NULL;
2219 unsigned int delay;
2220 int err_code = 0;
2221
2222 if (!*(args[*cur_arg+1])) {
2223 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
2224 goto error;
2225 }
2226
2227 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
2228 if (err == PARSE_TIME_OVER) {
2229 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
2230 args[*cur_arg+1], args[*cur_arg], srv->id);
2231 goto error;
2232 }
2233 else if (err == PARSE_TIME_UNDER) {
2234 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
2235 args[*cur_arg+1], args[*cur_arg], srv->id);
2236 goto error;
2237 }
2238 else if (err) {
2239 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
2240 *err, srv->id);
2241 goto error;
2242 }
2243 if (delay <= 0) {
2244 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
2245 delay, args[*cur_arg], srv->id);
2246 goto error;
2247 }
2248 srv->check.fastinter = delay;
2249
2250 out:
2251 return err_code;
2252
2253 error:
2254 err_code |= ERR_ALERT | ERR_FATAL;
2255 goto out;
2256}
2257
2258
2259/* Parse the "downinter" server keyword */
2260static int srv_parse_check_downinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2261 char **errmsg)
2262{
2263 const char *err = NULL;
2264 unsigned int delay;
2265 int err_code = 0;
2266
2267 if (!*(args[*cur_arg+1])) {
2268 memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]);
2269 goto error;
2270 }
2271
2272 err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS);
2273 if (err == PARSE_TIME_OVER) {
2274 memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
2275 args[*cur_arg+1], args[*cur_arg], srv->id);
2276 goto error;
2277 }
2278 else if (err == PARSE_TIME_UNDER) {
2279 memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
2280 args[*cur_arg+1], args[*cur_arg], srv->id);
2281 goto error;
2282 }
2283 else if (err) {
2284 memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.",
2285 *err, srv->id);
2286 goto error;
2287 }
2288 if (delay <= 0) {
2289 memprintf(errmsg, "invalid value %d for argument '%s' of server %s.",
2290 delay, args[*cur_arg], srv->id);
2291 goto error;
2292 }
2293 srv->check.downinter = delay;
2294
2295 out:
2296 return err_code;
2297
2298 error:
2299 err_code |= ERR_ALERT | ERR_FATAL;
2300 goto out;
2301}
2302
2303/* Parse the "port" server keyword */
2304static int srv_parse_check_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv,
2305 char **errmsg)
2306{
2307 int err_code = 0;
2308
2309 if (!*(args[*cur_arg+1])) {
2310 memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]);
2311 goto error;
2312 }
2313
Amaury Denoyelle403dce82021-07-29 15:39:43 +02002314 /* Only increment maxsock for servers from the configuration. Dynamic
2315 * servers at the moment are not taken into account for the estimation
2316 * of the resources limits.
2317 */
2318 if (global.mode & MODE_STARTING)
2319 global.maxsock++;
2320
Christopher Fauletce8111e2020-04-06 15:04:11 +02002321 srv->check.port = atol(args[*cur_arg+1]);
William Dauchy4858fb22021-02-03 22:30:09 +01002322 /* if agentport was never set, we can use port */
2323 if (!(srv->flags & SRV_F_AGENTPORT))
2324 srv->agent.port = srv->check.port;
Christopher Fauletce8111e2020-04-06 15:04:11 +02002325
2326 out:
2327 return err_code;
2328
2329 error:
2330 err_code |= ERR_ALERT | ERR_FATAL;
2331 goto out;
2332}
2333
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002334static struct srv_kw_list srv_kws = { "CHK", { }, {
Amaury Denoyelle9ecee0f2021-07-23 16:34:58 +02002335 { "addr", srv_parse_addr, 1, 1, 1 }, /* IP address to send health to or to probe from agent-check */
2336 { "agent-addr", srv_parse_agent_addr, 1, 1, 1 }, /* Enable an auxiliary agent check */
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02002337 { "agent-check", srv_parse_agent_check, 0, 1, 1 }, /* Enable agent checks */
Amaury Denoyelle9ecee0f2021-07-23 16:34:58 +02002338 { "agent-inter", srv_parse_agent_inter, 1, 1, 1 }, /* Set the interval between two agent checks */
2339 { "agent-port", srv_parse_agent_port, 1, 1, 1 }, /* Set the TCP port used for agent checks. */
2340 { "agent-send", srv_parse_agent_send, 1, 1, 1 }, /* Set string to send to agent. */
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02002341 { "check", srv_parse_check, 0, 1, 1 }, /* Enable health checks */
Amaury Denoyelle9ecee0f2021-07-23 16:34:58 +02002342 { "check-proto", srv_parse_check_proto, 1, 1, 1 }, /* Set the mux protocol for health checks */
2343 { "check-send-proxy", srv_parse_check_send_proxy, 0, 1, 1 }, /* Enable PROXY protocol for health checks */
2344 { "check-via-socks4", srv_parse_check_via_socks4, 0, 1, 1 }, /* Enable socks4 proxy for health checks */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002345 { "no-agent-check", srv_parse_no_agent_check, 0, 1, 0 }, /* Do not enable any auxiliary agent check */
2346 { "no-check", srv_parse_no_check, 0, 1, 0 }, /* Disable health checks */
2347 { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1, 0 }, /* Disable PROXY protocol for health checks */
Amaury Denoyelle9ecee0f2021-07-23 16:34:58 +02002348 { "rise", srv_parse_check_rise, 1, 1, 1 }, /* Set rise value for health checks */
2349 { "fall", srv_parse_check_fall, 1, 1, 1 }, /* Set fall value for health checks */
2350 { "inter", srv_parse_check_inter, 1, 1, 1 }, /* Set inter value for health checks */
2351 { "fastinter", srv_parse_check_fastinter, 1, 1, 1 }, /* Set fastinter value for health checks */
2352 { "downinter", srv_parse_check_downinter, 1, 1, 1 }, /* Set downinter value for health checks */
2353 { "port", srv_parse_check_port, 1, 1, 1 }, /* Set the TCP port used for health checks. */
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002354 { NULL, NULL, 0 },
2355}};
2356
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002357INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Christopher Fauletfd6c2292020-03-25 18:20:15 +01002358
Willy Tarreaubd741542010-03-16 18:46:54 +01002359/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002360 * Local variables:
2361 * c-indent-level: 8
2362 * c-basic-offset: 8
2363 * End:
2364 */